*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* RakushopBD logo — forest green + vibrant pink */
    --brand: #1E4620;
    --brand-light: #2D6B32;
    --brand-dark: #143318;
    --brand-pale: #E8F3EA;
    --primary: #EF7A9C;
    --primary-light: #F5A0B8;
    --primary-dark: #D85A7A;
    --primary-pale: #FDE8EF;
    --accent: #2D6B32;
    --accent-light: #E8F3EA;
    --accent-dark: #1E4620;
    --discount-badge-bg: #D85A7A;
    --discount-badge-color: #fff;
    --green: #2D6B32;
    --green-pale: #E8F3EA;
    --amber: #8a6914;
    --amber-pale: #faf3e0;
    --pink: #e8b4bc;
    --pink-pale: #fdf0f3;
    --bg: #F5F5F5;
    --surface: #FFFFFF;
    --surface2: #F8F8F8;
    --border: rgba(0,0,0,0.10);
    --text: #1A1A1A;
    --text-muted: #6B6B6B;
    --text-light: #9A9A9A;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
  }

  html {
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }
  }

  body {
    font-family: 'Hind Siliguri', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    -webkit-overflow-scrolling: touch;
  }

  /* ===== TOP ANNOUNCEMENT BAR ===== */
  .announcement {
    background: var(--brand);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .announcement i { font-size: 14px; color: var(--primary-light); }

  /* ===== NAVBAR ===== */
  .navbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: none;
    overflow-x: clip;
    overflow-y: visible;
  }

  .navbar--dual .navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .navbar-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-row--primary {
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef0f2;
    gap: 20px;
  }

  .navbar-row--secondary {
    padding-top: 11px;
    padding-bottom: 11px;
    gap: 28px;
  }

  @media (min-width: 769px) {
    .navbar-row--primary {
      background: var(--surface);
      z-index: 2;
    }

    .navbar-row--secondary {
      overflow: visible;
      max-height: 56px;
      opacity: 1;
      transform: translateY(0);
      transition:
        max-height 0.38s cubic-bezier(0.32, 0.72, 0, 1),
        opacity 0.28s ease,
        padding 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    }

    .navbar--dual.navbar--sub-hidden {
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    }

    .navbar--dual.navbar--sub-hidden .navbar-row--secondary {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      padding-top: 0;
      padding-bottom: 0;
      pointer-events: none;
    }
  }

  .navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .navbar-top {
    display: contents;
  }

  .navbar-hamburger {
    display: none;
  }

  .navbar-search-row {
    flex: 1;
    min-width: 0;
  }

  .navbar--dual .navbar-search-row {
    order: unset;
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    padding: 0 16px;
  }

  .navbar--dual .search-wrap {
    width: 100%;
    max-width: 420px;
  }

  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 0;
    order: unset;
  }

  .header-support {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    transition: opacity 0.15s;
  }

  .header-support:hover {
    opacity: 0.85;
  }

  .header-support-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
  }

  .header-support-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.25;
  }

  .header-support-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
  }

  .header-support-phone {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
  }

  .navbar-browse-wrap {
    position: relative;
    flex-shrink: 0;
  }

  .navbar-browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    white-space: nowrap;
  }

  .navbar-browse-btn i {
    font-size: 16px;
    color: #6b7280;
    transition: transform 0.2s;
  }

  .navbar-browse-btn[aria-expanded='true'] i {
    transform: rotate(180deg);
  }

  .header-cat-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    max-width: min(320px, 90vw);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    z-index: 1200;
    max-height: min(420px, 60vh);
    overflow-y: auto;
  }

  .header-cat-dropdown:not([hidden]) {
    animation: catDropdownIn 0.16s ease;
  }

  @keyframes catDropdownIn {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .header-cat-dropdown-inner {
    padding: 6px 0;
  }

  .header-cat-dropdown-inner .cat-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    border-bottom: none;
    white-space: nowrap;
    transition: background 0.12s, color 0.12s;
  }

  .header-cat-dropdown-inner .cat-link:hover,
  .header-cat-dropdown-inner .cat-link.active {
    background: var(--primary-pale);
    color: var(--primary);
    border-bottom-color: transparent;
  }

  .header-cat-dropdown-inner .cat-link--sub,
  .cat-nav-inner .cat-link--sub {
    padding-left: 36px;
    font-size: 13px;
  }

  .cat-filter-btn--sub {
    font-size: 12px;
    padding-left: 14px;
  }

  .navbar-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex: 1;
    min-width: 0;
  }

  @media (min-width: 769px) and (max-width: 1100px) {
    .navbar-main-nav {
      gap: 16px;
    }

    .navbar-main-link {
      font-size: 13px;
    }
  }

  .navbar-main-link {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
  }

  .navbar-main-link:hover {
    color: var(--primary);
  }

  .navbar-main-link.is-active {
    color: var(--primary);
  }

  .nav-actions--mobile-bar {
    display: none;
  }

  .nav-actions--desktop-bar {
    display: flex;
  }

  @media (min-width: 769px) {
    .navbar-mobile-top {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .navbar--dual .nav-actions--mobile-bar {
      display: none !important;
    }
  }

  .nav-actions--header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .navbar--dual .nav-actions--header .header-icon-btn {
    flex-direction: row;
    padding: 6px 8px;
    min-width: 40px;
    min-height: 40px;
    color: #374151;
  }

  .navbar--dual .nav-actions--header .header-icon-btn:hover {
    background: transparent;
    color: var(--primary);
  }

  .navbar--dual .nav-actions--header .header-icon-btn i {
    font-size: 26px;
    stroke-width: 1.25;
  }

  .navbar--dual .header-icon-label {
    display: none !important;
  }

  .navbar--dual .search-bar {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    height: 40px;
    overflow: hidden;
  }

  .navbar--dual .search-wrap:focus-within .search-bar {
    border-color: #d1d5db;
    box-shadow: none;
  }

  .navbar--dual .search-select {
    display: none;
  }

  .navbar--dual .search-input {
    height: 40px;
    font-size: 13px;
    padding-left: 14px;
  }

  .navbar--dual .search-input::placeholder {
    color: #9ca3af;
  }

  .navbar--dual .search-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    background: transparent;
    color: #9ca3af;
    border-radius: 0;
    font-size: 18px;
    flex-shrink: 0;
  }

  .navbar--dual .search-btn:hover {
    background: transparent;
    color: #374151;
  }

  .header-icon-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
  }

  .header-icon-btn:hover {
    background: var(--surface2);
    color: var(--primary);
  }

  .header-icon-btn i {
    font-size: 22px;
  }

  .header-icon-label {
    font-size: 10px;
    font-family: 'Hind Siliguri', sans-serif;
    line-height: 1.2;
  }

  .header-icon-badge {
    position: absolute;
    top: 4px;
    right: 6px;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 3px;
  }

  .header-icon-badge[hidden] {
    display: none !important;
  }

  .site-logo-img {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .site-logo-img--header {
    max-height: 60px;
    max-width: 280px;
  }

  .site-logo-img--footer {
    max-height: 76px;
    max-width: 300px;
    margin-bottom: 12px;
  }

  .search-wrap {
    flex: 1;
    position: relative;
    min-width: 0;
    z-index: 1100;
  }

  .search-bar {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 10px;
    overflow: visible;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .search-wrap:focus-within .search-bar {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(32, 96, 32, 0.15);
  }

  .search-field {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    position: relative;
    background: #fff;
  }

  .search-clear {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin-right: 4px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
  }

  .search-clear:hover {
    background: var(--primary-pale);
  }

  .search-suggest {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
    max-height: 380px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1200;
    padding: 0;
  }

  .search-suggest-head {
    padding: 10px 16px 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    background: var(--surface2);
  }

  .search-suggest-list {
    display: flex;
    flex-direction: column;
  }

  .search-suggest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    margin: 0;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.12s;
    appearance: none;
    -webkit-appearance: none;
  }

  .search-suggest-item:last-child {
    border-bottom: none;
  }

  .search-suggest-item:hover,
  .search-suggest-item.active {
    background: #f8fafc;
  }

  .search-suggest-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

  .search-suggest-thumb i {
    font-size: 22px;
  }

  .search-suggest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
  }

  .search-suggest-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  .search-suggest-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .search-suggest-cat {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
  }

  .search-suggest-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
    white-space: nowrap;
    padding-left: 8px;
  }

  .search-suggest-empty,
  .search-suggest-loading {
    padding: 20px 16px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
  }

  .search-suggest-footer {
    padding: 10px 16px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--surface2);
    cursor: pointer;
  }

  .search-suggest-footer:hover {
    background: var(--primary-pale);
  }

  .search-select {
    border: none;
    background: transparent;
    padding: 0 32px 0 12px;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-muted);
    border-right: 1px solid var(--border);
    height: 44px;
    cursor: pointer;
    outline: none;
    flex: 0 0 auto;
    width: auto;
    min-width: 132px;
    max-width: none;
    field-sizing: content;
  }
  .search-input {
    flex: 1;
    width: 100%;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 0 8px 0 14px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    outline: none;
    height: 44px;
  }

  .search-input::-webkit-search-cancel-button,
  .search-input::-webkit-search-decoration {
    display: none;
  }
  .search-btn {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 0 18px;
    height: 44px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: background 0.2s;
  }
  .search-btn:hover { background: var(--primary-light); }

  @media (min-width: 769px) {
    .search-btn {
      height: 44px;
      padding: 0 18px;
      border-radius: 0 8px 8px 0;
      background: var(--primary);
      color: #fff;
    }

    .search-btn:hover {
      background: var(--primary-light);
      color: #fff;
    }
  }

  /* Legacy nav-btn (other pages) */
  .nav-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
  }
  .nav-btn:hover { background: var(--surface2); color: var(--primary); }
  .nav-btn i { font-size: 22px; }
  .nav-btn span { font-size: 10px; font-family: 'Hind Siliguri', sans-serif; }
  .badge {
    position: absolute;
    top: 5px;
    right: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 3px;
  }

  /* ===== CATEGORY NAV ===== */
  .cat-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
  }
  .cat-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .cat-nav-inner::-webkit-scrollbar { display: none; }
  .cat-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.15s;
    cursor: pointer;
  }
  .cat-link:hover, .cat-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  .cat-link i { font-size: 16px; }

  .mobile-cat-menu {
    position: fixed;
    inset: 0;
    z-index: 1500;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.25s;
  }

  .mobile-cat-menu.open {
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-cat-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity 0.25s;
  }

  .mobile-cat-menu.open .mobile-cat-menu-backdrop {
    opacity: 1;
  }

  .mobile-cat-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    max-height: 100%;
    background: var(--surface);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-cat-menu.open .mobile-cat-menu-panel {
    transform: translateX(0);
  }

  .mobile-cat-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
    flex-shrink: 0;
  }

  .mobile-cat-menu-header h2 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
  }

  .mobile-cat-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .mobile-cat-menu-list {
    flex-shrink: 0;
    overflow: visible;
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-cat-menu-extra {
    flex-shrink: 0;
    overflow: visible;
    padding: 8px 12px max(16px, var(--safe-bottom));
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--surface2);
  }

  .mobile-cat-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
  }

  .mobile-cat-link i {
    font-size: 20px;
    color: var(--primary);
    width: 24px;
    text-align: center;
  }

  .mobile-cat-link:hover,
  .mobile-cat-link.active {
    background: var(--green-pale, #e8f5e8);
    border-color: rgba(45, 138, 45, 0.2);
    color: var(--primary);
  }

  .mobile-menu-group {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }

  .mobile-menu-group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border: none;
    border-radius: 12px;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
  }

  .mobile-menu-group-toggle span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-menu-group-toggle i.ti-chevron-down {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.2s;
  }

  .mobile-menu-group.open .mobile-menu-group-toggle i.ti-chevron-down {
    transform: rotate(180deg);
  }

  .mobile-menu-sub {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0 4px 12px;
    margin-left: 8px;
    border-left: 2px solid var(--primary-pale);
  }

  .mobile-menu-group.open .mobile-menu-sub {
    display: flex;
  }

  .mobile-cat-link--sub {
    font-size: 13px;
    padding: 10px 12px;
  }

  body.mobile-cat-menu-open {
    overflow: hidden;
  }

  /* ===== MAIN LAYOUT ===== */
  .main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  /* ===== HERO ===== */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 24px;
  }
  .hero-main {
    --hero-bg: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 35%, var(--brand-light) 65%, var(--brand) 100%);
    --hero-bg-photo: none;
    background: var(--hero-bg);
    background-size: 280% 280%;
    animation: heroGradientFlow 9s ease-in-out infinite;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 380px;
  }

  .hero-main--has-bg-photo {
    padding: 0;
    min-height: 0;
    display: block;
    background: transparent;
    animation: none;
    position: relative;
  }

  @media (min-width: 901px) {
    .hero-main--has-bg-photo {
      min-height: 260px;
      display: block;
      position: relative;
      overflow: hidden;
    }

    .hero-main--has-bg-photo .hero-main-photo {
      width: 100%;
      height: 100%;
      min-height: 260px;
      object-fit: cover;
      object-position: center;
    }
  }

  @media (max-width: 900px) {
    .hero-main--has-bg-photo {
      min-height: 0;
    }
  }

  .hero-main--has-bg-photo::before {
    display: none;
  }

  .hero-main--has-bg-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    border-radius: inherit;
    background: rgba(0, 0, 0, 0.18);
    pointer-events: none;
    animation: none;
  }

  .hero-main-photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
    vertical-align: top;
  }
  .hero-main::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    animation: heroOrbFloat 12s ease-in-out infinite;
  }
  .hero-main::after {
    content: '';
    position: absolute;
    right: 100px;
    bottom: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(226,75,74,0.15);
    animation: heroOrbFloat 10s ease-in-out infinite reverse;
  }
  @keyframes heroGradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  @keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    50% { transform: translate(-12px, 10px) scale(1.06); opacity: 1; }
  }
  .hero-content { position: relative; z-index: 1; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(226,75,74,0.9);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 24px;
  }
  .hero-btns { display: flex; gap: 10px; }
  .btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: inherit;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
  }
  .btn-primary:hover { background: #c23938; transform: translateY(-1px); }
  .btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: 12px 22px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    text-decoration: none;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); }
  .hero-img-box {
    position: relative;
    z-index: 1;
    width: 160px;
    height: 160px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.2);
  }
  .hero-img-box i { font-size: 80px; color: rgba(255,255,255,0.9); }

  .hero-side { display: flex; flex-direction: column; gap: 12px; }
  .hero-card {
    border-radius: var(--radius-lg);
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.15s;
    border: 1px solid transparent;
    background-size: 260% 260%;
    animation: heroGradientFlow 7s ease-in-out infinite;
    position: relative;
    overflow: hidden;
  }
  .hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      transparent 35%,
      rgba(255, 255, 255, 0.12) 50%,
      transparent 65%
    );
    transform: translateX(-120%);
    animation: heroShineSweep 4.5s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes heroShineSweep {
    0%, 70%, 100% { transform: translateX(-120%); }
    85% { transform: translateX(120%); }
  }
  .hero-card:hover { transform: translateY(-2px); }
  .hero-card-a {
    --hero-card-bg: linear-gradient(135deg, #c9a0a8 0%, #b07886 45%, #d48696 75%, #a86b7a 100%);
    background: var(--hero-card-bg);
    animation-duration: 8s;
  }
  .hero-card-b {
    --hero-card-bg: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 40%, var(--brand-dark) 70%, var(--brand) 100%);
    background: var(--hero-card-bg);
    animation-duration: 9s;
    animation-direction: reverse;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-main,
    .hero-card {
      animation: none;
    }
    .hero-main::before,
    .hero-main::after,
    .hero-card::after {
      animation: none;
    }
  }
  .hero-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .hero-card-icon i { font-size: 26px; color: #fff; }
  .hero-card-text { position: relative; z-index: 1; }
  .hero-card-label { font-size: 11px; color: rgba(255,255,255,0.75); margin-bottom: 3px; }
  .hero-card-title { font-size: 16px; font-weight: 700; color: #fff; }

  /* ===== STATS ===== */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
  }
  .stat-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border);
  }
  .stat-card--colored {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .stat-icon i { font-size: 22px; }
  .stat-num { font-size: 20px; font-weight: 700; color: var(--text); }
  .stat-label { font-size: 11px; color: var(--text-muted); margin-top: 1px; }

  /* ===== SECTION HEADER ===== */
  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
  }
  .see-all {
    font-size: 13px;
    color: var(--primary-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }
  .see-all:hover { text-decoration: underline; }

  /* ===== HOME PRODUCT SCROLL ROWS (4 visible, scroll for more) ===== */
  .home-product-section {
    margin-bottom: 32px;
  }

  #section-new-arrivals.home-product-section {
    margin-bottom: 0;
    padding-bottom: 48px;
  }

  .home-scroll-wrap {
    position: relative;
    margin: 0 -4px;
    width: 100%;
    max-width: 100%;
  }

  .home-scroll-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 4px;
    padding: 4px 4px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-scroll-track::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .home-scroll-track .product-card {
    flex: 0 0 auto;
    flex-shrink: 0;
    width: calc((100% - 48px) / 4);
    min-width: calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
    box-sizing: border-box;
    scroll-snap-align: start;
    margin-bottom: 0;
  }

  .home-scroll-track .product-card .prod-info {
    min-width: 0;
  }

  .home-scroll-track .add-cart-btn {
    font-size: 11px;
    padding: 9px 12px;
    min-height: 36px;
  }

  .home-scroll-track .preorder-btn {
    font-size: 11px;
    padding: 9px 12px;
    min-height: 36px;
  }

  .home-scroll-loading,
  .home-scroll-empty {
    flex: 1 1 100%;
    text-align: center;
    padding: 40px 16px;
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
  }

  @media (max-width: 1024px) {
    .home-scroll-track .product-card {
      width: calc((100% - 32px) / 3);
      min-width: calc((100% - 32px) / 3);
      max-width: calc((100% - 32px) / 3);
    }
  }

  .home-recommendations {
    padding: 28px 0 8px;
    margin-bottom: 40px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(232, 245, 232, 0.35) 0%, transparent 100%);
    border-radius: var(--radius-lg);
  }

  #section-recommended-for-you[hidden] { display: none !important; }
 .home-recommendations .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 0 4px;
  }

  /* ===== HOME CUSTOMER REVIEWS ===== */
  .home-customer-reviews {
    margin-top: 0;
    margin-bottom: 48px;
    padding-top: 44px;
    border-top: 1px solid var(--border);
  }

  .home-customer-reviews .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .home-reviews-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
  }

  .home-reviews-track .home-review-card {
    flex: 0 0 auto;
    flex-shrink: 0;
    width: calc((100% - 32px) / 3);
    min-width: calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
    box-sizing: border-box;
    min-height: 240px;
    scroll-snap-align: start;
    background: linear-gradient(180deg, #ffffff 0%, #fafcfa 100%);
    border: 1px solid rgba(32, 96, 32, 0.12);
    border-radius: var(--radius-xl);
    padding: 22px 22px 20px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.07);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }

  .home-reviews-track .home-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    opacity: 0.85;
  }

  .home-reviews-track .home-review-card:hover {
    box-shadow: 0 8px 28px rgba(32, 96, 32, 0.12);
    transform: translateY(-2px);
  }

  .home-review-top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-top: 4px;
  }

  .home-review-avatar {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 3px 10px rgba(32, 96, 32, 0.25);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  }

  .home-review-avatar.accent {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  }

  .home-review-avatar.amber {
    background: linear-gradient(135deg, #8a6914 0%, #c9a227 100%);
  }

  .home-review-who {
    flex: 1;
    min-width: 0;
  }

  .home-review-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
  }

  .home-review-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  .home-review-verified {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
  }

  .home-review-verified .ti {
    font-size: 13px;
  }

  .home-review-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 14px;
  }

  .home-review-stars .ti {
    font-size: 18px;
  }

  .home-review-stars .dim {
    color: #d1d5db;
  }

  .home-review-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin-top: 2px;
  }

  @media (max-width: 1024px) {
    .home-reviews-track .home-review-card {
      flex: 0 0 calc(50% - 8px);
      min-width: calc(50% - 8px);
      min-height: 220px;
    }
  }

  @media (max-width: 768px) {
    .home-reviews-track .home-review-card {
      flex: 0 0 calc((100vw - 48px) / 2);
      min-width: calc((100vw - 48px) / 2);
      max-width: calc((100vw - 48px) / 2);
      flex-shrink: 0;
      min-height: 200px;
      padding: 14px 12px 12px;
      gap: 10px;
    }

    .home-review-verified {
      display: none;
    }

    .home-review-top {
      gap: 10px;
    }

    .home-review-avatar {
      width: 40px;
      height: 40px;
      font-size: 13px;
    }

    .home-review-name {
      font-size: 12px;
    }

    .home-review-meta {
      font-size: 10px;
    }

    .home-review-stars .ti {
      font-size: 14px;
    }

    .home-review-text {
      font-size: 11px;
      line-height: 1.5;
      -webkit-line-clamp: 4;
    }
  }

  /* ===== HOME MESSENGER CHAT REVIEWS ===== */
  .home-messenger-reviews {
    margin-top: 0;
    margin-bottom: 48px;
    padding-top: 44px;
    border-top: 1px solid var(--border);
  }

  .home-messenger-reviews .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .home-messenger-track .home-messenger-card {
    flex: 0 0 calc(33.333% - 11px);
    min-width: calc(33.333% - 11px);
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 4px 4px 8px;
  }

  .home-messenger-phone {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.12);
    background: #fff;
  }

  .home-messenger-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #0084ff 0%, #0063d1 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }

  .home-messenger-header-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }

  .home-messenger-screen {
    background: #f0f2f5;
    min-height: 280px;
    max-height: 420px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .home-messenger-screen img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: top center;
    display: block;
  }

  .home-messenger-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 6px;
  }

  .home-messenger-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
  }

  .home-messenger-caption {
    margin: 0;
    padding: 0 6px 4px;
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-muted);
  }

  @media (max-width: 1024px) {
    .home-messenger-track .home-messenger-card {
      flex: 0 0 calc(50% - 8px);
      min-width: calc(50% - 8px);
    }
  }

  @media (max-width: 768px) {
    .home-messenger-track .home-messenger-card {
      flex: 0 0 calc((100vw - 48px) / 2);
      min-width: calc((100vw - 48px) / 2);
      max-width: calc((100vw - 48px) / 2);
    }

    .home-messenger-screen,
    .home-messenger-screen img {
      min-height: 180px;
      max-height: 260px;
    }

    .home-messenger-meta .home-review-verified {
      display: none;
    }
  }

  /* ===== CATEGORY CARDS ===== */
  .category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 28px;
  }

  /* Category card size tokens */
  .category-scroll-wrap--home {
    --cat-card-size: 110px;
    /* Full-bleed: break out of .main max-width container */
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  #categories {
    min-width: 0;
  }

  .category-grid.category-grid--all {
    grid-template-columns: repeat(auto-fill, minmax(106px, 1fr));
    justify-items: center;
  }
  .cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: var(--cat-card-size, 110px);
    max-width: 100%;
    height: auto;
    justify-self: center;
    aspect-ratio: auto;
    background: var(--surface);
    border-radius: var(--radius-md);
    padding: 0;
    text-align: center;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    overflow: hidden;
  }
  .cat-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 68, 124, 0.12);
  }
  .cat-icon {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    overflow: hidden;
  }
  .cat-icon i { font-size: 24px; }
  .cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .cat-icon--img {
    padding: 0;
    background: #f4f4f4;
  }
  .cat-icon--img img {
    border-radius: 0;
  }
  .cat-card-label {
    position: static;
    flex: 1 0 auto;
    z-index: 1;
    min-height: 48px;
    padding: 7px 5px 9px;
    background: var(--surface);
    pointer-events: none;
    box-sizing: border-box;
  }
  .cat-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    padding: 0;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cat-count {
    font-size: 9px;
    color: var(--text-muted);
    padding: 0;
    margin-top: 2px;
    line-height: 1.2;
  }

  /* Category horizontal scroll wrapper (mobile — 3 visible, swipe for more) */
  .category-scroll-wrap {
    position: relative;
    margin: 0 -4px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* Single-line horizontal category row (all screens) */
  .category-scroll-wrap--home #home-category-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 11px;
    margin-bottom: 28px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    justify-content: space-between;
  }

  .category-scroll-wrap--home #home-category-track::-webkit-scrollbar {
    display: none;
  }

  .category-scroll-wrap--home #home-category-track .cat-card {
    flex: 0 0 var(--cat-card-size, 110px);
    width: var(--cat-card-size, 110px);
    max-width: var(--cat-card-size, 110px);
    height: auto;
    align-self: stretch;
    flex-shrink: 0;
    scroll-snap-align: start;
    justify-self: auto;
  }

  .category-scroll-empty {
    flex: 1 1 100%;
    min-width: 100%;
    text-align: center;
    color: var(--text-muted);
    padding: 24px;
    margin: 0;
  }

  @media (max-width: 768px) {
    .category-scroll-wrap--home #home-category-track {
      justify-content: flex-start;
      padding-left: 0;
      padding-right: 0;
      scroll-padding-left: 0;
      scroll-padding-right: 0;
      gap: 12px;
    }

    .category-scroll-wrap--home #home-category-track .cat-card {
      flex: 0 0 calc((100% - 24px) / 3) !important;
      width: calc((100% - 24px) / 3) !important;
      min-width: calc((100% - 24px) / 3) !important;
      max-width: calc((100% - 24px) / 3) !important;
      box-sizing: border-box;
    }

    .category-scroll-wrap--home .cat-icon i {
      font-size: 22px;
    }

    .category-scroll-wrap--home .cat-card-label {
      min-height: 46px;
      padding: 6px 4px 8px;
    }

    .category-scroll-wrap--home .cat-name {
      font-size: 10px;
      line-height: 1.2;
    }

    .category-scroll-wrap--home .cat-count {
      font-size: 8px;
    }
  }

  /* ===== PROMO BANNER ===== */
  .promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 28px;
  }
  .promo-card {
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.15s;
  }
  .promo-card:hover { transform: translateY(-2px); }
  .promo-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .promo-icon i { font-size: 26px; color: #fff; }
  .promo-label { font-size: 11px; color: rgba(255,255,255,0.8); margin-bottom: 3px; }
  .promo-title { font-size: 15px; font-weight: 700; color: #fff; }

  /* ===== PRODUCT GRID ===== */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
  }
  .product-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    border-color: rgba(12,68,124,0.2);
  }
  .prod-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .prod-img > i { font-size: 72px; }
  .prod-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .prod-wish {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    width: 30px;
    height: 30px;
    background: var(--surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.15s;
  }
  .prod-wish:hover { background: var(--accent-light); border-color: var(--accent); }
  .prod-wish i { font-size: 15px; color: var(--text-muted); transition: color 0.15s; }
  .prod-wish:hover i { color: var(--accent); }
  .prod-wish.active,
  .btn-wish-lg.active {
    background: var(--accent-light);
    border-color: var(--accent);
  }
  .prod-wish.active i,
  .btn-wish-lg.active i {
    color: var(--accent);
  }
  .prod-info { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; }
  .prod-category { font-size: 10px; color: var(--text-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
  .prod-name { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; line-height: 1.4; flex: 1; min-width: 0; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .prod-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
  .stars { color: #EF9F27; font-size: 11px; }
  .rating-count { font-size: 10px; color: var(--text-light); }
  .prod-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    flex-wrap: wrap;
  }
  .prod-foot > div:first-child {
    flex: 1;
    min-width: 0;
  }
  .prod-price { font-size: 17px; font-weight: 700; color: var(--accent); }
  .prod-old { font-size: 11px; color: var(--text-light); text-decoration: line-through; margin-left: 5px; }
  .discount-pct { font-size: 11px; font-weight: 700; color: var(--accent-dark); margin-left: 4px; }
  .add-cart-btn {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--primary-light) 100%);
    color: #fff;
    border: none;
    width: auto;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(32, 96, 32, 0.38);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  }
  .add-cart-btn .ti {
    font-size: 17px;
    flex-shrink: 0;
  }
  .add-cart-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(32, 96, 32, 0.45);
  }
  .add-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(32, 96, 32, 0.3);
  }
  .add-cart-btn.added {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
  }
  .add-cart-btn.in-cart {
    background: var(--primary-pale);
    color: var(--primary);
    border: 1.5px solid var(--primary);
    box-shadow: none;
    cursor: pointer;
  }
  .add-cart-btn.in-cart:hover {
    filter: brightness(0.98);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 96, 32, 0.2);
  }
  .preorder-btn {
    background: linear-gradient(135deg, #b45309 0%, #d97706 45%, #f59e0b 100%);
    color: #fff;
    border: none;
    width: auto;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  }
  .preorder-btn .ti {
    font-size: 17px;
    flex-shrink: 0;
  }
  .preorder-btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.42);
  }
  #page-product .btn-add-cart.in-cart {
    background: var(--primary-pale);
    color: var(--primary);
    border: 1.5px solid var(--primary);
    cursor: pointer;
  }
  #page-product .btn-add-cart.in-cart:hover {
    background: var(--primary);
    color: #fff;
  }
  .prod-discount,
  .pv-badge.pv-badge--discount {
    background: var(--discount-badge-bg);
    color: var(--discount-badge-color);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px;
    line-height: 1.35;
    letter-spacing: 0.01em;
  }

  .prod-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
  }

  /* ===== TRUST BADGES ===== */
  .trust-bar {
    background: transparent;
    border: none;
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--surface);
  }
  .trust-item--colored {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  .trust-icon { font-size: 28px; flex-shrink: 0; }
  .trust-title { font-size: 13px; font-weight: 700; color: var(--text); }
  .trust-sub { font-size: 11px; font-weight: 500; color: var(--text-muted); margin-top: 2px; }

  .trust-bar-wrap {
    margin-bottom: 28px;
  }

  /* ===== FOOTER ===== */
  .footer {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.8);
    padding: 48px 0 24px;
    margin-top: 20px;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer-logo {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
    margin-bottom: 4px;
  }
  .footer-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
  }
  .social-btn:hover { background: rgba(239, 122, 156, 0.25); }
  .social-btn i { font-size: 17px; color: rgba(255,255,255,0.8); }
  .social-btn:hover i { color: #F5A0B8; }
  .footer-heading { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-links li a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  .footer-links li a:hover { color: #fff; }
  .footer-links li a i { font-size: 12px; }
  .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 20px; }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
  }
  .footer-payment { display: flex; gap: 8px; align-items: center; }
  .pay-badge {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .pay-badge i { font-size: 14px; }

  .product-grid--related { grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 900px) {
    .product-grid--related { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .product-grid--related { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-side { flex-direction: column; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid:not(.category-scroll-track) { grid-template-columns: repeat(4, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .promo-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-img-box { display: none; }
  }

  /* Header / navbar — mobile (Kirei-style: top bar + search row) */
  @media (max-width: 768px) {
    .navbar--dual.navbar--sub-hidden .navbar-row--secondary {
      max-height: none;
      opacity: 1;
      padding: 0;
      pointer-events: auto;
    }

    .navbar-row--primary {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      padding: 10px 16px 12px;
      border-bottom: 1px solid #eef0f2;
    }

    .navbar-mobile-top {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
    }

    .navbar-row--secondary {
      display: none;
    }

    .nav-actions--mobile-bar {
      display: flex;
      margin-left: auto;
      gap: 0;
    }

    .nav-actions--desktop-bar {
      display: none;
    }

    .navbar-hamburger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }

    .navbar-hamburger-line {
      display: block;
      width: 22px;
      height: 2px;
      background: #1a1a1a;
      border-radius: 2px;
    }

    .navbar-mobile-top .logo {
      flex: 0 1 auto;
      min-width: 0;
      display: flex;
      justify-content: flex-start;
    }

    .navbar-mobile-top .site-logo-img--header {
      max-height: 40px;
      max-width: min(140px, 38vw);
      margin: 0;
    }

    .header-support {
      display: none;
    }

    .navbar-search-row {
      width: 100%;
      flex: none;
      padding: 0;
      justify-content: stretch;
    }

    .navbar--dual .search-wrap {
      max-width: none;
      width: 100%;
    }

    .navbar--dual .search-bar {
      width: 100%;
      height: 44px;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      background: #fff;
    }

    .navbar--dual .search-input {
      height: 44px;
      font-size: 14px;
      padding-left: 14px;
    }

    .navbar--dual .search-input::placeholder {
      color: #9ca3af;
    }

    .navbar--dual .search-btn {
      width: 44px;
      height: 44px;
      font-size: 20px;
      color: #374151;
    }

    .navbar--dual .nav-actions--mobile-bar .header-icon-btn {
      flex-direction: row;
      padding: 6px;
      min-width: 38px;
      min-height: 38px;
      color: #1a1a1a;
    }

    .navbar--dual .nav-actions--mobile-bar .header-icon-btn:hover {
      background: transparent;
      color: #1a1a1a;
    }

    .navbar--dual .nav-actions--mobile-bar .header-icon-btn i {
      font-size: 22px;
    }

    .header-icon-label {
      display: none !important;
    }

    .header-icon-badge {
      top: 2px;
      right: 0;
      min-width: 14px;
      height: 14px;
      font-size: 8px;
    }

    .search-suggest {
      left: 0;
      right: 0;
      width: 100%;
      max-width: none;
      border-radius: 0 0 12px 12px;
    }
  }

  @media (max-width: 600px) {
    .category-grid:not(.category-scroll-track) { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-main { padding: 28px 20px; }
    .hero-title { font-size: 26px; }
    .hero-btns { flex-direction: column; }
  }

  @media (max-width: 420px) {
    .site-logo-img--header {
      max-height: 38px;
      max-width: 150px;
    }

    .header-icon-btn {
      padding: 6px;
      min-width: 36px;
    }

    .header-icon-btn i {
      font-size: 22px;
    }

    .search-input {
      font-size: 14px;
      height: 44px;
    }

    .search-btn {
      width: 44px;
      height: 44px;
      font-size: 20px;
    }
  }

  /* ===== TRACK ORDER MODAL ===== */
  .trk-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    z-index: 300;
  }
  .trk-overlay.open { display: flex; }
  .trk-modal {
    width: min(760px, 100%);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.22);
    overflow: hidden;
  }
  .trk-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 14px;
    background: linear-gradient(135deg, var(--primary-pale), rgba(59, 130, 246, 0.08));
    border-bottom: 1px solid var(--border);
  }
  .trk-title {
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
  }
  .trk-title i { color: var(--primary); font-size: 18px; }
  .trk-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; line-height: 1.6; }
  .trk-close {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: var(--text-muted);
  }
  .trk-close:hover { color: var(--text); }
  .trk-body { padding: 16px 18px 18px; }
  .trk-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
  .trk-input-wrap {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--surface2);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 10px 12px;
  }
  .trk-input-wrap i { color: var(--primary); font-size: 18px; }
  .trk-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
  }
  .trk-btn {
    border: none;
    cursor: pointer;
    border-radius: 14px;
    padding: 11px 16px;
    font-weight: 800;
    font-family: inherit;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(32, 96, 32, 0.25);
  }
  .trk-btn:disabled { opacity: 0.7; cursor: not-allowed; }
  .trk-result {
    margin-top: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .trk-r-head {
    padding: 12px 14px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--border);
  }
  .trk-r-title { font-weight: 900; font-size: 14px; }
  .trk-status {
    font-size: 11px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface2);
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .trk-status.pending { background: #fef3c7; border-color: rgba(245, 158, 11, 0.25); color: #92400e; }
  .trk-status.confirmed,
  .trk-status.shipped { background: #dbeafe; border-color: rgba(59, 130, 246, 0.25); color: #1e40af; }
  .trk-status.delivered { background: #dcfce7; border-color: rgba(34, 197, 94, 0.25); color: #166534; }
  .trk-status.cancelled { background: #fee2e2; border-color: rgba(239, 68, 68, 0.25); color: #991b1b; }
  .trk-r-body { padding: 12px 14px; background: #fff; }
  .trk-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
  .trk-meta .m { font-size: 12px; color: var(--text-muted); }
  .trk-meta .m b { color: var(--text); }
  .trk-items { border-top: 1px dashed var(--border); padding-top: 10px; }
  .trk-item { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; color: var(--text-muted); padding: 6px 0; }
  .trk-item b { color: var(--text); font-weight: 800; }
  .trk-total { display: flex; justify-content: space-between; margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--border); font-weight: 900; }