﻿    :root {
      --gold: #da5104;
      --gold-light: #b84300;
      --dark: #111010;
      --dark2: #1a1a1a;
      --dark3: #252525;
      --cream: #f5f0e8;
      --cream2: #ede5d5;
      --muted: #777;
      --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    /* Full-project: remove underline from all links */
    a,
    a:hover,
    a:focus,
    a:active {
      text-decoration: none !important;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--dark);
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }

    @media (max-width: 991.98px) {
      body {
        padding-bottom: 64px;
      }
    }

    /* ANNOUNCEMENT */
    .announce-bar {
      background: var(--dark);
      color: var(--gold-light);
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 8px 0;
      text-align: center;
    }

    /* HEADER */
    .site-header {
      background: var(--cream);
      border-bottom: 1px solid var(--cream2);
      position: sticky;
      top: 0;
      z-index: 1030;
    }

    .header-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      gap: 16px;
      padding: 0 24px;
    }

    @media (max-width: 991.98px) {
      .header-wrap {
        height: 60px;
        gap: 4px;
        padding: 0 14px;
      }
    }

    .logo {
      flex: 1;
      text-decoration: none;
      white-space: nowrap;
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 40px;
      width: auto;
      display: block;
    }

    @media (max-width: 575.98px) {
      .logo img {
        height: 32px;
      }
    }

    /* â”€â”€ SEARCH WRAPPER (Desktop) â”€â”€ */
    .search-wrapper {
      flex: 0 1 650px;
      margin: 0 auto;
      position: relative;
      z-index: 1050;
    }

    @media (max-width: 991.98px) {
      .search-wrapper {
        display: none !important;
      }
    }

    .desktop-search {
      display: flex;
      align-items: center;
      background: #fff;
      border: 1.5px solid #ddd;
      border-radius: 4px;
      padding: 0 0 0 14px;
      height: 42px;
      gap: 0;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .desktop-search:focus-within {
      border-color: var(--gold);
      box-shadow: 0 0 0 4px rgba(218,81,4,0.1);
    }

    .desktop-search .search-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-right: 8px;
      color: #bbb;
      transition: color 0.2s;
      font-size: 14px;
    }

    .desktop-search:focus-within .search-icon {
      color: var(--gold);
    }

    .desktop-search input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--dark);
      min-width: 0;
    }

    .desktop-search input::placeholder {
      color: #bbb;
    }

    .desktop-search .clear-btn {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: none;
      background: #f0ece3;
      color: #888;
      font-size: 11px;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      margin-right: 4px;
      flex-shrink: 0;
      transition: background 0.15s;
    }

    .desktop-search .clear-btn.visible { display: flex; }
    .desktop-search .clear-btn:hover { background: #ddd; }

    .desktop-search .search-btn {
      background: #2d2a29;
      color: #fff;
      border: none;
      border-radius: 0 4px 4px 0;
      padding: 0 18px;
      height: 42px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      flex-shrink: 0;
      transition: opacity 0.15s, background 0.2s;
      letter-spacing: 0.5px;
    }

    .desktop-search .search-btn:hover { opacity: 0.85; }
    .desktop-search .search-btn:active { opacity: 0.75; }

    /* â”€â”€ SEARCH DROPDOWN â”€â”€ */
    .search-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      background: #fff;
      border: 1px solid #e2e5ef;
      border-radius: 12px;
      overflow: hidden;
      z-index: 999;
      display: none;
      box-shadow: 0 8px 32px rgba(15,21,35,0.12), 0 2px 8px rgba(15,21,35,0.06);
    }

    .search-dropdown.open { display: block; }

    .search-tabs {
      display: flex;
      border-bottom: 1px solid #e2e5ef;
      padding: 0 12px;
      overflow-x: auto;
      scrollbar-width: none;
      background: #fff;
    }

    .search-tabs::-webkit-scrollbar { display: none; }

    .search-tab {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 12px 12px 10px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 400;
      color: #888;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      margin-bottom: -1px;
      transition: color 0.15s, border-color 0.15s;
    }

    .search-tab i { font-size: 13px; }

    .search-tab:hover { color: var(--dark); }

    .search-tab.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
      font-weight: 500;
    }

    .search-loading {
      display: none;
      padding: 20px;
      text-align: center;
    }

    .search-loading span {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #bbb;
      margin: 0 3px;
      animation: searchBlink 1.1s infinite;
    }

    .search-loading span:nth-child(2) { animation-delay: 0.18s; }
    .search-loading span:nth-child(3) { animation-delay: 0.36s; }

    @keyframes searchBlink {
      0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
      40%            { transform: translateY(-6px); opacity: 1; }
    }

    .search-results-list {
      padding: 6px 0;
      max-height: 360px;
      overflow-y: auto;
    }

    .search-result-item {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 10px 18px;
      cursor: pointer;
      transition: background 0.1s;
      text-decoration: none;
      color: inherit;
    }

    .search-result-item:hover { background: #f5f0e8; }

    .search-result-avatar {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 600;
      flex-shrink: 0;
      overflow: hidden;
    }

    .search-result-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .search-result-body { flex: 1; min-width: 0; }

    .search-result-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.3;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .search-result-name mark {
      background: rgba(218,81,4,0.2);
      color: var(--dark);
      font-weight: 600;
    }

    .search-result-sub {
      font-size: 11px;
      color: #999;
      margin-top: 1px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .search-empty {
      display: none;
      padding: 28px 20px;
      text-align: center;
    }

    .search-empty p {
      font-size: 13px;
      color: #888;
    }

    .search-dropdown-footer {
      border-top: 1px solid #e2e5ef;
      padding: 8px 18px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      color: #bbb;
    }

    .search-dropdown-footer i { font-size: 10px; }

    .search-kbd {
      display: inline-flex;
      align-items: center;
      background: #f0ece3;
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 1px 5px;
      font-size: 10px;
      color: #888;
      margin: 0 2px;
      font-family: var(--font-body);
    }

    /* Header icons */
    .header-icons {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0;
      margin-left: auto;
    }

    .hicon {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      background: none;
      border: none;
      color: var(--dark);
      font-size: 10px;
      letter-spacing: .8px;
      cursor: pointer;
      padding: 6px 10px;
      text-decoration: none;
      position: relative;
      transition: color .2s;
      white-space: nowrap;
      font-family: var(--font-body);
    }

    .hicon:hover,
    .hicon:focus {
      color: var(--gold);
    }

    .hicon i {
      font-size: 19px;
    }

    .hicon .lbl {
      display: block;
    }

    .hicon .cart-badge {
      position: absolute;
      top: 2px;
      right: 4px;
      background: var(--gold);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      min-width: 16px;
      height: 16px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 3px;
      line-height: 1;
    }

    @media (max-width: 991.98px) {
      .hicon .lbl {
        display: none;
      }

      .hicon {
        padding: 6px 8px;
      }

      .hd-account,
      .hd-wishlist {
        display: none !important;
      }
    }

    /* Mobile search btn */
    .mobile-search-toggle {
      display: none !important;
    }

    @media (max-width: 991.98px) {
      .mobile-search-toggle {
        display: flex !important;
      }
    }

    /* Hamburger */
    .hamburger-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      flex-shrink: 0;
    }

    .hamburger-btn span {
      display: block;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: .3s;
    }

    .hamburger-btn span:nth-child(1) {
      width: 22px;
    }

    .hamburger-btn span:nth-child(2) {
      width: 15px;
    }

    .hamburger-btn span:nth-child(3) {
      width: 22px;
    }

    @media (max-width: 991.98px) {
      .hamburger-btn {
        display: flex;
      }
    }

    /* â”€â”€ MOBILE SEARCH OVERLAY â”€â”€ */
    .search-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1050;
      background: #fff;
      flex-direction: column;
    }

    .search-overlay.show {
      display: flex;
    }

    .search-overlay-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 16px;
      border-bottom: 1px solid #eee;
      flex-shrink: 0;
    }

    .search-overlay-head span {
      font-weight: 600;
      font-size: 14px;
      font-family: var(--font-body);
    }

    .search-close-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: none;
      background: var(--cream2);
      color: #888;
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, color .2s;
    }

    .search-close-btn:hover {
      background: var(--gold);
      color: #fff;
    }

    .search-overlay-form {
      display: flex;
      align-items: center;
      border-top: 3px solid var(--gold);
      padding: 8px 12px;
      gap: 8px;
      flex-shrink: 0;
      background: #fafafa;
    }

    .search-overlay-form .search-icon-mob {
      color: #bbb;
      font-size: 16px;
      flex-shrink: 0;
    }

    .search-overlay-form input {
      flex: 1;
      border: none;
      outline: none;
      padding: 10px 0;
      font-family: var(--font-body);
      font-size: 15px;
      min-width: 0;
      background: transparent;
    }

    .search-overlay-form input::placeholder {
      color: #bbb;
    }

    .search-overlay-form .mob-clear-btn {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: none;
      background: #f0ece3;
      color: #888;
      font-size: 11px;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.15s;
    }

    .search-overlay-form .mob-clear-btn.visible { display: flex; }
    .search-overlay-form .mob-clear-btn:hover { background: #ddd; }

    .search-overlay-form .mob-search-go {
      background: var(--dark);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 9px 20px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.2s;
    }

    .search-overlay-form .mob-search-go:hover { background: var(--gold); }

    /* Mobile search body (scrollable) */
    .search-overlay-body {
      flex: 1;
      overflow-y: auto;
      padding: 12px 16px 20px;
    }

    /* Mobile tabs inside overlay */
    .mob-search-tabs {
      display: flex;
      border-bottom: 1px solid #eee;
      margin: 0 -16px;
      padding: 0 12px;
      overflow-x: auto;
      scrollbar-width: none;
      flex-shrink: 0;
    }

    .mob-search-tabs::-webkit-scrollbar { display: none; }

    .mob-tab {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 11px 10px 9px;
      font-family: var(--font-body);
      font-size: 12px;
      color: #888;
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      cursor: pointer;
      white-space: nowrap;
      margin-bottom: -1px;
      transition: color 0.15s, border-color 0.15s;
    }

    .mob-tab i { font-size: 12px; }
    .mob-tab:hover { color: var(--dark); }

    .mob-tab.active {
      color: var(--gold);
      border-bottom-color: var(--gold);
      font-weight: 500;
    }

    .mob-search-results {
      padding: 4px 0;
    }

    .mob-result-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      cursor: pointer;
      transition: background 0.1s;
      text-decoration: none;
      color: inherit;
      border-bottom: 1px solid #f5f5f5;
    }

    .mob-result-item:last-child { border-bottom: none; }
    .mob-result-item:hover { background: #fafafa; }

    .mob-result-avatar {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 600;
      flex-shrink: 0;
      overflow: hidden;
    }

    .mob-result-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .mob-result-body { flex: 1; min-width: 0; }

    .mob-result-name {
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.3;
    }

    .mob-result-name mark {
      background: rgba(218,81,4,0.2);
      color: var(--dark);
      font-weight: 600;
    }

    .mob-result-sub {
      font-size: 11px;
      color: #999;
      margin-top: 2px;
    }

    .mob-result-price {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      flex-shrink: 0;
    }

    .mob-search-loading {
      display: none;
      padding: 30px;
      text-align: center;
    }

    .mob-search-loading span {
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #bbb;
      margin: 0 4px;
      animation: mobSearchBlink 1.1s infinite;
    }

    .mob-search-loading span:nth-child(2) { animation-delay: 0.18s; }
    .mob-search-loading span:nth-child(3) { animation-delay: 0.36s; }

    @keyframes mobSearchBlink {
      0%, 80%, 100% { transform: translateY(0); opacity: 0.3; }
      40%            { transform: translateY(-6px); opacity: 1; }
    }

    .mob-search-empty {
      display: none;
      padding: 40px 20px;
      text-align: center;
    }

    .mob-search-empty i {
      font-size: 40px;
      color: #ddd;
      margin-bottom: 12px;
    }

    .mob-search-empty p {
      font-size: 14px;
      color: #999;
    }

    /* DESKTOP NAV */
    .desktop-nav {
      background: var(--dark);
      border-bottom: 1px solid #2a2a2a;
    }

    .desktop-nav .nav-link {
      color: #aaa !important;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 13px 16px !important;
      transition: color .2s;
    }

    .desktop-nav .nav-link:hover,
    .desktop-nav .nav-link.active {
      color: var(--gold-light) !important;
    }

    .desktop-nav .nav-link.sale {
      color: #e07b54 !important;
    }

    @media (max-width: 991.98px) {
      .desktop-nav {
        display: none !important;
      }
    }

    /* MOBILE DRAWER NAV */
    .mobile-nav-drawer {
      display: none;
      flex-direction: column;
      background: var(--dark2);
      border-top: 1px solid #2a2a2a;
      position: fixed;
      top: 60px;
      left: 0;
      right: 0;
      z-index: 1020;
      box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
    }

    .mobile-nav-drawer.show {
      display: flex;
    }

    .mobile-nav-drawer a {
      color: #bbb;
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 14px 20px;
      border-bottom: 1px solid #2a2a2a;
      transition: color .2s, background .2s;
    }

    .mobile-nav-drawer a:hover {
      color: var(--gold-light);
      background: #222;
    }

    .mobile-nav-drawer a.sale {
      color: #e07b54;
    }

    /* HERO */
    .hero-section {
      background: var(--dark);
    }

    .hero-text-col {
      display: flex;
      align-items: center;
      min-height: 200px;
    }

    .hero-inner {
      padding: 28px 8%;
    }

    @media (max-width: 767.98px) {
      .hero-text-col {
        min-height: auto;
      }

      .hero-inner {
        padding: 20px 20px;
        text-align: center;
      }
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 4px;
      color: var(--gold);
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 36px;
      height: 1px;
      background: var(--gold);
    }

    @media (max-width: 767.98px) {
      .hero-eyebrow {
        justify-content: center;
      }

      .hero-eyebrow::before {
        display: none;
      }
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(38px, 5.5vw, 72px);
      font-weight: 700;
      color: #f0e8d8;
      line-height: 1.05;
      margin-bottom: 20px;
    }

    .hero-title em {
      color: var(--gold-light);
      font-style: italic;
    }

    .hero-desc {
      font-size: 14px;
      color: #888;
      line-height: 1.8;
      margin-bottom: 36px;
      font-weight: 300;
    }

    .hero-img-col {
      position: relative;
      min-height: 230px;
      overflow: hidden;
    }

    .hero-img-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center bottom;
      display: block;
    }

    .hero-sale-tag {
      position: absolute;
      top: 24px;
      right: 24px;
      background: var(--gold);
      color: #fff;
      padding: 14px 18px;
      text-align: center;
      font-family: var(--font-display);
      line-height: 1.2;
    }

    .hero-sale-tag strong {
      display: block;
      font-size: 30px;
      font-weight: 700;
    }

    .hero-sale-tag span {
      font-size: 11px;
      letter-spacing: 1px;
      font-family: var(--font-body);
    }

    @media (max-width: 767.98px) {
      .hero-img-col {
        min-height: 160px;
      }
    }

    /* BUTTONS */
    .btn-gold {
      background: var(--gold);
      color: #fff;
      padding: 13px 30px;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      border: none;
      cursor: pointer;
      font-family: var(--font-body);
      text-decoration: none;
      border-radius: 0;
      transition: background .2s, transform .15s;
      display: inline-block;
    }

    .btn-gold:hover {
      background: var(--gold-light);
      color: #fff;
      transform: translateY(-1px);
    }

    .btn-outline-gold {
      background: transparent;
      color: #ccc;
      padding: 13px 30px;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      border: 1px solid #555;
      cursor: pointer;
      font-family: var(--font-body);
      text-decoration: none;
      border-radius: 0;
      display: inline-block;
      transition: border-color .2s, color .2s;
    }

    .btn-outline-gold:hover {
      border-color: var(--gold);
      color: var(--gold-light);
    }

    /* TRUST STRIP */
    .trust-strip {
      background: var(--dark);
      border-top: 1px solid #2a2a2a;
      padding: 14px 0;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #888;
      font-weight: 500;
    }

    .trust-item i {
      color: var(--gold);
      font-size: 15px;
    }

    /* SECTION HEADINGS */
    .sec-title {
      font-family: var(--font-display);
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.1;
    }

    .sec-sub {
      font-size: 13px;
      color: var(--muted);
      font-weight: 300;
    }

    .view-all-link {
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
      font-weight: 600;
      border-bottom: 1px solid var(--gold);
      padding-bottom: 2px;
      transition: color .2s;
      white-space: nowrap;
    }

    .view-all-link:hover {
      color: var(--gold-light);
      border-color: var(--gold-light);
    }

    /* CATEGORY CARDS */
    .cat-card {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
      cursor: pointer;
      background: var(--dark3);
      display: block;
    }

    .cat-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s;
    }

    .cat-card:hover img {
      transform: scale(1.05);
    }

    .cat-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 60%);
      pointer-events: none;
    }

    .cat-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px 16px 14px;
      color: #f0e8d8;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 20px;
    }

    .cat-label small {
      display: block;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-light);
      font-family: var(--font-body);
      font-weight: 500;
      margin-top: 3px;
    }

    /* cat-tall = 2 Ã— cat-short + gap (8px) so both sides match */
    .cat-short {
      height: 220px;
    }

    .cat-tall {
      height: 448px;
      /* 220 + 8 + 220 */
    }

    @media (max-width: 767.98px) {
      .cat-short {
        height: 155px;
      }

      .cat-tall {
        height: 318px;
        /* 155+8+155 */
      }
    }


    /* 5-column product grid */
    @media (min-width: 992px) {
      .col-lg-fifth {
        flex: 0 0 auto;
        width: 20%;
      }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       PRODUCT CARDS â€” Premium Redesign
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .prod-card {
      background: #fff;
      border-radius: 6px;
      overflow: hidden;
      transition: transform .32s cubic-bezier(.22, .68, 0, 1.2), box-shadow .32s ease;
      cursor: pointer;
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(0, 0, 0, .06);
      position: relative;
    }

    .prod-card:hover {
      /* transform: translateY(-8px); */
      box-shadow: 0 24px 56px rgba(0, 0, 0, .13), 0 4px 12px rgba(218, 81, 4, .08);
    }

    /* Image wrapper */
    .prod-img-wrap {
      position: relative;
      overflow: hidden;
      background: #f0ece3;
      flex-shrink: 0;
    }

    .prod-img-wrap img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 1.2s cubic-bezier(.22, .68, 0, 1.1);
    }

    .prod-card:hover .prod-img-wrap img {
      transform: scale(1.07);
    }

    /* Image overlay on hover â€” quick-action strip */
    .prod-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(17, 16, 16, .55) 0%, transparent 50%);
      opacity: 0;
      transition: opacity .3s;
      pointer-events: none;
    }

    .prod-card:hover .prod-img-wrap::after {
      opacity: 1;
    }

    /* Quick view button that slides up on hover */
    .prod-quick-view {
      display: none !important;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, .12);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: none;
      border-top: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
      font-size: 10px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      font-weight: 600;
      font-family: var(--font-body);
      padding: 11px;
      cursor: pointer;
      transform: translateY(100%);
      transition: transform .3s cubic-bezier(.22, .68, 0, 1.1);
      z-index: 2;
    }

    .prod-card:hover .prod-quick-view {
      transform: translateY(0);
    }

    /* Badges */
    .prod-badges {
      position: absolute;
      top: 12px;
      left: 12px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      z-index: 3;
    }

    .prod-badge {
      font-size: 9px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 700;
      padding: 5px 10px;
      border-radius: 2px;
      line-height: 1;
    }

    .badge-new {
      background: var(--dark);
      color: var(--gold-light);
    }

    .badge-sale {
      background: #c0392b;
      color: #fff;
    }

    .badge-hot {
      background: var(--gold);
      color: #fff;
    }

    /* Wishlist btn */
    .prod-wish {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, .92);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s, color .2s, transform .2s;
      color: #aaa;
      font-size: 13px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
      z-index: 3;
    }

    .prod-wish:hover {
      background: var(--gold);
      color: #fff;
      transform: scale(1.1);
    }

    /* Product info section */
    .prod-info {
      padding: 16px 16px 0;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .prod-brand {
      font-size: 9.5px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 5px;
    }

    .prod-name {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 600;
      color: var(--dark);
      line-height: 1.25;
      margin-bottom: 10px;
    }

    .prod-price {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .price-now {
      font-size: 17px;
      font-weight: 700;
      color: var(--dark);
    }

    .tk-symbol {
      font-size: 1.05em;
      font-weight: 700;
      font-family: 'Noto Sans Bengali', 'Nirmala UI', 'Shonar Bangla', 'Segoe UI', sans-serif;
      display: inline-block;
      vertical-align: -1px;
      line-height: 1;
      margin-right: 3px;
    }

    .price-old {
      font-size: 13px;
      color: #c0b49a;
      text-decoration: line-through;
    }

    .prod-stars {
      font-size: 11px;
      display: none;
      align-items: center;
      gap: 2px;
      margin-bottom: 14px;
    }

    .prod-stars i {
      color: var(--gold);
    }

    .prod-stars span {
      color: var(--muted);
      font-size: 11px;
      margin-left: 4px;
    }

    /* â”€â”€ ADD TO CART BUTTON â€” Hero treatment â”€â”€ */
    .prod-add-btn {
      width: 100%;
      margin: 0px 0px 15px 0px;
      background: rgb(255 255 255 / 12%);
      color: #000;
      border: 1px solid rgba(81, 81, 81, 0.2);;
      padding: 0;
      font-size: 10px;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      font-weight: 700;
      font-family: var(--font-body);
      cursor: pointer;
      border-radius: 4px;
      transition: background .70s, box-shadow .25s;
      display: flex;
      align-items: stretch;
      overflow: hidden;
      height: 40px;
      position: relative;
      /* box-shadow: 0 2px 8px rgba(0, 0, 0, .18); */
    }

    .prod-add-btn:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    /* Left: icon zone */
    .prod-add-btn .btn-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      flex-shrink: 0;
      background: var(--gold);
      font-size: 15px;
      transition: background .25s, width .25s;
    }

    /* Right: text zone */
    .prod-add-btn .btn-label {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 12px;
      transition: background .25s;
    }

    .prod-add-btn:hover {
      background: #000;
      color: #fff;
      /* box-shadow: 0 4px 4px rgba(0, 0, 0, .28); */
    }

    .prod-add-btn:hover .btn-icon {
      background: #da5104;
      width: 52px;
    }

    /* "Added" success state */
    .prod-add-btn.added {
      background: #1d4a2f !important;
      pointer-events: none;
    }

    .prod-add-btn.added .btn-icon {
      background: #25603d !important;
    }

    /* Ripple on click */
    .prod-add-btn .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, .25);
      transform: scale(0);
      animation: ripple-anim .55s linear;
      pointer-events: none;
    }

    @keyframes ripple-anim {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    /* Mobile full width for add to cart button */
    @media (max-width: 767.98px) {
      .prod-add-btn {
        width: 100%;
        margin: auto 0 14px;
      }
    }

    /* Color swatches */
    .prod-swatches {
      display: none !important;
      /* display: flex; */
      gap: 6px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .prod-swatch {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 2px solid transparent;
      cursor: pointer;
      transition: border-color .15s, transform .15s;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
    }

    .prod-swatch:hover,
    .prod-swatch.active {
      border-color: var(--gold);
      transform: scale(1.2);
    }

    /* PROMO */
    .promo-section {
      background: var(--dark);
    }

    .promo-text-col {
      display: flex;
      align-items: center;
    }

    .promo-inner {
      padding: 72px 8%;
    }

    @media (max-width: 767.98px) {
      .promo-inner {
        padding: 48px 20px;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
      }
    }

    .promo-eyebrow {
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--gold);
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 14px;
    }

    .promo-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4.5vw, 56px);
      font-weight: 700;
      color: #f0e8d8;
      line-height: 1.1;
      margin-bottom: 14px;
    }

    .promo-title em {
      color: var(--gold);
      font-style: italic;
    }

    .promo-desc {
      font-size: 14px;
      color: #777;
      margin-bottom: 30px;
      font-weight: 300;
      line-height: 1.7;
    }

    .promo-img-col {
      position: relative;
      overflow: hidden;
      min-height: 380px;
    }

    .promo-img-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .45;
    }

    .promo-pct {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: clamp(80px, 14vw, 160px);
      font-weight: 700;
      color: rgba(218, 81, 4, .25);
      letter-spacing: -4px;
      pointer-events: none;
    }

    @media (max-width: 767.98px) {
      .promo-img-col {
        min-height: 180px;
      }
    }

    /* NEWSLETTER */
    .newsletter-section {
      background: var(--cream2);
      padding: 72px 0;
    }

    .nl-form {
      display: flex;
      max-width: 480px;
      margin: 0 auto;
    }

    .nl-form input {
      flex: 1;
      border: 1px solid #ccc;
      border-right: none;
      padding: 13px 16px;
      font-family: var(--font-body);
      font-size: 13px;
      outline: none;
      background: #fff;
      min-width: 0;
      border-radius: 0;
    }

    .nl-form input:focus {
      border-color: var(--gold);
    }

    .nl-form button {
      background: var(--dark);
      color: #fff;
      border: 1px solid var(--dark);
      border-left: none;
      padding: 13px 24px;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      font-family: var(--font-body);
      white-space: nowrap;
      transition: background .2s;
      border-radius: 0;
      flex-shrink: 0;
    }

    .nl-form button:hover {
      background: var(--gold);
      border-color: var(--gold);
    }

    @media (max-width: 575.98px) {
      .nl-form {
        flex-direction: column;
      }

      .nl-form input {
        border-right: 1px solid #ccc;
        border-bottom: none;
      }

      .nl-form button {
        border-left: 1px solid var(--dark);
        border-top: none;
      }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       FOOTER â€” Premium Redesign
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    footer {
      position: relative;
    }

    /* Gold divider line at top of footer */
    footer::before {
      content: '';
      display: block;
      height: 3px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 60%, transparent 100%);
    }

    .footer-top {
      background: linear-gradient(160deg, #0e0e0e 0%, #141210 60%, #1a1508 100%);
      padding: 70px 0 50px;
      color: #888;
      position: relative;
      overflow: hidden;
    }

    /* Subtle background pattern */
    .footer-top::after {
      content: '';
      position: absolute;
      right: -20px;
      bottom: -60px;
      font-size: 220px;
      font-weight: 900;
      letter-spacing: -8px;
      color: rgba(218, 81, 4, .04);
      pointer-events: none;
      font-family: var(--font-display);
      line-height: 1;
    }

    /* footer logo removed */

    .footer-desc {
      font-size: 14px;
      color: #b0b0b0;
      line-height: 1.9;
      font-weight: 400;
      max-width: 280px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }

    .social-btn {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(218, 81, 4, .35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #b0b0b0;
      font-size: 14px;
      text-decoration: none;
      transition: border-color .25s, color .25s, background .25s, transform .25s;
      background: rgba(255, 255, 255, .05);
    }

    .social-btn:hover {
      border-color: var(--gold);
      color: var(--dark);
      background: var(--gold);
      transform: translateY(-3px);
    }

    /* Footer divider between brand col and links */
    .footer-divider {
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(218, 81, 4, .2) 30%, rgba(218, 81, 4, .2) 70%, transparent);
      align-self: stretch;
    }

    .footer-heading {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 700;
      margin-bottom: 20px;
      font-family: var(--font-body);
      position: relative;
      padding-bottom: 10px;
    }

    .footer-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 24px;
      height: 1px;
      background: var(--gold);
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 11px;
    }

    .footer-links li a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      transition: color .2s, padding-left .2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-links li a::before {
      content: '';
      display: inline-block;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width .2s;
      vertical-align: middle;
    }

    .footer-links li a:hover {
      color: var(--gold);
    }

    .footer-links li a:hover::before {
      width: 12px;
    }

    /* Newsletter strip inside footer */
    .footer-newsletter {
      background: rgba(218, 81, 4, .07);
      border: 1px solid rgba(218, 81, 4, .12);
      border-radius: 6px;
      padding: 22px 24px;
      margin-top: 6px;
    }

    .footer-newsletter p {
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
      font-weight: 600;
    }

    .footer-nl-form {
      display: flex;
      gap: 0;
    }

    .footer-nl-form input {
      flex: 1;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(218, 81, 4, .2);
      border-right: none;
      padding: 10px 14px;
      font-size: 12px;
      color: #ccc;
      outline: none;
      min-width: 0;
      border-radius: 4px 0 0 4px;
      font-family: var(--font-body);
    }

    .footer-nl-form input::placeholder {
      color: #444;
    }

    .footer-nl-form input:focus {
      border-color: var(--gold);
    }

    .footer-nl-form button {
      background: var(--gold);
      border: none;
      padding: 10px 16px;
      color: #fff;
      font-size: 11px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 700;
      font-family: var(--font-body);
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s;
      border-radius: 0 4px 4px 0;
      flex-shrink: 0;
    }

    .footer-nl-form button:hover {
      background: var(--gold-light);
    }

    .footer-bottom {
      background: #080808;
      border-top: 1px solid rgba(218, 81, 4, .15);
      padding: 20px 0;
      font-size: 13px;
      color: #999;
    }

    .pay-chip {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(218, 81, 4, .25);
      padding: 5px 14px;
      font-size: 12px;
      color: #b0b0b0;
      border-radius: 20px;
      font-weight: 500;
      letter-spacing: .5px;
      transition: border-color .2s, color .2s;
    }

    .pay-chip:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .footer-bottom-links {
      display: flex;
      gap: 20px;
    }

    .footer-bottom-links a {
      color: #888;
      text-decoration: none;
      font-size: 12px;
      transition: color .2s;
    }

    .footer-bottom-links a:hover {
      color: var(--gold);
    }

    /* MOBILE BOTTOM NAV */
    .mobile-bottom-nav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--dark2);
      border-top: 1px solid #2d2d2d;
      z-index: 1030;
      height: 64px;
    }

    @media (max-width: 991.98px) {
      .mobile-bottom-nav {
        display: flex;
      }
    }

    .mbn-inner {
      display: flex;
      align-items: stretch;
      width: 100%;
      height: 100%;
    }

    .mbn-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      background: none;
      border: none;
      color: #888;
      font-size: 9px;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-family: var(--font-body);
      font-weight: 500;
      text-decoration: none;
      position: relative;
      cursor: pointer;
      transition: color .2s;
      padding: 0;
    }

    .mbn-item i {
      font-size: 20px;
    }

    .mbn-item:hover,
    .mbn-item.active {
      color: var(--gold-light);
    }

    .mbn-item.active::before {
      content: '';
      position: absolute;
      top: 0;
      left: 20%;
      right: 20%;
      height: 2px;
      background: var(--gold);
      border-radius: 0 0 2px 2px;
    }

    .mbn-badge {
      position: absolute;
      top: 6px;
      left: 50%;
      margin-left: 4px;
      background: var(--gold);
      color: #fff;
      font-size: 8px;
      font-weight: 700;
      min-width: 15px;
      height: 15px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 3px;
    }

    .bg-cream {
      background: var(--cream) !important;
    }

    .bg-cream2 {
      background: #f0ece3 !important;
    }

    /* CART DRAWER */
    .cart-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 10000;
    }

    .cart-overlay.show {
      display: block;
    }

    .cart-drawer {
      position: fixed;
      top: 0;
      right: -420px;
      width: 100%;
      max-width: 420px;
      height: 100%;
      background: #fff;
      z-index: 10001;
      display: flex;
      flex-direction: column;
      transition: right 0.3s ease;
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    }

    .cart-drawer.show {
      right: 0;
    }

    .cart-drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid #eee;
    }

    .cart-drawer-header h5 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: #111;
    }

    .cart-close-btn {
      width: 36px;
      height: 36px;
      border: none;
      background: #f5f0e8;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .cart-close-btn:hover {
      background: #da5104;
      color: #fff;
    }

    .cart-drawer-body {
      flex: 1;
      overflow-y: auto;
      padding: 20px 24px;
    }

    .cart-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .cart-item img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
    }

    .cart-item-info {
      flex: 1;
    }

    .cart-item-info h6 {
      margin: 0 0 4px 0;
      font-size: 14px;
      font-weight: 600;
      color: #111;
    }

    .cart-item-brand {
      margin: 0 0 4px 0;
      font-size: 11px;
      color: #da5104;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .cart-item-size {
      margin: 2px 0 4px 0;
      font-size: 12px;
      color: #64748b;
      font-weight: 500;
    }

    .cart-item-price {
      margin: 0;
      font-size: 15px;
      font-weight: 700;
      color: #111;
    }

    .cart-item-qty {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .qty-btn {
      width: 28px;
      height: 28px;
      border: 1px solid #ddd;
      background: #fff;
      cursor: pointer;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s;
    }

    .qty-btn:hover {
      border-color: #da5104;
    }

    .cart-item-qty span {
      font-size: 14px;
      font-weight: 600;
      min-width: 20px;
      text-align: center;
    }

    .cart-item-remove {
      background: none;
      border: none;
      color: #999;
      cursor: pointer;
      font-size: 16px;
      padding: 8px;
      transition: color 0.2s;
    }

    .cart-item-remove:hover {
      color: #c0392b;
    }

    .cart-drawer-footer {
      padding: 20px 24px;
      border-top: 1px solid #eee;
      background: #fafafa;
    }

    .cart-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 8px;
    }

    .cart-total span:first-child {
    font-size: 19px;
    color: #666;
    font-weight: 500;
    }

    .cart-total-price {
      font-size: 20px;
      font-weight: 700;
      color: #111;
    }

    .cart-note {
      font-size: 12px;
      color: #999;
      margin: 0 0 16px 0;
    }

    .cart-checkout-btn,
    .cart-continue-btn {
      display: block;
      width: 100%;
      padding: 14px;
      text-align: center;
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      transition: all 0.2s;
      margin-bottom: 10px;
      border-radius: 4px;
    }

    .cart-checkout-btn {
      background: #111;
      color: #fff;
    }

    .cart-checkout-btn:hover {
      background: #da5104;
      color: #fff;
    }

    .cart-continue-btn {
      background: transparent;
      color: #666;
      border: 1px solid #ddd;
    }

    .cart-continue-btn:hover {
      border-color: #da5104;
      color: #da5104;
    }

    @media (max-width: 575.98px) {
      .cart-drawer {
        width: 100%;
        right: -100%;
      }
    }

    /* FLOATING CART WIDGET */
    .float-cart {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 9999;
      width: 68px;
      background: var(--dark);
      border-radius: 10px 0 0 10px;
      box-shadow: -6px 6px 28px rgba(0,0,0,0.18);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 14px 0 12px;
      transition: transform 0.25s cubic-bezier(.22,.68,0,1.2), box-shadow 0.25s;
      user-select: none;
      border-left: 2px solid var(--gold);
    }
    .float-cart:hover {
      transform: translateY(-50%) translateX(-3px);
      box-shadow: -8px 8px 32px rgba(0,0,0,0.25);
    }
    .float-cart:active {
      transform: translateY(-50%) scale(0.95);
    }
    .float-cart .fc-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 4px;
    }
    .float-cart .fc-icon {
      color: var(--gold-light);
      font-size: 22px;
      margin-bottom: 2px;
    }
    .float-cart .fc-count-num {
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      line-height: 1;
    }
    .float-cart .fc-count-label {
      color: rgba(255,255,255,0.55);
      font-size: 8px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 500;
      margin-top: 1px;
    }
    .float-cart .fc-divider {
      width: 36px;
      height: 1px;
      background: rgba(218,81,4,0.25);
      margin: 10px 0;
      flex-shrink: 0;
    }
    .float-cart .fc-bottom {
      text-align: center;
      padding: 0 4px;
    }
    .float-cart .fc-total {
      color: var(--gold-light);
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
      white-space: nowrap;
    }
    .float-cart .fc-total .tk-symbol {
      font-family: 'Noto Sans Bengali', 'Nirmala UI', 'Shonar Bangla', 'Segoe UI', sans-serif;
      font-size: 16px;
      margin-right: 1px;
    }
    @media (max-width: 767.98px) {
      .float-cart {
        width: 56px;
        padding: 10px 0 8px;
      }
      .float-cart .fc-icon {
        font-size: 18px;
      }
      .float-cart .fc-count-num {
        font-size: 14px;
      }
      .float-cart .fc-count-label {
        font-size: 7px;
        letter-spacing: 1px;
      }
      .float-cart .fc-divider {
        width: 28px;
        margin: 7px 0;
      }
      .float-cart .fc-total {
        font-size: 11px;
      }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       PRODUCT DETAILS PAGE STYLES
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    /* BREADCRUMB */
    .breadcrumb-section {
      padding: 24px 0;
      background: var(--cream);
    }

    .breadcrumb {
      margin: 0;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .breadcrumb-item a {
      color: var(--muted);
      text-decoration: none;
    }

    .breadcrumb-item.active {
      color: var(--gold);
      font-weight: 600;
    }

    /* PRODUCT PAGE CONTENT */
    .product-main {
      padding-bottom: 80px;
    }

    /* IMAGE GALLERY & ZOOM */
    .main-img-container {
      position: relative;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      cursor: crosshair;
      margin-bottom: 8px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      width: 100%;
      aspect-ratio: 1 / 1;
    }

    .main-img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
      touch-action: pan-y pinch-zoom;
    }

    /* MAGNIFY GLASS EFFECT â€” Round with handle */
    .magnify-glass {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 3px solid rgba(255, 255, 255, 0.9);
      cursor: none;
      display: none;
      z-index: 100;
      pointer-events: none;
      box-shadow:
        0 0 0 4px var(--gold),
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 0 20px rgba(255, 255, 255, 0.08);
      background-repeat: no-repeat;
    }

    .magnify-glass::after {
      content: '';
      position: absolute;
      bottom: -38px;
      right: -8px;
      width: 10px;
      height: 44px;
      background: linear-gradient(180deg, var(--gold) 0%, #8a6d3b 100%);
      border-radius: 5px;
      transform: rotate(40deg);
      transform-origin: top center;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    }

    .magnify-glass::before {
      content: '';
      position: absolute;
      top: 12px;
      left: 18px;
      width: 36px;
      height: 18px;
      background: rgba(255, 255, 255, 0.18);
      border-radius: 50%;
      transform: rotate(-30deg);
      pointer-events: none;
      z-index: 101;
    }
    #toolbarContainer{
      display: none;
    }
    .thumb-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
    }

    .thumb-item {
      aspect-ratio: 1;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: border-color 0.25s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .thumb-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

    .thumb-item.active {
      border-color: var(--gold);
      box-shadow: 0 0 0 1px var(--gold);
    }

    .thumb-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .thumb-item:hover img {
      transform: scale(1.05);
    }

    @media (max-width: 767.98px) {
      .magnify-glass {
        width: 140px;
        height: 140px;
      }
    }

    /* PRODUCT INFO */
    .product-info-col {
      padding-left: 40px;
    }

    @media (max-width: 991.98px) {
      .product-info-col {
        padding-left: 12px;
        margin-top: 30px;
      }
    }

    .product-gallery {
      position: sticky;
      top: 90px;
      padding-left: 8px;
      padding-right: 24px;
    }

    .product-gallery .thumb-grid {
      padding-right: 0;
    }

    @media (max-width: 991.98px) {
      .product-gallery {
        padding-left: 0;
        padding-right: 0;
      }
    }

    .product-info-col .prod-brand {
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 8px;
    }

    .prod-title {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 15px;
      line-height: 1.1;
    }

    .prod-rating {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
    }

    .prod-rating .stars {
      color: var(--gold);
      font-size: 14px;
    }

    .rating-count {
      font-size: 13px;
      color: var(--muted);
    }

    .prod-price-wrap {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 25px;
    }

    .prod-price-wrap .price-now {
      font-size: 28px;
      font-weight: 700;
      color: var(--dark);
    }

    .prod-price-wrap .price-old {
      font-size: 18px;
      color: var(--muted);
      text-decoration: line-through;
    }

    .sale-label {
      background: #c0392b;
      color: #fff;
      padding: 3px 10px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .prod-desc {
      font-size: 15px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 30px;
    }

    /* OPTIONS */
    .option-group {
      margin-bottom: 25px;
    }

    .option-label {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
      display: flex;
      justify-content: space-between;
    }

    .option-label span {
      color: var(--muted);
      font-weight: 400;
      text-transform: none;
    }

    .size-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .size-btn {
      min-width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #ddd;
      background: #fff;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }

    .size-btn:hover {
      border-color: var(--dark);
    }

    .size-btn.active {
      background: var(--dark);
      color: #fff;
      border-color: var(--dark);
    }

    .color-btns {
      display: flex;
      gap: 12px;
    }

    .color-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid #ddd;
      padding: 2px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .color-btn span {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 50%;
    }

    .color-btn.active {
      transform: scale(1.15);
      border-color: var(--gold);
    }

    /* ACTIONS */
    .action-row {
      display: flex;
      gap: 15px;
      margin-bottom: 35px;
    }

    .qty-selector {
      display: flex;
      align-items: center;
      border: 1px solid #ddd;
      background: #fff;
      height: 52px;
    }

    .qty-selector .qty-btn {
      width: 40px;
      height: 100%;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 18px;
    }

    .qty-input {
      width: 40px;
      border: none;
      text-align: center;
      font-weight: 600;
      font-size: 14px;
    }

    .add-to-cart-btn {
      flex: 1;
      height: 52px;
      background: var(--dark);
      color: #fff;
      border: none;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      font-size: 13px;
      transition: background 0.2s;
    }

    .add-to-cart-btn:hover {
      background: var(--gold);
    }

    .wishlist-btn {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #ddd;
      background: #fff;
      color: #aaa;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .wishlist-btn:hover,
    .wishlist-btn.active {
      color: #e74c3c;
      border-color: #e74c3c;
    }

    /* PRODUCT META */
    .prod-meta {
      border-top: 1px solid #eee;
      padding-top: 25px;
    }

    .meta-item {
      font-size: 13px;
      margin-bottom: 8px;
      color: var(--muted);
    }

    .meta-item strong {
      color: var(--dark);
      margin-right: 5px;
    }

    /* TABS */
    .product-tabs {
      margin-top: 60px;
      border-top: 1px solid #eee;
    }

    .product-tabs .nav-tabs {
      border: none;
      justify-content: center;
      gap: 40px;
      padding: 30px 0;
    }

    .product-tabs .nav-tabs .nav-link {
      border: none !important;
      background: none !important;
      padding: 0;
      padding-bottom: 8px;
      color: #999;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      position: relative;
    }

    .product-tabs .nav-tabs .nav-link.active {
      color: var(--dark) !important;
    }

    .product-tabs .nav-tabs .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--gold);
    }

    .product-tabs .tab-content {
      padding: 20px 0;
      max-width: 900px;
      margin: 0 auto;
      font-size: 15px;
      line-height: 1.8;
      color: #666;
    }

    .spec-table {
      width: 100%;
      border-collapse: collapse;
    }
    .spec-row {
      display: flex;
      border-bottom: 1px solid #f0ece3;
      padding: 12px 0;
    }
    .spec-row:last-child {
      border-bottom: none;
    }
    .spec-label {
      width: 200px;
      flex-shrink: 0;
      font-weight: 600;
      color: var(--dark);
      font-size: 14px;
    }
    .spec-value {
      flex: 1;
      color: #555;
      font-size: 14px;
    }
    @media (max-width: 576px) {
      .spec-row {
        flex-direction: column;
        gap: 4px;
      }
      .spec-label {
        width: 100%;
      }
    }

    /* RELATED PRODUCTS */
    .related-section {
      padding: 80px 0;
      border-top: 1px solid #eee;
    }

    .related-section .sec-title {
      font-family: var(--font-display);
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.1;
    }

    .related-section .sec-sub {
      font-size: 13px;
      color: var(--muted);
      font-weight: 300;
    }

    /* Mobile zoom hint */
    .mobile-zoom-hint {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      padding: 10px 16px;
      border-radius: 30px;
      font-size: 12px;
      white-space: nowrap;
      z-index: 50;
      pointer-events: none;
      animation: hintPulse 2s ease-in-out;
    }

    .mobile-zoom-hint i {
      margin-right: 8px;
      color: var(--gold);
    }

    @keyframes hintPulse {
      0%, 100% { opacity: 0.7; }
      50% { opacity: 1; }
    }

    @media (min-width: 768px) {
      .mobile-zoom-hint {
        display: none !important;
      }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       CUSTOM SCROLLBAR â€” Premium & Smart Design
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    /* Vertical Scrollbar (Right Side) */
    ::-webkit-scrollbar {
      width: 10px;
      height: 10px;
    }

    ::-webkit-scrollbar-track {
      background: linear-gradient(180deg, #f8f4ee 0%, #ede5d5 100%);
      border-radius: 10px;
      margin: 5px 0;
    }

    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #da5104 0%, #da5104 50%, #b84300 100%);
      border-radius: 10px;
      border: 2px solid #f8f4ee;
      transition: all 0.3s ease;
      min-height: 40px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #b84300 0%, #da5104 50%, #da5104 100%);
      border-color: #ede5d5;
      box-shadow: 0 0 8px rgba(218, 81, 4, 0.3);
    }

    ::-webkit-scrollbar-thumb:active {
      background: linear-gradient(180deg, #da5104 0%, #b84300 100%);
    }

    /* Horizontal Scrollbar (Top - for tables/horizontal content) */
    .table-responsive::-webkit-scrollbar,
    .scroll-horizontal::-webkit-scrollbar {
      height: 8px;
    }

    .table-responsive::-webkit-scrollbar-track,
    .scroll-horizontal::-webkit-scrollbar-track {
      background: linear-gradient(90deg, #f8f4ee 0%, #ede5d5 100%);
      border-radius: 10px;
      margin: 0 5px;
    }

    .table-responsive::-webkit-scrollbar-thumb,
    .scroll-horizontal::-webkit-scrollbar-thumb {
      background: linear-gradient(90deg, #da5104 0%, #da5104 50%, #b84300 100%);
      border-radius: 10px;
      border: 2px solid #f8f4ee;
    }

    .table-responsive::-webkit-scrollbar-thumb:hover,
    .scroll-horizontal::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(90deg, #b84300 0%, #da5104 50%, #da5104 100%);
    }

    /* Scrollbar Corner */
    ::-webkit-scrollbar-corner {
      background: transparent;
    }

    /* Firefox Scrollbar */
    * {
      scrollbar-width: thin;
      scrollbar-color: #da5104 #f8f4ee;
    }

    /* Custom Scrollbar for Sidebar */
    .sidebar::-webkit-scrollbar {
      width: 6px;
    }

    .sidebar::-webkit-scrollbar-track {
      background: transparent;
    }

    .sidebar::-webkit-scrollbar-thumb {
      background: rgba(218, 81, 4, 0.4);
      border-radius: 10px;
    }

    .sidebar::-webkit-scrollbar-thumb:hover {
      background: rgba(218, 81, 4, 0.7);
    }

    /* Elegant Scroll Indicator Bar at Top */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
      z-index: 99999;
      transition: width 0.1s ease-out;
      box-shadow: 0 0 10px rgba(218, 81, 4, 0.5);
    }

    /* Animated gradient effect */
    @keyframes scrollProgressGlow {
      0% { box-shadow: 0 0 5px rgba(218, 81, 4, 0.3); }
      50% { box-shadow: 0 0 15px rgba(218, 81, 4, 0.6); }
      100% { box-shadow: 0 0 5px rgba(218, 81, 4, 0.3); }
    }

    .scroll-progress.active {
      animation: scrollProgressGlow 2s ease-in-out infinite;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
       BACK TO TOP BUTTON
    â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: #fff;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      box-shadow: 0 4px 15px rgba(218, 81, 4, 0.4);
    }

    .back-to-top:hover {
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(218, 81, 4, 0.5);
    }

    .back-to-top:active {
      transform: translateY(0);
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    @media (max-width: 991.98px) {
      .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 16px;
      }
    }
/* Size selection modal */
.sz-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:9999;justify-content:center;align-items:center}
.sz-overlay.show{display:flex;animation:szFadeIn .2s ease}
.sz-modal{display:none;position:fixed;top:50%;left:50%;transform:translate(-50%,-50%) scale(.92);background:#fff;border-radius:20px;padding:0;width:360px;max-width:92vw;text-align:center;box-shadow:0 25px 80px rgba(0,0,0,.25);z-index:10000;overflow:hidden}
.sz-modal.show{display:block;animation:szSlideUp .3s cubic-bezier(.22,.68,0,1.4) forwards}
.sz-modal-header{background:#faf8f5;padding:28px 28px 20px;border-bottom:1px solid #f0ece3}
.sz-icon-wrap{width:52px;height:52px;border-radius:50%;background:#f5f0e8;display:flex;align-items:center;justify-content:center;margin:0 auto 12px}
.sz-icon-wrap svg{width:24px;height:24px;stroke:#da5104;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}
.sz-title{font-size:18px;font-weight:700;color:#1e293b;margin-bottom:2px}
.sz-sub{font-size:13px;color:#94a3b8;margin:0}
.sz-modal-body{padding:22px 28px 28px}
.sz-label{font-size:12px;font-weight:600;color:#94a3b8;text-transform:uppercase;letter-spacing:1.2px;margin-bottom:10px;text-align:left}
.sz-size-btns{display:flex;gap:6px;margin-bottom:20px;justify-content:center}
.sz-size-btn{flex:1;padding:10px 6px;border:1.5px solid #e2e8f0;border-radius:100px;background:#fff;cursor:pointer;font-size:13px;font-weight:500;color:#334155;font-family:inherit;transition:all .2s;text-align:center;min-width:0}
.sz-size-btn:hover{border-color:#da5104;color:#da5104;background:#fdfaf5}
.sz-size-btn.active{border-color:#da5104;background:#da5104;color:#fff;box-shadow:0 2px 12px rgba(218,81,4,.3)}
.sz-qty-row{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:20px;padding:12px 0;border-top:1px solid #f1f1f1;border-bottom:1px solid #f1f1f1}
.sz-qty-label{font-size:12px;font-weight:600;color:#94a3b8;text-transform:uppercase;letter-spacing:1px}
.sz-qty-btn{width:36px;height:36px;border:1.5px solid #e2e8f0;border-radius:50%;background:#fff;cursor:pointer;font-size:16px;display:flex;align-items:center;justify-content:center;font-family:inherit;color:#334155;transition:all .15s}
.sz-qty-btn:hover{background:#f8f5f0;border-color:#da5104;color:#da5104}
.sz-qty-input{width:48px;height:36px;border:1.5px solid #e2e8f0;border-radius:8px;text-align:center;font-size:15px;font-weight:700;font-family:inherit;color:#1e293b}
.sz-err{color:#e74c3c;font-size:12px;display:none;margin-bottom:12px;text-align:center}
.sz-add-btn{width:100%;background:#111010;color:#fff;border:none;border-radius:12px;padding:13px 0;font-size:15px;font-weight:700;cursor:pointer;font-family:inherit;transition:background .2s,transform .15s;display:flex;align-items:center;justify-content:center;gap:8px}
.sz-add-btn:hover{background:#da5104;transform:translateY(-1px)}
.sz-add-btn:active{transform:translateY(0)}
.sz-close{position:absolute;top:14px;right:18px;border:none;background:rgba(0,0,0,.04);width:30px;height:30px;border-radius:50%;font-size:17px;cursor:pointer;color:#94a3b8;font-family:inherit;display:flex;align-items:center;justify-content:center;transition:background .2s}
.sz-close:hover{background:rgba(0,0,0,.08);color:#475569}
@keyframes szFadeIn{from{opacity:0}to{opacity:1}}
@keyframes szSlideUp{from{opacity:0;transform:translate(-50%,-50%) scale(.92)}to{opacity:1;transform:translate(-50%,-50%) scale(1)}}
