  
      :root {
  /* ── BRAND CORE (Logo Identity) ── */
  --primary-blue: #1f7ae0;
  --primary-green: #4caf50;
  --primary-gradient: linear-gradient(135deg, #1f7ae0, #4caf50);

  /* ── PRIMARY SYSTEM (Mapped for existing usage) ── */
  --primary: #1f7ae0;
  --primary-dark: #155bb5;
  --primary-light: #e8f1fc;

  /* ── SECONDARY / ACCENT ── */
  --secondary: #4caf50;
  --secondary-dark: #3a8c3d;
  --accent: #36a56a;

  /* ── BACKGROUNDS ── */
  --bg-light: #f8fafc;
  --bg-white: #ffffff;

  /* ── TEXT SYSTEM ── */
  --text-dark: #212121;
  --text-medium: #666666;
  --text-light: #9ca3af;

  /* ── BORDERS ── */
  --border: #e5e7eb;

  /* ── SHADOWS (slightly more premium) ── */
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* ── RADIUS ── */
  --radius: 8px;
  --radius-lg: 14px;

  /* ── TYPOGRAPHY ── */
  --font: "Inter", sans-serif;

  /* ── LAYOUT ── */
  --sidebar-width: 220px;
}
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: var(--font);
        color: var(--text-dark);
        background: var(--bg-light);
        overflow-x: hidden;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        list-style: none;
      }
      img {
        max-width: 100%;
        display: block;
      }
      button {
        font-family: var(--font);
      }

      /* ── TOP BANNER ── */
      /* ── TOP BANNER ── */
      .top-banner {
        background: var(--primary);
        color: #fff;
        text-align: center;
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.3px;
        display: flex;
        justify-content: space-between;
      }
      .top-banner span {
        margin: 0 12px;
      }

      .contactIcon {
        margin: 0 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: color 0.2s;
        gap: 6px;
      }
      .contactIcon a {
        margin-left: 20px;
        color: #fff;
        transition: color 0.2s;
        gap: 6px;
      }

      @media (max-width: 480px) {
         .contactIcon{
          width: 80%;
          display: flex;
          flex-direction: column;
          align-items: flex-end;
        }
        .contactIcon a {
          font-size: 10px;
          margin-left: 10px;
        }
        .top-banner {
         display: flex;
         justify-content: space-between;
          gap: 8px;
        }
        .hideHeader {
          display: none;
        }
      }

      /* ── HEADER ── */
      header {
        background: var(--bg-white);
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        transition: box-shadow 0.3s;
      }
      .navbar {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        height: 64px;
        gap: 20px;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
      }
      .logo-icon {
        width: 100px;
        /* height: 36px; */
      
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      .logo-icon img {
        /* width: 36px;
        height: 36px; */
        object-fit: cover;
        border-radius: 8px;
      }
      .logo-text {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: -0.5px;
      }
      .logo-text span {
        color: var(--text-dark);
      }

      /* ── SEARCH ── */
      .search-bar {
        flex: 1;
        max-width: 600px;
        position: relative;
      }
      .search-bar .search {
        position: relative;
      }
      .search-bar input {
        width: 100%;
        padding: 10px 48px 10px 16px;
        border: 1.5px solid var(--border);
        border-radius: 24px;
        font-size: 14px;
        font-family: var(--font);
        outline: none;
        background: var(--bg-light);
        transition:
          border-color 0.2s,
          box-shadow 0.2s;
      }
      .search-bar input:focus {
        border-color: var(--primary);
        background: #fff;
        box-shadow: 0 0 0 3px rgba(2, 140, 126, 0.08);
      }
      .search-bar input::placeholder {
        color: var(--text-light);
      }
      .search-btn {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary);
        border: none;
        cursor: pointer;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        color: #fff;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
      }
      .search-btn:hover {
        background: var(--primary-dark);
      }
      .search-suggestions {
        position: absolute;
        top: calc(100% + 6px);
        left: 0;
        right: 0;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        z-index: 999;
        display: none;
        max-height: 320px;
        overflow-y: auto;
        list-style: none;
      }
      .search-suggestions li {
        display: flex;
        align-items: center;
        padding: 10px 14px;
        cursor: pointer;
        font-size: 13px;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.15s;
      }
      .search-suggestions li:hover {
        background: var(--bg-light);
      }

      /* ── NAV ── */
      .nav-links {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: auto;
        flex-shrink: 0;
      }
      .nav-link {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        border-radius: var(--radius);
        font-size: 13px;
        font-weight: 500;
        color: var(--text-dark);
        cursor: pointer;
        transition:
          background 0.2s,
          color 0.2s;
        white-space: nowrap;
      }
      .nav-link:hover {
        background: var(--primary-light);
        color: var(--primary);
      }
      .badge {
        background: var(--primary);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .menu-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 22px;
        color: var(--text-dark);
        margin-left: auto;
      }

      /* ── CATEGORY NAV ── */
      .category-nav {
        background: var(--bg-white);
        border-bottom: 1px solid var(--border);
        overflow-x: auto;
        scrollbar-width: none;
      }
      .category-nav::-webkit-scrollbar {
        display: none;
      }
      .category-nav-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
      }
      .cat-nav-item {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 12px 16px;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-medium);
        cursor: pointer;
        white-space: nowrap;
        border-bottom: 2px solid transparent;
        transition:
          color 0.2s,
          border-color 0.2s;
        text-decoration: none;
      }
      .cat-nav-item:hover,
      .cat-nav-item.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
      }

      /* ── PAGE WRAPPER ── */
      .page-wrapper {
        max-width: 1280px;
        margin: 0 auto;
        padding: 24px 20px;
        /* display: grid;
        grid-template-columns: var(--sidebar-width) 1fr; */
        /* gap: 24px; */
        align-items: start;
      }

      /* ── SIDEBAR ── */
      .sidebar {
        background: var(--bg-white);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
        overflow: hidden;
        position: sticky;
        top: 90px;
      }
      .sidebar-header {
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .sidebar-header h3 {
        font-size: 13px;
        font-weight: 700;
        color: var(--text-dark);
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }
      .sidebar-clear {
        font-size: 12px;
        color: var(--primary);
        cursor: pointer;
        font-weight: 600;
      }
      .sidebar-clear:hover {
        text-decoration: underline;
      }
      .subcategory-list {
        max-height: 420px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--border) transparent;
        padding: 8px 0;
      }
      .subcategory-list::-webkit-scrollbar {
        width: 4px;
      }
      .subcategory-list::-webkit-scrollbar-thumb {
        background: var(--border);
        border-radius: 2px;
      }
      .subcat-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 16px;
        cursor: pointer;
        transition: background 0.15s;
        font-size: 13px;
        color: var(--text-medium);
      }
      .subcat-item:hover {
        background: var(--bg-light);
        color: var(--text-dark);
      }
      .subcat-item.active {
        background: var(--primary-light);
        color: var(--primary);
        font-weight: 600;
      }
      .subcat-item input[type="checkbox"] {
        accent-color: var(--primary);
        width: 14px;
        height: 14px;
        cursor: pointer;
        flex-shrink: 0;
      }
      .subcat-count {
        margin-left: auto;
        font-size: 11px;
        color: var(--text-light);
      }
      .sidebar-show-all {
        padding: 10px 16px;
        font-size: 12px;
        color: var(--primary);
        font-weight: 600;
        cursor: pointer;
        border-top: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .sidebar-show-all:hover {
        background: var(--bg-light);
      }

      /* ── BREADCRUMB ── */
      .breadcrumb {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: var(--text-light);
        margin-bottom: 16px;
        flex-wrap: wrap;
      }
      .breadcrumb a {
        color: var(--text-light);
        transition: color 0.2s;
      }
      .breadcrumb a:hover {
        color: var(--primary);
      }
      .breadcrumb .sep {
        font-size: 10px;
      }
      .breadcrumb .current {
        color: var(--text-medium);
        font-weight: 500;
      }

      /* ── CATEGORY HEADER ── */
      .category-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 12px;
      }
      .category-title {
        font-size: 22px;
        font-weight: 700;
        color: var(--text-dark);
      }
      .category-title span {
        color: var(--primary);
      }
      .category-count {
        font-size: 13px;
        color: var(--text-medium);
        margin-top: 3px;
      }
      .sort-wrap {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .sort-label {
        font-size: 13px;
        color: var(--text-medium);
        font-weight: 500;
        white-space: nowrap;
      }
      .sort-select {
        padding: 8px 28px 8px 12px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius);
        font-size: 13px;
        font-family: var(--font);
        color: var(--text-dark);
        background: var(--bg-white);
        cursor: pointer;
        outline: none;
        transition: border-color 0.2s;
        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 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
      }
      .sort-select:focus {
        border-color: var(--primary);
      }

      /* ── ACTIVE FILTER CHIPS ── */
      .active-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
      }
      .filter-chip {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 5px 10px;
        background: var(--primary-light);
        border: 1px solid #b2dcd8;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        color: var(--primary);
        cursor: pointer;
      }
      .filter-chip i {
        font-size: 10px;
      }
      .filter-chip:hover {
        background: #c3ebe8;
      }

      /* ── PRODUCT GRID ── */
      .products-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        min-height: 200px;
      }

      /* ── PRODUCT CARD ── */
      .product-card {
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        cursor: pointer;
        transition:
          box-shadow 0.2s,
          transform 0.2s;
        position: relative;
        display: flex;
        flex-direction: column;
      }
      .product-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
      }
      .product-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: var(--primary);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 4px;
        z-index: 1;
      }
      .product-wishlist {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 1;
        border: none;
        transition: background 0.2s;
      }
      .product-wishlist i {
        font-size: 13px;
        color: var(--text-light);
        transition: color 0.2s;
      }
      .product-wishlist:hover i,
      .product-wishlist.wishlisted i {
        color: var(--primary);
      }
      .product-img-wrap {
        width: 100%;
        height: 160px;
        background: var(--bg-light);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }
      .product-img-wrap img {
        width: 100%;
        height: 160px;
        object-fit: cover;
      }
      .product-img-placeholder {
        font-size: 60px;
        opacity: 0.35;
      }
      .product-body {
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        flex: 1;
      }
      .product-name {
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dark);
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .product-pack {
        font-size: 11px;
        color: var(--text-light);
      }
      .product-rating {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 2px;
      }
      .stars {
        display: flex;
        gap: 1px;
      }
      .stars i {
        font-size: 11px;
        color: #f59e0b;
      }
      .stars i.empty {
        color: #d1d5db;
      }
      .rating-value {
        font-size: 12px;
        font-weight: 600;
        color: var(--text-dark);
      }
      .rating-count {
        font-size: 11px;
        color: var(--text-light);
      }
      .product-price-block {
        margin-top: 4px;
      }
      .price-mrp-label {
        font-size: 10px;
        color: var(--text-light);
        text-transform: uppercase;
        letter-spacing: 0.3px;
      }
      .price-row {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-wrap: wrap;
      }
      .price-sale {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-dark);
      }
      .price-off {
        font-size: 11px;
        font-weight: 600;
        color: #059669;
      }
      .btn-add {
        width: 100%;
        padding: 9px;
        border: 1.5px solid var(--primary);
        border-radius: 6px;
        background: transparent;
        color: var(--primary);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        margin-top: auto;
        transition:
          background 0.2s,
          color 0.2s;
      }
      .btn-add:hover {
        background: var(--primary);
        color: #fff;
      }
      .btn-add.added {
        background: var(--primary);
        color: #fff;
      }
      .btn-add:disabled {
        opacity: 0.7;
        cursor: not-allowed;
      }
      .qty-stepper {
        display: none;
        align-items: center;
        justify-content: space-between;
        border: 1.5px solid var(--primary);
        border-radius: 6px;
        overflow: hidden;
        margin-top: auto;
      }
      .qty-stepper.visible {
        display: flex;
      }
      .qty-btn {
        width: 36px;
        height: 36px;
        background: var(--primary);
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
      }
      .qty-btn:hover {
        background: var(--primary-dark);
      }
      .qty-value {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
      }

      /* ── PAGINATION ── */
      .pagination {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-top: 36px;
        flex-wrap: wrap;
      }
      .page-btn {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius);
        background: var(--bg-white);
        color: var(--text-medium);
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        transition:
          border-color 0.2s,
          background 0.2s,
          color 0.2s;
        font-family: var(--font);
      }
      .page-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: var(--primary-light);
      }
      .page-btn.active {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
        font-weight: 700;
      }
      .page-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
        pointer-events: none;
      }

      /* ── EMPTY / ERROR STATES ── */
      .empty-state {
        grid-column: 1 / -1;
        text-align: center;
        padding: 60px 20px;
        color: var(--text-light);
      }
      .empty-state i {
        font-size: 48px;
        margin-bottom: 16px;
        opacity: 0.3;
        display: block;
      }
      .empty-state p {
        font-size: 15px;
      }

      /* ── SKELETON ── */
      @keyframes shimmer {
        0% {
          background-position: -800px 0;
        }
        100% {
          background-position: 800px 0;
        }
      }
      .skeleton {
        background: linear-gradient(
          90deg,
          #f0f0f0 25%,
          #e0e0e0 50%,
          #f0f0f0 75%
        );
        background-size: 800px 100%;
        animation: shimmer 1.5s infinite;
        border-radius: 4px;
      }
      .skel-card {
        background: var(--bg-white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
      }
      .skel-img {
        width: 100%;
        height: 160px;
      }
      .skel-body {
        padding: 12px;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .skel-line {
        height: 12px;
        border-radius: 4px;
      }

      /* ── LAST UPDATED ── */
      .last-updated {
        text-align: right;
        font-size: 11px;
        color: var(--text-light);
        margin-top: 16px;
      }

      /* ── MOBILE FILTER BTN ── */
      .mobile-filter-btn {
        display: none;
        align-items: center;
        gap: 8px;
        padding: 9px 16px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius);
        background: var(--bg-white);
        font-size: 13px;
        font-weight: 500;
        color: var(--text-dark);
        cursor: pointer;
      }
      .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1100;
      }
      .sidebar-overlay.open {
        display: block;
      }
      .sidebar.mobile-open {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        z-index: 1200;
        border-radius: 0;
        overflow-y: auto;
        width: 280px;
        box-shadow: var(--shadow-md);
      }

      /* ── MOBILE MENU DRAWER ── */
      .mobile-menu {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 2000;
      }
      .mobile-menu.open {
        display: block;
      }
      .mobile-overlay-bg {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
      }
      .mobile-drawer {
        position: absolute;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: var(--bg-white);
        padding: 20px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease;
      }
      .mobile-menu.open .mobile-drawer {
        transform: translateX(0);
      }
      .mobile-close {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 20px;
      }
      .mobile-close button {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 22px;
        color: var(--text-dark);
      }
      .mobile-nav-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
        font-weight: 500;
        color: var(--text-dark);
        cursor: pointer;
        text-decoration: none;
      }
      .mobile-nav-item i {
        color: var(--primary);
        font-size: 16px;
        width: 20px;
      }

      /* ── SCROLL TOP ── */
      .scroll-top {
        position: fixed;
        bottom: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: var(--shadow-md);
        opacity: 0;
        pointer-events: none;
        transition:
          opacity 0.3s,
          transform 0.3s;
        z-index: 999;
      }
      .scroll-top.visible {
        opacity: 1;
        pointer-events: all;
      }
      .scroll-top:hover {
        transform: translateY(-3px);
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 1024px) {
        .products-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      @media (max-width: 900px) {
        :root {
          --sidebar-width: 200px;
        }
        .products-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 768px) {
        .page-wrapper {
          grid-template-columns: 1fr;
        }
        .sidebar {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          height: 100vh;
          z-index: 1200;
          border-radius: 0;
          overflow-y: auto;
          width: 280px;
          box-shadow: var(--shadow-md);
        }
        .sidebar.mobile-open {
          display: block;
        }
        .mobile-filter-btn {
          display: flex;
        }
        .nav-links {
          display: none;
        }
        .menu-toggle {
          display: flex;
        }
        .category-header {
          flex-direction: column;
          align-items: flex-start;
        }
        .products-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 12px;
        }
      }
      @media (max-width: 480px) {
        .logo-icon{
          width: 50px;
        }
        .logo-icon img {
        width: 50px;
      }
        .products-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 10px;
        }
        .product-img-wrap,
        .product-img-wrap img {
          height: 120px;
        }
      }
    