    @font-face {
      font-family: "IBM Plex Sans Hebrew";
      src: url("assets/fonts/IBMPlexSansHebrew-Regular.ttf") format("truetype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "IBM Plex Sans Hebrew";
      src: url("assets/fonts/IBMPlexSansHebrew-ExtraLight.ttf") format("truetype");
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "IBM Plex Sans Hebrew";
      src: url("assets/fonts/IBMPlexSansHebrew-Medium.ttf") format("truetype");
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "IBM Plex Sans Hebrew";
      src: url("assets/fonts/IBMPlexSansHebrew-Bold.ttf") format("truetype");
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Lora";
      src: url("assets/fonts/Lora-Regular.ttf") format("truetype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Lora";
      src: url("assets/fonts/Lora-Italic.ttf") format("truetype");
      font-weight: 400;
      font-style: italic;
      font-display: swap;
    }

    @font-face {
      font-family: "Gveret Levin";
      src: url("assets/fonts/GveretLevin-Regular.ttf") format("truetype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --cream: #F7F0E6;
      --cream-2: #F2EADF;
      --ivory: #FFF9F2;
      --pearl: #F2EADF;
      --espresso: #2F211C;
      --cocoa: #5C3D32;
      --muted: #7A665C;
      --plum: #3D2249;
      --plum-soft: #6F4A7C;
      --lilac: #C7B2D6;
      --lilac-wash: rgba(199, 178, 214, 0.18);
      --gold: #C8A96A;
      --gold-muted: #B8955A;
      --gold-wash: rgba(200, 169, 106, 0.16);
      --mauve: #C7B2D6;
      --silver: #C8C2B8;
      --line: rgba(200, 194, 184, 0.35);
      --shadow: 0 22px 62px rgba(47, 33, 28, 0.12);
      --soft-shadow: 0 12px 34px rgba(47, 33, 28, 0.09);
      --radius: 28px;
      --radius-sm: 18px;
      --shell-max-width: 1500px;
      --shell-gutter: 24px;
      --shell-radius: 26px;
      --font-body: "IBM Plex Sans Hebrew", "Assistant", sans-serif;
      --font-display: "Lora", "IBM Plex Sans Hebrew", serif;
      --font-signature: "Gveret Levin", "IBM Plex Sans Hebrew", cursive;

      /* Boutique palette — flavors (#products) & contact (#contact) only */
      --lior-cream: #F8F3EC;
      --lior-lilac: #C9B8D8;
      --lior-aubergine: #3D1650;
      --lior-gold: #B8943A;
      --lior-text-muted: rgba(61, 22, 80, 0.74);
      --lior-shadow-near: 0 4px 14px rgba(61, 22, 80, 0.07);
      --lior-shadow-mid: 0 12px 32px rgba(61, 22, 80, 0.09);
      --lior-shadow-far: 0 26px 64px rgba(61, 22, 80, 0.07);
    }

    * {
      box-sizing: border-box;
    }

    :focus-visible {
      outline: 2px solid rgba(61, 34, 73, 0.70);
      outline-offset: 3px;
      border-radius: 4px;
    }

    :focus:not(:focus-visible) {
      outline: none;
    }

    html {
      scroll-behavior: smooth;
      scroll-snap-type: y proximity;
    }

    body {
      margin: 0;
      background: #2B1738;
      color: var(--espresso);
      font-family: var(--font-body);
      overflow-x: hidden;
      padding: var(--shell-gutter);
    }

    html.hero-locked {
      height: 100svh;
      overflow: hidden;
      overscroll-behavior: none;
    }

    body.hero-locked {
      height: 100%;
      overflow: hidden;
      overscroll-behavior: none;
    }

    html.hero-locked .home-opening,
    html.hero-locked main > section:not(.home-products),
    html.hero-locked .section-nav,
    html.hero-locked .footer {
      display: none;
    }

    html.hero-locked .home-products {
      height: calc(100svh - (var(--shell-gutter) * 2));
      max-height: calc(100svh - (var(--shell-gutter) * 2));
      overflow: hidden;
    }

    html.hero-locked .home-products::after {
      display: none;
    }

    html.hero-locked main {
      scroll-snap-type: none;
    }

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

    img[data-img],
    img[data-product-image] {
      opacity: 1;
      transition: opacity 0.35s ease;
    }

    .js img[data-img]:not(.is-loaded),
    .js img[data-product-image]:not(.is-loaded) {
      opacity: 0;
    }

    img.is-loaded {
      opacity: 1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
      max-width: var(--shell-max-width);
      margin: 0 auto;
      border-radius: var(--shell-radius);
      overflow: hidden;
      box-shadow:
        0 30px 80px rgba(18, 8, 26, 0.38),
        0 8px 24px rgba(47, 33, 28, 0.16);
      background:
        radial-gradient(circle at 12% 8%, rgba(199, 178, 214, 0.16), transparent 28%),
        radial-gradient(circle at 86% 12%, rgba(200, 169, 106, 0.12), transparent 30%),
        radial-gradient(circle at 50% 78%, rgba(61, 34, 73, 0.07), transparent 34%),
        linear-gradient(180deg, #F7F0E6 0%, #F2EADF 48%, #F7F0E6 100%);
    }

    .container {
      width: min(1360px, calc(100% - 40px));
      margin: 0 auto;
    }

    .header {
      position: sticky;
      top: 0;
      inset-inline: 0;
      z-index: 50;
      background: rgba(255, 249, 242, 0.78);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(200, 194, 184, 0.38);
      box-shadow:
        0 10px 32px rgba(47, 33, 28, 0.06),
        inset 0 -1px 0 rgba(255, 255, 255, 0.28);
    }

    .header-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      line-height: 1.1;
      flex-shrink: 0;
    }

    .brand-logo {
      width: 46px;
      height: 46px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .brand-name {
      font-family: var(--font-display);
      font-size: 1.45rem;
      font-style: italic;
      letter-spacing: 0.02em;
      color: var(--espresso);
      white-space: nowrap;
    }

    .brand-sub {
      font-size: 0.76rem;
      color: var(--muted);
      letter-spacing: 0.12em;
      margin-top: 4px;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      flex: 1;
      min-width: 0;
      white-space: nowrap;
      font-size: 0.96rem;
      color: rgba(47, 33, 28, 0.82);
      letter-spacing: 0.04em;
    }

    .nav a {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
      line-height: 1;
      transition: color 0.25s ease;
    }

    .nav a:hover {
      color: var(--plum);
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(61, 34, 73, 0.22);
      color: var(--plum);
      padding: 6px 14px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.84rem;
      background: linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(242, 234, 223, 0.78));
      box-shadow:
        0 4px 12px rgba(47, 33, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
      transition: all 0.25s ease;
    }

    .header-cta:hover {
      background: var(--plum);
      color: var(--ivory);
      border-color: var(--plum);
    }

    .nav .header-cta {
      margin-inline-start: 6px;
      flex-shrink: 0;
    }

    .menu-btn {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 250, 243, 0.75);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .menu-btn span {
      width: 18px;
      height: 1.5px;
      background: var(--espresso);
      display: block;
      position: relative;
    }

    .menu-btn span::before,
    .menu-btn span::after {
      content: "";
      width: 18px;
      height: 1.5px;
      background: var(--espresso);
      position: absolute;
      right: 0;
    }

    .menu-btn span::before {
      top: -6px;
    }

    .menu-btn span::after {
      top: 6px;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 76px;
      inset-inline: 16px;
      background: rgba(255, 250, 243, 0.96);
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: var(--shadow);
      padding: 20px;
      z-index: 49;
    }

    .mobile-nav.is-open {
      display: block;
    }

    .mobile-nav a {
      display: block;
      padding: 14px 4px;
      color: var(--espresso);
      border-bottom: 1px solid rgba(200, 194, 184, 0.25);
      font-weight: 500;
    }

    .mobile-nav a:last-child {
      border-bottom: 0;
    }

    .mobile-nav a[data-order] {
      margin-top: 10px;
      border: 1px solid rgba(61, 34, 73, 0.24);
      border-radius: 999px;
      background: rgba(255, 249, 242, 0.82);
      text-align: center;
      font-weight: 600;
      color: var(--plum);
    }

    .home-products {
      position: relative;
      background: linear-gradient(180deg, rgba(61, 34, 73, 0.035) 0%, transparent min(32%, 380px));
    }

    .home-products::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 44px;
      pointer-events: none;
      z-index: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(248, 244, 252, 0.55) 55%, rgba(242, 234, 223, 0.88) 100%);
    }

    .home-hero {
      min-height: calc(100svh - (var(--shell-gutter) * 2));
      height: calc(100svh - (var(--shell-gutter) * 2));
      position: relative;
      display: grid;
      place-items: center;
      overflow: hidden;
      padding: clamp(34px, 7vh, 72px) 20px clamp(28px, 6vh, 58px);
      text-align: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transform: scale(1.01);
      filter: brightness(0.9) saturate(1.06) contrast(1.05);
    }

    .hero-bg::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 50% 42%, rgba(255, 249, 242, 0.16), transparent 32%),
        linear-gradient(
          180deg,
          rgba(47, 33, 28, 0.18) 0%,
          rgba(47, 33, 28, 0.03) 34%,
          rgba(47, 33, 28, 0.08) 66%,
          rgba(47, 33, 28, 0.28) 100%
        );
    }

    .hero-brand-logo {
      position: absolute;
      left: 50%;
      top: 47%;
      transform: translate(-50%, -50%);
      z-index: 8;
      width: 170px;
      height: auto;
      padding: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
      text-decoration: none;
    }

    .hero-logo {
      width: 100%;
      max-width: 100%;
      height: auto;
      max-height: min(200px, 32vw);
      display: block;
      object-fit: contain;
      object-position: center center;
      filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
    }

    .home-hero-panel {
      position: absolute;
      left: 50%;
      right: auto;
      bottom: 56px;
      transform: translateX(-50%);
      z-index: 9;
      display: flex;
      justify-content: center;
      align-items: center;
      width: max-content;
      margin: 0;
      padding: 0;
    }

    .home-hero-ctas {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: stretch;
      justify-content: center;
      gap: 14px;
      width: 100%;
    }

    @media (min-width: 641px) and (max-width: 720px) {
      .home-hero-ctas {
        gap: 12px;
      }

      .home-hero .btn,
      .home-hero .btn.secondary {
        font-size: 0.8rem;
        padding-inline: 12px;
      }
    }

    @media (min-width: 721px) and (max-width: 860px) {
      .home-hero .btn,
      .home-hero .btn.secondary {
        font-size: 0.84rem;
        padding-inline: 14px;
      }
    }

    .home-opening {
      position: relative;
      z-index: 1;
      margin-top: 0;
      padding: 8px 0 10px;
      text-align: center;
      background:
        radial-gradient(circle at 50% -8%, rgba(201, 184, 216, 0.16), transparent 48%),
        radial-gradient(circle at 82% 48%, rgba(184, 148, 58, 0.06), transparent 46%),
        linear-gradient(180deg, var(--lior-cream) 0%, rgba(201, 184, 216, 0.07) 100%);
      border-bottom: 1px solid rgba(201, 184, 216, 0.32);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        var(--lior-shadow-mid);
    }

    .home-opening::after {
      content: "";
      display: block;
      width: min(520px, 88%);
      height: 2px;
      margin: 10px auto 0;
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 184, 216, 0.25) 10%,
        var(--lior-lilac) 26%,
        var(--lior-gold) 50%,
        var(--lior-lilac) 74%,
        rgba(201, 184, 216, 0.25) 90%,
        transparent 100%
      );
      box-shadow: 0 1px 8px rgba(61, 22, 80, 0.07);
    }

    .home-opening-inner {
      position: relative;
      z-index: 2;
    }

    .home-lead-text,
    .home-flavors-lede {
      max-width: 620px;
      margin-inline: auto;
      font-size: clamp(0.98rem, 1.15vw, 1.08rem);
      line-height: 1.8;
      color: rgba(47, 33, 28, 0.86);
      text-align: center;
      text-wrap: pretty;
    }

    .home-lead-text {
      margin-top: 8px;
      margin-bottom: 10px;
      font-weight: 400;
    }

    .home-flavors-heading {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(1.25rem, 2.2vw, 2rem);
      line-height: 1.12;
      font-weight: 500;
      color: var(--lior-aubergine);
      text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
    }

    .home-flavors-heading::after {
      content: "";
      display: block;
      width: min(300px, 70vw);
      height: 2.5px;
      margin: 6px auto 0;
      border-radius: 999px;
      border: 1px solid rgba(201, 184, 216, 0.42);
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(61, 22, 80, 0.22) 22%,
        rgba(184, 148, 58, 0.55) 42%,
        var(--lior-gold) 50%,
        rgba(184, 148, 58, 0.55) 58%,
        rgba(61, 22, 80, 0.22) 78%,
        transparent 100%
      );
      box-shadow:
        0 0 12px rgba(184, 148, 58, 0.2),
        0 1px 8px rgba(61, 22, 80, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    }

    .home-flavors-lede {
      margin-top: 0;
      margin-bottom: 0;
      font-weight: 400;
    }

    .products-intro-text {
      max-width: min(640px, 90vw);
      margin: 0 auto;
      line-height: 1.4;
      text-align: center;
      text-wrap: balance;
    }

    .home-opening .products-intro-text {
      color: var(--lior-text-muted);
      font-weight: 400;
      white-space: pre-line;
    }

    .home-opening-copy h1 + .products-intro-text {
      margin-top: 6px;
    }

    .home-opening .products-intro-text + .products-intro-text {
      margin-top: 0.48rem;
    }

    .home-opening .products-grid {
      margin-top: 10px;
    }

    .home-opening .reveal {
      transition: opacity 0.48s ease;
    }

    .cta-row {
      margin-top: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 40px;
      padding: 9px 22px;
      border-radius: 999px;
      border: 1px solid rgba(200, 169, 106, 0.32);
      background: linear-gradient(180deg, #4a2a58 0%, #3d2249 55%, #2f1938 100%);
      color: #fffaf3;
      font-weight: 600;
      font-size: 0.88rem;
      letter-spacing: 0.03em;
      box-shadow:
        0 12px 26px rgba(47, 33, 28, 0.22),
        0 4px 0 rgba(35, 19, 42, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(0, 0, 0, 0.18);
      transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      filter: brightness(1.04);
      box-shadow:
        0 16px 34px rgba(47, 33, 28, 0.26),
        0 5px 0 rgba(35, 19, 42, 0.75),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(0, 0, 0, 0.18);
    }

    .btn:active {
      transform: translateY(2px);
      box-shadow:
        0 6px 16px rgba(47, 33, 28, 0.18),
        0 1px 0 rgba(35, 19, 42, 0.80),
        inset 0 2px 4px rgba(0, 0, 0, 0.18);
    }

    .btn:focus-visible {
      outline: 2px solid rgba(200, 194, 184, 0.75);
      outline-offset: 4px;
    }

    .btn.secondary {
      background: rgba(255, 250, 243, 0.16);
      color: var(--ivory);
      backdrop-filter: blur(10px);
    }

    .home-opening .btn.secondary {
      background: rgba(248, 243, 236, 0.88);
      color: var(--lior-aubergine);
      border-color: rgba(201, 184, 216, 0.65);
      box-shadow:
        var(--lior-shadow-near),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    }

    .flavors-actions {
      margin-top: 4px;
      display: flex;
      justify-content: center;
    }

    .trust-badge {
      display: inline-block;
      width: fit-content;
      max-width: min(100%, 22rem);
      margin: 6px auto 2px;
      padding: 2px 9px 3px;
      min-height: 0;
      border-radius: 6px;
      font-size: 0.66rem;
      font-weight: 600;
      line-height: 1.35;
      letter-spacing: 0.03em;
      color: var(--lior-aubergine);
      background: rgba(248, 243, 236, 0.62);
      border: 1px solid rgba(184, 148, 58, 0.28);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
      cursor: default;
      pointer-events: none;
      user-select: none;
    }

    .flavors-actions .btn {
      width: auto;
      min-width: 110px;
      max-width: 148px;
      min-height: 36px;
      padding: 8px 18px;
      border-radius: 14px;
      font-size: 0.86rem;
      line-height: 1.15;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--lior-aubergine);
      background: linear-gradient(180deg, var(--lior-cream) 0%, rgba(248, 243, 236, 0.88) 100%);
      border: 1px solid rgba(61, 22, 80, 0.42);
      box-shadow:
        var(--lior-shadow-near),
        inset 0 1px 0 rgba(184, 148, 58, 0.35),
        inset 0 -1px 0 rgba(201, 184, 216, 0.2);
      filter: none;
    }

    .flavors-actions .btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.02);
      box-shadow:
        var(--lior-shadow-mid),
        inset 0 1px 0 rgba(184, 148, 58, 0.42),
        inset 0 -1px 0 rgba(201, 184, 216, 0.22);
    }

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

    .home-hero .btn {
      flex: 1 1 0;
      min-width: 0;
      max-width: 280px;
      min-height: 44px;
      padding: 10px 16px;
      font-size: 0.86rem;
      border-radius: 999px;
      white-space: nowrap;
      text-align: center;
      line-height: 1.2;
    }

    .home-hero .btn.secondary {
      flex: 1 1 0;
      min-width: 0;
      max-width: 280px;
      background: rgba(255, 249, 242, 0.18);
      color: #FFF9F2;
      border: 1px solid rgba(200, 194, 184, 0.46);
      box-shadow:
        0 10px 26px rgba(47, 33, 28, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }


    .home-hero .btn.secondary:hover {
      box-shadow:
        0 12px 26px rgba(47, 33, 28, 0.18),
        inset 0 1px 0 rgba(255, 250, 243, 0.28);
    }

    .hero-scroll-link {
      flex-shrink: 0;
      padding: 9px 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      width: auto;
      max-width: 100%;
      box-sizing: border-box;
      white-space: nowrap;
      font-size: 0.86rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      line-height: 1.45;
      text-align: center;
      border-radius: 999px;
      color: rgba(255, 249, 242, 0.98);
      background: linear-gradient(180deg, rgba(255, 249, 242, 0.20), rgba(255, 249, 242, 0.08));
      border: 1px solid rgba(232, 207, 145, 0.68);
      box-shadow:
        0 0 24px rgba(232, 207, 145, 0.38),
        0 12px 30px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(10px);
      transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
      animation: scrollBreath 2.4s ease-in-out infinite;
    }

    .hero-scroll-link::after {
      content: "↓";
      margin-inline-start: 8px;
      font-size: 0.9em;
    }

    .hero-scroll-link:hover {
      border-color: rgba(232, 207, 145, 0.82);
      transform: translateY(-2px);
      box-shadow:
        0 0 28px rgba(232, 207, 145, 0.42),
        0 14px 34px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);
    }

    .hero-scroll-link:focus-visible {
      outline: 2px solid rgba(200, 169, 106, 0.65);
      outline-offset: 4px;
      border-radius: 4px;
    }

    @media (max-width: 700px) {
      .hero-brand-logo {
        width: 130px;
        top: 47%;
      }

      .home-hero-panel {
        bottom: 34px;
      }
    }

    section {
      position: relative;
    }

    .section-pad {
      padding: 72px 0;
    }

    main > section {
      isolation: isolate;
      scroll-snap-align: start;
    }

    .section-unlock {
      opacity: 0.88;
      transform-origin: center top;
      transition: opacity 0.32s ease;
      will-change: opacity;
    }

    .section-unlock.is-unlocked {
      opacity: 1;
      will-change: auto;
    }

    main > section:not(:first-child).section-unlock {
      border-radius: clamp(22px, 3vw, 42px) clamp(22px, 3vw, 42px) 0 0;
      box-shadow:
        0 -18px 44px rgba(47, 33, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.44);
    }

    .section-title {
      text-align: center;
      margin-bottom: 36px;
    }

    .section-label {
      font-family: var(--font-display);
      color: var(--mauve);
      font-style: italic;
      letter-spacing: 0.2em;
      font-size: 0.88rem;
      margin-bottom: 12px;
    }

    .section-title h2 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 4vw, 3.1rem);
      line-height: 1.16;
      font-weight: 500;
      color: var(--espresso);
      text-shadow:
        0 1px 0 rgba(255, 250, 243, 0.45),
        0 10px 28px rgba(47, 33, 28, 0.08);
    }

    .section-title h2::after {
      content: "";
      display: block;
      width: min(88px, 26vw);
      height: 3px;
      margin: 12px auto 0;
      border-radius: 999px;
      border: 1px solid rgba(255, 250, 243, 0.42);
      background:
        linear-gradient(90deg, rgba(255, 250, 243, 0), rgba(255, 250, 243, 0.52), rgba(255, 250, 243, 0)),
        linear-gradient(90deg, rgba(200, 169, 106, 0.2), rgba(200, 169, 106, 0.82), rgba(90, 57, 103, 0.7), rgba(200, 194, 184, 0.75), rgba(200, 169, 106, 0.2));
      box-shadow:
        0 0 0 1px rgba(200, 194, 184, 0.16),
        0 0 20px rgba(200, 169, 106, 0.22),
        0 5px 12px rgba(47, 33, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
    }

    .section-title p {
      max-width: 620px;
      margin: 14px auto 0;
      font-size: 0.97rem;
      line-height: 1.75;
      color: var(--muted);
      font-weight: 300;
    }

    .signature-products {
      background:
        radial-gradient(circle at 20% 0%, rgba(199, 178, 214, 0.12), transparent 30%),
        linear-gradient(180deg, var(--ivory) 0%, var(--cream-2) 100%);
      border-bottom: 1px solid rgba(200, 194, 184, 0.35);
    }

    .signature-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 30px;
    }

    .signature-card {
      background: rgba(255, 249, 242, 0.78);
      border: 1px solid rgba(200, 194, 184, 0.42);
      border-radius: 34px;
      overflow: hidden;
      box-shadow: 0 18px 52px rgba(47, 33, 28, 0.12);
      transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .signature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(200, 169, 106, 0.42);
      box-shadow: 0 26px 70px rgba(47, 33, 28, 0.16);
    }

    .signature-image {
      aspect-ratio: 1 / 1.05;
      overflow: hidden;
      background: var(--cream-2);
    }

    .signature-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transition: transform 0.8s ease;
    }

    .signature-card:hover .signature-image img {
      transform: scale(1.04);
    }

    .signature-body {
      padding: 28px 26px 30px;
    }

    .signature-body h3 {
      margin: 0 0 10px;
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      color: var(--espresso);
    }

    .signature-body p {
      margin: 0 0 20px;
      color: var(--cocoa);
      font-size: 1rem;
      line-height: 1.85;
      font-weight: 300;
    }

    #home,
    #instagram,
    #why,
    #order,
    #contact {
      scroll-margin-top: 120px;
    }

    #products {
      scroll-margin-top: 0;
    }

    .products-kicker {
      margin: 0 auto 4px;
      font-family: var(--font-body);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      color: var(--plum-soft);
      opacity: 0.68;
      text-transform: uppercase;
    }

    .home-opening-copy {
      text-align: center;
      max-width: 860px;
      margin-inline: auto;
    }

    .home-opening-copy .home-flavors-heading {
      margin-top: 0;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 0;
      align-items: start;
    }

    .product-card {
      background: linear-gradient(165deg, var(--lior-cream) 0%, rgba(201, 184, 216, 0.14) 100%);
      border: 1px solid rgba(201, 184, 216, 0.55);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow:
        var(--lior-shadow-near),
        var(--lior-shadow-mid),
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        inset 0 0 0 1px rgba(255, 255, 255, 0.12);
      display: flex;
      flex-direction: column;
      height: auto;
      transition: box-shadow 0.28s ease, border-color 0.28s ease;
    }

    .product-card:hover {
      box-shadow:
        var(--lior-shadow-mid),
        var(--lior-shadow-far),
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        inset 0 0 0 1px rgba(201, 184, 216, 0.25);
      border-color: rgba(184, 148, 58, 0.42);
    }

    .product-image {
      position: relative;
      aspect-ratio: 1 / 0.70;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 20%, rgba(248, 243, 236, 0.9), rgba(201, 184, 216, 0.2));
    }

    .product-image::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(to top, rgba(61, 22, 80, 0.12), transparent 46%),
        radial-gradient(circle at 50% 12%, rgba(248, 243, 236, 0.12), transparent 44%);
      box-shadow: inset 0 -1px 0 rgba(201, 184, 216, 0.35);
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      cursor: pointer;
      transform: none !important;
      transition: none !important;
    }

    .product-card:hover .product-image img {
      transform: none !important;
      scale: 1 !important;
    }

    .product-body {
      display: flex;
      flex: 0 0 auto;
      flex-direction: column;
      align-items: center;
      padding: 7px 11px 13px;
    }

    .product-body h3 {
      margin: 0 0 6px;
      position: relative;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-align: center;
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 1.5vw, 1.22rem);
      font-weight: 500;
      line-height: 1.28;
      letter-spacing: 0.01em;
      color: var(--lior-aubergine);
      max-width: 100%;
      min-height: calc(1.22em * 1.28 * 2);
    }

    .product-body h3::after {
      content: "";
      display: block;
      width: min(80px, 38vw);
      height: 2px;
      margin: 5px auto 0;
      border-radius: 999px;
      border: 1px solid rgba(201, 184, 216, 0.4);
      background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 184, 216, 0.5) 22%,
        var(--lior-gold) 50%,
        rgba(201, 184, 216, 0.5) 78%,
        transparent
      );
      box-shadow:
        0 2px 8px rgba(61, 22, 80, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .product-price {
      margin: 0 0 6px;
      text-align: center;
      width: 100%;
    }

    .product-price-inner {
      display: inline-block;
      padding: 3px 12px 4px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--lior-aubergine);
      background: linear-gradient(180deg, rgba(248, 243, 236, 0.98), rgba(201, 184, 216, 0.12));
      border: 1px solid rgba(184, 148, 58, 0.4);
      border-radius: 999px;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 1px 4px rgba(61, 22, 80, 0.05);
    }

    .product-body p {
      margin: 0 0 5px;
      color: var(--lior-text-muted);
      font-size: 0.78rem;
      line-height: 1.48;
      font-weight: 400;
      min-height: 0;
      text-wrap: pretty;
      flex: 0 1 auto;
    }

    .product-link {
      appearance: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(61, 22, 80, 0.28);
      background: rgba(248, 243, 236, 0.75);
      color: var(--lior-aubergine);
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0;
      box-shadow:
        0 2px 8px rgba(61, 22, 80, 0.06),
        inset 0 1px 0 rgba(184, 148, 58, 0.22);
      transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .add-to-cart-btn {
      cursor: pointer;
      transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
    }

    .add-to-cart-btn.is-clicked {
      animation: cartTap 0.42s ease;
    }

    @keyframes cartTap {
      0% { transform: scale(1); }
      35% { transform: scale(0.9); }
      70% { transform: scale(1.08); }
      100% { transform: scale(1); }
    }

    .cart-feedback {
      min-height: 0;
      margin-top: 4px;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--lior-aubergine);
      opacity: 0;
      transform: translateY(4px);
      transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .cart-feedback.is-visible {
      min-height: 1.25em;
      opacity: 1;
      transform: translateY(0);
    }

    .product-card .product-link,
    .product-card .btn,
    .product-card button,
    .product-card [data-add-to-cart],
    .signature-card .add-to-cart-btn {
      min-height: 30px;
      margin-top: 0;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 0.78rem;
      line-height: 1.15;
      width: auto;
      min-width: 36px;
      max-width: 60px;
      white-space: nowrap;
    }

    .product-link:hover {
      background: rgba(201, 184, 216, 0.2);
      border-color: rgba(61, 22, 80, 0.45);
      box-shadow: 0 3px 12px rgba(61, 22, 80, 0.1);
      transform: translateY(-1px);
    }

    .editorial {
      position: relative;
      padding: 46px 0 52px;
      background:
        radial-gradient(circle at 14% 24%, rgba(200, 169, 106, 0.1), transparent 38%),
        radial-gradient(circle at 88% 18%, rgba(199, 178, 214, 0.1), transparent 34%),
        linear-gradient(180deg, #faf8f3 0%, #ebe4d9 52%, #f2e9df 100%);
      border-top: 1px solid rgba(200, 194, 184, 0.2);
      border-bottom: 1px solid rgba(200, 194, 184, 0.16);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 20px 48px rgba(47, 33, 28, 0.05);
    }

    .editorial-card {
      display: grid;
      grid-template-columns: 0.72fr 1.28fr;
      width: min(1180px, 100%);
      margin: 0 auto;
      align-items: stretch;
      background: linear-gradient(
        180deg,
        rgba(255, 249, 242, 0.82) 0%,
        rgba(242, 234, 223, 0.66) 100%
      );
      border: 1px solid rgba(200, 194, 184, 0.38);
      border-radius: 34px;
      overflow: hidden;
      box-shadow:
        0 22px 60px rgba(47, 33, 28, 0.12),
        0 6px 18px rgba(61, 34, 73, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(10px);
    }

    .editorial-img {
      min-height: 300px;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 30%, rgba(248, 243, 236, 0.9), rgba(201, 184, 216, 0.3)),
        linear-gradient(160deg, rgba(201, 184, 216, 0.25), rgba(184, 148, 58, 0.12));
    }

    .editorial-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      border-radius: 16px;
      box-shadow: 0 8px 28px rgba(61, 22, 80, 0.12);
    }

    .editorial-text {
      padding: 30px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .editorial-text h2 {
      margin: 0;
      font-family: var(--font-display);
      font-size: clamp(1.45rem, 2.6vw, 2.2rem);
      line-height: 1.2;
      font-weight: 500;
    }

    .editorial-text p {
      margin: 12px 0 0;
      color: #5c453c;
      font-size: 0.94rem;
      line-height: 1.68;
      font-weight: 400;
      max-width: 520px;
    }

    .why {
      position: relative;
      background:
        radial-gradient(ellipse 100% 48% at 50% 0%, rgba(199, 178, 214, 0.11), transparent 52%),
        linear-gradient(180deg, #fffbf7 0%, #f5ebe4 55%, #efe6dc 100%);
      border-top: 1px solid rgba(200, 194, 184, 0.2);
      border-bottom: 1px solid rgba(200, 194, 184, 0.18);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
    }

    .why.section-pad {
      padding-top: 64px;
      padding-bottom: 54px;
    }

    .why .section-title {
      margin-bottom: 42px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .why-card {
      background: linear-gradient(
        180deg,
        rgba(255, 249, 242, 0.82) 0%,
        rgba(242, 234, 223, 0.66) 100%
      );
      border: 1px solid rgba(200, 194, 184, 0.38);
      border-radius: var(--radius);
      padding: 34px 26px;
      text-align: center;
      box-shadow:
        0 22px 60px rgba(47, 33, 28, 0.12),
        0 6px 18px rgba(61, 34, 73, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 100%;
    }

    .icon-circle {
      width: 58px;
      height: 58px;
      margin: 0 auto 20px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: #5A3967;
      background: rgba(241, 232, 220, 0.92);
      border: 1px solid rgba(200, 194, 184, 0.55);
      font-size: 1.42rem;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.55),
        0 6px 16px rgba(47, 33, 28, 0.10);
    }

    .why-card h3 {
      margin: 0 0 10px;
      font-family: var(--font-display);
      font-size: 1.36rem;
      font-weight: 500;
      color: var(--espresso);
      position: relative;
      display: inline-block;
    }

    .why-card h3::after {
      content: "";
      display: block;
      width: 74px;
      height: 3px;
      margin: 8px auto 0;
      border-radius: 999px;
      border: 1px solid rgba(255, 250, 243, 0.34);
      background:
        linear-gradient(90deg, rgba(255, 250, 243, 0), rgba(255, 250, 243, 0.42), rgba(255, 250, 243, 0)),
        linear-gradient(90deg, rgba(200, 169, 106, 0.24), rgba(200, 169, 106, 0.7), rgba(90, 57, 103, 0.56), rgba(200, 194, 184, 0.66), rgba(200, 169, 106, 0.24));
      box-shadow:
        0 3px 8px rgba(47, 33, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .why-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.8;
      font-weight: 300;
    }

    .why .section-title .section-label {
      color: rgba(92, 61, 50, 0.9);
      font-size: 0.94rem;
      letter-spacing: 0.16em;
      font-weight: 500;
    }

    .details-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 22px;
    }

    .detail-card {
      min-height: 0;
      padding: 14px 14px 16px;
      text-align: center;
      background: linear-gradient(180deg, rgba(255, 249, 242, 0.76) 0%, rgba(242, 234, 223, 0.62) 100%);
      border: 1px solid rgba(200, 194, 184, 0.38);
      border-radius: 22px;
      box-shadow:
        0 14px 32px rgba(47, 33, 28, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }

    .detail-card .icon-circle {
      width: 48px;
      height: 48px;
      margin-bottom: 12px;
      font-size: 1rem;
      overflow: hidden;
    }

    .detail-card .icon-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
    }

    .pastry-icon {
      width: 28px;
      height: 28px;
      display: block;
    }

    .pastry-icon path,
    .pastry-icon circle,
    .pastry-icon line,
    .pastry-icon rect {
      fill: none;
      stroke: currentColor;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .detail-card h3 {
      margin: 0 0 8px;
      font-family: var(--font-display);
      font-size: 1.12rem;
      font-weight: 500;
      color: var(--espresso);
    }

    .detail-card p {
      margin: 0;
      color: #5c453c;
      font-size: 0.88rem;
      line-height: 1.58;
      font-weight: 400;
    }

    .instagram-section {
      position: relative;
      padding: 48px 0 56px;
      background:
        radial-gradient(circle at 50% 42%, rgba(200, 169, 106, 0.16), transparent 34%),
        radial-gradient(circle at 16% 18%, rgba(199, 178, 214, 0.18), transparent 30%),
        linear-gradient(145deg, #3a2048 0%, #2d173c 48%, #1f102b 100%);
    }

    .instagram-section::before {
      content: "";
      position: absolute;
      inset: 10% 8% 6%;
      pointer-events: none;
      background: radial-gradient(circle at 50% 48%, rgba(255, 228, 190, 0.18), transparent 42%);
      filter: blur(8px);
    }

    .instagram-card {
      position: relative;
      width: min(calc(100% - 48px), 840px);
      margin: 0 auto;
      min-height: 340px;
      border-radius: 30px;
      overflow: hidden;
      box-shadow:
        0 32px 80px rgba(20, 10, 30, 0.55),
        0 0 0 1px rgba(200, 169, 106, 0.22);
      border: 1px solid rgba(191, 148, 82, 0.42);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .instagram-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }

    .instagram-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(30, 15, 40, 0.22), rgba(30, 15, 40, 0.14)),
        radial-gradient(circle at center, rgba(255, 245, 232, 0.06) 0%, rgba(255, 245, 232, 0.14) 100%);
      z-index: 1;
      pointer-events: none;
      border-radius: inherit;
    }

    .instagram-content {
      position: relative;
      z-index: 2;
      width: min(82%, 600px);
      margin: 0 auto;
      padding: 22px 30px 24px;
      border-radius: 24px;
      background: rgba(255, 248, 238, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 22px 52px rgba(20, 10, 30, 0.28);
      border: 1px solid rgba(255, 230, 190, 0.65);
      text-align: center;
    }

    .instagram-kicker {
      font-family: var(--font-display);
      font-size: 15px;
      letter-spacing: 0.18em;
      color: #7b5a46;
      margin-bottom: 12px;
      font-style: italic;
    }

    .instagram-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.55rem);
      line-height: 1.18;
      font-weight: 700;
      color: #2f211b;
      margin: 0 0 14px;
    }

    .instagram-text {
      font-size: 1rem;
      line-height: 1.62;
      color: #4f3b32;
      margin: 0 auto 18px;
      max-width: 560px;
    }

    .instagram-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 28px;
      border-radius: 999px;
      background: linear-gradient(180deg, #fff9f2 0%, #eadcc7 100%);
      color: #3f2554;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      border: 1px solid rgba(191, 148, 82, 0.45);
      box-shadow:
        0 12px 26px rgba(60, 35, 25, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.76);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .instagram-button:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(60, 35, 25, 0.18);
    }

    .instagram-button:focus-visible {
      outline: 2px solid rgba(191, 148, 82, 0.55);
      outline-offset: 3px;
    }

    .instagram-button:active {
      transform: translateY(0);
    }

    @media (max-width: 900px) {
      .instagram-card {
        width: min(92%, 760px);
        min-height: 380px;
        border-radius: 30px;
      }

      .instagram-content {
        width: min(88%, 620px);
        padding: 24px 28px 26px;
      }

      .instagram-title {
        font-size: clamp(30px, 5vw, 42px);
      }
    }

    .catalog-cta {
      position: relative;
      padding: 80px 0 84px;
      text-align: center;
      background:
        radial-gradient(circle at 50% 0%, rgba(255, 249, 242, 0.65), transparent 42%),
        linear-gradient(180deg, #fdf9f4 0%, #efe6dc 100%);
      border-top: 1px solid rgba(200, 194, 184, 0.24);
      border-bottom: 1px solid rgba(200, 194, 184, 0.22);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.28);
    }

    .catalog-cta::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -1px;
      transform: translateX(-50%);
      width: min(220px, 52vw);
      height: 1px;
      pointer-events: none;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(200, 169, 106, 0.56),
        rgba(200, 194, 184, 0.62),
        transparent
      );
    }

    .catalog-cta h2 {
      margin: 0 0 22px;
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 500;
      color: var(--espresso);
    }

    #order {
      scroll-margin-top: 120px;
    }

    .order {
      position: relative;
      background:
        radial-gradient(circle at 78% 0%, rgba(200, 169, 106, 0.12), transparent 38%),
        linear-gradient(180deg, #faf6f0 0%, var(--cream) 40%, var(--cream-2) 100%);
      border-top: 1px solid rgba(200, 194, 184, 0.22);
      border-bottom: 1px solid rgba(200, 194, 184, 0.2);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
    }

    .order.section-pad {
      padding-top: 56px;
      padding-bottom: 40px;
    }

    .order .section-title {
      margin-bottom: 34px;
    }

    .order .section-title .section-label {
      color: rgba(92, 61, 50, 0.92);
      font-size: 0.9rem;
      letter-spacing: 0.15em;
      font-weight: 500;
    }

    .order .section-title h2 {
      font-size: clamp(2rem, 3.6vw, 3.05rem);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .step {
      text-align: center;
      padding: 20px 16px 18px;
      background: linear-gradient(
        180deg,
        rgba(255, 249, 242, 0.9) 0%,
        rgba(242, 234, 223, 0.74) 100%
      );
      border: 1px solid rgba(200, 194, 184, 0.42);
      border-radius: 22px;
      box-shadow:
        0 14px 34px rgba(47, 33, 28, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 156px;
    }

    .step-num {
      width: 52px;
      height: 52px;
      margin: 0 auto 14px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(200, 169, 106, 0.48);
      color: #5A3967;
      font-family: var(--font-display);
      font-size: 0.98rem;
      background: rgba(255, 250, 243, 0.78);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.62),
        0 6px 14px rgba(47, 33, 28, 0.10);
    }

    .step p {
      margin: 0;
      color: var(--espresso);
      font-size: 0.96rem;
      line-height: 1.6;
      font-weight: 500;
      position: relative;
      padding-top: 10px;
    }

    .step p::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 62px;
      height: 3px;
      border-radius: 999px;
      border: 1px solid rgba(255, 250, 243, 0.34);
      background:
        linear-gradient(90deg, rgba(255, 250, 243, 0), rgba(255, 250, 243, 0.4), rgba(255, 250, 243, 0)),
        linear-gradient(90deg, rgba(200, 169, 106, 0.24), rgba(200, 169, 106, 0.68), rgba(90, 57, 103, 0.52), rgba(200, 194, 184, 0.64), rgba(200, 169, 106, 0.24));
      box-shadow:
        0 2px 7px rgba(47, 33, 28, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }

    .final {
      position: relative;
      min-height: 0;
      display: grid;
      place-items: center;
      padding: 26px 0 22px;
      text-align: center;
      background:
        radial-gradient(circle at 50% 0%, rgba(201, 184, 216, 0.14), transparent 46%),
        radial-gradient(circle at 24% 100%, rgba(184, 148, 58, 0.07), transparent 40%),
        linear-gradient(180deg, var(--lior-cream) 0%, rgba(201, 184, 216, 0.1) 100%);
      border-top: 1px solid rgba(201, 184, 216, 0.38);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 -12px 40px rgba(61, 22, 80, 0.05);
    }

    .final .reveal::before {
      content: "";
      display: block;
      width: min(320px, 88%);
      height: 2px;
      margin: 0 auto 14px;
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 184, 216, 0.35) 14%,
        var(--lior-lilac) 30%,
        var(--lior-gold) 50%,
        var(--lior-lilac) 70%,
        rgba(201, 184, 216, 0.35) 86%,
        transparent 100%
      );
      box-shadow: 0 1px 8px rgba(61, 22, 80, 0.07);
    }

    .final .section-label {
      position: relative;
      color: var(--lior-text-muted);
      letter-spacing: 0.14em;
      font-size: 0.86rem;
      font-weight: 500;
    }

    .final .section-label::before {
      content: "";
      display: block;
      width: 7px;
      height: 7px;
      margin: 0 auto 12px;
      background: linear-gradient(135deg, var(--lior-gold), rgba(184, 148, 58, 0.75));
      transform: rotate(45deg);
      border-radius: 1px;
      box-shadow:
        0 0 0 1px rgba(201, 184, 216, 0.55),
        0 2px 6px rgba(61, 22, 80, 0.08);
    }

    .final h2 {
      margin: 2px 0 0;
      font-family: var(--font-display);
      font-size: clamp(1.7rem, 4vw, 2.7rem);
      font-weight: 500;
      line-height: 1.18;
      color: var(--lior-aubergine);
    }

    .final p {
      margin: 8px auto 0;
      max-width: 500px;
      color: var(--lior-text-muted);
      font-size: 0.94rem;
      line-height: 1.72;
      font-weight: 400;
    }

    .contact-details-card {
      position: relative;
      width: min(340px, 100%);
      margin: 12px auto 0;
      padding: 12px 14px 11px;
      border-radius: 18px;
      background: linear-gradient(165deg, var(--lior-cream) 0%, rgba(201, 184, 216, 0.12) 100%);
      border: 1px solid rgba(61, 22, 80, 0.22);
      box-shadow:
        var(--lior-shadow-near),
        var(--lior-shadow-mid),
        var(--lior-shadow-far),
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 0 0 1px rgba(201, 184, 216, 0.4);
      text-align: right;
    }

    .contact-details-card::before {
      content: "";
      position: absolute;
      inset: 8px;
      border-radius: 16px;
      border: 1px solid rgba(201, 184, 216, 0.38);
      pointer-events: none;
    }

    .contact-details-card::after {
      content: "";
      position: absolute;
      top: -5px;
      left: 50%;
      width: 9px;
      height: 9px;
      margin-left: -4.5px;
      background: linear-gradient(135deg, var(--lior-lilac), var(--lior-gold));
      transform: rotate(45deg);
      border-radius: 1px;
      box-shadow: 0 2px 8px rgba(61, 22, 80, 0.12);
      pointer-events: none;
    }

    .contact-details-list {
      position: relative;
      z-index: 1;
      width: max-content;
      max-width: 100%;
      margin: 0 auto;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 7px;
      direction: ltr;
    }

    .contact-details-list li {
      display: grid;
      grid-template-columns: 26px minmax(0, 1fr);
      align-items: center;
      column-gap: 12px;
      color: var(--cocoa);
      font-size: 0.94rem;
      line-height: 1.35;
    }

    .contact-icon {
      width: 26px;
      height: 26px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      color: var(--lior-aubergine);
      background: rgba(255, 249, 242, 0.72);
      box-shadow: inset 0 0 0 1px rgba(201, 184, 216, 0.46);
      font-size: 0.9rem;
      line-height: 1;
    }

    .contact-value {
      min-width: 0;
      color: var(--lior-aubergine);
      font-weight: 600;
      text-align: left;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .contact-value:hover {
      color: rgba(61, 22, 80, 0.72);
    }

    .contact-value.phone-link {
      direction: ltr;
      unicode-bidi: embed;
      white-space: nowrap;
    }

    .contact-value.email-link {
      direction: ltr;
      unicode-bidi: embed;
      white-space: nowrap;
      overflow-wrap: normal;
      word-break: normal;
    }

    .final .btn {
      margin-top: 16px;
      min-height: 40px;
      max-width: 260px;
      padding: 9px 22px;
      border-radius: 14px;
      font-size: 0.86rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--lior-aubergine);
      background: linear-gradient(180deg, var(--lior-cream) 0%, rgba(248, 243, 236, 0.9) 100%);
      border: 1px solid rgba(61, 22, 80, 0.42);
      box-shadow:
        var(--lior-shadow-near),
        inset 0 1px 0 rgba(184, 148, 58, 0.35),
        inset 0 -1px 0 rgba(201, 184, 216, 0.2);
      filter: none;
    }

    .final .btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.02);
      box-shadow:
        var(--lior-shadow-mid),
        inset 0 1px 0 rgba(184, 148, 58, 0.42),
        inset 0 -1px 0 rgba(201, 184, 216, 0.22);
    }

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

    .signature {
      margin-top: 16px;
      font-family: var(--font-signature);
      font-style: italic;
      color: var(--lior-text-muted);
      font-size: 1.02rem;
      letter-spacing: 0.02em;
      line-height: 1.5;
    }

    .footer {
      padding: 16px clamp(12px, 3vw, 20px) 14px;
      background: var(--cream-2);
      color: rgba(47, 33, 28, 0.50);
      text-align: center;
      font-size: 0.82rem;
      border-top: 1px solid rgba(200, 194, 184, 0.30);
      overflow: visible;
    }

    .footer-inner {
      max-width: min(720px, 100%);
      margin-inline: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow: visible;
    }

    .footer-instagram.ig-closing {
      margin: 0 0 12px;
      padding: 0;
      width: 100%;
      max-width: 100%;
      font-size: clamp(0.84rem, 2.5vw, 0.92rem);
      line-height: 1.72;
      color: rgba(92, 61, 50, 0.94);
      text-align: center;
      text-wrap: pretty;
    }

    .instagram-closing-link {
      display: inline-flex;
      align-items: center;
      gap: 0.28em;
      white-space: normal;
      color: rgba(90, 57, 103, 0.92);
      font-weight: 600;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
      text-decoration-color: rgba(90, 57, 103, 0.35);
      transition: color 0.2s ease, text-decoration-color 0.2s ease;
    }

    .instagram-closing-link:hover {
      color: var(--plum);
      text-decoration-color: rgba(61, 34, 73, 0.45);
    }

    .instagram-inline-icon {
      width: 1em;
      height: 1em;
      min-width: 14px;
      min-height: 14px;
      flex-shrink: 0;
      display: block;
      object-fit: contain;
      position: relative;
      top: 0.06em;
    }

    .footer-legal-wrap {
      position: relative;
      margin: 4px 0 8px;
      padding: 0;
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 2;
    }

    /* In-flow panel: sits between the Instagram line and the toggle (does not overlay it). */
    .footer-legal-popover {
      position: relative;
      width: 100%;
      max-width: min(640px, calc(100vw - 32px));
      margin: 0 auto;
      padding: 7px 14px;
      box-sizing: border-box;
      border-radius: 999px;
      background: rgba(255, 249, 242, 0.98);
      border: 1px solid rgba(61, 34, 73, 0.14);
      box-shadow:
        0 8px 22px rgba(47, 33, 28, 0.08),
        0 1px 4px rgba(61, 34, 73, 0.06);
    }

    .footer-legal-popover[hidden] {
      display: none !important;
    }

    .footer-legal-popnav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 10px 14px;
      margin: 0;
      padding: 0;
    }

    .footer-legal-popnav .footer-legal-doc-link:not(:first-child)::before {
      content: "·";
      display: inline-block;
      margin-inline: 0.55rem 0.75rem;
      color: rgba(61, 22, 80, 0.28);
      font-weight: 400;
      font-size: 0.95em;
      text-decoration: none;
      pointer-events: none;
    }

    .footer-legal-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.32em;
      margin: 0;
      padding: 2px 6px;
      border: none;
      background: transparent;
      font: inherit;
      font-size: 0.74rem;
      line-height: 1.4;
      font-weight: 500;
      color: rgba(74, 62, 58, 0.52);
      cursor: pointer;
      user-select: none;
      transition: color 0.18s ease;
    }

    .footer-legal-toggle:hover {
      color: rgba(74, 62, 58, 0.68);
    }

    .footer-legal-toggle:focus {
      outline: none;
    }

    .footer-legal-toggle:focus-visible {
      outline: 2px solid rgba(90, 57, 103, 0.35);
      outline-offset: 3px;
      border-radius: 6px;
    }

    .footer-legal-toggle-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 1.35em;
      min-height: 1.35em;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.68em;
      line-height: 1;
      opacity: 0.72;
      transition:
        color 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        opacity 0.18s ease;
    }

    .footer-legal-wrap.is-open .footer-legal-toggle-icon {
      color: var(--plum);
      opacity: 1;
      background: rgba(61, 34, 73, 0.1);
      border-color: rgba(61, 34, 73, 0.28);
    }

    .footer-legal-toggle-label {
      font-weight: 500;
    }

    .footer-legal-doc-link {
      font-size: 0.8rem;
      line-height: 1.45;
      color: rgba(61, 34, 73, 0.86);
      text-decoration: none;
      text-underline-offset: 2px;
      padding: 2px 0;
      transition: color 0.18s ease, text-decoration-color 0.18s ease;
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .footer-legal-popover {
        max-width: 92%;
        width: fit-content;
        padding: 0.65rem 1rem;
      }

      .footer-legal-popnav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 0.65rem;
      }
    }

    @media (max-width: 520px) {
      .footer-legal-doc-link {
        white-space: normal;
        text-align: center;
      }

      .footer-legal-popover {
        border-radius: 12px;
        max-width: calc(100vw - 20px);
      }

      .footer-legal-popnav {
        max-width: 100%;
        border-radius: 16px;
        padding: 8px 12px;
      }

      .footer-legal-popnav {
        gap: 8px 12px;
      }
    }

    .footer-legal-doc-link:hover {
      color: rgba(61, 22, 80, 0.98);
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-decoration-color: rgba(184, 148, 58, 0.45);
    }

    .footer-legal-doc-link:focus-visible {
      outline: 2px solid rgba(90, 57, 103, 0.35);
      outline-offset: 2px;
      border-radius: 3px;
    }

    @media (prefers-reduced-motion: reduce) {
      .footer-legal-toggle,
      .footer-legal-toggle-icon,
      .footer-legal-doc-link {
        transition: none;
      }
    }

    .footer-copy {
      margin: 0;
      padding: 0;
      width: 100%;
      font-size: 0.7rem;
      line-height: 1.55;
      color: rgba(47, 33, 28, 0.36);
    }

    .floating-wa {
      position: fixed;
      left: 22px;
      bottom: 22px;
      z-index: 60;
      width: 52px;
      height: 52px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--plum);
      color: var(--ivory);
      border: 1px solid rgba(200, 194, 184, 0.35);
      box-shadow: 0 10px 28px rgba(47, 33, 28, 0.24);
      transition: transform 0.25s ease;
    }

    .floating-wa:hover {
      transform: translateY(-3px) scale(1.02);
    }

    .floating-wa svg {
      width: 22px;
      height: 22px;
    }

    .floating-cart {
      position: fixed;
      right: 16px;
      bottom: 80px;
      z-index: 60;
      width: 48px;
      height: 48px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--plum);
      color: var(--ivory);
      border: 1px solid rgba(200, 194, 184, 0.35);
      box-shadow: 0 10px 28px rgba(47, 33, 28, 0.24);
      cursor: pointer;
      font-size: 1.2rem;
      line-height: 1;
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px);
      transition: opacity 0.25s ease, transform 0.25s ease;
    }

    body.show-order-actions .floating-cart {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }

    .floating-cart:hover {
      transform: translateY(-3px) scale(1.02);
    }

    .floating-cart:focus-visible {
      outline: 3px solid rgba(255, 249, 242, 0.95);
      outline-offset: 3px;
    }

    .floating-cart-count {
      position: absolute;
      top: -4px;
      right: -4px;
      min-width: 18px;
      height: 18px;
      border-radius: 999px;
      background: var(--gold);
      color: var(--espresso);
      font-size: 0.68rem;
      font-weight: 700;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 4px;
      pointer-events: none;
    }

    .reveal {
      opacity: 0;
      transition: opacity 0.45s ease;
    }

    .reveal.is-visible {
      opacity: 1;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scrollBreath {
      0%, 100% {
        transform: translateY(0);
        opacity: 0.88;
      }
      50% {
        transform: translateY(7px);
        opacity: 1;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }

      .reveal,
      .section-unlock {
        opacity: 1;
        transform: none;
        filter: none;
      }

      .floating-cart:hover {
        transform: none;
      }

      .image-lightbox img {
        animation: none !important;
      }
    }

    @media (max-width: 980px) {
      .nav,
      .header-cta {
        display: none;
      }

      .menu-btn {
        display: flex;
      }

      .header-inner {
        min-height: 68px;
        gap: 12px;
      }

      .brand {
        margin-inline-start: auto;
      }

      .mobile-nav {
        top: 68px;
      }

      .signature-grid,
      .products-grid,
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .details-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .editorial-card {
        grid-template-columns: 1fr;
      }

      .editorial-img {
        min-height: 320px;
      }
    }

    @media (max-width: 640px) {
      :root {
        --shell-gutter: 10px;
        --shell-radius: 16px;
      }

      .container {
        width: min(100% - 28px, 1360px);
      }

      .brand-logo {
        width: 40px;
        height: 40px;
      }

      .brand-name {
        font-size: 1.05rem;
      }

      .brand-sub {
        display: none;
      }

      .header-inner {
        gap: 10px;
      }

      .mobile-nav {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
      }

      .why .section-title .section-label {
        font-size: 0.86rem;
      }

      .icon-circle {
        width: 54px;
        height: 54px;
        font-size: 1.32rem;
      }

      .why-card {
        padding: 30px 22px;
      }

      .home-hero {
        min-height: calc(100svh - (var(--shell-gutter) * 2));
        height: calc(100svh - (var(--shell-gutter) * 2));
        padding: 44px 16px 26px;
      }

      .hero-bg img {
        object-position: center center;
      }

      .hero-scroll-link {
        font-size: 0.92rem;
      }

      .hero-logo {
        width: 100%;
        height: auto;
        margin-top: 0;
      }

      .home-opening {
        margin-top: 0;
        padding: 16px 0 20px;
      }

      .home-lead-text {
        margin-top: 4px;
        margin-bottom: 10px;
        font-size: clamp(0.96rem, 3.35vw, 1.02rem);
        line-height: 1.72;
      }

      .products-kicker {
        margin-bottom: 2px;
        font-size: 0.58rem;
      }

      .home-flavors-heading {
        font-size: clamp(1.48rem, 6.2vw, 2.28rem);
      }

      .home-flavors-heading::after {
        margin-top: 5px;
      }

      .home-flavors-lede {
        margin-top: 0;
        font-size: clamp(0.96rem, 3.35vw, 1.02rem);
        line-height: 1.72;
      }

      .home-opening .products-grid {
        margin-top: 10px;
      }

      .home-opening::after {
        margin-top: 10px;
      }

      .home-opening-copy h1 + .products-intro-text {
        margin-top: 6px;
      }

      .home-opening .products-intro-text + .products-intro-text {
        margin-top: 0.5rem;
      }

      .trust-badge {
        margin: 6px auto 3px;
        font-size: 0.64rem;
      }

      .flavors-actions {
        margin-top: 5px;
      }

      .home-hero-ctas {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
      }

      .home-hero .btn,
      .home-hero .btn.secondary {
        flex: 0 0 auto;
        width: min(300px, 100%);
        max-width: 100%;
        white-space: normal;
      }

      .hero-scroll-link {
        margin-top: 0;
        font-size: 0.78rem;
        padding: 8px 16px;
      }

      .section-pad {
        padding: 54px 0;
      }

      .section-title h2::after {
        width: min(76px, 28vw);
      }

      .signature-grid,
      .products-grid,
      .why-grid,
      .details-grid,
      .steps {
        grid-template-columns: 1fr;
      }

      .product-body p {
        min-height: auto;
      }

      .product-body h3 {
        font-size: clamp(1.28rem, 5.8vw, 1.5rem);
        margin-bottom: 10px;
      }

      .product-body h3::after {
        width: min(94px, 44vw);
      }

      .editorial {
        padding: 48px 0 54px;
      }

      .editorial-text {
        padding: 30px 22px;
      }

      .editorial-text h2 {
        font-size: clamp(1.55rem, 6.6vw, 2.05rem);
      }

      .details-grid {
        gap: 12px;
        margin-top: 18px;
      }

      .detail-card {
        padding: 16px 14px 17px;
      }

      .editorial-card {
        border-radius: 26px;
      }

      .final {
        padding: 42px 0 36px;
        min-height: 0;
      }

      .final .reveal::before {
        margin-bottom: 12px;
      }

      .final .section-label {
        font-size: 0.8rem;
        letter-spacing: 0.12em;
      }

      .final h2 {
        font-size: clamp(1.7rem, 7.8vw, 2.36rem);
      }

      .final p {
        margin-top: 12px;
        font-size: 0.95rem;
        line-height: 1.76;
      }

      .contact-details-card {
        width: min(94%, 420px);
        margin-top: 14px;
        padding: 0 16px;
        border-radius: 16px;
      }

      .contact-details-list {
        width: 100%;
        gap: 0;
      }

      .contact-details-list li {
        grid-template-columns: 26px minmax(0, 1fr);
        column-gap: 10px;
        align-items: center;
        font-size: 0.9rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(201, 184, 216, 0.4);
      }

      .contact-details-list li:last-child {
        border-bottom: none;
      }

      .contact-value.email-link {
        font-size: clamp(0.76rem, 3.2vw, 0.83rem);
        direction: ltr;
        white-space: normal;
        overflow-wrap: break-word;
      }

      .final .btn {
        margin-top: 14px;
        width: min(220px, 100%);
        min-height: 40px;
      }

      .signature {
        margin-top: 12px;
        font-size: 0.95rem;
      }

      .floating-wa {
        width: 46px;
        height: 46px;
        left: 14px;
        bottom: 14px;
      }

      .floating-cart {
        right: 14px;
        bottom: 70px;
        width: 46px;
        height: 46px;
      }

      .instagram-section {
        padding: 34px 0 40px;
      }

      .instagram-card {
        width: calc(100% - 28px);
        min-height: 310px;
        border-radius: 24px;
        box-shadow: 0 20px 55px rgba(20, 10, 30, 0.48);
      }

      .instagram-content {
        width: calc(100% - 38px);
        padding: 22px 20px 24px;
        border-radius: 22px;
      }

      .instagram-kicker {
        font-size: 13px;
        margin-bottom: 10px;
      }

      .instagram-title {
        font-size: clamp(1.55rem, 7vw, 1.9rem);
        line-height: 1.18;
        margin-bottom: 10px;
      }

      .instagram-text {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 18px;
      }

      .instagram-button {
        min-height: 44px;
        padding: 0 24px;
        font-size: 15px;
      }

      #home,
      #instagram,
      #why,
      #order,
      #contact {
        scroll-margin-top: 92px;
      }

      #products {
        scroll-margin-top: 0;
      }

      .order.section-pad {
        padding-top: 68px;
        padding-bottom: 40px;
      }

      .order .section-title {
        margin-bottom: 22px;
      }

      .order .section-title h2 {
        font-size: clamp(1.72rem, 7.4vw, 2.3rem);
      }

      .steps {
        gap: 12px;
      }

      .step {
        min-height: 0;
        padding: 18px 14px 16px;
      }

      .step p {
        font-size: 0.92rem;
      }


      .why.section-pad {
        padding-top: 74px;
        padding-bottom: 48px;
      }

      .why .section-title {
        margin-bottom: 28px;
      }
    }

    @media (max-width: 420px) {
      .home-hero-ctas {
        gap: 8px;
      }

      .home-hero .btn,
      .home-hero .btn.secondary {
        width: 100%;
        min-height: 42px;
        font-size: 0.84rem;
        padding-inline: 14px;
      }
    }

    .order-modal {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      overflow-y: auto;
      background:
        radial-gradient(circle at center, rgba(247, 240, 230, 0.16), transparent 42%),
        rgba(47, 33, 28, 0.56);
      backdrop-filter: blur(9px);
    }

    .order-modal.is-open {
      display: flex;
    }

    .order-modal-card {
      width: min(92vw, 580px);
      max-height: min(86vh, 680px);
      overflow-y: auto;
      margin: auto;
      background: linear-gradient(
        180deg,
        rgba(255, 249, 242, 0.98) 0%,
        rgba(242, 234, 223, 0.95) 100%
      );
      border: 1px solid rgba(200, 194, 184, 0.52);
      border-radius: 26px;
      box-shadow:
        0 20px 56px rgba(0, 0, 0, 0.20),
        0 2px 10px rgba(85, 50, 30, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
      padding: 24px 28px 26px;
      position: relative;
      scrollbar-width: thin;
      scrollbar-color: rgba(111, 74, 124, 0.28) transparent;
    }

    .home-opening::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(circle at 16% 4%, rgba(201, 184, 216, 0.14), transparent 34%),
        radial-gradient(circle at 88% 20%, rgba(184, 148, 58, 0.07), transparent 38%),
        linear-gradient(180deg, rgba(248, 243, 236, 0.28) 0%, transparent min(36%, 240px));
      opacity: 1;
    }

    .final::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(circle at 48% 0%, rgba(201, 184, 216, 0.12), transparent 40%),
        radial-gradient(circle at 12% 88%, rgba(184, 148, 58, 0.06), transparent 36%),
        linear-gradient(180deg, rgba(248, 243, 236, 0.2) 0%, transparent 55%);
      opacity: 1;
    }

    .editorial::before,
    .catalog-cta::before,
    .why::before,
    .order::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 18% 0%, rgba(199, 178, 214, 0.12), transparent 32%),
        radial-gradient(circle at 84% 14%, rgba(200, 169, 106, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 249, 242, 0.16) 0%, transparent min(32%, 220px));
      opacity: 0.92;
    }

    .home-opening .container,
    .instagram-section .container,
    .editorial .container,
    .catalog-cta .container,
    .final .container,
    .why .container,
    .order .container {
      position: relative;
      z-index: 1;
    }

    .order-modal-close {
      position: absolute;
      top: 14px;
      left: 14px;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid rgba(200, 194, 184, 0.50);
      background: rgba(255, 250, 243, 0.92);
      color: #5C3D32;
      cursor: pointer;
      font-size: 1.12rem;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }

    .order-modal-close:hover {
      background: #FFF9F2;
      color: #3D2249;
      transform: translateY(-1px);
    }

    .order-modal-close:focus-visible {
      outline: 2px solid rgba(61, 34, 73, 0.75);
      outline-offset: 3px;
    }

    .order-modal-card h2 {
      margin: 0 0 6px;
      padding-left: 42px;
      font-family: var(--font-body);
      font-size: clamp(1.45rem, 2.2vw, 1.9rem);
      line-height: 1.2;
      font-weight: 500;
      color: #2F211C;
      text-align: right;
    }

    .order-modal-subtitle {
      margin: 0 0 16px;
      color: rgba(78, 49, 94, 0.78);
      line-height: 1.5;
      font-size: 0.93rem;
      font-weight: 500;
      text-align: right;
    }

    .order-step {
      display: grid;
      gap: 10px;
      max-width: 500px;
      margin: 0 auto;
    }

    .order-form {
      max-width: 500px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px 14px;
    }

    .order-step[hidden],
    .order-form[hidden] {
      display: none;
    }

    .order-field {
      display: flex;
      flex-direction: column;
      gap: 5px;
      min-width: 0;
    }

    .order-field:not(.order-field-phone):not(.order-field-date) {
      grid-column: 1 / -1;
    }

    .order-field-phone,
    .order-field-date {
      grid-column: span 1;
      width: 100%;
    }

    .order-field label {
      font-size: 0.84rem;
      font-weight: 600;
      line-height: 1.25;
      color: rgba(47, 33, 28, 0.86);
      text-align: right;
      letter-spacing: 0;
    }

    .order-field input,
    .order-field textarea {
      width: 100%;
      box-sizing: border-box;
      border: 1px solid rgba(92, 61, 50, 0.18);
      border-radius: 14px;
      background: rgba(255, 249, 242, 0.72);
      color: #2F211C;
      font-family: inherit;
      font-size: 0.9rem;
      line-height: 1.35;
      padding-inline: 14px;
      outline: none;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 6px 14px rgba(47, 33, 28, 0.035);
      transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .order-field input {
      height: 44px;
      padding-top: 0;
      padding-bottom: 0;
    }

    .order-field textarea {
      min-height: 76px;
      padding-top: 10px;
      padding-bottom: 10px;
      resize: vertical;
    }

    .order-field input:focus,
    .order-field textarea:focus {
      border-color: rgba(111, 74, 124, 0.62);
      box-shadow: 0 0 0 4px rgba(199, 178, 214, 0.18);
      background: #FFF9F2;
    }

    .order-field input:focus-visible,
    .order-field textarea:focus-visible {
      outline: 2px solid rgba(61, 34, 73, 0.72);
      outline-offset: 2px;
    }

    #customerPhone,
    input[type="tel"] {
      direction: ltr;
      text-align: left;
      letter-spacing: 0.02em;
    }

    #customerPhone::placeholder,
    input[type="tel"]::placeholder {
      direction: rtl;
      text-align: right;
    }

    input[type="date"] {
      min-width: 0;
      line-height: 44px;
    }

    input[type="date"]::-webkit-calendar-picker-indicator {
      margin-inline-start: 6px;
      opacity: 0.68;
    }

    .order-cart-wrap {
      display: grid;
      gap: 8px;
      width: min(100%, 480px);
      margin-inline: auto;
      padding: 10px;
      border: 1px solid rgba(200, 194, 184, 0.48);
      border-radius: 16px;
      background: rgba(255, 250, 243, 0.58);
    }

    .order-cart-wrap[hidden],
    .order-empty-state[hidden],
    .order-continue[hidden],
    .order-field[hidden] {
      display: none;
    }

    .order-empty-state {
      display: grid;
      gap: 8px;
      padding: 18px 16px;
      border: 1px dashed rgba(111, 74, 124, 0.30);
      border-radius: 18px;
      background: rgba(255, 250, 243, 0.66);
      color: #5C3D32;
      text-align: center;
    }

    .order-empty-state strong {
      color: #3D2249;
      font-size: 1rem;
    }

    .order-empty-state span {
      font-size: 0.88rem;
      line-height: 1.55;
    }

    .order-modal .btn,
    .order-submit {
      min-height: 42px;
      padding: 9px 22px;
      border-radius: 14px;
      font-size: 0.9rem;
    }

    .order-continue {
      width: min(100%, 320px);
      margin: 2px auto 0;
    }

    .order-back-to-products {
      width: auto;
      min-width: 150px;
      max-width: 210px;
      align-self: center;
      margin-inline: auto;
      margin-top: 4px;
      padding: 8px 18px;
      min-height: 38px;
      font-size: 0.9rem;
      box-sizing: border-box;
    }

    @media (max-width: 400px) {
      .order-back-to-products {
        max-width: 100%;
      }
    }

    .order-cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      padding-inline: 2px;
    }

    .order-cart-title {
      color: #5C3D32;
      font-size: 0.84rem;
      font-weight: 700;
    }

    .order-cart-clear {
      min-height: 30px;
      border: 1px solid rgba(111, 74, 124, 0.28);
      border-radius: 999px;
      background: rgba(255, 250, 243, 0.82);
      color: #4E315E;
      padding: 4px 12px;
      font-family: inherit;
      font-size: 0.78rem;
      cursor: pointer;
      transition: background 0.18s ease, border-color 0.18s ease;
    }

    .order-cart-clear[hidden] {
      display: none;
    }

    .order-cart-clear:hover {
      background: #FFF9F2;
      border-color: rgba(111, 74, 124, 0.42);
    }

    .order-cart-list {
      display: grid;
      gap: 6px;
    }

    .order-cart-item {
      display: grid;
      grid-template-columns: minmax(120px, 1fr) auto;
      align-items: center;
      gap: 8px;
      padding: 7px 9px;
      border-radius: 13px;
      background: rgba(255, 255, 255, 0.50);
      box-shadow: inset 0 0 0 1px rgba(200, 194, 184, 0.24);
    }

    .order-cart-name {
      min-width: 0;
      color: #2F211C;
      font-size: 0.9rem;
      font-weight: 600;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .order-cart-actions {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      gap: 7px;
    }

    .order-cart-btn,
    .order-cart-remove {
      border: 1px solid rgba(111, 74, 124, 0.34);
      background: rgba(255, 250, 243, 0.9);
      color: #4E315E;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
    }

    .order-cart-btn {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      line-height: 1;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .order-cart-remove {
      min-height: 30px;
      border-radius: 999px;
      padding: 4px 11px;
      font-size: 0.78rem;
      font-weight: 600;
    }

    .order-cart-btn:hover,
    .order-cart-remove:hover {
      background: #FFF9F2;
      border-color: rgba(111, 74, 124, 0.42);
      transform: translateY(-1px);
    }

    .order-cart-qty {
      min-width: 20px;
      color: #5C3D32;
      font-size: 0.88rem;
      font-weight: 700;
      text-align: center;
    }

    .order-error {
      display: none;
      grid-column: 1 / -1;
      margin: 2px 0 0;
      color: #7A2E2E;
      background: rgba(122, 46, 46, 0.08);
      border: 1px solid rgba(122, 46, 46, 0.16);
      border-radius: 14px;
      padding: 9px 12px;
      font-size: 0.88rem;
    }

    .order-error.is-visible {
      display: block;
    }

    .order-submit {
      grid-column: 1 / -1;
      width: min(100%, 280px);
      margin: 14px auto 0;
      box-shadow:
        0 6px 18px rgba(63, 39, 82, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    }

    @media (max-width: 700px) {
      .order-modal {
        padding: 14px;
        overflow-y: auto;
      }

      .order-modal-card {
        width: calc(100vw - 28px);
        max-height: 88vh;
        padding: 22px 16px 24px;
        border-radius: 24px;
      }

      .order-modal-close {
        top: 12px;
        left: 12px;
        width: 38px;
        height: 38px;
      }

      .order-modal-card h2 {
        padding-left: 40px;
        font-size: 1.42rem;
      }

      .order-modal-subtitle {
        font-size: 0.9rem;
        margin-bottom: 14px;
      }

      .order-form {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .order-field,
      .order-field-phone,
      .order-field-date,
      .order-error,
      .order-submit {
        grid-column: 1 / -1;
      }

      .order-cart-wrap {
        width: 100%;
      }

      .order-cart-item {
        grid-template-columns: 1fr;
        gap: 7px;
      }

      .order-cart-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
      }
    }

    body.has-modal {
      overflow: hidden;
    }

    .image-lightbox {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(14px, 3vw, 28px);
      box-sizing: border-box;
      background: rgba(20, 10, 25, 0.72);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.16s ease, visibility 0.16s ease;
    }

    .image-lightbox.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .image-lightbox img {
      max-width: min(1080px, 94vw);
      max-height: min(88svh, 880px);
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 16px;
      box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.22),
        0 4px 12px rgba(47, 33, 28, 0.14);
      cursor: default;
      transition: opacity 0.16s ease;
      opacity: 1;
    }

    .image-lightbox.is-loading img {
      opacity: 0.35;
    }

    .image-lightbox.is-error img {
      display: none;
    }

    .image-lightbox-status {
      margin: 10px auto 0;
      max-width: min(480px, 90vw);
      font-size: 0.88rem;
      line-height: 1.45;
      text-align: center;
      color: rgba(255, 249, 242, 0.92);
    }

    .image-lightbox-status[hidden] {
      display: none !important;
    }

    .image-lightbox-close {
      position: fixed;
      top: 22px;
      left: 22px;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255, 250, 243, 0.35);
      background: rgba(40, 28, 36, 0.55);
      color: #fffaf3;
      font-size: 1.35rem;
      cursor: pointer;
      line-height: 1;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    }

    .image-lightbox-close:focus-visible {
      outline: 2px solid rgba(255, 249, 242, 0.95);
      outline-offset: 3px;
    }

    body.has-lightbox {
      overflow: hidden;
    }

    @media (max-width: 640px) {
      .image-lightbox {
        padding: 16px;
      }

      .image-lightbox img {
        max-width: 94vw;
        max-height: 82svh;
        border-radius: 14px;
      }

      .image-lightbox-close {
        top: 16px;
        left: 16px;
      }

    }

    /* ── Section navigation dots ── */
    .section-nav {
      position: fixed;
      left: 8px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 90;
      display: flex;
      flex-direction: column;
      gap: 9px;
      align-items: center;
      pointer-events: none;
      opacity: 0.55;
    }

    .section-nav:hover {
      opacity: 0.85;
    }

    .nav-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.28);
      border: 1px solid rgba(255, 255, 255, 0.38);
      cursor: pointer;
      pointer-events: all;
      transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
      position: relative;
    }

    .nav-dot.is-active {
      background: #c8a96e;
      border-color: #c8a96e;
      transform: scale(1.5);
    }

    .nav-dot:hover:not(.is-active) {
      background: rgba(255, 255, 255, 0.58);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .nav-dot:focus-visible {
      outline: 2px solid rgba(255, 249, 242, 0.95);
      outline-offset: 4px;
    }

    .nav-dot::after {
      content: attr(data-label);
      position: absolute;
      left: calc(100% + 10px);
      top: 50%;
      transform: translateY(-50%);
      background: rgba(35, 18, 48, 0.90);
      color: #f5e8d5;
      font-size: 0.72rem;
      font-family: var(--font-body);
      padding: 4px 10px;
      border-radius: 7px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.16s ease;
    }

    .nav-dot:hover::after {
      opacity: 1;
    }

    @media (max-width: 680px) {
      .section-nav { display: none; }
    }

    @media (max-width: 768px) {
      html {
        scroll-snap-type: none;
      }

      .header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }

      .home-hero {
        height: auto;
        min-height: 100svh;
      }

      .home-hero-panel,
      .hero-scroll-link,
      .image-lightbox-content {
        animation: none;
      }

      .hero-bg img {
        transform: none;
      }

      .reveal,
      .section-unlock,
      .section-unlock.is-unlocked {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
      }

      .section-unlock,
      main > section:not(:first-child).section-unlock {
        box-shadow: none;
      }

      .page,
      .product-card,
      .signature-card,
      .editorial-card,
      .instagram-card,
      .detail-card {
        filter: none;
      }

      .product-card,
      .signature-card,
      .editorial-card,
      .detail-card {
        box-shadow:
          0 10px 24px rgba(47, 33, 28, 0.08),
          inset 0 1px 0 rgba(255, 255, 255, 0.5);
      }

      .instagram-card {
        box-shadow:
          0 16px 36px rgba(20, 10, 30, 0.32),
          0 0 0 1px rgba(200, 169, 106, 0.18);
      }

      .btn:hover,
      .instagram-button:hover,
      .product-card:hover,
      .signature-card:hover,
      .floating-wa:hover {
        transform: none;
      }

      .btn:hover {
        filter: none;
      }

      .nav-dot.is-active {
        transform: none;
      }

      .product-card:hover .product-image img,
      .signature-card:hover .signature-image img {
        transform: none;
      }

      .product-image img,
      .signature-image img,
      .product-card,
      .signature-card,
      .editorial-card,
      .detail-card,
      .instagram-card,
      .floating-wa {
        transition: opacity 0.2s ease, border-color 0.2s ease;
      }
    }

    @media (max-width: 640px) {
      .products-intro-text {
        max-width: min(680px, 94vw);
        line-height: 1.48;
      }

      .products-intro-text .intro-line-break {
        display: none;
      }
    }


