:root {
        --primary-color: #000;
        --secondary-color: #666;
        --light-bg: #f8f8f8;
      }
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Arial", sans-serif;
        color: var(--primary-color);
        background: #fff;
      }
      
      /* Promotional Banners */
      .promo-banners {
        background: #000;
        color: #fff;
        padding: 10px 0;
        display: flex;
        justify-content: center;
        gap: 60px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 30;
      }
      /* Top Header */
      /* Main Content Area */
      .main-content {
        display: flex;
        min-height: calc(100vh - 155px); /* Total fixed headers ~155px */
        margin-top: 10px; /* After all fixed headers */
      
      }
      /* Vertical Promo Banner */
      .vertical-promo {
        position: fixed;
        left: 0;
        top: 430px; /* After all fixed headers */
        background: #000;
        color: #fff;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        padding: 12px 15px;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: auto;
        flex-shrink: 0;
        line-height: 13.8;
        z-index: 10;
      }
      /* Scale vertical-promo proportionally on smaller screens */
      @media (max-width: 1440px) {
        .vertical-promo {
          font-size: 14px;
          padding: 11px 14px;
          width: 38px;
        }
        .filter-sidebar {
          left: 38px; /* Match vertical-promo width */
        }
      
      }
      @media (max-width: 1404px) {
        .vertical-promo {
          font-size: 13px;
          padding: 10px 13px;
          width: 36px;
        }
        .filter-sidebar {
          left: 36px; /* Match vertical-promo width */
        }
       
      }
      @media (max-width: 1024px) {
        .vertical-promo {
          font-size: 12px;
          padding: 9px 12px;
          width: 34px;
        }
        .filter-sidebar {
          left: 34px; /* Match vertical-promo width */
        }
        
      }
      @media (max-width: 992px) {
        .vertical-promo {
          font-size: 11px;
          padding: 8px 11px;
          width: 32px;
        }
        .filter-sidebar {
          left: 32px; /* Match vertical-promo width */
        }
        .main-content {
          /* margin-left: 272px; 32px vertical-promo + 240px sidebar */
        }
      }
      /* Filter Sidebar */
      .filter-sidebar {
        /* position: fixed; */
        left: 0px; /* After vertical-promo width */
        top: 135px; /* After all fixed headers */
        width: 320px;
        background: #fff;
        padding: 0 27px;
        padding-top: 10px;
        height: calc(100vh - 165px); /* 155px top + 10px padding-top */
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 10;
      }
      /* Mobile Filter Toggle Button */
      .filter-toggle-btn {
        display: none;
        background: #000;
        color: #fff;
        border: none;
        padding: 12px 20px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        width: 100%;
        margin-bottom: 20px;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }
      .filter-toggle-btn:hover {
        background: #333;
      }
      .filter-toggle-btn i {
        font-size: 14px;
      }
      .filter-sidebar-close {
        display: none;
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
        z-index: 10;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
      }
      .filter-sidebar-close:hover {
        color: #000;
      }
      @media (max-width: 768px) {
        .filter-sidebar-close {
          display: flex;
        }
      }
      .filter-sidebar > .filter-group:first-of-type {
        margin-top: 20px;
      }
      .filter-sidebar::-webkit-scrollbar {
        width: 8px;
      }
      .filter-sidebar::-webkit-scrollbar-track {
        background: #fff;
      }
      .filter-sidebar::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
      }
      .filter-sidebar::-webkit-scrollbar-thumb:hover {
        background: #999;
      }
      .filter-title {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 30px;
        letter-spacing: 2px;
      }
      /* Selected Filters */
      .selected-filters.show {
        display: flex;
      }
      .selected-filters {
        display: none;
        margin-bottom: 20px;
        border-radius: 5px;
        flex-direction: column;
        gap: 6px;
      }
      /* Individual selected filter (chip) */
      .selected-chip {
        background: #f2f2f2;
        color: black;
        padding: 5px 10px;
        font-size: 12px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        width: fit-content;
      }
      /* Remove (×) icon */
      .selected-chip .remove {
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        line-height: 1;
      }
      /* 🔹 Wrap last chip + clear button together */
      .selected-filters .last-line {
        display: flex;
        align-items: center;
        gap: 8px;
      }
      /* Clear All Button */
      #clearAllBtn {
        background: none;
        border: none;
        border-bottom: 1px solid var(--primary-color);
        color: var(--primary-color);
        cursor: pointer;
        font-size: 12px;
        line-height: 1.2;
      }
      #clearAllBtn:hover {
        border-bottom-color: black;
        color: black;
      }
      .filter-group {
        margin-bottom: 25px;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 15px;
      }
      .filter-group-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .filter-group-title i {
        font-size: 12px;
        transition: transform 0.3s;
      }
      .filter-group.active .filter-group-title i {
        transform: rotate(180deg);
      }
      .filter-options {
        display: none;
        padding-top: 10px;
      }
      .filter-group.active .filter-options {
        display: block;
      }
      /* Subcategory styles */
      .subcategory-group {
        margin-bottom: 15px;
      }
      .subcategory-title {
        font-weight: 600;
        font-size: 14px;
        color: #4a4a4ac7;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
      }
      .subcategory-title i {
        font-size: 12px;
        transition: transform 0.3s;
        color: var(--secondary-color);
      }
      .subcategory-group.active .subcategory-title i {
        transform: rotate(180deg);
      }
      .subcategory-options {
        display: none;
        padding-top: 10px;
      }
      .subcategory-group.active .subcategory-options {
        display: block;
      }
      .checkbox-option {
        display: flex;
        align-items: flex-start;
        margin-bottom: 5px;
        padding-bottom: 8px;
      }
      .checkbox-option input[type="checkbox"] {
        appearance: none;
        width: 16px;
        height: 16px;
        margin-right: 8px;
        margin-top: 2px;
        border: 1px solid #ccc;
        border-radius: 2px;
        background: white;
        position: relative;
        cursor: pointer;
        box-sizing: border-box;
      }
      /* When checked — fill with semi-black and leave white border space */
      .checkbox-option input[type="checkbox"]:checked {
        background: white;
        border-color: #000;
      }
      .checkbox-option input[type="checkbox"]:checked::after {
        content: "";
        position: absolute;
        top: 3px; /* Creates white border space */
        left: 3px;
        right: 3px;
        bottom: 3px;
        background: rgba(0, 0, 0, 0.6); /* 60% black fill */
        border-radius: 1px;
      }
      /* Label styling */
      .checkbox-option label {
        cursor: pointer;
        font-size: 13px;
        color: var(--secondary-color);
      }
      .checkbox-option label:hover {
        color: var(--primary-color);
      }
      .checkbox-option input[type="checkbox"]:checked + label {
        color: var(--primary-color);
        font-weight: 500;
      }
      .filter-option {
        font-size: 13px;
        color: var(--secondary-color);
        cursor: pointer;
        flex: 1;
      }
      .filter-option:hover {
        color: var(--primary-color);
        text-decoration: underline;
        text-decoration-color: black;
        text-decoration-thickness: 1px;
        text-decoration-style: solid;
      }
      .checkbox-option input[type="checkbox"]:hover::after {
        content: "";
        position: absolute;
        top: 3px; /* Creates white border space */
        left: 3px;
        right: 3px;
        bottom: 3px;
        background: rgba(88, 88, 88, 0.6); /* 60% black fill */
        border-radius: 1px;
      }
      .filter-option input:checked + span {
        color: var(--primary-color);
        font-weight: 500;
      }
      /* Product Grid */
      .product-section {
        flex: 1;
        padding: 40px 30px;
        min-width: 0;
        overflow: hidden;
      }
      /* View Controls */
      .view-controls {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        gap: 30px;
      }
      .view-options {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      .view-label {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #666;
      }
      .view-icons {
        display: flex;
        gap: 8px;
      }
      .view-icon {
        width: 28px;
        height: 28px;
        border: 1px solid #e0e0e0;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
      }
      .view-icon:hover {
        border-color: #000;
      }
      .view-icon.active {
        background: #666;
        border-color: #666;
      }
      .view-icon svg {
        width: 16px;
        height: 16px;
      }
      .view-icon.active svg {
        fill: #fff;
      }
      .view-icon:not(.active) svg {
        fill: #ccc;
      }
      .featured-dropdown {
        position: relative;
      }
      .featured-select {
        border: none;
        padding: 5px 25px 5px 0;
        font-size: 13px;
        background: transparent;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right center;
        color: #666;
        font-weight: 600;
      }
      .featured-select:focus {
        outline: none;
        border-bottom-color: #000;
      }
      /* Mobile Sort and Filter Controls */
      .mobile-controls {
        display: none;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #e0e0e0;
      }
      .sort-btn,
      .filter-btn-mobile {
        background: transparent;
        border: none;
        color: #666;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 0;
      }
      .sort-btn:hover,
      .filter-btn-mobile:hover {
        color: #000;
      }
      .sort-btn i,
      .filter-btn-mobile i {
        font-size: 12px;
      }
      .mobile-controls-divider {
        width: 1px;
        height: 20px;
        background: #e0e0e0;
      }
      .sort-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        min-width: 200px;
        display: none;
        margin-top: 5px;
      }
      .sort-dropdown.show {
        display: block;
      }
      .sort-dropdown-item {
        padding: 12px 20px;
        cursor: pointer;
        font-size: 14px;
        color: #666;
        border-bottom: 1px solid #f0f0f0;
      }
      .sort-dropdown-item:last-child {
        border-bottom: none;
      }
      .sort-dropdown-item:hover {
        background: #f5f5f5;
        color: #000;
      }
      .sort-btn {
        position: relative;
      }
      .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
      }
      .products-grid.view-4 {
        grid-template-columns: repeat(4, 1fr);
      }
      .products-grid.view-6 {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
      }
      .products-grid.view-6 .product-card {
        min-width: 0;
      }
      .products-grid.view-6 .product-name {
        font-size: 12px;
      }
      .products-grid.view-6 .product-price-current,
      .products-grid.view-6 .product-price-old {
        font-size: 12px;
      }
      .products-grid.view-6 .product-price-discount {
        font-size: 11px;
      }
      .products-grid.view-6 .product-rating {
        font-size: 11px;
      }
      .product-card {
        position: relative;
        cursor: pointer;
      }
      .product-image {
        position: relative;
        width: 100%;
        padding-top: 125%;
        background: #f5f5f5;
        margin-bottom: 15px;
        overflow: hidden;
      }
      .product-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .product-image .front-image {
        z-index: 2;
      }
      .product-image .back-image {
        z-index: 1;
        opacity: 0;
      }
      .product-card:hover .product-image .front-image {
        opacity: 0;
      }
      .product-card:hover .product-image .back-image {
        opacity: 1;
      }
      /* Quick View Button */
      .quick-view-btn {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        background: #fffc;
        color:#111;
        border: 1px solid #000;
        padding: 8px 16px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
        /* text-transform: uppercase; */
        /* border-radius: 4px; */
        cursor: pointer;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 3;
      }
      .product-card:hover .quick-view-btn {
        opacity: 1;
      }
      .quick-view-btn:hover{
        background-color: #111;
        color: #ecdccf;
      }
      .product-badge {
        position: absolute;
        top: 8px;
        left: 8px;
        color: #78562c;
        background: #f0e6e0;
        padding: 4px 8px;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 600;
        z-index: 2;
        white-space: nowrap;
        transform-origin: top left;
      }
      .product-badge svg {
        width: 18px;
        height: 18px;
        fill: currentColor; /* same color as text */
        vertical-align: middle;
      }
      .product-badge i {
        font-size: 14px;
      }
      /* Scale badge for 6-column view to match 4-column appearance proportionally */
      /* 6 columns = ~67% of 4-column width, so badge should be ~70% size */
      .products-grid.view-6 .product-badge {
        font-size: 10px;
        padding: 3px 5px;
        top: 6px;
        left: 6px;
      }
      .products-grid.view-6 .product-badge i {
        font-size: 10px;
      }
      .products-grid.view-6 .product-badge svg {
        width: 13px;
        height: 13px;
      }
      .product-discount-badge {
        position: absolute;
        bottom: 15px;
        right: 15px;
        background: #000;
        color: #fff;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        z-index: 2;
      }
      /* Scroll to Top Button */
      .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #fff;
        display: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
      }
      .scroll-to-top.show {
        display: flex;
      }
      .scroll-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }
      .scroll-to-top-inner {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #ccc;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .scroll-to-top i {
        color: #fff;
        font-size: 18px;
      }
      /* Sticky Discount Badge */
      .sticky-discount-badge {
        position: fixed;
        top: 70%;
        right: 30px;
        transform: translateY(-50%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 999;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s;
      }
      .sticky-discount-badge:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }
      .sticky-discount-badge-inner {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #ccc;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 5px;
      }
      .sticky-discount-badge-text {
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
      }
      .product-name {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
        color: var(--primary-color);
      }
      .product-price {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
      }
      .product-price-current {
        font-size: 14px;
        font-weight: 600;
      }
      .product-price-old {
        font-size: 13px;
        color: var(--secondary-color);
        text-decoration: line-through;
      }
      .product-price-discount {
        font-size: 12px;
        color: #ff0000;
        font-weight: 600;
      }
      .product-colors {
        display: flex;
        gap: 6px;
        margin-bottom: 10px;
      }
      .color-swatch {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 1px solid #e0e0e0;
        cursor: pointer;
      }
      .product-rating {
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .product-rating i {
        color: #ffd700;
        font-size: 12px;
      }
      .product-rating-count {
        font-size: 12px;
        color: var(--secondary-color);
      }
      /* Modal Styles */
      .modal-content {
        border: none;
        border-radius: 0;
      }
      .modal-header {
        border-bottom: none;
        padding: 20px;
      }
      .modal-body {
        padding: 40px;
      }
      .product-detail-image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
      }
      .color-thumbnails {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
      }
      .color-thumbnail {
        width: 60px;
        height: 60px;
        object-fit: cover;
        cursor: pointer;
        border: 2px solid transparent;
      }
      .color-thumbnail.active {
        border-color: #000;
      }
      .size-buttons {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
      }
      .size-btn {
        padding: 10px 15px;
        border: 1px solid #e0e0e0;
        background: #fff;
        cursor: pointer;
        font-size: 14px;
      }
      .size-btn.active {
        border-color: #000;
        background: #000;
        color: #fff;
      }
      .add-to-bag-btn {
        background: #000;
        color: #fff;
        border: none;
        padding: 15px 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        width: 100%;
        margin-bottom: 20px;
        cursor: pointer;
      }
      .add-to-bag-btn:hover {
        background: #333;
      }
      .wishlist-heart {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        width: 26px;
        height: 26px;
        color: #ccc;
        cursor: pointer;
      }
      .wishlist-heart:hover {
        color: #000;
      }
      .speedy-shipping {
        background: #f0e6e0;
        color: #78562c;
        padding: 5px 10px;
        font-size: 12px;
        display: inline-block;
        margin-bottom: 10px;
      }
      .share-icons {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }
      .share-icons a {
        color: #666;
        font-size: 18px;
      }
      /* Quick View (gallery + details) */
      .quickview-modal { padding: 45px; border: 0; }
      .quickview-close { position: absolute; right: 8px; top: 8px; z-index: 2; opacity: .7; }
      .quickview-body { width: 100%; display: flex; flex-wrap: wrap; }
      .qv-left { display: flex; width: 52%; min-width: 360px; }
      .qv-thumbs { width: 74px; margin-right: 12px; display: flex; flex-direction: column; max-height: 520px; overflow-y: auto; }
      .qv-thumb { border: 1px solid #e5e5e5; background: #fff; padding: 4px; margin-bottom: 8px; cursor: pointer; border-radius: 2px; }
      .qv-thumb.is-active { border-color: #111; }
      .qv-thumb img { width: 100%; height: auto; display: block; }
      .qv-main {
        flex: 1 1 auto;
        border: 1px solid #eee;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 520px;
        position: relative;
      }
      #qvMainImage { max-width: 100%; max-height: 640px; }
      .qv-wishlist-under.filled {
        color: #ff0000;
      }
      .qv-share {
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 20px;
        background: transparent;
        padding: 10px 15px;
        border-radius: 20px;
        font-size: 12px;
        color: #666;
        font-weight: 600;
        z-index: 5;
        white-space: nowrap;
      }
      .qv-share-icons {
        display: flex;
        gap: 15px;
      }
      .qv-share-icons a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        color: #666;
        font-size: 14px;
        text-decoration: none;
        transition: color 0.3s;
        min-width: 40px;
      }
      .qv-share-icons a i {
        font-size: 18px;
      }
      .qv-share-icons a span {
        font-size: 11px;
        text-transform: none;
      }
      .qv-share-icons a:hover {
        color: #000;
      }
      .qv-right { width: 48%; padding-left: 24px; }
      .qv-title { font-size: 1.25rem; }
      .qv-cta .btn { height: 54px; }
      .modal-xl { max-width: 1200px; }
      /* Scrollbar on the modal itself (right edge near the close icon) */
      .modal-xl .modal-content { max-height: 90vh; overflow-y: auto; }
      /* Remove inner scroller so only the modal scrolls */
      .quickview-body { overflow: visible; max-height: none; }
      /* Subtle scrollbar styling (WebKit) */
      .modal-content::-webkit-scrollbar { width: 10px; }
      .modal-content::-webkit-scrollbar-track { background: #f0f0f0; }
      .modal-content::-webkit-scrollbar-thumb { background: #bdbdbd; }
      .modal-content::-webkit-scrollbar-thumb:hover { background: #9e9e9e; }
      .qv-color-label { font-size: 13px; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
      #qvColorName { color: var(--primary-color); font-weight: 500; }
      .qv-color-swatches { display: flex; gap: 10px; margin-bottom: 20px; }
      .qv-color-swatch { width: 40px; height: 40px; border: 2px solid #e0e0e0; cursor: pointer; border-radius: 2px; overflow: hidden; position: relative; }
      .qv-color-swatch.active { border-color: #000; }
      .qv-color-swatch img { width: 100%; height: 100%; object-fit: cover; }
      .qv-color-swatch .color-fill { width: 100%; height: 100%; }
      .qv-size-label { font-size: 13px; color: #666; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
      .qv-size-label span { color: var(--primary-color); font-weight: 500; }
      .qv-size-buttons { display: flex; gap: 5px; margin-bottom: 15px; }
      .qv-size-btn { padding: 8px 12px; min-width: 40px; font-size: 13px; border: 1px solid #e0e0e0; background: #fff; cursor: pointer; border-radius: 0; text-transform: uppercase; letter-spacing: 0.5px; position: relative; }
      .qv-size-btn.active { border-color: #000; }
      .qv-size-btn .lightning-icon { position: absolute; top: -8px; right: -8px; color: #ffd700; font-size: 12px; z-index: 2; background: #fff; width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; line-height: 1; }
      .qv-rating { display: none; align-items: center; gap: 3px; margin-bottom: 15px; }
      .qv-rating.show { display: flex; }
      .qv-rating i { color: #ffd700; font-size: 16px; }
      .qv-rating .product-rating-count { font-size: 13px; color: var(--primary-color); margin-left: 8px; }
      .qv-speedy-shipping {
    background: #f0f0f0;
    color: #666;
    padding: 8px 16px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* border-radius: 4px; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); */
    width: 100%;
    max-width: 100%;
  }
  .bg-color{padding: 2px 4px;
      color: #78562c;
    background: #f0e6e0;}
    .bg-color{color: #78562c;
    background: #f0e6e0;}
      .qv-speedy-shipping i.fa-bolt { color: #ffd700; font-size: 14px; flex-shrink: 0; }
      .qv-speedy-shipping span { flex: 1; }
      .qv-speedy-shipping .help-icon { width: 18px; height: 18px; border-radius: 50%; background: #e0e0e0; color: #666; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: bold; flex-shrink: 0; cursor: pointer; }
.variant-speedy-shipping-help-icon {
    margin-right: 141px;
} .qv-speedy-shipping .help-icon:hover { background: #d0d0d0; }
      .qv-wishlist-btn { width: 50px; height: 50px; border: 1px solid #000; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
      .qv-wishlist-btn i { font-size: 30px; color: #000; }
      /* .qv-wishlist-btn:hover { background: #f5f5f5; } */
      @media (max-width: 991.98px) {
        .qv-left, .qv-right { width: 100%; }
        .qv-right { padding-left: 0; margin-top: 16px; }
      }
      /* Cart Sidebar Styles */
      .cart-sidebar {
        position: fixed;
        top: 0;
        right: -450px;
        width: 450px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 1001;
        transition: right 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
      }
      .cart-sidebar.show {
        right: 0;
      }
      .cart-header {
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
      }
      .cart-title {
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 1px;
      }
      .cart-close {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #666;
        line-height: 1;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .cart-close:hover {
        color: #000;
      }
      .cart-content {
        flex: 1;
        overflow-y: auto;
        padding-bottom: 20px;
      }
      .cart-item {
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        gap: 15px;
      }
      .cart-item-image-wrapper {
        position: relative;
        flex-shrink: 0;
      }
      .cart-item-image {
        width: 120px;
        height: 150px;
        object-fit: cover;
      }
      .cart-item-details {
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .cart-item-badge {
            background: #f0e6e0;
    color: #78562c;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
      }
      .cart-item-badge i {
        font-size: 10px;
      }
      .badge-name-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.cart-item-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
  margin-left: 0;
  padding-left: 0;
}
      .cart-item-select {
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .cart-item-select label {
        font-size: 12px;
        font-weight: 600;
        color: #666;
        min-width: 40px;
      }
      .cart-item-select select {
        flex: 1;
        padding: 6px 8px;
        border: 1px solid #e0e0e0;
        font-size: 12px;
        background: #fff;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23333' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 8px center;
        padding-right: 25px;
        max-width: 120px;
      }
      .quantity-price-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 12px 0;
      }
      .cart-item-quantity {
        display: flex;
        align-items: center;
      }
      .quantity-controls {
        display: flex;
        align-items: center;
        border: 1px solid #e0e0e0;
        width: fit-content;
      }
      .quantity-btn {
        background: #fff;
        border: none;
        width: 32px;
        height: 32px;
        cursor: pointer;
        font-size: 16px;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
      }
      .quantity-btn:hover {
        background: #f5f5f5;
      }
      .quantity-value {
        width: 40px;
        text-align: center;
        font-size: 14px;
        border-left: 1px solid #e0e0e0;
        border-right: 1px solid #e0e0e0;
        padding: 6px 0;
      }
      .cart-item-price-wrapper {
        text-align: right;
      }
      .cart-item-price-old {
        font-size: 13px;
        color: #666;
        text-decoration: line-through;
        display: block;
        margin-bottom: 4px;
      }
      .cart-item-price-current {
        font-size: 18px;
        font-weight: 600;
        color: #ff0000;
      }
      /* You may also like section */
      .recommended-section {
        padding: 20px;
        border-top: 1px solid #e0e0e0;
      }
      .recommended-title {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
      }
      .recommended-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
      }
      .recommended-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
      }
      .recommended-image {
        width: 110px;
        height: 140px;
        object-fit: cover;
        flex-shrink: 0;
      }
      .recommended-details {
        flex: 1;
        display: flex;
        flex-direction: column;
      }
      .recommended-name {
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 8px;
        line-height: 1.4;
      }
      .recommended-price {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
      }
      .recommended-price-current {
        font-size: 14px;
        font-weight: 600;
        color: #ff0000;
      }
      .recommended-price-old {
        font-size: 12px;
        color: #666;
        text-decoration: line-through;
      }
      .recommended-variant-div {
        background-color: #c8c8c81a;
        color: black;
        padding: 10px 25px 5px 5px;
        width: 35%;
        margin-bottom: 10px;
      }
      .recommended-variant-row {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        font-size: 12px;
        font-weight: 500;
        justify-content: start;
      }
      .recommended-variant-label {
        color: #666;
        font-weight: 600;
        min-width: 40px;
      }
      .recommended-variant-value {
        color: #000;
        cursor: default;
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 4px;
      }
      .recommended-variant-dropdown {
        font-size: 10px;
        color: #666;
        cursor: pointer;
        padding-left: 10px;
      }
      .recommended-add-btn {
        background: #000;
        color: #fff;
        border: none;
        padding: 10px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        width: 100%;
        margin-top: auto;
      }
      .recommended-add-btn:hover {
        background: #333;
      }
      .cart-footer {
        padding: 20px;
        border-top: 1px solid #e0e0e0;
        flex-shrink: 0;
        background: #fff;
      }
      .subtotal-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .free-shipping-msg {
        background: #e8f5e9;
        color: #2e7d32;
        padding: 12px;
        border-radius: 4px;
        text-align: center;
        font-size: 12px;
        margin-bottom: 15px;
        font-weight: 500;
      }
      .checkout-btn {
        width: 100%;
        background: #000;
        color: #fff;
        border: none;
        padding: 15px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
      }
      .checkout-btn:hover {
        background: #333;
      }
      .cart-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }
      .cart-overlay.show {
        opacity: 1;
        visibility: visible;
      }
      /* Variant Edit Sidebar Styles */
      .variant-edit-sidebar {
        position: fixed;
        top: 0;
        right: -450px;
        width: 450px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 1002;
        transition: right 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
      }
      .variant-edit-sidebar.show {
        right: 0;
      }
      .variant-edit-header {
        padding: 20px;
        border-bottom: none;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-shrink: 0;
      }
      .variant-edit-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
        line-height: 1;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .variant-edit-close:hover {
        color: #000;
      }
      .variant-edit-content {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
      }
      .variant-edit-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        margin-bottom: 20px;
        border-radius: 4px;
      }
      .variant-edit-name {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
      }
      .variant-edit-price {
        font-size: 20px;
        font-weight: 600;
        color: #ff0000;
        margin-bottom: 20px;
      }
      .variant-edit-price .old-price {
        text-decoration: line-through;
        color: #666;
        margin-left: 10px;
        font-size: 18px;
      }
      .variant-edit-section {
        margin-bottom: 20px;
      }
      .variant-edit-section label {
        display: block;
        font-size: 13px;
        color: #666;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
      }
      .variant-edit-colors {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
      }
      .variant-edit-color {
        width: 40px;
        height: 40px;
        border: 2px solid #e0e0e0;
        border-radius: 2px;
        cursor: pointer;
        overflow: hidden;
        position: relative;
      }
      .variant-edit-color.active {
        border-color: #000;
      }
      .variant-edit-color img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .variant-edit-sizes {
        display: flex;
        gap: 10px;
      }
      .variant-edit-size {
        padding: 10px 15px;
        border: 1px solid #e0e0e0;
        background: #fff;
        cursor: pointer;
        font-size: 14px;
        text-transform: uppercase;
      }
      .variant-edit-size.active {
        border-color: #000;
        background: #000;
        color: #fff;
      }
      .variant-edit-save {
        width: 100%;
        background: #000;
        color: #fff;
        border: none;
        padding: 15px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        margin-top: 20px;
      }
      .variant-edit-save:hover {
        background: #333;
      }
      /* Add Variant Sidebar Styles (new for recommendations) */
      .add-variant-sidebar {
        position: fixed;
        top: 0;
        right: -450px;
        width: 450px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 1003;
        transition: right 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
      }
      .add-variant-sidebar.show {
        right: 0;
      }
      .add-variant-header {
        padding: 20px;
        border-bottom: none;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-shrink: 0;
      }
      .add-variant-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
        line-height: 1;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .add-variant-close:hover {
        color: #000;
      }
      .add-variant-content {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
      }
      .add-variant-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        margin-bottom: 20px;
        border-radius: 4px;
      }
      .add-variant-name {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 10px;
      }
      .add-variant-price {
        font-size: 20px;
        font-weight: 600;
        color: #ff0000;
        margin-bottom: 20px;
      }
      .add-variant-price .old-price {
        text-decoration: line-through;
        color: #666;
        margin-left: 10px;
        font-size: 18px;
      }
      .add-variant-section {
        margin-bottom: 20px;
      }
      .add-variant-section label {
        display: block;
        font-size: 13px;
        color: #666;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
      }
      .add-variant-colors {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
      }
      .add-variant-color {
        width: 40px;
        height: 40px;
        border: 2px solid #e0e0e0;
        border-radius: 2px;
        cursor: pointer;
        overflow: hidden;
        position: relative;
      }
      .add-variant-color.active {
        border-color: #000;
      }
      .add-variant-color img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .add-variant-sizes {
        display: flex;
        gap: 10px;
      }
      .add-variant-size {
        padding: 10px 15px;
        border: 1px solid #e0e0e0;
        background: #fff;
        cursor: pointer;
        font-size: 14px;
        text-transform: uppercase;
      }
      .add-variant-size.active {
        border-color: #000;
        background: #000;
        color: #fff;
      }
      .add-variant-add {
        width: 100%;
        background: #000;
        color: #fff;
        border: none;
        padding: 15px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        margin-top: 20px;
      }
      .add-variant-add:hover {
        background: #333;
      }
      /* Responsive */
      /* Hide sticky discount badge on screens under 1024px */
      @media (max-width: 1023px) {
        .sticky-discount-badge {
          display: none !important;
        }
      }
      /* Large Desktop - Add max-width for ultra-wide screens */
      @media (min-width: 1921px) {
        .container {
          max-width: 1920px;
          margin: 0 auto;
        }
        .products-grid.view-6 {
          grid-template-columns: repeat(5, 1fr);
        }
      }
      @media (max-width: 1920px) {
        .products-grid.view-6 {
          gap: 12px;
        }
      }
      @media (max-width: 1400px) {
        .products-grid.view-6 {
          gap: 10px;
        }
      }
      /* 1440px - Ensure badge looks same for 4 and 6 columns */
      @media (min-width: 1025px) and (max-width: 1440px) {
        /* Base badge for 4-column view */
        .product-badge {
          font-size: 13px;
          padding: 3px 7px;
          top: 7px;
          left: 7px;
        }
        .product-badge i {
          font-size: 13px;
        }
        .product-badge svg {
          width: 16px;
          height: 16px;
        }
        /* Scaled badge for 6-column view to match 4-column appearance */
        .products-grid.view-6 .product-badge {
          font-size: 11px;
          padding: 3px 6px;
          top: 6px;
          left: 6px;
        }
        .products-grid.view-6 .product-badge i {
          font-size: 11px;
        }
        .products-grid.view-6 .product-badge svg {
          width: 13px;
          height: 13px;
        }
      }
      /* Hide view-options and featured-dropdown, show mobile controls on screens under 1024px */
      @media (max-width: 1023px) {
        .view-options {
          display: none !important;
        }
        .featured-dropdown {
          display: none !important;
        }
        .mobile-controls {
          display: flex !important;
        }
        .view-controls {
          justify-content: space-between;
          padding-bottom: 0;
          margin-bottom: 0;
          border-bottom: 1px solid #e0e0e0;
        }
        .filter-toggle-btn {
          display: none !important;
        }
      }
      /* 1024px - Ensure badge looks same for 4 and 6 columns */
      @media (max-width: 1024px) {
        /* Base badge for 4-column view at 1024px */
        .product-badge {
          font-size: 12px;
          padding: 3px 6px;
          top: 6px;
          left: 6px;
        }
        .product-badge i {
          font-size: 12px;
        }
        .product-badge svg {
          width: 15px;
          height: 15px;
        }
        /* Scaled badge for 6-column view to match 4-column visual appearance */
        .products-grid.view-6 .product-badge {
          font-size: 9px;
          padding: 2px 4px;
          top: 5px;
          left: 5px;
        }
        .products-grid.view-6 .product-badge i {
          font-size: 9px;
        }
        .products-grid.view-6 .product-badge svg {
          width: 11px;
          height: 11px;
        }
      }
      /* Tablet Landscape and Small Desktop */
      @media (max-width: 992px) {
        .products-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .products-grid.view-6 {
          grid-template-columns: repeat(3, 1fr);
        }
        .products-grid.view-4 {
          grid-template-columns: repeat(2, 1fr);
        }
        
        .filter-sidebar {
          width: 240px;
        }
        .promo-banners {
          gap: 30px;
          font-size: 10px;
        }
        /* Better tablet spacing */
        .product-section {
          padding: 30px 20px;
        }
        .view-controls {
          flex-wrap: wrap;
          gap: 15px;
        }
      }
      /* Tablet Portrait */
      @media (max-width: 768px) {

        .qv-share{
          display: none;
        }
        .products-grid.view-6 {
          grid-template-columns: repeat(2, 1fr);
        }
        .main-content {
          flex-direction: column;
          margin-top: 0;
          margin-left: 0;
        }
        .vertical-promo {
          position: fixed;
          left: 0;
          top: 400px; /* After all fixed headers on mobile */
          writing-mode: vertical-rl;
          text-orientation: mixed;
          transform: rotate(180deg);
          padding: 6px 10px;
          width: 28px;
          font-size: 10px;
          height: auto;
        }
        .filter-sidebar {
          position: fixed;
          left: -100%;
          top: 0;
          width: 85%;
          max-width: 320px;
          height: 100vh;
          padding: 20px;
          padding-top: 60px;
          margin-left: 0;
          max-height: none;
          z-index: 1004;
          transition: left 0.3s ease;
          box-shadow: 2px 0 10px rgba(0,0,0,0.1);
          overflow-y: auto;
        }
        .filter-sidebar.show {
          left: 0;
        }
        .filter-toggle-btn {
          display: flex;
        }
        .filter-overlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0,0,0,0.5);
          z-index: 1003;
        }
        .filter-overlay.show {
          display: block;
        }
        .promo-banners,
        .top-header,
        .product-nav-bar {
          position: static;
          top: auto;
          width: 100%;
        }
        .top-header {
          padding: 12px 0;
        }
        .product-nav-bar {
          padding: 12px 20px;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
        }
        .products-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 15px;
        }
        .product-section {
          padding: 15px;
        }
        .nav-sections {
          display: none;
        }
        .promo-banners {
          flex-direction: column;
          gap: 8px;
          text-align: center;
          padding: 8px 0;
          font-size: 9px;
        }
        .modal-body {
          padding: 20px;
        }
        .cart-sidebar,
        .variant-edit-sidebar,
        .add-variant-sidebar {
          width: 100%;
          max-width: 100%;
          right: -100%;
        }
        /* Mobile Quick View improvements */
        .qv-left, .qv-right {
          width: 100%;
        }
        .qv-right {
          padding-left: 0;
          margin-top: 20px;
        }
        .qv-thumbs {
          width: 60px;
          max-height: 400px;
        }
        .qv-main {
          min-height: 400px;
        }
        /* View controls mobile */
        .view-controls {
          flex-direction: column;
          align-items: flex-start;
          gap: 15px;
        }
        .view-options {
          width: 100%;
        }
        .featured-dropdown {
          width: 100%;
        }
        .featured-select {
          width: 100%;
        }
      }
      /* Small Mobile */
      @media (max-width: 480px) {
        .qv-share{
          display: none;
        }
        .products-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 15px;
        }
        .products-grid.view-6 {
          grid-template-columns: repeat(2, 1fr);
        }
        .products-grid.view-4 {
          grid-template-columns: repeat(2, 1fr);
        }
        .product-section {
          padding: 10px;
        }
        .product-name {
          font-size: 13px;
        }
        .product-price-current,
        .product-price-old {
          font-size: 13px;
        }
        .view-controls {
          gap: 10px;
        }
        .view-label {
          font-size: 12px;
        }
        .cart-sidebar,
        .variant-edit-sidebar,
        .add-variant-sidebar {
          width: 100%;
        }
        .cart-item {
          flex-direction: column;
          gap: 10px;
        }
        .cart-item-image {
          width: 100%;
          height: auto;
          max-height: 300px;
        }
        .recommended-item {
          flex-direction: column;
        }
        .recommended-image {
          width: 100%;
          height: auto;
        }
        /* Touch-friendly buttons */
        .quick-view-btn,
        .add-to-bag-btn,
        .checkout-btn {
          min-height: 44px;
          font-size: 14px;
        }
        .quantity-btn {
          min-width: 44px;
          min-height: 44px;
        }
        /* Quick View mobile */
        .qv-thumbs {
          width: 50px;
          max-height: 300px;
        }
        .qv-main {
          min-height: 300px;
        }
        .qv-share {
          position: static;
          transform: none;
          margin-top: 15px;
        }
        .promo-banners {
          font-size: 8px;
          padding: 6px 0;
        }
        .top-header {
          padding: 10px 0;
        }
        .navbar-brand {
          font-size: 20px;
        }
        /* Product badge for small mobile */
        .product-badge {
          font-size: 11px;
          padding: 3px 6px;
          top: 6px;
          left: 6px;
        }
        .product-badge i {
          font-size: 11px;
        }
        .product-badge svg {
          width: 13px;
          height: 13px;
        }
        /* Scale vertical-promo for small mobile */
        .vertical-promo {
          font-size: 9px;
          padding: 5px 8px;
          width: 24px;
        }
      }
      /* Extra Small Mobile */
      @media (max-width: 375px) {
        .qv-share{
          display: none;
        }
        .products-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }
        .products-grid.view-6 {
          grid-template-columns: repeat(2, 1fr);
        }
        .products-grid.view-4 {
          grid-template-columns: repeat(2, 1fr);
        }
        .product-section {
          padding: 8px;
        }
        .cart-sidebar,
        .variant-edit-sidebar,
        .add-variant-sidebar {
          width: 100%;
        }
        .cart-item-image {
          max-height: 250px;
        }
        .product-name {
          font-size: 12px;
        }
        .promo-banners {
          font-size: 7px;
        }
        /* Product badge for 375px and below */
        .product-badge {
          font-size: 10px;
          padding: 2px 5px;
          top: 5px;
          left: 5px;
        }
        .product-badge i {
          font-size: 10px;
        }
        .product-badge svg {
          width: 12px;
          height: 12px;
        }
        /* Scale vertical-promo for 375px */
        .vertical-promo {
          font-size: 8px;
          padding: 4px 7px;
          width: 22px;
        }
      }
      /* 320px - Extra Small Mobile */
      @media (max-width: 320px) {
        .qv-share{
          display: none;
        }
        .product-badge {
          font-size: 9px;
          padding: 2px 4px;
          top: 4px;
          left: 4px;
        }
        .product-badge i {
          font-size: 9px;
        }
        .product-badge svg {
          width: 11px;
          height: 11px;
        }
        /* Scale vertical-promo for 320px */
        .vertical-promo {
          font-size: 7px;
          padding: 3px 6px;
          width: 20px;
        }
      }
      /* Cart Variant Display Styles */
      .cart-variant-row {
        display: flex;
        align-items: center;
        /* gap: 20px; */
        margin-bottom: 8px;
        font-size: 12px;
        font-weight: 500;
        justify-content: start;
      }
      .cart-variant-div {
    background-color: #c8c8c81a;
    color: black;
    padding: 10px 25px 5px 5px;
    width: 35%;
}
      .cart-variant-label {
        color: #666;
        font-weight: 600;
        min-width: 40px;
      }
      .cart-variant-value {
        color: #000;
        cursor: default; /* Disable cursor to prevent confusion */
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 4px;
      }
      .cart-variant-dropdown {
        font-size: 10px;
        color: #666;
        cursor: pointer;
        padding-left: 10px;
      }