    /* ===== TOKENS ===== */
    :root {
      --forest: #0F2747;
      --forest-light: #1E3F66;
      --amber: #1D4ED8;
      --amber-light: #2563EB;
      --cream: #E5EBF2;
      --cream-dark: #CBD5E1;
      --warm-white: #F8FAFC;
      --text-dark: #0F172A;
      --text-mid: #334155;
      --text-light: #64748B;
      --bark: #091B33;
      --bark-light: #050F1F;
      --radius-sm: 2px;
      --radius-md: 4px;
      --radius-lg: 6px;
    }

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

    html {
      overflow-x: hidden;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--warm-white);
      color: var(--text-dark);
      line-height: 1.7;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    img {
      display: block;
      max-width: 100%;
    }

    /* ===== CONTAINER ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }

    @media (min-width: 480px) {
      .container {
        padding: 0 20px;
      }
    }

    @media (min-width: 1240px) {
      .container {
        padding: 0 24px;
      }
    }

    /* ===== SECTION HEADERS ===== */
    .section-header {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 40px;
    }

    @media (min-width: 640px) {
      .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 52px;
      }
    }

    .section-title {
      font-family: 'Noto Serif', serif;
      font-size: clamp(20px, 4.5vw, 32px);
      font-weight: 700;
      color: var(--forest);
      letter-spacing: -0.01em;
      line-height: 1.1;
    }

    .section-title span {
      color: var(--amber);
    }

    .section-sub {
      font-size: 14px;
      color: var(--text-light);
      margin-top: 5px;
      line-height: 1.5;
    }

    .view-all {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      color: var(--forest);
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      border-bottom: 1.5px solid var(--forest);
      padding-bottom: 2px;
      white-space: nowrap;
      transition: color .2s, border-color .2s;
      align-self: flex-start;
    }

    @media (min-width: 640px) {
      .view-all {
        align-self: auto;
      }
    }

    .view-all:hover {
      color: var(--amber);
      border-color: var(--amber);
    }

    /* ===== TRUST BAR ===== */
    .top-bar {
      background: var(--forest);
      color: rgba(255, 255, 255, .7);
      font-size: 12px;
      padding: 8px 0;
      overflow: hidden;
    }

    .trust-strip {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      white-space: nowrap;
    }

    .trust-strip::-webkit-scrollbar { display: none; }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 0 20px;
      color: rgba(255, 255, 255, .8);
      font-size: 12px;
      letter-spacing: .03em;
      flex-shrink: 0;
    }

    .trust-item svg {
      color: var(--amber-light);
      flex-shrink: 0;
    }

    .trust-sep {
      width: 1px;
      height: 14px;
      background: rgba(255, 255, 255, .2);
      flex-shrink: 0;
    }

    /* ===== HEADER ===== */
    header {
      background: var(--warm-white);
      border-bottom: 1px solid var(--cream-dark);
      position: sticky;
      top: 0;
      z-index: 200;
      box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    }

    .header-inner {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 0;
      flex-wrap: wrap;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: var(--forest);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    .logo-icon::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60%;
      background: var(--amber);
      clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
    }

    .logo-icon svg {
      position: relative;
      z-index: 1;
    }

    .logo-text {
      line-height: 1.2;
    }

    .logo-text strong {
      display: block;
      font-family: 'Noto Serif', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--forest);
      letter-spacing: .02em;
    }

    .logo-text span {
      font-size: 10px;
      color: var(--text-light);
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    /* Header nav (desktop only) */
    .header-nav {
      display: none;
    }

    @media (min-width: 769px) {
      .header-nav {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: 8px;
      }

      .header-nav a {
        color: var(--text-mid);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        padding: 6px 12px;
        border-radius: var(--radius-sm);
        transition: color .2s, background .2s;
        white-space: nowrap;
      }

      .header-nav a:hover {
        color: var(--forest);
        background: var(--cream);
      }
    }

    /* Mobile phone button */
    .header-phone-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: var(--forest);
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      color: white;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      white-space: nowrap;
      transition: background .2s;
      margin-left: auto;
      min-height: 44px;
    }

    .header-phone-btn:hover {
      background: var(--forest-light);
    }

    @media (min-width: 769px) {
      .header-phone-btn {
        display: none;
      }
    }

    /* Search — full row on mobile */
    .header-search {
      flex: 1 1 100%;
      order: 3;
      position: relative;
    }

    @media (min-width: 769px) {
      .header-search {
        flex: 1;
        order: 0;
        max-width: 440px;
      }
    }

    .header-search input {
      width: 100%;
      padding: 11px 44px 11px 16px;
      border: 1.5px solid var(--cream-dark);
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      /* ≥16px prevents iOS zoom */
      background: var(--cream);
      color: var(--text-dark);
      outline: none;
      transition: border-color .2s;
      min-height: 44px;
    }

    .header-search input:focus {
      border-color: var(--forest);
    }

    .header-search button {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      border: none;
      background: none;
      cursor: pointer;
      color: var(--text-light);
      padding: 6px;
      min-height: 44px;
      display: flex;
      align-items: center;
    }

    /* Desktop contacts */
    .header-contacts {
      display: none;
      margin-left: auto;
      text-align: right;
      flex-shrink: 0;
    }

    @media (min-width: 769px) {
      .header-contacts {
        display: block;
      }
    }

    .phone-main {
      font-size: 17px;
      font-weight: 700;
      color: var(--forest);
      text-decoration: none;
      letter-spacing: .01em;
      display: block;
      font-family: 'Noto Serif', serif;
    }

    .phone-main:hover {
      color: var(--amber);
    }

    .phone-sub {
      font-size: 12px;
      color: var(--text-light);
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      margin-top: 3px;
    }

    .callback-btn {
      background: var(--amber);
      color: white;
      border: none;
      border-radius: 3px;
      padding: 6px 14px;
      font-size: 12px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s;
      letter-spacing: .02em;
    }

    .callback-btn:hover {
      background: var(--amber-light);
    }

    /* ===== NAV ===== */
    nav {
      background: var(--forest);
    }

    .nav-inner {
      display: flex;
      align-items: stretch;
    }

    .catalog-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 13px 20px;
      background: var(--amber);
      color: white;
      font-weight: 700;
      font-size: 13px;
      cursor: pointer;
      border: none;
      font-family: 'Inter', sans-serif;
      letter-spacing: .03em;
      text-transform: uppercase;
      transition: background .2s;
      flex-shrink: 0;
      min-height: 48px;
    }

    .catalog-btn:hover,
    .catalog-btn:focus-visible {
      background: var(--amber-light);
    }

    .hamburger {
      display: flex;
      align-items: center;
      justify-content: center;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0 16px;
      color: white;
      transition: opacity .2s;
      min-height: 48px;
      min-width: 48px;
    }

    .hamburger:hover {
      opacity: .75;
    }

    @media (min-width: 769px) {
      .hamburger {
        display: none;
      }
    }

    .nav-links {
      display: none;
      list-style: none;
    }

    @media (min-width: 769px) {
      .nav-links {
        display: flex !important;
        align-items: center;
        flex: 1;
      }
    }

    /* Mobile open state */
    .nav-links.open {
      display: flex;
      flex-direction: column;
      width: 100%;
      background: var(--forest);
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 4px 0 10px;
    }

    .nav-links li {
      width: 100%;
    }

    @media (min-width: 769px) {
      .nav-links li {
        width: auto;
      }
    }

    .nav-links a {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 13px 20px;
      color: rgba(255, 255, 255, .8);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: .02em;
      transition: color .2s, background .2s;
      min-height: 48px;
    }

    @media (min-width: 769px) {
      .nav-links a {
        padding: 14px 16px;
        font-size: 13.5px;
      }
    }

    .nav-links a:hover {
      color: white;
      background: rgba(255, 255, 255, .08);
    }

    .nav-delivery {
      margin-left: auto;
    }

    .nav-delivery a {
      color: var(--amber-light) !important;
      font-weight: 600 !important;
    }

    /* ===== HERO ===== */
    .hero {
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .hero-video-wrap {
      overflow: hidden;
      line-height: 0;
      font-size: 0;
      position: relative;
    }


    .hero-video {
      display: block;
      width: 100%;
      height: auto;
      pointer-events: none;
      transform: translateY(-10%);
      margin-bottom: -55%;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(236, 230, 219,0.00) 0%, rgba(236, 230, 219,0.90) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 2;
    }

    .hero::after {
      content: '';
      position: absolute;
      right: -100px;
      top: -60px;
      width: 500px;
      height: 500px;
      background: radial-gradient(ellipse, rgba(29, 78, 216, .15) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Fade the bottom edge of the video into the text area on mobile */
    @media (max-width: 768px) {
      .hero-video-wrap::after {
        content: '';
        display: block;
        height: 48px;
        margin-top: -48px;
        background: linear-gradient(to bottom, transparent, var(--cream));
        position: relative;
        z-index: 1;
      }
    }

    /* Mobile: text sits below the video with a solid background */
    .hero > .container {
      position: relative;
      width: 100%;
      padding: 44px 16px 52px;
      background: var(--cream);
      z-index: 2;
    }

    /* Desktop: text overlays the bottom of the video */
    @media (min-width: 769px) {
      .hero > .container {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0 16px 48px;
        background: transparent;
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    @media (min-width: 900px) {
      .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 48px;
      }
    }

    .hero-badge {
      display: inline-block;
      background: rgba(29, 78, 216, .15);
      border: 1px solid rgba(29, 78, 216, .35);
      color: var(--amber);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 3px;
      margin-bottom: 10px;
    }

    .hero h1 {
      font-family: 'Noto Serif', serif;
      font-size: clamp(26px, 7vw, 48px);
      font-weight: 700;
      color: var(--forest);
      line-height: 1.1;
      margin-bottom: 18px;
      letter-spacing: -.01em;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--amber);
    }

    .hero-text p {
      font-size: 15px;
      color: var(--text-mid);
      max-width: 480px;
      margin-bottom: 32px;
      line-height: 1.7;
    }

    @media (min-width: 480px) {
      .hero-text p {
        font-size: 16px;
      }
    }

    .hero-cta-block {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .hero-cta-label {
      font-size: 11px;
      font-weight: 700;
      color: var(--text-mid);
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .hero-form {
      display: flex;
      max-width: 420px;
    }

    .hero-input {
      flex: 1;
      padding: 13px 16px;
      border: 1.5px solid var(--cream-dark);
      border-right: none;
      border-radius: var(--radius-sm) 0 0 var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      background: white;
      color: var(--text-dark);
      outline: none;
      transition: border-color .2s;
      min-height: 50px;
    }

    .hero-input:focus {
      border-color: var(--forest);
    }

    .hero-input::placeholder {
      color: var(--text-light);
    }

    .hero-submit {
      background: var(--amber);
      color: white;
      border: none;
      padding: 13px 22px;
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      white-space: nowrap;
      letter-spacing: .03em;
      transition: background .2s;
      min-height: 50px;
    }

    .hero-submit:hover {
      background: var(--amber-light);
    }

    .hero-note {
      font-size: 12px;
      color: var(--text-light);
      line-height: 1.5;
    }

    .hero-note a {
      color: var(--text-mid);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .hero-note a:hover {
      color: var(--forest);
    }

    @media (max-width: 400px) {
      .hero-form {
        flex-direction: column;
      }

      .hero-input {
        border-right: 1.5px solid var(--cream-dark);
        border-bottom: none;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
      }

      .hero-submit {
        border-radius: 0 0 var(--radius-sm) var(--radius-sm);
      }
    }

    .btn-primary {
      background: var(--amber);
      color: white;
      padding: 13px 26px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      font-weight: 700;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid transparent;
      letter-spacing: .02em;
      cursor: pointer;
      transition: background .25s, transform .25s, box-shadow .25s;
      min-height: 48px;
    }

    .btn-primary:hover {
      background: var(--amber-light);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(29, 78, 216, .4);
    }

    .btn-primary:active {
      transform: translateY(0);
    }

    .btn-outline {
      background: transparent;
      color: white;
      padding: 13px 26px;
      border-radius: var(--radius-sm);
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 2px solid rgba(255, 255, 255, .3);
      letter-spacing: .02em;
      cursor: pointer;
      transition: border-color .25s, background .25s;
      min-height: 48px;
    }

    .btn-outline:hover {
      border-color: white;
      background: rgba(255, 255, 255, .08);
    }

    .hero .btn-outline {
      color: var(--forest);
      border-color: rgba(42, 46, 44, .25);
    }

    .hero .btn-outline:hover {
      border-color: var(--forest);
      background: rgba(42, 46, 44, .06);
    }

    /* Stats */
    .hero-stats {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-start;
    }

    @media (min-width: 900px) {
      .hero-stats {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        flex-shrink: 0;
        gap: 12px;
      }
    }

    .stat-card {
      background: rgba(255, 255, 255, .55);
      backdrop-filter: blur(8px);
      border: 1px solid var(--cream-dark);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      text-align: center;
      flex: 1 1 120px;
      max-width: calc(33.33% - 8px);
      animation: fadeUp .6s ease both;
    }

    .stat-card:nth-child(2) {
      animation-delay: .1s;
    }

    .stat-card:nth-child(3) {
      animation-delay: .2s;
    }

    @media (min-width: 900px) {
      .stat-card {
        flex: none;
        max-width: none;
        min-width: 160px;
        padding: 20px 28px;
      }
    }

    .stat-card .stat-num {
      font-family: 'Noto Serif', serif;
      font-size: 26px;
      font-weight: 700;
      color: var(--amber);
      line-height: 1;
      display: block;
    }

    @media (min-width: 900px) {
      .stat-card .stat-num {
        font-size: 32px;
      }
    }

    .stat-card .stat-label {
      font-size: 11px;
      color: var(--text-mid);
      letter-spacing: .04em;
      margin-top: 4px;
      text-transform: uppercase;
      line-height: 1.3;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ===== CATEGORIES ===== */
    .categories-section {
      padding: 60px 0 52px;
    }

    @media (min-width: 769px) {
      .categories-section {
        padding: 110px 0 96px;
      }
    }

    /* Mobile: horizontal scroll strip */
    .categories-scroll-wrapper {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      margin: 0 -16px;
      padding: 0 16px 4px;
    }

    .categories-scroll-wrapper::-webkit-scrollbar {
      display: none;
    }

    @media (min-width: 480px) {
      .categories-scroll-wrapper {
        margin: 0 -20px;
        padding: 0 20px 4px;
      }
    }

    @media (min-width: 640px) {
      .categories-scroll-wrapper {
        overflow: visible;
        margin: 0;
        padding: 0;
      }
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(4, 140px);
      gap: 12px;
      width: max-content;
    }

    @media (min-width: 480px) {
      .categories-grid {
        grid-template-columns: repeat(4, 156px);
      }
    }

    @media (min-width: 640px) {
      .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        width: auto;
        gap: 14px;
      }
    }

    @media (min-width: 900px) {
      .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }
    }

    .cat-card {
      background: var(--warm-white);
      border: 1.5px solid var(--cream-dark);
      border-radius: var(--radius-md);
      padding: 20px 14px 18px;
      text-decoration: none;
      text-align: center;
      transition: transform .25s, box-shadow .25s, border-color .25s;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .cat-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--amber);
      transform: scaleX(0);
      transition: transform .3s;
      transform-origin: left;
    }

    .cat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
      border-color: var(--amber-light);
    }

    .cat-card:hover::before {
      transform: scaleX(1);
    }

    .cat-card:active {
      transform: scale(.97);
    }

    .cat-icon {
      width: 56px;
      height: 56px;
      background: var(--cream);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      color: var(--forest);
      transition: transform .3s;
    }

    .cat-icon svg {
      display: block;
      flex-shrink: 0;
    }

    .cat-card:hover .cat-icon {
      transform: scale(1.1);
    }

    .cat-name {
      font-family: 'Noto Serif', serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--forest);
      line-height: 1.25;
    }

    .cat-count {
      font-size: 11px;
      color: var(--text-light);
      background: var(--cream-dark);
      padding: 2px 10px;
      border-radius: 3px;
    }

    /* ===== PRODUCTS ===== */
    .products-section {
      background: var(--cream);
    }

    .products-section-inner {
      padding: 60px 0;
    }

    @media (min-width: 769px) {
      .products-section-inner {
        padding: 110px 0;
      }
    }

    .products-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    @media (min-width: 480px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 960px) {
      .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
    }

    .product-card {
      background: var(--warm-white);
      border-radius: 4px;
      overflow: hidden;
      border: 1px solid var(--cream-dark);
      transition: transform .3s, box-shadow .3s;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
    }

    .product-card:active {
      transform: scale(.98);
    }

    .product-img {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 480px) {
      .product-img {
        height: 170px;
      }
    }

    @media (min-width: 769px) {
      .product-img {
        height: 180px;
      }
    }

    .grain-1 {
      background: linear-gradient(160deg, #c4a882 0%, #a8895e 30%, #c4a882 50%, #b09068 70%, #c8a882 100%);
    }

    .grain-2 {
      background: linear-gradient(160deg, #8b7355 0%, #a08060 30%, #8b7355 50%, #9a7a5e 70%, #8b7355 100%);
    }

    .grain-3 {
      background: linear-gradient(160deg, #b09070 0%, #c8a882 30%, #a8886a 50%, #b89878 70%, #c0a07a 100%);
    }

    .grain-4 {
      background: linear-gradient(160deg, #7a6048 0%, #908070 30%, #7a6048 50%, #8a7060 70%, #7a6048 100%);
    }

    .grain-5 {
      background: linear-gradient(160deg, #d4b090 0%, #c0a070 30%, #d4b090 50%, #c8a880 70%, #d0aa88 100%);
    }

    .grain-6 {
      background: linear-gradient(160deg, #9a8060 0%, #b09878 30%, #9a8060 50%, #a89070 70%, #9a8060 100%);
    }

    .product-img img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .wood-lines {
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(180deg, transparent, transparent 8px, rgba(0, 0, 0, .04) 8px, rgba(0, 0, 0, .04) 9px);
      pointer-events: none;
    }

    .product-img-label {
      position: relative;
      z-index: 1;
      background: rgba(0, 0, 0, .25);
      color: white;
      padding: 5px 12px;
      border-radius: 3px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .04em;
      backdrop-filter: blur(4px);
    }

    .product-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: var(--amber);
      color: white;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 4px;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .product-body {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    @media (min-width: 769px) {
      .product-body {
        padding: 20px;
      }
    }

    .product-name {
      font-family: 'Noto Serif', serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 4px;
      line-height: 1.25;
    }

    .product-sub {
      font-size: 12px;
      color: var(--text-light);
      margin-bottom: 12px;
      line-height: 1.5;
    }

    .product-sizes {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-bottom: 14px;
    }

    .size-chip {
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      border-radius: 4px;
      padding: 2px 7px;
      font-size: 11px;
      color: var(--text-mid);
      font-weight: 500;
      font-family: monospace;
    }

    .product-footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding-top: 12px;
      border-top: 1px solid var(--cream-dark);
      flex-wrap: wrap;
    }

    .product-price {
      flex: 1;
      min-width: 0;
    }

    .price-val {
      font-family: 'Noto Serif', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--forest);
      display: block;
      line-height: 1;
    }

    .price-unit {
      font-size: 11px;
      color: var(--text-light);
      margin-top: 2px;
    }

    .price-alt {
      font-size: 12px;
      color: var(--amber);
      font-weight: 600;
    }

    .add-cart-btn {
      background: var(--forest);
      color: white;
      border: none;
      border-radius: var(--radius-sm);
      padding: 10px 14px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s, transform .2s;
      white-space: nowrap;
      letter-spacing: .02em;
      min-height: 44px;
    }

    .add-cart-btn:hover {
      background: var(--amber);
    }

    .add-cart-btn:active {
      transform: scale(.97);
    }

    /* ===== ADVANTAGES ===== */
    .advantages-section {
      padding: 60px 0;
    }

    @media (min-width: 769px) {
      .advantages-section {
        padding: 110px 0;
      }
    }

    .advantages-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    @media (min-width: 769px) {
      .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
    }

    .adv-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 22px 18px;
      background: var(--warm-white);
      border: 1.5px solid var(--cream-dark);
      border-radius: 4px;
      transition: border-color .25s, box-shadow .25s;
    }

    @media (min-width: 769px) {
      .adv-card {
        gap: 14px;
        padding: 28px 24px;
      }
    }

    .adv-card:hover {
      border-color: var(--amber-light);
      box-shadow: 0 4px 20px rgba(29, 78, 216, .08);
    }

    .adv-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--forest), var(--forest-light));
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: white;
      flex-shrink: 0;
    }

    .adv-icon svg {
      display: block;
      flex-shrink: 0;
    }

    @media (min-width: 769px) {
      .adv-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
      }
    }

    .adv-title {
      font-family: 'Noto Serif', serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--forest);
      line-height: 1.25;
    }

    @media (min-width: 769px) {
      .adv-title {
        font-size: 15px;
      }
    }

    .adv-text {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ===== PROMO BAND ===== */
    .promo-band {
      background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
      padding: 56px 0;
      position: relative;
      overflow: hidden;
    }

    .promo-band::before {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 40%;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='100' fill='rgba(29, 78, 216,0.08)'/%3E%3C/svg%3E") no-repeat center right;
      background-size: cover;
      pointer-events: none;
    }

    .promo-inner {
      display: flex;
      flex-direction: column;
      gap: 24px;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    @media (min-width: 769px) {
      .promo-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
      }
    }

    .promo-text h2 {
      font-family: 'Noto Serif', serif;
      font-size: clamp(18px, 4vw, 30px);
      font-weight: 700;
      color: white;
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .promo-text p {
      color: rgba(255, 255, 255, .7);
      font-size: 15px;
      line-height: 1.6;
    }

    .promo-price-block {
      flex-shrink: 0;
    }

    .promo-from {
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .promo-price-big {
      font-family: 'Noto Serif', serif;
      font-size: clamp(32px, 6vw, 44px);
      font-weight: 700;
      color: var(--amber-light);
      line-height: 1;
      display: block;
    }

    .promo-price-unit {
      font-size: 14px;
      color: rgba(255, 255, 255, .6);
    }

    .promo-cta-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex-shrink: 0;
      align-items: center;
      width: 100%;
    }

    @media (min-width: 769px) {
      .promo-cta-group {
        width: auto;
      }
    }

    .promo-cta-group .btn-primary,
    .promo-cta-group .btn-outline {
      width: 100%;
      justify-content: center;
    }

    @media (min-width: 769px) {

      .promo-cta-group .btn-primary,
      .promo-cta-group .btn-outline {
        width: auto;
      }
    }

    /* ===== DELIVERY ===== */
    .delivery-section {
      padding: 60px 0;
      background: var(--cream);
    }

    @media (min-width: 769px) {
      .delivery-section {
        padding: 110px 0;
      }
    }

    .delivery-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    @media (min-width: 769px) {
      .delivery-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        align-items: center;
      }
    }

    .delivery-info h2 {
      font-family: 'Noto Serif', serif;
      font-size: clamp(21px, 4.5vw, 32px);
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 14px;
      line-height: 1.1;
    }

    .delivery-info p {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .delivery-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
    }

    .delivery-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14.5px;
      color: var(--text-dark);
    }

    .check-icon {
      width: 24px;
      height: 24px;
      background: var(--forest);
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: white;
      font-size: 13px;
      margin-top: 1px;
    }

    .delivery-cards {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    @media (min-width: 769px) {
      .delivery-cards {
        gap: 14px;
      }
    }

    .delivery-card {
      background: var(--warm-white);
      border: 1.5px solid var(--cream-dark);
      border-radius: var(--radius-md);
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: border-color .2s;
    }

    .delivery-card:hover {
      border-color: var(--amber-light);
    }

    .delivery-card-icon {
      font-size: 30px;
      flex-shrink: 0;
      color: var(--forest);
      line-height: 1;
      display: flex;
    }

    .delivery-card-icon svg {
      display: block;
    }

    .addr-item svg {
      display: block;
      flex-shrink: 0;
      margin-top: 1px;
      color: rgba(255,255,255,.45);
    }

    .delivery-card-text strong {
      display: block;
      font-weight: 700;
      color: var(--forest);
      font-size: 15px;
      margin-bottom: 2px;
    }

    .delivery-card-text span {
      font-size: 13px;
      color: var(--text-light);
    }

    /* ===== CONTACT BAR ===== */
    .contact-bar {
      background: var(--forest);
      padding: 52px 0;
    }

    .contact-bar-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
    }

    @media (min-width: 769px) {
      .contact-bar-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 24px;
      }
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .contact-info .label {
      font-size: 11px;
      color: rgba(255, 255, 255, .5);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .contact-info strong {
      font-size: 17px;
      color: white;
      font-family: 'Noto Serif', serif;
    }

    .contact-info span {
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
    }

    .contact-divider {
      width: 1px;
      height: 48px;
      background: rgba(255, 255, 255, .15);
      display: none;
    }

    @media (min-width: 769px) {
      .contact-divider {
        display: block;
      }
    }

    /* ===== FOOTER ===== */
    footer {
      background: #111a14;
      padding: 64px 0 40px;
      color: rgba(255, 255, 255, .6);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-bottom: 52px;
    }

    @media (min-width: 769px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
        gap: 40px;
      }
    }

    .footer-brand {
      grid-column: span 2;
    }

    @media (min-width: 769px) {
      .footer-brand {
        grid-column: span 1;
      }
    }

    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255, 255, 255, .5);
      margin-top: 12px;
    }

    .footer-col h4 {
      font-family: 'Noto Serif', serif;
      font-size: 14px;
      font-weight: 700;
      color: rgba(255, 255, 255, .9);
      margin-bottom: 14px;
      letter-spacing: .04em;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-col ul a {
      color: rgba(255, 255, 255, .5);
      text-decoration: none;
      font-size: 13.5px;
      transition: color .2s;
    }

    .footer-col ul a:hover {
      color: var(--amber-light);
    }

    .addr-item {
      font-size: 13px;
      display: flex;
      gap: 8px;
      align-items: flex-start;
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 6px;
      text-align: center;
      font-size: 12px;
    }

    @media (min-width: 769px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
      }
    }

    .footer-bottom span {
      color: rgba(255, 255, 255, .3);
    }

    /* ===== RED HIGHLIGHTERS ===== */
    .hl {
      background-image: linear-gradient(180deg, transparent 58%, rgba(127, 29, 29, .32) 58%, rgba(127, 29, 29, .32) 92%, transparent 92%);
      padding: 0 2px;
      color: inherit;
    }
    .hl-strong { color: #7F1D1D; font-weight: 700; }
    .hl-chip {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(127, 29, 29, .14);
      color: #7F1D1D;
      border-radius: 2px;
      padding: 2px 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    /* ===== FLOATING CHAT + WHATSAPP ===== */
    .fab-stack {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 250;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 10px;
    }
    @media (min-width: 769px) {
      .fab-stack { right: 24px; bottom: 24px; gap: 12px; }
    }

    .fab-btn {
      width: 52px; height: 52px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: pointer;
      border: 0;
      transition: box-shadow .2s ease, background .2s ease;
    }
    @media (min-width: 769px) { .fab-btn { width: 58px; height: 58px; } }
    .fab-btn svg { width: 24px; height: 24px; display: block; }
    @media (min-width: 769px) { .fab-btn svg { width: 26px; height: 26px; } }

    .fab-chat {
      background: var(--forest); color: white;
      box-shadow: 0 6px 28px rgba(15, 39, 71, .50);
    }
    .fab-chat:hover { background: var(--bark); box-shadow: 0 10px 44px rgba(15, 39, 71, .60); }

    .fab-wa {
      background: #25D366; color: white;
      box-shadow: 0 6px 28px rgba(37, 211, 102, .50);
    }
    .fab-wa:hover { background: #1FB855; box-shadow: 0 10px 44px rgba(37, 211, 102, .60); }

    .fab-call {
      background: #7F1D1D; color: white;
      box-shadow: 0 6px 28px rgba(127, 29, 29, .50);
    }
    .fab-call:hover { background: #5B1414; box-shadow: 0 10px 44px rgba(127, 29, 29, .60); }

    .wa-float { display: none !important; }

    .chat-panel {
      position: fixed;
      right: 16px;
      bottom: 86px; /* sit above stacked mobile FABs */
      z-index: 251;
      width: 320px;
      max-width: calc(100vw - 32px);
      background: #FFFFFF;
      border: 1px solid var(--cream-dark);
      border-radius: var(--radius-lg);
      box-shadow: 0 12px 32px rgba(15, 23, 42, .12), 0 4px 10px rgba(15, 23, 42, .06);
      transform-origin: bottom right;
      opacity: 0;
      transform: translateY(8px) scale(.98);
      pointer-events: none;
      transition: opacity .15s ease, transform .15s ease;
    }
    .chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
    @media (min-width: 769px) {
      .chat-panel { right: 24px; bottom: 100px; }
    }

    .chat-head {
      padding: 14px 16px;
      border-bottom: 1px solid var(--cream-dark);
      background: var(--warm-white);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }
    .chat-head strong {
      font-family: 'Noto Serif', serif;
      font-size: 15px;
      color: var(--forest);
      letter-spacing: -.005em;
    }
    .chat-meta {
      font-size: 11px;
      color: var(--text-light);
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .chat-close {
      width: 24px; height: 24px;
      border: 0;
      background: transparent;
      cursor: pointer;
      color: var(--text-mid);
      font-size: 18px;
      line-height: 1;
      border-radius: var(--radius-sm);
    }
    .chat-close:hover { background: var(--cream); color: var(--forest); }
    .chat-intro { padding: 12px 16px 4px; font-size: 12px; color: var(--text-mid); }
    .chat-list { padding: 6px 8px 12px; display: flex; flex-direction: column; gap: 4px; }
    .chat-list a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: var(--radius-md);
      text-decoration: none;
      color: var(--text-dark);
      font-size: 13px;
      line-height: 1.4;
      transition: background .15s ease, color .15s ease;
    }
    .chat-list a:hover { background: var(--cream); color: var(--forest); }
    .chat-list a svg { flex-shrink: 0; color: var(--text-light); }
    .chat-list a:hover svg { color: var(--amber); }
    .chat-foot {
      padding: 10px 16px 14px;
      border-top: 1px solid var(--cream-dark);
      font-size: 11px;
      color: var(--text-light);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .chat-dot {
      width: 6px; height: 6px;
      border-radius: 999px;
      background: #16A34A;
      box-shadow: 0 0 0 3px rgba(22, 163, 74, .15);
      flex-shrink: 0;
    }

    /* ===== MODAL ===== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: blur(4px);
      z-index: 2000;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s;
      padding: 0;
    }

    @media (min-width: 480px) {
      .modal-overlay {
        align-items: center;
        padding: 20px;
      }
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .modal {
      background: var(--warm-white);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      padding: 28px 20px 28px;
      padding-bottom: max(28px, env(safe-area-inset-bottom));
      width: 100%;
      max-width: 420px;
      position: relative;
      transform: translateY(40px);
      transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
      box-shadow: 0 -8px 40px rgba(0, 0, 0, .2);
    }

    @media (min-width: 480px) {
      .modal {
        border-radius: var(--radius-lg);
        padding: 36px 32px 32px;
        transform: translateY(24px);
        box-shadow: 0 32px 80px rgba(0, 0, 0, .25);
      }
    }

    .modal-overlay.active .modal {
      transform: translateY(0);
    }

    /* drag handle for bottom sheet */
    .modal-handle {
      width: 40px;
      height: 4px;
      background: var(--cream-dark);
      border-radius: 2px;
      margin: 0 auto 20px;
      display: block;
    }

    @media (min-width: 480px) {
      .modal-handle {
        display: none;
      }
    }

    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 32px;
      height: 32px;
      border: none;
      background: var(--cream-dark);
      border-radius: 3px;
      cursor: pointer;
      font-size: 18px;
      color: var(--text-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, transform .15s;
      line-height: 1;
    }

    .modal-close:hover {
      background: var(--cream);
      transform: rotate(90deg);
    }

    .modal h3 {
      font-family: 'Noto Serif', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--forest);
      margin-bottom: 5px;
      line-height: 1.15;
    }

    .modal-sub {
      font-size: 13.5px;
      color: var(--text-light);
      margin-bottom: 20px;
      line-height: 1.55;
    }

    .modal-product {
      background: var(--cream);
      border: 1px solid var(--cream-dark);
      border-radius: 3px;
      padding: 10px 14px;
      font-size: 13px;
      color: var(--text-mid);
      margin-bottom: 16px;
      font-weight: 600;
      display: none;
    }

    .modal-field {
      margin-bottom: 14px;
    }

    .modal-field label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      color: var(--text-mid);
      margin-bottom: 6px;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    .modal-field input {
      width: 100%;
      padding: 12px 14px;
      border: 1.5px solid var(--cream-dark);
      border-radius: var(--radius-sm);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      background: white;
      color: var(--text-dark);
      outline: none;
      transition: border-color .2s;
      min-height: 48px;
    }

    .modal-field input:focus {
      border-color: var(--forest);
    }

    .modal-submit {
      width: 100%;
      background: var(--amber);
      color: white;
      border: none;
      border-radius: var(--radius-sm);
      padding: 14px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      margin-top: 6px;
      transition: background .2s, transform .15s;
      letter-spacing: .02em;
      min-height: 48px;
    }

    .modal-submit:hover {
      background: var(--amber-light);
      transform: translateY(-1px);
    }

    .modal-submit:active {
      transform: translateY(0);
    }

    .modal-wa {display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      background: var(--warm-white);
      border: 1.5px solid var(--cream-dark);
      color: var(--forest);
      border-radius: var(--radius-sm);
      padding: 12px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      margin-top: 10px;
      text-decoration: none;
      transition: background .2s, border-color .2s;
      min-height: 48px;
    }

    .modal-wa:hover {
      background: var(--cream);
      border-color: var(--forest);
    }

    .modal-success {
      text-align: center;
      padding: 16px 0 8px;
      display: none;
    }

    .modal-success .s-icon {
      font-size: 52px;
      margin-bottom: 12px;
      color: #22c55e;
      display: flex;
      justify-content: center;
    }

    .modal-success h4 {
      font-family: 'Noto Serif', serif;
      font-size: 22px;
      color: var(--forest);
      margin-bottom: 8px;
    }

    .modal-success p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--cream);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--bark-light);
      border-radius: 3px;
    }

    /* ===== MOBILE IMPROVEMENTS ===== */

    /* Search icon toggle button – mobile only */
    .mob-search-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cream);
      border: 1.5px solid var(--cream-dark);
      border-radius: var(--radius-sm);
      width: 44px;
      height: 44px;
      min-width: 44px;
      color: var(--text-mid);
      cursor: pointer;
      flex-shrink: 0;
      margin-left: auto;
      transition: background .2s, border-color .2s;
    }

    .mob-search-btn:hover {
      background: var(--cream-dark);
      border-color: var(--bark-light);
    }

    @media (min-width: 769px) {
      .mob-search-btn {
        display: none;
      }
    }

    @keyframes mobSearchFade {
      from {
        opacity: 0;
        transform: translateY(-5px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {

      /* Collapse search by default; revealed by JS */
      .header-search {
        display: none;
      }

      .header-search.mob-open {
        display: block;
        animation: mobSearchFade .18s ease;
      }

      /* Phone btn no longer needs to push itself right (search btn does that) */
      .header-phone-btn {
        margin-left: 0;
      }

      /* Hard-hide desktop contacts on mobile */
      .header-contacts {
        display: none !important;
      }
    }

    /* Hero CTAs: full-width stack on all phones */
    @media (max-width: 639px) {
      .hero {
        padding: 28px 0 36px;
      }

      .hero-ctas {
        flex-direction: column;
      }

      .hero-ctas>* {
        width: 100% !important;
        justify-content: center !important;
      }
    }

    /* Categories: 2-column grid on mobile instead of horizontal scroll */
    @media (max-width: 639px) {
      .categories-section {
        padding: 48px 0 36px;
      }

      .categories-scroll-wrapper {
        overflow: visible;
        margin: 0;
        padding: 0;
      }

      .categories-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: auto;
        gap: 10px;
      }

      .cat-card {
        padding: 16px 10px 14px;
        gap: 8px;
      }

      .cat-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
      }

      .cat-name {
        font-size: 13.5px;
      }

      .cat-count {
        font-size: 10px;
        padding: 2px 8px;
      }
    }

    /* Products: taller images and tighter spacing on mobile */
    @media (max-width: 767px) {
      .products-section-inner {
        padding: 48px 0;
      }

      .product-img {
        height: 190px !important;
      }

      .product-body {
        padding: 14px;
      }
    }

    /* Advantages: tighter on mobile */
    @media (max-width: 639px) {
      .advantages-section {
        padding: 48px 0;
      }

      .adv-card {
        padding: 16px 14px;
        gap: 10px;
      }

      .adv-text {
        font-size: 12.5px;
      }
    }

    /* Promo band: tighter on mobile */
    @media (max-width: 639px) {
      .promo-band {
        padding: 48px 0;
      }
    }

    /* Delivery: tighter on mobile */
    @media (max-width: 768px) {
      .delivery-section {
        padding: 48px 0;
      }
    }

    /* Contact bar: more compact on mobile */
    @media (max-width: 768px) {
      .contact-bar {
        padding: 40px 0;
      }

      .contact-bar-inner {
        gap: 14px;
      }
    }

    /* Footer: tighter on mobile */
    @media (max-width: 768px) {
      footer {
        padding: 52px 0 32px;
      }

      .footer-grid {
        gap: 22px;
        margin-bottom: 24px;
      }
    }

    /* ===== DRAWER NAV ===== */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      backdrop-filter: blur(4px);
      z-index: 400;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s;
    }

    .drawer-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    .nav-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(320px, 88vw);
      background: var(--forest);
      z-index: 401;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4, 0, .2, 1);
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      overscroll-behavior: contain;
      padding-bottom: env(safe-area-inset-bottom);
    }

    .nav-drawer.open {
      transform: translateX(0);
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      flex-shrink: 0;
    }

    .drawer-header .logo-text strong {
      color: white;
    }

    .drawer-close {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, .12);
      border: none;
      border-radius: 3px;
      color: white;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s, transform .2s;
      flex-shrink: 0;
      min-width: 36px;
      line-height: 1;
    }

    .drawer-close:hover {
      background: rgba(255, 255, 255, .22);
      transform: rotate(90deg);
    }

    .drawer-nav {
      flex: 1;
      padding: 6px 0;
    }

    .drawer-nav a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 14px 24px;
      color: rgba(255, 255, 255, .85);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      border-left: 3px solid transparent;
      transition: color .2s, background .2s, border-left-color .2s;
      min-height: 52px;
    }

    .drawer-nav a:hover,
    .drawer-nav a:focus-visible {
      color: white;
      background: rgba(255, 255, 255, .08);
      border-left-color: var(--amber);
    }

    .drawer-nav a.highlight {
      color: var(--amber-light) !important;
      font-weight: 700;
    }

    .drawer-divider {
      height: 1px;
      background: rgba(255, 255, 255, .08);
      margin: 4px 0;
    }

    .drawer-footer {
      padding: 20px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      flex-shrink: 0;
    }

    .drawer-contact {
      display: flex;
      flex-direction: column;
      gap: 3px;
      margin-bottom: 14px;
    }

    .drawer-contact a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      font-family: 'Noto Serif', serif;
      font-weight: 700;
    }

    .drawer-contact span {
      color: rgba(255, 255, 255, .5);
      font-size: 12px;
    }

    .drawer-cta-btns {
      display: flex;
      gap: 8px;
    }

    .drawer-cta-btns a {
      flex: 1;
      padding: 11px 10px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: background .2s;
      min-height: 44px;
    }

    .drawer-btn-call {
      background: var(--amber);
      color: white;
    }

    .drawer-btn-call:hover {
      background: var(--amber-light);
    }

    .drawer-btn-wa {
      background: rgba(255,255,255,.06);
      border: 1.5px solid rgba(255,255,255,.18);
      color: rgba(255,255,255,.92);
    }

    .drawer-btn-wa:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.32);
    }

    /* ===== PRODUCTS CAROUSEL (mobile) ===== */
    .products-carousel-wrap {
      position: relative;
    }

    @media (max-width: 767px) {
      .products-carousel-wrap {
        margin: 0 -16px;
      }

      .products-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 14px;
        padding: 4px 16px 16px;
      }

      .products-grid::-webkit-scrollbar {
        display: none;
      }

      .product-card {
        flex: 0 0 80vw;
        max-width: 300px;
        scroll-snap-align: start;
      }
    }

    @media (min-width: 480px) and (max-width: 767px) {
      .products-carousel-wrap {
        margin: 0 -20px;
      }

      .products-grid {
        padding: 4px 20px 16px;
      }

      .product-card {
        flex: 0 0 68vw;
        max-width: 320px;
      }
    }

    .carousel-dots {
      display: none;
      justify-content: center;
      gap: 7px;
      margin-top: 14px;
    }

    @media (max-width: 767px) {
      .carousel-dots {
        display: flex;
      }
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 2px;
      background: var(--cream-dark);
      border: none;
      cursor: pointer;
      transition: background .2s, transform .2s;
      padding: 0;
    }

    .carousel-dot.active {
      background: var(--forest);
      transform: scale(1.3);
    }

    /* ===== SIZE CHIP SELECTOR ===== */
    .size-chip {
      -webkit-appearance: none;
      appearance: none;
      cursor: pointer;
      transition: background .15s, border-color .15s, color .15s;
      user-select: none;
    }

    .size-chip:hover {
      background: var(--cream-dark);
      border-color: var(--bark-light);
    }

    .size-chip:focus-visible {
      outline: 2px solid var(--forest);
      outline-offset: 2px;
    }

    .size-chip.active {
      background: var(--forest);
      border-color: var(--forest);
      color: white;
    }

    /* ===== SCROLL REVEAL ===== */
    [data-reveal] {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity .5s ease, transform .5s ease;
    }

    [data-reveal].revealed {
      opacity: 1;
      transform: translateY(0);
    }

    [data-reveal][data-delay="1"] {
      transition-delay: .1s;
    }

    [data-reveal][data-delay="2"] {
      transition-delay: .2s;
    }

    [data-reveal][data-delay="3"] {
      transition-delay: .3s;
    }

    [data-reveal][data-delay="4"] {
      transition-delay: .4s;
    }

    /* ════════ POLISH 2026 — visual refinements ════════ */
    ::selection {
      background: var(--amber);
      color: var(--cream);
    }
    :focus-visible {
      outline: 2px solid var(--amber);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* primary button shimmer sweep */
    .btn-primary,
    .btn--primary,
    .cta-primary {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .btn-primary::after,
    .btn--primary::after,
    .cta-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        110deg,
        transparent 30%,
        rgba(236, 230, 219, 0.32) 50%,
        transparent 70%
      );
      transform: translateX(-150%);
      transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
      pointer-events: none;
      z-index: 0;
    }
    .btn-primary:hover::after,
    .btn--primary:hover::after,
    .cta-primary:hover::after {
      transform: translateX(150%);
    }

    /* card lift refinements */
    .product-card,
    .price-card,
    .feature-card,
    .review-card,
    .info-card {
      transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1),
                  box-shadow 0.4s cubic-bezier(.22, 1, .36, 1),
                  border-color 0.3s ease;
      will-change: transform;
    }
    .product-card:hover,
    .price-card:hover,
    .feature-card:hover,
    .review-card:hover,
    .info-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 22px 44px rgba(42, 46, 44, 0.18);
      border-color: var(--amber);
    }

    /* image zoom on hover */
    .img-zoom,
    .product-card .product-img,
    .feature-img {
      overflow: hidden;
    }
    .img-zoom img,
    .product-card .product-img img,
    .feature-img img {
      transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
    }
    .img-zoom:hover img,
    .product-card:hover .product-img img,
    .feature-img:hover img {
      transform: scale(1.05);
    }

    /* nav link underline */
    nav a:not(.btn):not(.btn-primary):not(.cta-primary) {
      position: relative;
    }
    nav a:not(.btn):not(.btn-primary):not(.cta-primary)::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: -4px;
      height: 2px;
      border-radius: 2px;
      background: var(--amber);
      transform: scaleX(0);
      transform-origin: right center;
      transition: transform 0.35s cubic-bezier(.22, 1, .36, 1);
    }
    nav a:not(.btn):not(.btn-primary):not(.cta-primary):hover::after {
      transform: scaleX(1);
      transform-origin: left center;
    }

    /* section title underline accent on hover */
    .section-title {
      transition: letter-spacing 0.4s ease;
    }

    /* social icon bounce */
    .footer__social,
    .social-icon {
      transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1),
                  box-shadow 0.3s ease;
    }
    .footer__social:hover,
    .social-icon:hover {
      transform: translateY(-3px) scale(1.06);
    }

    /* reduced motion */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