/* ==========================================================================
   Boutique premium redesign overrides
   ========================================================================== */
:root {
  --color-aubergine-dark: #2A1A2E;
  --color-aubergine: #3D1F4E;
  --color-lilac: #C9A0DC;
  --color-lilac-muted: #9B7AAB;
  --color-lilac-soft: #7A5F8A;
  --color-cream: #F8F4EE;
  --color-gold: #C4A844;
  --color-border: #E2D9EC;
  --color-footer-dark: #1A0D22;
  --boutique-hover-shadow: 0 10px 28px rgba(61, 31, 78, 0.10);
  --font-body: "Heebo", "IBM Plex Sans Hebrew", sans-serif;
  --font-display: "Playfair Display", "Heebo", serif;
  --font-signature: "Playfair Display", "Heebo", serif;
}

html {
  scroll-padding-top: 46px;
}

body {
  margin: 0;
  padding: 0;
  background: var(--color-cream);
  color: var(--color-aubergine);
  font-family: var(--font-body);
  font-weight: 300;
}

main {
  margin: 0;
  padding: 0;
  display: block;
}

.page {
  max-width: none;
  border-radius: 0;
  box-shadow: none;
  background: var(--color-cream);
  overflow: hidden;
}

.container {
  width: min(100% - 48px, 980px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 46px;
  background: rgba(248, 244, 238, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(196, 168, 68, 0.18);
}

.site-nav {
  height: 46px;
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 18px;
}

.nav-brand {
  justify-self: start;
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: rgba(248, 244, 238, 0.92);
  white-space: nowrap;
  direction: ltr;
}

.nav-brand span:last-child {
  color: var(--color-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 34px);
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(248, 244, 238, 0.88);
  letter-spacing: 0.04em;
  transition: color 0.18s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--color-gold);
}

.nav-links .hero-scroll-link,
.nav-brand.hero-scroll-link {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  animation: none !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  min-height: unset !important;
  line-height: inherit !important;
  white-space: nowrap;
}

.nav-links .hero-scroll-link::after,
.nav-brand.hero-scroll-link::after {
  content: none !important;
}

.nav-cta {
  justify-self: end;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0.5px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--color-gold);
  color: var(--color-aubergine-dark);
}

