
        :root {
            --primary: #8B0000;
            --primary-light: #A52A2A;
            --secondary: #1e7b1e;
            --accent: #D4AF37;
            --light: #F8F5F2;
            --dark: #2C2C2C;
            --text: #333333;
            --gray: #6C757D;
            --premium-gold: #C9A96E;
            --premium-dark: #1a1a1a;
            --premium-bg: #fefefe;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--premium-bg);
            color: var(--text);
            overflow-x: hidden;
            -webkit-tap-highlight-color: transparent;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Premium Shop Header */
        .shop-header {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.9), rgba(165, 42, 42, 0.9)), url('https://images.unsplash.com/photo-1546833999-b9f581a1996d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 140px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .shop-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
        }
        
        .shop-header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .shop-header h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .shop-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            margin-top: 20px;
        }
        
        .breadcrumb a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: var(--accent);
        }
        
        .breadcrumb span {
            color: var(--accent);
        }
        
        /* Premium Shop Layout */
        .shop-container {
            display: flex;
            gap: 30px;
            padding: 40px 0;
            min-height: 100vh;
        }
        
        /* Premium Filters Sidebar */
        .filters-sidebar {
            width: 300px;
            background: white;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.03);
            height: fit-content;
            position: sticky;
            top: 120px;
            max-height: calc(100vh - 140px);
            overflow-y: auto;
        }
        
        .filter-section {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .filter-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .filter-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 18px;
            color: var(--premium-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .filter-title i {
            color: var(--primary);
        }
        
        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s;
            padding: 5px 0;
        }
        
        .filter-option:hover {
            color: var(--primary);
        }
        
        .filter-option input {
            width: 18px;
            height: 18px;
            accent-color: var(--primary);
        }
        
        .price-range {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .range-slider {
            width: 100%;
            height: 5px;
            --webkit-appearance: none;
            background: rgba(0,0,0,0.1);
            border-radius: 5px;
            outline: none;
        }
        
        .range-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(139, 0, 0, 0.3);
        }
        
        .range-values {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        .filter-tag {
            background: rgba(139, 0, 0, 0.05);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .filter-tag i {
            cursor: pointer;
            font-size: 0.7rem;
        }
        
        .filter-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .filter-btn {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
        }
        
        .apply-btn {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
        }
        
        .apply-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
        }
        
        .reset-btn {
            background: transparent;
            color: var(--gray);
            border: 1px solid rgba(0,0,0,0.1);
        }
        
        .reset-btn:hover {
            background: rgba(0,0,0,0.02);
            color: var(--primary);
        }
        
        /* Mobile Filter Trigger */
        .mobile-filter-trigger {
            display: none;
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 20px;
            width: 100%;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        
        /* Premium Products Grid */
        .products-main {
            flex: 1;
            min-width: 0; /* Prevents flex item from overflowing */
        }
        
        .products-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            background: white;
            padding: 20px 25px;
            border-radius: 16px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.03);
        }
        
        .products-count {
            font-weight: 500;
            color: var(--premium-dark);
        }
        
        .products-count span {
            color: var(--primary);
            font-weight: 600;
        }
        
        .sort-options {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .sort-select {
            padding: 10px 15px;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            background: white;
            cursor: pointer;
            min-width: 180px;
        }
        
        .view-options {
            display: flex;
            gap: 10px;
        }
        
        .view-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 8px;
            background: white;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--gray);
        }
        
        .view-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .view-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }
        
        /* Premium Product Card */
        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: var(--premium-dark);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 2px 5px rgba(212, 175, 55, 0.3);
        }
        
        .product-image {
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .product-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }
        
        .product-card:hover .product-image::after {
            opacity: 1;
        }
        
        .product-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.4s;
        }
        
        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateX(0);
        }
        
        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: all 0.3s;
            color: var(--premium-dark);
        }
        
        .action-btn:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-category {
            color: var(--gray);
            font-size: 0.85rem;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .product-title {
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 1.1rem;
            line-height: 1.3;
            color: var(--premium-dark);
        }
        
        .product-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--accent);
            font-size: 0.9rem;
        }
        
        .product-reviews {
            color: var(--gray);
            font-size: 0.85rem;
        }
        
        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .current-price {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .original-price {
            font-size: 1rem;
            color: var(--gray);
            text-decoration: line-through;
        }
        
        .product-desc {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
            line-height: 1.5;
            flex-grow: 1;
        }
        
        .product-footer {
            display: flex;
            gap: 10px;
            margin-top: auto;
        }
        
        .add-to-cart-btn {
            flex: 1;
            padding: 12px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
        }
        
        .add-to-cart-btn:hover {
            background: var(--primary-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(139, 0, 0, 0.3);
        }
        
        .details-btn {
            padding: 12px 15px;
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            border-radius: 10px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .details-btn:hover {
            background: rgba(139, 0, 0, 0.05);
        }
        
        /* Premium Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 50px;
        }
        
        .pagination-btn {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 10px;
            background: white;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--premium-dark);
            font-weight: 500;
        }
        
        .pagination-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .pagination-btn:hover:not(.active) {
            border-color: var(--primary);
            color: var(--primary);
        }
        
        .pagination-dots {
            color: var(--gray);
            padding: 0 5px;
        }
        
        /* Premium Features Banner */
        .features-banner {
            background: linear-gradient(135deg, var(--premium-dark), #2a2a2a);
            color: white;
            padding: 60px 0;
            margin: 60px 0;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .features-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1604503468506-a8da13d82791?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        
        .features-banner-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }
        
        .feature-item {
            text-align: center;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        .feature-item h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        
        .feature-item p {
            opacity: 0.8;
            font-size: 0.95rem;
        }
        
        /* Mobile Filter Modal */
        .filter-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1001;
            display: none;
            align-items: flex-end;
        }
        
        .filter-content {
            background: white;
            width: 100%;
            max-height: 80vh;
            border-radius: 20px 20px 0 0;
            padding: 25px 20px;
            overflow-y: auto;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .filter-modal.active .filter-content {
            transform: translateY(0);
        }
        
        .filter-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }
        
        .filter-header h2 {
            font-size: 1.3rem;
            color: var(--premium-dark);
        }
        
        .close-filter {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--gray);
            cursor: pointer;
        }
        
        /* ========== MEDIA QUERIES ========== */
        
        /* Large Desktops */
        @media (min-width: 1201px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Standard Desktops */
        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .features-banner-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        
        /* Tablets */
        @media (max-width: 992px) {
            .shop-container {
                flex-direction: column;
            }
            
            .filters-sidebar {
                width: 100%;
                position: static;
                display: none;
                max-height: none;
            }
            
            .mobile-filter-trigger {
                display: flex;
            }
            
            .filters-sidebar.active {
                display: block;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Small Tablets */
        @media (max-width: 768px) {
            .shop-header {
                padding: 120px 0 60px;
            }
            
            .shop-header h1 {
                font-size: 2.5rem;
            }
            
            .shop-header p {
                font-size: 1.1rem;
            }
            
            .products-toolbar {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .sort-options {
                width: 100%;
                justify-content: space-between;
            }
            
            .features-banner-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        
        /* Mobile Devices */
        @media (max-width: 576px) {
            .shop-header h1 {
                font-size: 2rem;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-footer {
                flex-direction: column;
            }
            
            .filter-actions {
                flex-direction: column;
            }
            
            .pagination {
                flex-wrap: wrap;
            }
        }
        
        /* Animation for product cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .product-card {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }
        
        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }
        .product-card:nth-child(5) { animation-delay: 0.5s; }
        .product-card:nth-child(6) { animation-delay: 0.6s; }
        .product-card:nth-child(7) { animation-delay: 0.7s; }
        .product-card:nth-child(8) { animation-delay: 0.8s; }
/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    border-left: 4px solid var(--primary);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
    max-width: 350px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-success {
    border-left-color: var(--success);
}

.toast-error {
    border-left-color: #dc3545;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-content i {
    font-size: 1.2rem;
}

.toast-success .toast-content i {
    color: var(--success);
}

.toast-error .toast-content i {
    color: #dc3545;
}

:root {
    --success: #28a745;
}
/* Cart Page Styles */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.empty-cart h2 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    padding: 40px 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.clear-cart-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.3s ease;
}

.clear-cart-btn:hover {
    background: #c82333;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
}

.cart-item-image {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.cart-item-price {
    color: var(--primary);
    font-weight: 500;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.quantity-input {
    width: 50px;
    height: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.cart-item-total {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.cart-item-remove {
    width: 35px;
    height: 35px;
    border: none;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #dc3545;
    color: white;
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.summary-card h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.free-shipping {
    color: var(--success);
    font-weight: 600;
}

.shipping-notice {
    background: #e8f5e8;
    color: var(--success);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.checkout-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.continue-shopping {
    text-align: center;
}

.continue-shopping a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.continue-shopping a:hover {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .cart-item-quantity,
    .cart-item-total,
    .cart-item-remove {
        grid-column: 1 / -1;
        justify-self: start;
    }
    
    .cart-item-quantity {
        order: 3;
    }
    
    .cart-item-total {
        order: 4;
    }
    
    .cart-item-remove {
        position: absolute;
        top: 15px;
        right: 15px;
    }
}