/* Grundlayout */
.cart-container {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header */
.cart-header {
    display: grid;
    grid-template-columns: 70px 1fr 150px 120px 120px;
    padding: 10px 5px;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
    color: #444;
}

/* Cart row */
.cart-row {
    display: grid;
    grid-template-columns: 70px 1fr 150px 120px 120px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

/* Remove button */
.remove-btn {
    background: none;
    border: none;
    color: #c92a2a;
    font-size: 22px;
    cursor: pointer;
    padding: 0 10px;
}
.remove-btn:hover {
    color: #a30000;
}

/* Product */
.product-box {
    display: flex;
    gap: 15px;
    align-items: center;
}

.product-thumb {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
}

.product-sku,
.product-delivery,
.product-variant {
    font-size: 0.85rem;
    color: #555;
}

/* Quantity */
.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    background: #f2f2f2;
    border: none;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 1rem;
}

.qty-btn:hover:not(:disabled) {
    background: #e6e6e6;
}
.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-display {
    padding: 0 12px;
    font-size: 1rem;
    font-weight: 600;
}

/* Prices */
.col-price,
.col-total {
    font-size: 1rem;
    text-align: right;
    font-weight: 600;
}

/* Summary */
.cart-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-label {
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0b6623;
}

/* Checkout button */
.btn-checkout {
    margin-top: 15px;
    background: #0b6623;
    padding: 14px 20px;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

/* MOBILE */
@media (max-width: 900px) {

    .desktop-only { display: none; }

    .cart-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px 0;
    }

    .col-remove {
        order: 3;
    }

    .col-product {
        order: 1;
    }

    .col-qty {
        order: 2;
    }

    .col-price,
    .col-total {
        order: 4;
        text-align: left;
    }

    .cart-summary {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .btn-checkout {
        width: 100%;
    }
}