html.hero-locked .home-products {
  height: 100svh;
  max-height: 100svh;
}

.home-products,
#products {
  background: var(--color-cream);
}

.home-products::after {
  display: none;
}

.home-hero {
  min-height: 100svh;
  height: 100svh;
  margin: 0;
  padding: clamp(88px, 14vh, 120px) 24px clamp(34px, 6vh, 58px);
  background: var(--color-aubergine-dark);
  isolation: isolate;
}

.hero-bg img {
  object-position: center center;
  filter: saturate(0.97) contrast(1.0) brightness(1.08);
  transform: none;
}

.hero-bg::after {
  background:
    radial-gradient(circle at 50% 38%, rgba(201, 160, 220, 0.03), transparent 34%),
    linear-gradient(180deg, rgba(42, 26, 46, 0.20) 0%, rgba(42, 26, 46, 0.10) 45%, rgba(42, 26, 46, 0.28) 100%);
}

.hero-brand-logo {
  top: 20% !important;
  width: clamp(160px, 18vw, 210px) !important;
  opacity: 0.98;
}

.hero-logo {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.hero-copy {
  position: relative;
  z-index: 7;
  width: min(620px, 92vw);
  margin: clamp(92px, 13vh, 138px) auto 0;
  text-align: center;
  color: var(--color-cream);
}

.hero-eyebrow,
.section-label,
.products-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 3px;
  color: var(--color-gold);
  text-transform: uppercase;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 34px;
  height: 0.5px;
  background: rgba(196, 168, 68, 0.72);
}

