/* Cart Page Styles */
.cart-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cart-container h1 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cart-items {
    margin-bottom: 40px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
    color: #666;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 150px 100px 40px;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-size: 1.2rem;
    font-weight: normal;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.cart-item-attributes {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

.cart-item-price {
    font-size: 1rem;
    margin-top: 5px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    font-family: 'Volkswagen Serial', Arial, sans-serif;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #000;
    color: #fff;
}

.cart-item-quantity input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #000;
    font-family: 'Volkswagen Serial', Arial, sans-serif;
}

.cart-item-total {
    text-align: right;
    font-size: 1.1rem;
}

.remove-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.2s;
}

.remove-btn:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    padding: 30px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #000;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    font-family: 'Volkswagen Serial', Arial, sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-bottom: 15px;
}

.checkout-btn:hover:not(:disabled) {
    background: #fff;
    color: #000;
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.continue-shopping {
    display: block;
    text-align: center;
    color: #000;
    text-decoration: none;
    padding: 10px;
    font-family: 'Volkswagen Serial', Arial, sans-serif;
    letter-spacing: 1px;
}

.continue-shopping:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-quantity,
    .cart-item-total {
        grid-column: 2;
    }

    .remove-btn {
        grid-column: 2;
        justify-self: end;
    }

    .cart-summary {
        max-width: 100%;
    }
}
