/* Cart Section */
.cart-section {
    padding: 40px 0;
    background-color: #fff;
}

.cart-section h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Cart Items */
.cart-items {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.cart-item-brand {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.cart-item-color {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background: #f5f5f5;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background: #eee;
}

.quantity-selector input {
    width: 40px;
    height: 30px;
    border: none;
    text-align: center;
    font-size: 14px;
}

.remove-item {
    color: #666;
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #ff4d4d;
}

/* Cart Summary */
.cart-summary {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.cart-summary h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.summary-item.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 15px;
}

.checkout-btn:hover {
    background-color: #444;
}

.continue-shopping {
    text-align: center;
}

.continue-shopping a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.continue-shopping a:hover {
    color: #333;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 60px 0;
    background-color: #fff;
}

.empty-cart i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.empty-cart p {
    color: #666;
    margin-bottom: 20px;
}

.continue-shopping-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.continue-shopping-btn:hover {
    background-color: #444;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 100px 1fr;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        margin-top: 15px;
    }

    .cart-item-image {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .cart-section h1 {
        font-size: 24px;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
        padding: 15px;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-info h3 {
        font-size: 14px;
    }

    .cart-item-brand,
    .cart-item-color {
        font-size: 12px;
    }

    .cart-item-price {
        font-size: 16px;
    }

    .quantity-selector {
        transform: scale(0.9);
    }
} 