.hero-title {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 74px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--color-cream);
}

.hero-title em {
  color: var(--color-lilac);
  font-style: italic;
}

.hero-subtitle {
  max-width: 440px;
  margin: 18px auto 0;
  color: var(--color-lilac-muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
}

.btn,
.final .btn,
.order-submit,
.order-continue,
.order-back-to-products {
  border-radius: 0;
  box-shadow: none;
  min-height: 38px;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 0.5px solid var(--color-gold);
  background: var(--color-gold);
  color: var(--color-aubergine-dark);
}


.btn:hover,
.final .btn:hover,
.order-submit:hover,
.order-continue:hover,
.order-back-to-products:hover {
  transform: translateY(-2px);
  box-shadow: none;
  filter: none;
}

.home-hero-panel {
  bottom: 24px !important;
}

.hero-scroll-link {
  border-radius: 0 !important;
}

.home-hero-panel .hero-scroll-link {
  padding: 7px 16px !important;
  border: 0.5px solid rgba(248, 244, 238, 0.54) !important;
  background: rgba(42, 26, 46, 0.26) !important;
  color: var(--color-cream) !important;
  box-shadow: none !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: 0.18em;
}

.boutique-strip {
  padding: 9px 16px;
  background: var(--color-aubergine);
  color: var(--color-gold);
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.5;
}

.home-opening {
  padding: 2.5rem 0 2.85rem;
  background: var(--color-cream);
}

.home-opening-inner {
  display: block;
  max-width: 820px;
}

.home-opening-copy {
  max-width: 820px;
  margin: 0 auto 22px;
  text-align: center;
}

.home-flavors-heading,
.editorial-text h2,
.final h2 {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-aubergine);
  letter-spacing: -0.02em;
}

