    :root {
      --navy:       #0B1F4B;
      --navy-mid:   #122560;
      --teal:       #00A693;
      --teal-light: #00BFA8;
      --gold:       #F5A623;
      --surface:    #F4F8FF;
      --text-muted: #6B7A99;
      --border:     #DDE4F0;
      --white:      #FFFFFF;
      --footer-bg:  #080F2A;
    }
    *, *::before, *::after { box-sizing: border-box; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--surface);
      color: #1a2540;
      margin: 0;
    }

    .top-header {
      background: var(--navy);
      color: rgba(255,255,255,.82);
      font-size: .78rem;
      font-weight: 400;
      letter-spacing: .01em;
      padding: 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
      position: relative;
      overflow: hidden;
    }
    .top-header .inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 40px;
      gap: 12px;
    }

    .offer-ticker {
      display: flex;
      align-items: center;
      gap: 0;
      overflow: hidden;
      min-width: 0;
      flex: 1;
    }
    .ticker-label {
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
      color: #fff;
      font-weight: 700;
      font-size: .7rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 3px 12px 3px 10px;
      border-radius: 20px 0 0 20px;
      white-space: nowrap;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .ticker-label i { font-size: .75rem; }
    .ticker-track {
      flex: 1;
      overflow: hidden;
      background: rgba(0,166,147,.10);
      border-radius: 0 20px 20px 0;
      height: 26px;
      display: flex;
      align-items: center;
      padding: 0 10px;
    }
    .ticker-scroll {
      display: flex;
      gap: 48px;
      animation: ticker 28s linear infinite;
      white-space: nowrap;
      will-change: transform;
    }
    .ticker-scroll span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,.85);
      font-size: .75rem;
    }
    .ticker-scroll span i { color: var(--gold); font-size: .7rem; }
    @keyframes ticker {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ── Right-side top-bar items */
    .top-right {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-shrink: 0;
    }
    .top-contact-item {
      display: flex;
      align-items: center;
      gap: 5px;
      color: rgba(255,255,255,.75);
      text-decoration: none;
      font-size: .76rem;
      transition: color .2s;
    }
    .top-contact-item i { color: var(--teal); font-size: .85rem; }
    .top-contact-item:hover { color: #fff; }
    .top-divider {
      width: 1px;
      height: 16px;
      background: rgba(255,255,255,.15);
    }
    .top-social a {
      color: rgba(255,255,255,.55);
      font-size: .9rem;
      margin-left: 8px;
      transition: color .18s, transform .18s;
      display: inline-block;
    }
    .top-social a:hover { color: var(--teal-light); transform: translateY(-1px); }
    .top-lang {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: .74rem;
      color: rgba(255,255,255,.65);
      cursor: pointer;
      padding: 2px 8px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 4px;
      transition: border-color .2s;
    }
    .top-lang:hover { border-color: var(--teal); color: #fff; }

    .main-header {
      background: var(--white);
      border-bottom: 2px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1030;
      box-shadow: 0 2px 20px rgba(11,31,75,.07);
    }
    .main-header .inner {
      display: flex;
      align-items: center;
      height: 70px;
      gap: 0;
    }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
      margin-right: 32px;
    }
    .logo-icon {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .logo-icon svg { width: 24px; height: 24px; }
    .logo-text { line-height: 1.1; }
    .logo-text .brand-name {
      font-weight: 800;
      font-size: 1.2rem;
      color: var(--navy);
      letter-spacing: -.02em;
    }
    .logo-text .brand-name span { color: var(--teal); }
    .logo-text .brand-tag {
      font-size: .6rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .header-search {
      flex: 1;
      max-width: 420px;
      margin: 0 auto;
    }
    .search-wrap {
      display: flex;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color .2s, box-shadow .2s;
    }
    .search-wrap:focus-within {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(0,166,147,.1);
    }
    .search-select {
      border: none;
      background: var(--surface);
      font-size: .78rem;
      font-weight: 500;
      color: var(--navy);
      padding: 0 10px;
      outline: none;
      font-family: inherit;
      border-right: 1.5px solid var(--border);
      cursor: pointer;
      flex-shrink: 0;
    }
    .search-input {
      flex: 1;
      border: none;
      padding: 9px 12px;
      font-size: .85rem;
      font-family: inherit;
      outline: none;
      color: #1a2540;
      background: #fff;
    }
    .search-input::placeholder { color: #a0aec0; }
    .search-btn {
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
      border: none;
      color: #fff;
      padding: 0 16px;
      font-size: .95rem;
      cursor: pointer;
      transition: opacity .2s;
    }
    .search-btn:hover { opacity: .88; }

    .main-nav {
      display: flex;
      align-items: center;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 2px;
      margin-left: 28px;
    }
    .main-nav .nav-item { position: relative; }
    .main-nav .nav-link-item {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 14px;
      font-size: .865rem;
      font-weight: 500;
      color: #2d3a5a;
      text-decoration: none;
      border-radius: 7px;
      transition: background .18s, color .18s;
      white-space: nowrap;
      cursor: pointer;
    }
    .main-nav .nav-link-item:hover,
    .main-nav .nav-link-item.active {
      background: var(--surface);
      color: var(--teal);
    }
    .main-nav .nav-link-item.active {
      font-weight: 600;
    }
    .main-nav .nav-link-item i.chevron {
      font-size: .65rem;
      opacity: .6;
      transition: transform .2s;
    }
    .main-nav .nav-item:hover .nav-link-item i.chevron { transform: rotate(180deg); }

    .mega-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      box-shadow: 0 12px 48px rgba(11,31,75,.13);
      padding: 20px;
      display: none;
      width: 580px;
      z-index: 1000;
    }
    .mega-dropdown::before {
      content: '';
      position: absolute;
      top: -7px;
      left: 50%;
      transform: translateX(-50%);
      width: 14px;
      height: 14px;
      background: #fff;
      border-left: 1px solid var(--border);
      border-top: 1px solid var(--border);
      transform: translateX(-50%) rotate(45deg);
    }
    .main-nav .nav-item:hover .mega-dropdown { display: block; }
    .dropdown-heading {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-muted);
      padding: 0 6px 10px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 12px;
    }
    .dropdown-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .dropdown-grid li a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 8px;
      font-size: .82rem;
      color: #2d3a5a;
      text-decoration: none;
      border-radius: 7px;
      font-weight: 400;
      transition: background .15s, color .15s;
    }
    .dropdown-grid li a:hover {
      background: var(--surface);
      color: var(--teal);
    }
    .dropdown-grid li a .cat-icon {
      width: 28px;
      height: 28px;
      background: var(--surface);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--teal);
      font-size: .8rem;
      flex-shrink: 0;
      transition: background .15s;
    }
    .dropdown-grid li a:hover .cat-icon { background: rgba(0,166,147,.12); }
    .dropdown-footer {
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .dropdown-footer a {
      font-size: .78rem;
      font-weight: 600;
      color: var(--teal);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 20px;
      flex-shrink: 0;
    }
    .btn-post-buy {
      background: linear-gradient(135deg, var(--gold) 0%, #e8931c 100%);
      color: #fff;
      font-weight: 700;
      font-size: .8rem;
      padding: 9px 18px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      white-space: nowrap;
      letter-spacing: .01em;
      transition: transform .15s, box-shadow .15s;
      box-shadow: 0 3px 12px rgba(245,166,35,.35);
    }
    .btn-post-buy:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(245,166,35,.45);
    }
    .btn-login {
      background: transparent;
      color: var(--navy);
      font-weight: 600;
      font-size: .82rem;
      padding: 8px 16px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      white-space: nowrap;
      transition: border-color .18s, color .18s;
    }
    .btn-login:hover { border-color: var(--teal); color: var(--teal); }

    .hamburger-btn {
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      width: 40px;
      height: 40px;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 1.15rem;
      color: var(--navy);
      cursor: pointer;
      flex-shrink: 0;
      transition: border-color .2s;
    }
    .hamburger-btn:hover { border-color: var(--teal); color: var(--teal); }

    .offcanvas.mobile-nav {
      width: 300px !important;
      border-right: none;
    }
    .offcanvas-header-custom {
      background: var(--navy);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .offcanvas-header-custom .close-btn {
      background: rgba(255,255,255,.1);
      border: none;
      color: #fff;
      border-radius: 7px;
      width: 32px;
      height: 32px;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mobile-nav .offcanvas-body { padding: 0; }
    .mobile-search {
      padding: 14px 16px;
      border-bottom: 1px solid var(--border);
      background: var(--surface);
    }
    .mobile-search input {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 9px 14px 9px 36px;
      font-size: .85rem;
      font-family: inherit;
      outline: none;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23a0aec0' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat 12px center;
    }
    .mobile-nav-list { list-style: none; margin: 0; padding: 8px 0; }
    .mobile-nav-list li a,
    .mobile-nav-list li .mobile-nav-link {
      display: flex;
      align-items: center;
      /*justify-content: space-between;*/
      padding: 13px 20px;
      font-size: .9rem;
      font-weight: 500;
      color: #1a2540;
      text-decoration: none;
      cursor: pointer;
      border-bottom: 1px solid var(--border);
      transition: background .15s, color .15s;
    }
    .mobile-nav-list li a:hover,
    .mobile-nav-list li .mobile-nav-link:hover {
      background: var(--surface);
      color: var(--teal);
    }
    .mobile-nav-list li a i,
    .mobile-nav-list li .mobile-nav-link i { font-size: .75rem; color: var(--text-muted); }
    .mobile-cat-list {
      background: var(--surface);
      list-style: none;
      margin: 0;
      padding: 4px 0 4px 20px;
      display: none;
    }
    .mobile-cat-list.show { display: block; }
    .mobile-cat-list li a {
      font-size: .83rem;
      font-weight: 400;
      padding: 9px 20px;
      border-bottom: 1px solid var(--border);
      color: #4a5568;
    }
    .mobile-bottom-actions {
      padding: 16px;
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .mobile-bottom-actions .btn-post-buy,
    .mobile-bottom-actions .btn-login {
      width: 100%;
      text-align: center;
      padding: 11px;
    }

    .demo-hero {
      background: linear-gradient(135deg, var(--navy) 0%, #1a3a7c 50%, #0d2d6e 100%);
      color: #fff;
      padding: 72px 0;
      text-align: center;
    }
    .demo-hero h1 {
      font-size: 2.4rem;
      font-weight: 800;
      letter-spacing: -.03em;
      margin-bottom: 12px;
    }
    .demo-hero h1 span { color: var(--teal); }
    .demo-hero p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 520px; margin: 0 auto 28px; }
    .demo-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
    .demo-stat { text-align: center; }
    .demo-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
    .demo-stat .lbl { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; }


    .site-footer {
      background: var(--footer-bg);
      color: rgba(255,255,255,.65);
      font-size: .875rem;
    }
    .footer-top {
      padding: 60px 0 40px;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .footer-brand .logo-icon { margin-bottom: 16px; }
    .footer-brand p {
      font-size: .83rem;
      line-height: 1.7;
      color: rgba(255,255,255,.5);
      max-width: 260px;
      margin-bottom: 20px;
    }
    .footer-cert-badges {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .cert-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 10px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 6px;
      font-size: .7rem;
      font-weight: 600;
      color: rgba(255,255,255,.6);
      letter-spacing: .04em;
    }
    .cert-badge i { color: var(--gold); }

    .footer-heading {
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.9);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-heading::after {
      content: '';
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, rgba(0,166,147,.4), transparent);
    }
    .footer-links { list-style: none; margin: 0; padding: 0; }
    .footer-links li { margin-bottom: 9px; }
    .footer-links li a {
      color: rgba(255,255,255,.48);
      text-decoration: none;
      font-size: .83rem;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: color .18s, gap .18s;
    }
    .footer-links li a i { font-size: .55rem; color: var(--teal); opacity: 0; transition: opacity .2s; }
    .footer-links li a:hover { color: rgba(255,255,255,.9); gap: 10px; }
    .footer-links li a:hover i { opacity: 1; }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
    }
    .footer-contact-item .icon-wrap {
      width: 36px;
      height: 36px;
      background: rgba(0,166,147,.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--teal);
      font-size: .9rem;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .footer-contact-item .detail strong {
      display: block;
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: rgba(255,255,255,.4);
      margin-bottom: 2px;
    }
    .footer-contact-item .detail span {
      font-size: .84rem;
      color: rgba(255,255,255,.75);
    }

    .footer-newsletter {
      background: rgba(0,166,147,.07);
      border: 1px solid rgba(0,166,147,.18);
      border-radius: 12px;
      padding: 22px;
      margin-top: 4px;
    }
    .footer-newsletter h6 {
      font-size: .88rem;
      font-weight: 700;
      color: rgba(255,255,255,.9);
      margin-bottom: 6px;
    }
    .footer-newsletter p {
      font-size: .76rem;
      color: rgba(255,255,255,.45);
      margin-bottom: 14px;
      line-height: 1.5;
    }
    .newsletter-form {
      display: flex;
      gap: 0;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.1);
    }
    .newsletter-form input {
      flex: 1;
      background: rgba(255,255,255,.06);
      border: none;
      padding: 10px 14px;
      font-size: .82rem;
      color: #fff;
      font-family: inherit;
      outline: none;
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
    .newsletter-form button {
      background: var(--teal);
      border: none;
      color: #fff;
      padding: 10px 16px;
      font-size: .82rem;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: background .2s;
      white-space: nowrap;
    }
    .newsletter-form button:hover { background: var(--teal-light); }

    .footer-social {
      display: flex;
      gap: 8px;
      margin-top: 20px;
    }
    .footer-social a {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 8px;
      color: rgba(255,255,255,.5);
      font-size: .9rem;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: background .18s, color .18s, border-color .18s, transform .18s;
    }
    .footer-social a:hover {
      background: var(--teal);
      border-color: var(--teal);
      color: #fff;
      transform: translateY(-2px);
    }

    .footer-middle {
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .partner-logos {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .partner-label {
      font-size: .7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: rgba(255,255,255,.3);
      white-space: nowrap;
    }
    .partner-logo-item {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 8px;
      padding: 8px 16px;
      font-size: .78rem;
      font-weight: 600;
      color: rgba(255,255,255,.35);
      transition: color .18s, border-color .18s;
      white-space: nowrap;
    }
    .partner-logo-item:hover { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.15); }

    .footer-bottom {
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-bottom-copy {
      font-size: .77rem;
      color: rgba(255,255,255,.3);
    }
    .footer-bottom-copy strong { color: var(--teal); font-weight: 600; }
    .footer-bottom-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer-bottom-links a {
      font-size: .77rem;
      color: rgba(255,255,255,.3);
      text-decoration: none;
      transition: color .18s;
    }
    .footer-bottom-links a:hover { color: rgba(255,255,255,.75); }
    .footer-payment-badges {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .payment-badge {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 5px;
      padding: 4px 9px;
      font-size: .68rem;
      font-weight: 600;
      color: rgba(255,255,255,.4);
      letter-spacing: .04em;
    }

 
    @media (max-width: 991.98px) {
      .top-header .top-contact-item.hide-sm,
      .top-header .top-divider.hide-sm { display: none; }
      .top-header .top-lang { display: none; }
      .main-nav { display: none; }
      .header-search { display: none; }
      .header-actions .btn-post-buy,
      .header-actions .btn-login { display: none; }
      .hamburger-btn { display: flex !important; }
      .main-header .inner {
        justify-content: space-between;
      }
      .brand-logo { margin-right: 0; }
    }
    @media (max-width: 575.98px) {
      .top-header .top-social { display: none; }
      .offer-ticker { max-width: 180px; }
      .demo-hero h1 { font-size: 1.7rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
      .footer-payment-badges { display: none; }
    }
        .breadcrumb-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 10px 0;
      font-size: .8rem;
    }
    .breadcrumb-bar .breadcrumb { margin: 0; padding: 0; background: none; }
    .breadcrumb-item a { color: var(--teal); }
    .breadcrumb-item.active { color: var(--text-muted); }
    .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

    .cat-hero {
      background: linear-gradient(135deg, var(--navy) 0%, #1a3a7c 100%);
      padding: 28px 0 22px;
      color: #fff;
      border-bottom: 3px solid var(--teal);
    }
    .cat-hero h1 { font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; margin: 0 0 4px; }
    .cat-hero p  { font-size: .83rem; color: rgba(255,255,255,.6); margin: 0; }
    .result-pill {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(0,166,147,.18); border: 1px solid rgba(0,166,147,.35);
      color: var(--teal-light); font-size: .74rem; font-weight: 600;
      padding: 4px 12px; border-radius: 20px;
    }
    .cat-sort-select {
      border: 1.5px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08);
      color: #fff; font-family: inherit; font-size: .8rem; padding: 7px 12px;
      border-radius: 7px; outline: none; cursor: pointer;
    }
    .cat-sort-select option { background: var(--navy); color: #fff; }

    .subcat-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      overflow-x: auto;
      white-space: nowrap;
    }
    .subcat-bar::-webkit-scrollbar { height: 3px; }
    .subcat-bar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
    .subcat-pill {
      display: inline-block; padding: 6px 16px; border-radius: 20px;
      font-size: .78rem; font-weight: 500; margin-right: 6px;
      text-decoration: none; transition: all .18s; border: 1.5px solid var(--border);
      color: var(--text-muted);
    }
    .subcat-pill:hover, .subcat-pill.active {
      background: var(--teal); border-color: var(--teal); color: #fff;
    }

    .listing-layout {
      display: grid;
      grid-template-columns: 248px 1fr;
      gap: 20px;
      padding: 22px 0 40px;
    }
    @media(max-width: 991.98px) { .listing-layout { grid-template-columns: 1fr; } }

    .sidebar-panel {
      background: var(--white); border: 1px solid var(--border); border-radius: 10px;
      overflow: hidden; height: fit-content; position: sticky; top: 76px;
    }
    .sidebar-head {
      background: var(--navy); color: #fff; padding: 12px 16px;
      font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      display: flex; align-items: center; gap: 7px;
    }
    .filter-section { border-bottom: 1px solid var(--border); padding: 14px 16px; }
    .filter-section:last-child { border-bottom: none; }
    .filter-title {
      font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
      color: var(--text-muted); margin-bottom: 10px;
      display: flex; justify-content: space-between; align-items: center; cursor: pointer;
    }
    .filter-title a { font-size: .7rem; font-weight: 400; color: var(--teal); text-transform: none; letter-spacing: 0; }
    .filter-check { display: flex; flex-direction: column; gap: 7px; }
    .filter-check label {
      display: flex; align-items: center; gap: 8px;
      font-size: .82rem; color: #3a4a6b; cursor: pointer;
    }
    .filter-check input[type=checkbox] { accent-color: var(--teal); width: 14px; height: 14px; }
    .filter-check .count { margin-left: auto; font-size: .72rem; color: var(--text-muted); }
    .price-range-row { display: flex; gap: 8px; align-items: center; }
    .price-input {
      flex: 1; border: 1.5px solid var(--border); border-radius: 6px;
      padding: 7px 10px; font-size: .8rem; font-family: inherit; outline: none;
    }
    .price-input:focus { border-color: var(--teal); }
    .btn-filter-apply {
      width: 100%; background: var(--teal); color: #fff; border: none; border-radius: 7px;
      padding: 9px; font-size: .82rem; font-weight: 600; font-family: inherit;
      cursor: pointer; margin-top: 10px; transition: background .2s;
    }
    .btn-filter-apply:hover { background: var(--teal-light); }

    .products-toolbar {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 14px; flex-wrap: wrap; gap: 8px;
    }
    .toolbar-left { font-size: .82rem; color: var(--text-muted); }
    .toolbar-left strong { color: var(--text-main); }
    .view-toggle { display: flex; gap: 4px; }
    .view-btn {
      width: 32px; height: 32px; border: 1.5px solid var(--border); background: var(--white);
      border-radius: 6px; display: flex; align-items: center; justify-content: center;
      font-size: .9rem; color: var(--text-muted); cursor: pointer; transition: all .18s;
    }
    .view-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

    .product-card {
      background: var(--white); border: 1px solid var(--border); border-radius: 10px;
      overflow: hidden; transition: box-shadow .22s, transform .22s;
      display: flex; flex-direction: column; height: 100%;
    }
    .product-card:hover { box-shadow: 0 8px 32px rgba(11,31,75,.1); transform: translateY(-2px); }
    .card-img-wrap { position: relative; background: #f0f4fb; overflow: hidden; aspect-ratio: 4/3; }
    .card-img-wrap img { width: 100%; height: 100%; object-fit: fill; transition: transform .35s; }
    .product-card:hover .card-img-wrap img { transform: scale(1.04); }
    .card-badge {
      position: absolute; top: 8px; left: 8px; z-index: 2;
      font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
      padding: 3px 8px; border-radius: 4px;
    }
    .badge-verified { background: var(--teal); color: #fff; }
    .badge-gmp      { background: var(--gold); color: #fff; }
    .badge-new      { background: var(--danger); color: #fff; }
    .card-wishlist {
      position: absolute; top: 8px; right: 8px; z-index: 2;
      width: 30px; height: 30px; background: rgba(255,255,255,.9); border-radius: 50%;
      display: flex; align-items: center; justify-content: center; cursor: pointer;
      font-size: .9rem; color: #c0c8d8; transition: color .2s; border: 1px solid var(--border);
    }
    .card-wishlist:hover { color: var(--danger); }
    .card-body-inner { padding: 14px; flex: 1; display: flex; flex-direction: column; }
    .card-cat-tag { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--teal); margin-bottom: 4px; }
    .card-title { font-size: .9rem; font-weight: 700; color: var(--text-main); margin-bottom: 5px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .card-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
    .card-price { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
    .card-price small { font-size: .7rem; font-weight: 400; color: var(--text-muted); }
    .card-moq { font-size: .72rem; color: var(--text-muted); margin-bottom: 10px; }
    .card-moq strong { color: var(--text-main); }
    .card-vendor {
      display: flex; align-items: center; gap: 6px; padding: 10px 0 0;
      border-top: 1px solid var(--border); margin-top: auto;
    }
    .vendor-avatar {
      width: 28px; height: 28px; background: linear-gradient(135deg, var(--navy), var(--teal));
      border-radius: 6px; display: flex; align-items: center; justify-content: center;
      font-size: .65rem; font-weight: 700; color: #fff; flex-shrink: 0;
    }
    .vendor-info { min-width: 0; flex: 1; }
    .vendor-name { font-size: .76rem; font-weight: 600; color: var(--text-main); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .vendor-loc { font-size: .7rem; color: var(--text-muted); display: flex; align-items: center; gap: 3px; }
    .vendor-verified-icon { color: var(--teal); font-size: .7rem; }
    .card-actions { display: flex; gap: 8px; padding: 10px 14px 14px; }
    .btn-enquire {
      flex: 1; background: var(--teal); color: #fff; border: none; border-radius: 7px;
      padding: 9px 10px; font-size: .8rem; font-weight: 600; font-family: inherit; cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 5px;
      transition: background .18s, transform .15s;
    }
    .btn-enquire:hover { background: var(--teal-light); transform: translateY(-1px); }
    .btn-readmore {
      flex: 1; background: transparent; color: var(--navy); border: 1.5px solid var(--border);
      border-radius: 7px; padding: 9px 10px; font-size: .8rem; font-weight: 600;
      font-family: inherit; cursor: pointer; display: flex; align-items: center;
      justify-content: center; gap: 5px; transition: border-color .18s, color .18s;
      text-decoration: none;
    }
    .btn-readmore:hover { border-color: var(--navy); color: var(--navy); }

    .empty-state {
      text-align: center; padding: 60px 20px;
      background: var(--white); border: 1px dashed var(--border); border-radius: 12px;
    }
    .empty-state i { font-size: 3rem; color: var(--border); margin-bottom: 14px; display: block; }
    .empty-state h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .empty-state p  { font-size: .84rem; color: var(--text-muted); margin: 0; }

    /* Pagination */
    .pagination-wrap { margin-top: 28px; display: flex; justify-content: center; }
    .pagination .page-link {
      color: var(--navy); border-color: var(--border); font-size: .84rem;
      padding: 8px 14px; font-family: inherit;
    }
    .pagination .page-item.active .page-link { background: var(--teal); border-color: var(--teal); color: #fff; }
    .pagination .page-link:hover { background: var(--surface); color: var(--teal); }

    .enquiry-modal .modal-header {
      background: linear-gradient(135deg, var(--navy) 0%, #1a3a7c 100%);
      color: #fff; border-bottom: none; padding: 20px 24px 16px;
    }
    .enquiry-modal .modal-title { font-weight: 700; font-size: 1rem; }
    .enquiry-modal .btn-close { filter: invert(1) opacity(.7); }
    .enquiry-modal .modal-body { padding: 20px 24px; }
    .product-preview-strip {
      background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
      padding: 12px; display: flex; gap: 12px; align-items: center; margin-bottom: 18px;
    }
    .product-preview-strip img { width: 52px; height: 52px; object-fit: fill; border-radius: 6px; }
    .product-preview-strip .pname { font-size: .84rem; font-weight: 600; color: var(--text-main); }
    .product-preview-strip .pvendor { font-size: .76rem; color: var(--text-muted); }
    .form-label-sm { font-size: .78rem; font-weight: 600; color: #3a4a6b; margin-bottom: 4px; display: block; }
    .form-control-ph {
      border: 1.5px solid var(--border); border-radius: 7px; font-family: inherit;
      font-size: .85rem; padding: 9px 12px; width: 100%; outline: none; transition: border-color .18s;
    }
    .form-control-ph:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,166,147,.1); }
    .btn-submit-enquiry {
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
      color: #fff; border: none; border-radius: 8px; padding: 11px 28px;
      font-weight: 700; font-size: .88rem; font-family: inherit; cursor: pointer;
      width: 100%; transition: opacity .2s;
    }
    .btn-submit-enquiry:hover { opacity: .88; }
    .enquiry-note { font-size: .72rem; color: var(--text-muted); text-align: center; margin-top: 10px; }
    .enquiry-note i { color: var(--teal); }

    .mobile-fixed-enquiry {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
      background: var(--white); border-top: 1px solid var(--border);
      padding: 10px 16px 12px;
      box-shadow: 0 -4px 20px rgba(11,31,75,.1);
    }
    .mfe-inner { display: flex; gap: 10px; align-items: center; }
    .mfe-call {
      width: 46px; height: 46px; background: var(--surface); border: 1.5px solid var(--border);
      border-radius: 9px; display: flex; align-items: center; justify-content: center;
      font-size: 1.05rem; color: var(--navy); flex-shrink: 0; cursor: pointer;
      transition: border-color .18s; text-decoration: none;
    }
    .mfe-call:hover { border-color: var(--teal); color: var(--teal); }
    .mfe-whatsapp {
      width: 46px; height: 46px; background: #25D366; border: none;
      border-radius: 9px; display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: #fff; flex-shrink: 0; cursor: pointer; text-decoration: none;
    }
    .mfe-enquire {
      flex: 1; height: 46px; background: linear-gradient(135deg, var(--teal), var(--teal-light));
      color: #fff; border: none; border-radius: 9px; font-weight: 700; font-size: .88rem;
      font-family: inherit; cursor: pointer; display: flex; align-items: center;
      justify-content: center; gap: 6px;
    }
    @media(max-width: 767.98px) {
      .mobile-fixed-enquiry { display: block; }
      body { padding-bottom: 80px; }
    }

    .mobile-filter-fab {
      display: none;
      position: fixed; bottom: 80px; left: 16px; z-index: 900;
      background: var(--navy); color: #fff; border: none; border-radius: 50px;
      padding: 10px 18px; font-size: .82rem; font-weight: 600; font-family: inherit;
      box-shadow: 0 4px 18px rgba(11,31,75,.3); cursor: pointer;
      align-items: center; gap: 6px;
    }
    @media(max-width: 991.98px) {
      .mobile-filter-fab { display: flex; }
      .sidebar-panel { display: none; }
    }
    .cat-option input[type="radio"]{
    appearance:none;
    width:18px;
    height:18px;
    border:2px solid #ccc;
    border-radius:3px; /* checkbox look */
    position:relative;
}

.cat-option input[type="radio"]:checked{
    background:#198754;
    border-color:#198754;
}

.cat-option input[type="radio"]:checked::after{
    content:"✓";
    color:#fff;
    position:absolute;
    left:2px;
    top:-3px;
    font-size:14px;
}
    .nav-link-item.active{
    color:var(--teal) !important;
    font-weight:700;
    position:relative;
}

.nav-link-item.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:var(--teal);
}

.active-category{
    color:var(--teal) !important;
    font-weight:600 !important;
}

.active-category .cat-icon{
    color:var(--teal);
}