/* Cart Page Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

/* Cart Items List */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: transform 0.2s;
}

.cart-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    background: #fcfcfc;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fafafa;
    overflow: hidden;
}

.quantity-selector button {
    background: none;
    border: none;
    padding: 8px 15px;
    color: #555;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.8rem;
}

.quantity-selector button:hover {
    background: #eee;
    color: var(--primary);
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: bold;
    color: var(--text);
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove Button */
.remove-btn {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}

.remove-btn:hover {
    color: #d14141;
}

/* Total Column */
.cart-item-total {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text);
}

@media (max-width: 600px) {
    .cart-item-card {
        grid-template-columns: 80px 1fr;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-total {
        grid-column: 1 / -1;
        text-align: right;
        margin-top: 10px;
        border-top: 1px dashed #eee;
        padding-top: 10px;
    }
}

/* Summary Sidebar */
.cart-summary {
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #555;
}