.home-flavors-heading {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.products-intro-text,
.home-opening .products-intro-text,
.home-opening-copy h1 + .products-intro-text {
  max-width: 620px;
  margin: 0 auto;
  color: #4a3358;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.78;
}

.trust-badge {
  width: max-content;
  margin: 14px auto 0;
  padding: 4px 10px;
  border: 0.5px solid rgba(196, 168, 68, 0.36);
  border-radius: 0;
  background: transparent;
  color: var(--color-gold);
  box-shadow: none;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.flavors-actions {
  justify-content: center;
  margin-top: 14px;
}

.products-grid,
.home-opening .products-grid {
  width: min(760px, 100%);
  max-width: 760px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.product-card {
  border: 0.5px solid var(--color-border);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--boutique-hover-shadow);
  border-color: rgba(201, 160, 220, 0.75);
}

.product-image {
  height: 140px;
  min-height: 140px;
  border-radius: 0;
  background: #fff;
  overflow: hidden;
}

.product-image::after,
.product-body h3::after {
  display: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  filter: none;
}

.product-card:hover .product-image img {
  transform: none;
}

.product-body {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 8px;
  padding: 10px 12px 12px;
  min-height: 112px;
  background: #fff;
}

.product-body h3 {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-aubergine);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.product-body p {
  margin: 0;
  color: var(--color-lilac-muted);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.5;
}

.product-card .product-link,
.product-card .btn,
.product-card button,
.product-card [data-add-to-cart] {
  align-self: end;
  justify-self: end;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-aubergine);
  color: var(--color-gold);
  box-shadow: none;
  font-size: 0;
  line-height: 1;
}

.product-card .product-link::before,
.product-card [data-add-to-cart]::before {
  content: none;
}

.product-link:hover {
  transform: none;
  box-shadow: none;
  background: var(--color-aubergine-dark);
}

.cart-feedback {
  grid-column: 1 / -1;
  min-height: 0;
  color: var(--color-gold);
  font-size: 10px;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 clamp(24px, 6vw, 80px);
  margin: 0;
  background: var(--color-cream);
}

.section-divider-line {
  flex: 1;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(196, 168, 68, 0.55), transparent);
}

.section-divider-ornament {
  font-size: 10px;
  color: rgba(196, 168, 68, 0.7);
  letter-spacing: 0;
  line-height: 1;
  padding: 10px 0;
}

.editorial {
  padding: 2.6rem 0;
  background: var(--color-cream);
}

.editorial .container {
  width: min(100% - 48px, 980px);
}

.editorial-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  gap: 0;
  max-width: 940px;
  margin: 0 auto;
  border: 0.5px solid var(--color-border);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.editorial-img {
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.editorial-img img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.editorial-text {
  padding: clamp(28px, 4vw, 42px);
  text-align: right;
}

.editorial-text .section-label {
  justify-content: flex-start;
}

.editorial-text h2 {
  margin: 10px 0 12px;
  font-size: 22px;
  line-height: 1.3;
}

.editorial-text > p {
  margin: 0 0 18px;
  color: var(--color-lilac-muted);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.8;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.detail-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  padding: 12px 14px;
  border: 0.5px solid var(--color-border);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  text-align: right;
}

.detail-card:hover {
  transform: none;
  box-shadow: none;
}

.icon-circle {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  border: 0.5px solid rgba(196, 168, 68, 0.36);
  border-radius: 50%;
  background: transparent;
  color: var(--color-gold);
}

.pastry-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.detail-card h3 {
  margin: 0;
  color: var(--color-aubergine);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.detail-card p {
  margin: 0;
  color: var(--color-lilac-muted);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.55;
}

.final {
  padding: 2.5rem 0;
  background: var(--color-aubergine-dark);
  color: var(--color-cream);
  text-align: center;
}

.final .section-label {
  color: var(--color-gold);
}

.final h2 {
  margin: 8px 0 10px;
  color: var(--color-cream);
  font-size: clamp(25px, 3.8vw, 38px);
  line-height: 1.25;
}

.final p {
  max-width: 520px;
  margin: 0 auto 18px;
  color: var(--color-lilac-muted);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
}

.contact-details-card {
  max-width: 280px;
  margin: 0 auto 18px;
  padding: 14px 20px;
  border: 0.5px solid rgba(196, 168, 68, 0.20);
  border-radius: 0;
  background: var(--color-aubergine);
  box-shadow: none;
}

.contact-details-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.contact-details-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-icon {
  color: var(--color-gold);
  font-size: 11px;
}

.contact-value {
  color: var(--color-lilac);
  direction: ltr;
  unicode-bidi: isolate;
  font-size: 12px;
  font-weight: 400;
}

.signature {
  margin-top: 16px;
  font-family: var(--font-signature);
  font-style: italic;
  color: var(--color-lilac-soft);
  font-size: 14px;
  line-height: 1.6;
}

.signature::before {
  content: "— ";
}

.footer {
  padding: 22px 20px 18px;
  background: var(--color-footer-dark);
  color: var(--color-lilac-soft);
  border-top: 0;
}

.footer-inner {
  max-width: 760px;
}

.footer-instagram.ig-closing {
  margin-bottom: 12px;
  color: rgba(201, 160, 220, 0.72);
  font-size: 11px;
  font-weight: 300;
}

.instagram-closing-link {
  color: var(--color-gold);
  font-weight: 400;
  text-decoration-color: rgba(196, 168, 68, 0.34);
}

.footer-legal-popover {
  border: 0.5px solid rgba(196, 168, 68, 0.20);
  border-radius: 0;
  background: rgba(61, 31, 78, 0.72);
  box-shadow: none;
}

.footer-legal-doc-link,
.footer-legal-toggle {
  color: var(--color-lilac-soft);
}

.footer-legal-doc-link:hover,
.footer-legal-toggle:hover {
  color: var(--color-lilac);
}

.footer-tagline {
  margin: 8px 0 0;
  color: var(--color-lilac-soft);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.5px;
  line-height: 1.6;
}

.footer-copy {
  margin: 4px 0 0;
  color: rgba(122, 95, 138, 0.72);
  font-size: 9px;
}

.floating-cart {
  border-radius: 50%;
  background: var(--color-aubergine);
  color: var(--color-gold);
  border: 0.5px solid rgba(196, 168, 68, 0.35);
  box-shadow: var(--boutique-hover-shadow);
}

.order-modal-card {
  border: 0.5px solid var(--color-border);
  border-radius: 0;
  background: var(--color-cream);
  box-shadow: 0 18px 44px rgba(26, 13, 34, 0.22);
}

.order-modal-card h2 {
  color: var(--color-aubergine);
  font-family: var(--font-body);
  font-weight: 400;
}

.order-modal-subtitle,
.order-empty-state span,
.order-field label {
  color: var(--color-lilac-muted);
}

.order-field input,
.order-field textarea {
  border-radius: 0;
  border: 0.5px solid var(--color-border);
  background: #fff;
}

.image-lightbox img {
  border-radius: 0;
}

.section-nav {
  left: 12px;
  opacity: 0.32;
}

.nav-dot {
  background: rgba(61, 31, 78, 0.28);
  border-color: rgba(196, 168, 68, 0.35);
}

.nav-dot.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

@media (max-width: 900px) {
  .products-grid,
  .home-opening .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-card {
    grid-template-columns: 1fr;
  }

  .editorial-img {
    order: 2;
  }

  .editorial-img img {
    min-height: 320px;
    max-height: 420px;
  }
}

@media (max-width: 700px) {
  .container,
  .editorial .container {
    width: min(100% - 28px, 980px);
  }

  .site-nav {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .nav-brand {
    font-size: 14px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .nav-cta {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .home-hero {
    min-height: calc(100svh - 46px);
    height: calc(100svh - 46px);
    padding-inline: 18px;
  }

  .hero-brand-logo {
    top: 19% !important;
    width: 110px !important;
  }

  .hero-copy {
    margin-top: 82px;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-subtitle {
    max-width: 320px;
    font-size: 12px;
  }

  .home-opening {
    padding-block: 2.1rem 2.35rem;
  }

  .product-image {
    height: 132px;
    min-height: 132px;
  }

  .editorial,
  .final {
    padding-block: 2.2rem;
  }

  .editorial-text {
    padding: 24px 20px;
  }
}

@media (max-width: 520px) {
  .site-header {
    height: auto;
  }

  .site-nav {
    min-height: 46px;
    height: auto;
    grid-template-columns: 1fr auto;
    padding-block: 8px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: space-between;
    border-top: 0.5px solid rgba(196, 168, 68, 0.12);
    padding-top: 7px;
  }

  .nav-cta {
    justify-self: end;
  }

  html {
    scroll-padding-top: 78px;
  }

  html.hero-locked .home-products,
  .home-hero {
    height: calc(100svh - 78px);
    min-height: calc(100svh - 78px);
    max-height: calc(100svh - 78px);
  }

  .hero-brand-logo {
    top: 17% !important;
    width: 92px !important;
  }

  .hero-copy {
    margin-top: 68px;
  }

  .hero-eyebrow {
    gap: 8px;
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 20px;
  }

  .hero-title {
    margin-top: 12px;
    font-size: clamp(34px, 12vw, 46px);
  }

  .hero-subtitle {
    margin-top: 12px;
    line-height: 1.6;
  }


  .products-grid,
  .home-opening .products-grid {
    grid-template-columns: 1fr;
    width: min(330px, 100%);
  }

  .product-image {
    height: 150px;
    min-height: 150px;
  }

  .boutique-strip {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
}

/* Boutique warmth, section rhythm, and performance-focused media refinements */
.site-section {
  position: relative;
  padding-block: clamp(62px, 7vw, 86px);
}

.site-section + .site-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(720px, 78%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(213, 180, 90, 0.65), rgba(95, 45, 110, 0.35), transparent);
  box-shadow: 0 10px 24px rgba(61, 22, 80, 0.08);
}

.section-soft-bg {
  background:
    radial-gradient(circle at top right, rgba(213, 180, 90, 0.12), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #fbf3ea 100%);
}

.home-opening,
.home-opening-copy,
.products-intro-text {
  color: #3f2145;
}

.products-eyebrow,
.home-opening-copy .section-label {
  color: #6d3b78;
  font-weight: 700;
}

.products-intro-text {
  color: #4a2a50;
  font-weight: 500;
}

.product-card {
  background:
    radial-gradient(circle at 16% 0%, rgba(213, 180, 90, 0.13), transparent 34%),
    linear-gradient(165deg, rgba(255, 252, 247, 0.96) 0%, rgba(248, 239, 230, 0.92) 100%);
  border: 1px solid rgba(183, 148, 74, 0.24);
  border-radius: 28px;
  box-shadow:
    0 14px 32px rgba(52, 24, 58, 0.12),
    0 3px 10px rgba(183, 148, 74, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.70);
  transform: translateZ(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(213, 180, 90, 0.46);
  box-shadow:
    0 18px 38px rgba(52, 24, 58, 0.15),
    0 6px 16px rgba(183, 148, 74, 0.14),
    0 0 22px rgba(213, 180, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

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

.product-body h3 {
  color: #3f2145;
  font-weight: 700;
  min-height: auto;
  overflow: visible;
  display: block;
  text-wrap: balance;
}

.product-body h3::after {
  width: 58%;
  max-width: 112px;
  height: 3px;
  margin: 8px auto 0;
  border: 0;
  background: linear-gradient(90deg, #7a3f8f, #d5b45a, #fff1b8, #7a3f8f);
  box-shadow: 0 0 10px rgba(213, 180, 90, 0.45);
}

.product-body p {
  color: #4a2a50;
  font-size: 0.86rem;
  line-height: 1.58;
  font-weight: 500;
}

.product-link,
.product-card .product-link,
.product-card button[data-add-to-cart] {
  width: 28px;
  height: 28px;
  min-width: 28px;
  padding: 0;
  transform: translateY(3px);
  font-size: 16px;
  border-color: rgba(213, 180, 90, 0.45);
  background: linear-gradient(135deg, rgba(255, 241, 184, 0.96), rgba(213, 180, 90, 0.78));
  color: #35193d;
  box-shadow: 0 7px 14px rgba(95, 45, 110, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.features-section,
.editorial.features-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(213, 180, 90, 0.12), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(122, 63, 143, 0.10), transparent 32%),
    linear-gradient(180deg, #fffaf4 0%, #f8efe6 100%);
}

.editorial-card {
  width: min(1220px, 100%);
}

.editorial-text p {
  color: #4f3430;
  font-size: 1rem;
}

.details-grid {
  grid-template-columns: repeat(3, minmax(230px, 1fr));
  gap: 18px;
  justify-items: center;
}

.detail-card {
  width: 100%;
  max-width: 360px;
  padding: 28px 24px;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.88);
  border: 1px solid rgba(213, 180, 90, 0.22);
  box-shadow: 0 16px 38px rgba(52, 24, 58, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.70);
}

.detail-card .icon-circle {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  color: #5c2c66;
  background: radial-gradient(circle at 35% 24%, #fff1b8, #f6e0a2 46%, #efe2d7 100%);
  border-color: rgba(213, 180, 90, 0.42);
}

.pastry-icon {
  width: 38px;
  height: 38px;
}

.detail-card h3 {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 700;
  color: #3f2145;
}

.detail-card p {
  color: #4a2a50;
  font-size: 16px;
  line-height: 1.75;
}

.contact-section,
.final.contact-section {
  background:
    radial-gradient(circle at top, rgba(213, 180, 90, 0.16), transparent 36%),
    radial-gradient(circle at 16% 92%, rgba(95, 45, 110, 0.11), transparent 34%),
    linear-gradient(180deg, #fff8ef 0%, #f4e7dc 100%);
  color: #3f2145;
}

.final .reveal {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px) clamp(18px, 5vw, 48px);
  border-radius: 30px;
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid rgba(213, 180, 90, 0.28);
  box-shadow: 0 18px 44px rgba(52, 24, 58, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.final h2,
.contact-card h2,
.contact-card h3 {
  color: #3f2145;
  font-weight: 700;
}

.final p,
.contact-details-list,
.contact-value {
  color: #4a2a50;
  font-size: 16px;
  line-height: 1.7;
}

.contact-details-card {
  width: auto;
  max-width: none;
  margin: 10px auto 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-align: center;
}

.contact-details-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-items: center;
  direction: ltr;
}

.contact-details-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  direction: ltr;
  width: 100%;
}

.contact-icon {
  width: auto;
  height: auto;
  display: inline;
  place-items: unset;
  color: var(--color-gold);
  background: none;
  border-radius: 0;
  box-shadow: none;
  font-size: 11px;
}

.contact-value {
  color: #4a2a50;
  font-weight: 400;
  font-size: 13px;
  text-align: center;
}

.final .btn,
.contact-submit,
.order-submit,
button[type="submit"] {
  border: 0;
  border-radius: 999px;
  padding: 13px 30px;
  min-height: 48px;
  font-weight: 700;
  color: #35193d;
  background: linear-gradient(135deg, #f1d179 0%, #c99f3f 55%, #f7e3a0 100%);
  box-shadow:
    0 12px 28px rgba(95, 45, 110, 0.18),
    0 4px 12px rgba(201, 159, 63, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.final .btn:hover,
.contact-submit:hover,
.order-submit:hover,
button[type="submit"]:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 16px 34px rgba(95, 45, 110, 0.22),
    0 6px 16px rgba(201, 159, 63, 0.34);
}

.signature,
.lior-signature,
.footer-signature,
.love-lior {
  font-family: "Gveret Levin", "גברת לוין", cursive;
  font-style: normal;
  font-size: 28px;
  color: #5c2c66;
  line-height: 1.2;
  margin-top: 18px;
  letter-spacing: 0;
}

.signature::before {
  content: none;
}

.footer {
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, #2f1741 0%, #24102f 100%);
}

.footer-inner {
  gap: 10px;
}

.footer-copy {
  position: relative;
  display: inline-block;
  width: auto;
  margin: 0;
  color: #d4af55;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 0 12px rgba(212, 175, 85, 0.20);
}

.footer-copy::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #d4af55, #7a3f8f, transparent);
}

.footer-tagline {
  display: none !important;
}

.section-nav {
  left: 12px;
  top: 50%;
  gap: 10px;
  opacity: 0.82;
  padding: 10px 8px;
  border-radius: 999px;
  background: rgba(53, 25, 61, 0.36);
  border: 1px solid rgba(212, 175, 85, 0.18);
  box-shadow: 0 12px 28px rgba(20, 10, 30, 0.16);
  backdrop-filter: blur(8px);
}

.section-nav .footer-legal-wrap {
  width: auto;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.section-nav .footer-legal-toggle {
  border-radius: 999px;
  padding: 5px 7px;
  font-size: 9px;
  font-weight: 600;
  color: #35193d;
  background: linear-gradient(135deg, #f1d179, #c99f3f);
  box-shadow: 0 4px 10px rgba(95, 45, 110, 0.14);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.section-nav .footer-legal-toggle-icon {
  display: none;
}

.section-nav .footer-legal-popover {
  position: absolute;
  left: calc(100% + 12px);
  bottom: 0;
  width: max-content;
  max-width: min(640px, calc(100vw - 80px));
  margin: 0;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
  background: rgba(255, 252, 247, 0.96);
  border: 1px solid rgba(213, 180, 90, 0.22);
  box-shadow: 0 10px 24px rgba(52, 24, 58, 0.10);
}

.section-nav .footer-legal-popnav {
  gap: 8px 12px;
}

.section-nav .footer-legal-doc-link {
  color: #3f2145;
  font-size: 14px;
  line-height: 1.45;
}

.image-lightbox {
  background: rgba(20, 10, 25, 0.70);
  transition: opacity 180ms ease, visibility 180ms ease;
  will-change: opacity;
}

.image-lightbox img {
  max-width: min(92vw, 920px);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 16px;
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: opacity, transform;
}

.image-lightbox.is-open img.is-loaded {
  transform: translateY(0) scale(1);
}

.image-lightbox.is-loading img {
  opacity: 0.55;
}

@media (max-width: 980px) {
  .details-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 700px) {
  .site-section {
    padding-block: 48px;
  }

  .details-grid,
  .products-grid,
  .home-opening .products-grid {
    grid-template-columns: 1fr;
  }

  .detail-card {
    padding: 24px 20px;
  }

  .contact-details-list li {
    justify-content: center;
  }

  .signature {
    font-size: 25px;
  }

  .section-nav {
    display: flex;
    left: 50%;
    top: auto;
    bottom: 14px;
    transform: translateX(-50%);
    flex-direction: row;
    width: max-content;
    max-width: calc(100vw - 24px);
    gap: 12px;
    padding: 8px 10px;
  }

  .section-nav .footer-legal-wrap {
    margin: 0 0 0 4px;
    flex-direction: row;
  }

  .section-nav .footer-legal-toggle {
    writing-mode: horizontal-tb;
    padding: 8px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .section-nav .footer-legal-popover {
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    width: min(640px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    padding: 12px 14px;
  }
}
