/* Extracted from assets/template/snk.html */
:root {
      --bg: #f4eee6;
      --bg-soft: #fffaf3;
      --panel: rgba(255,250,244,0.76);
      --panel-strong: rgba(255,251,247,0.92);
      --text: #201815;
      --muted: #6b5f56;
      --line: rgba(32, 24, 21, 0.09);
      --brand: #aa3a2d;
      --brand-deep: #712019;
      --brand-soft: #f0d4c4;
      --accent: #ba8d3a;
      --accent-soft: #f5e5bf;
      --ink-soft: #3d2f2b;
      --shadow: 0 24px 80px rgba(48, 31, 23, 0.11);
      --shadow-strong: 0 28px 90px rgba(58, 34, 21, 0.18);
      --status-1: #3d9c49;
      --status-2: #d5a11e;
      --status-3: #c9453f;
      --status-4: #181818;
      --status-5: #2f6ccf;
      --status-6: #7d838d;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --max: 1320px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
              radial-gradient(circle at top right, rgba(170,58,45,0.12), transparent 22%),
              radial-gradient(circle at 15% 10%, rgba(186,141,58,0.16), transparent 18%),
              linear-gradient(180deg, #fbf6ef 0%, #f3eadf 52%, #efe3d6 100%);
      position: relative;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .45;
      background:
              linear-gradient(120deg, rgba(255,255,255,.14), rgba(255,255,255,0) 34%),
              radial-gradient(circle at 20% 20%, rgba(255,255,255,.26), transparent 28%);
      mask-image:
              linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.76)),
              radial-gradient(circle at 20% 0%, rgba(0,0,0,.9), transparent 52%);
      z-index: -1;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
    .muted { color: var(--muted); }
    .eyebrow { display: none; }
    h1, h2, h3, h4 {
      font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-weight: 800;
      color: var(--ink-soft);
    }
    .heading-with-icon {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .heading-icon {
      width: 1.2em;
      height: 1.2em;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }
    .heading-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .section { padding: 5px 0 48px; }
    .section-tight { padding-top: 0; }
    .grid { display: grid; gap: 24px; }
    .btn, button {
      appearance: none; border: 0; cursor: pointer; border-radius: 999px; padding: 14px 22px;
      font-weight: 600; font-size: .96rem; transition: transform .24s ease, box-shadow .24s ease, background .24s ease, border-color .24s ease;
    }
    .btn-primary,
    .btn-secondary {
      font-family: inherit;
      font-weight: 600;
    }
    .btn:hover, button:hover { transform: translateY(-2px); }
    .btn-primary {
      background: linear-gradient(135deg, var(--brand) 0%, #cb5947 100%);
      color: white; box-shadow: 0 16px 32px rgba(170, 58, 45, 0.28);
    }
    .btn-primary:hover { box-shadow: 0 22px 40px rgba(170, 58, 45, 0.34); }
    .btn-secondary { background: rgba(255,252,248,.74); color: var(--text); border: 1px solid rgba(32,24,21,.1); }
    .btn-secondary:hover { border-color: rgba(170,58,45,.24); }
    .badge { display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; padding: 8px 14px; background: rgba(255,251,246,.72); border: 1px solid rgba(170,58,45,.12); box-shadow: inset 0 1px 0 rgba(255,255,255,.65); }
    .badge-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 5px rgba(183,51,40,.10); }
    .status-badge {
      border-color: color-mix(in srgb, var(--status-color, var(--brand)) 18%, white);
      color: color-mix(in srgb, var(--status-color, var(--brand)) 72%, #2c211d);
      background: color-mix(in srgb, var(--status-color, var(--brand)) 10%, rgba(255,251,246,.84));
    }
    .status-badge .badge-dot {
      background: var(--status-color, var(--brand));
      box-shadow: 0 0 0 5px color-mix(in srgb, var(--status-color, var(--brand)) 16%, transparent);
    }
    .status-1 { --status-color: var(--status-1); }
    .status-2 { --status-color: var(--status-2); }
    .status-3 { --status-color: var(--status-3); }
    .status-4 { --status-color: var(--status-4); }
    .status-5 { --status-color: var(--status-5); }
    .status-6 { --status-color: var(--status-6); }
    .topbar {
      border-bottom: 1px solid rgba(255,255,255,.44);
      backdrop-filter: blur(18px);
      background: linear-gradient(180deg, rgba(248,241,233,.84), rgba(248,241,233,.68));
      position: sticky; top: 0; z-index: 10;
    }
    .nav {
      display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0;
    }
    .nav-brand { display: flex; align-items: center; gap: 18px; }
    .nav-brand img { width: 320px; max-width: 60vw; }
    .nav-links, .nav-actions { display: flex; align-items: center; gap: 10px; }
    .nav-links-wrap {
      flex: 1 1 auto;
      display: flex;
      justify-content: center;
      min-width: 0;
    }
    .search-hit {
      color: var(--brand);
      background: rgba(170,58,45,.08);
      padding: 0 .2em;
      border-radius: .35em;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .cart-status {
      display: grid;
      gap: 2px;
      padding: 10px 14px;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--brand) 0%, #cb5947 100%);
      border: 1px solid rgba(170,58,45,.26);
      box-shadow: 0 16px 32px rgba(170, 58, 45, 0.24);
      min-width: 112px;
    }
    .cart-status span {
      font-size: .74rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.76);
    }
    .cart-status strong {
      font-size: .96rem;
      color: white;
    }
    .nav-links {
      padding: 6px;
      border-radius: 999px;
      background: rgba(255,251,246,.46);
      border: 1px solid rgba(255,255,255,.54);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
    }
    .nav-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      border-radius: 999px;
      color: var(--muted);
      font-weight: 700;
      background-color: transparent;
      box-shadow: 0 0 0 rgba(170,58,45,0);
      transform: translateY(0);
      transition: background-color 300ms ease, color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
    }
    .nav-links a:hover, .nav-links a.active {
      background-color: rgba(170,58,45,.12);
      color: var(--brand);
      box-shadow: inset 0 0 0 1px rgba(170,58,45,.08);
      transform: translateY(-1px);
    }
    .hero {
      padding: 52px 0 46px;
    }
    .hero-shell {
      display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: stretch;
    }
    .hero-panel, .glass, .card, .promo-card, .collection-card, .editorial-card, .metric, .mini-card, .filter-card, .checkout-card, .cart-card, .feature-card {
      background: var(--panel);
      border: 1px solid rgba(255,255,255,.6);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }
    .hero-panel { border-radius: 42px; padding: 42px; position: relative; overflow: hidden; isolation: isolate; }
    .hero-panel::before {
      content: ""; position: absolute; inset: auto -10% -24% auto; width: 340px; height: 340px; border-radius: 50%;
      background: radial-gradient(circle, rgba(170,58,45,.2) 0%, rgba(170,58,45,0) 70%);
      z-index: -1;
    }
    .hero-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
              linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,0) 38%),
              radial-gradient(circle at 20% 0%, rgba(245,229,191,.3), transparent 34%);
      z-index: -1;
    }
    .hero-copy h1 { font-size: clamp(2.8rem, 4.8vw, 5.1rem); line-height: .96; margin: 18px 0; letter-spacing: -.04em; max-width: none; width: 100%; }
    .hero-copy p { font-size: 1.08rem; line-height: 1.7; color: var(--muted); }
    .hero-copy a {
      color: var(--brand-deep);
      text-decoration: none;
    }
    .hero-copy a:hover {
      color: var(--brand);
    }
    .hero-copy > :first-child { margin-top: 0; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
    .hero-visual {
      border-radius: 42px; padding: 26px; min-height: 100%; position: relative; overflow: hidden;
      background:
              linear-gradient(145deg, rgba(255,248,242,.98) 0%, rgba(246,234,222,.96) 58%, rgba(239,212,199,.98) 100%);
      box-shadow: var(--shadow-strong);
    }
    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 34px;
      border: 1px solid rgba(255,255,255,.42);
      pointer-events: none;
    }
    .hero-orb {
      position: absolute; border-radius: 50%; filter: blur(12px); opacity: .9;
    }
    .hero-orb.one { width: 120px; height: 120px; right: 18px; top: 20px; background: rgba(186,141,58,.45); }
    .hero-orb.two { width: 170px; height: 170px; left: 18px; bottom: 12px; background: rgba(170,58,45,.22); }
    .mock-browser { position: relative; z-index: 1; background: rgba(255,253,250,.88); border: 1px solid rgba(32,24,21,.08); border-radius: 30px; overflow: hidden; box-shadow: 0 25px 60px rgba(35,30,26,.15); transform: rotate(-3deg) translateY(10px); }
    .browser-top { display: flex; gap: 8px; padding: 14px 18px; background: rgba(247,242,237,.96); border-bottom: 1px solid var(--line); }
    .browser-top span { width: 11px; height: 11px; border-radius: 50%; background: rgba(31,29,26,.15); }
    .browser-body { padding: 18px; }
    .browser-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
    .browser-products { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:14px; }
    .shelf, .story-block, .product-block, .category-chip, .line-item {
      border-radius: 20px; background: white; border: 1px solid rgba(31,29,26,.08);
    }
    .browser-product { min-height: 120px; overflow: hidden; position: relative; }
    .browser-product img { width:100%; height:100%; object-fit:cover; }
    .browser-product.has-product-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(32,24,21,.08));
    }
    .shelf { padding: 18px; min-height: 150px; display: flex; align-items: end; background:
            linear-gradient(180deg, rgba(255,255,255,.85), rgba(255,255,255,.95)),
            radial-gradient(circle at 80% 10%, rgba(183,51,40,.12), transparent 30%),
            radial-gradient(circle at 10% 90%, rgba(216,165,58,.16), transparent 22%);
    }
    .shelf::after { content: ""; display: block; width: 100%; height: 90px; border-radius: 16px; background: linear-gradient(135deg, #f6d8d2, #fff7f2); }
    .story-block { padding: 20px; }
    .story-block h3 { margin: 0 0 8px; font-size: 1.35rem; line-height: 1.15; }
    .metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 26px; }
    .metric { border-radius: 24px; padding: 22px; position: relative; overflow: hidden; }
    .metric::after {
      content: "";
      position: absolute;
      left: 22px;
      right: 22px;
      top: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(170,58,45,.24), rgba(255,255,255,0));
    }
    .metric strong { display: block; font-size: 1.8rem; margin-bottom: 8px; }
    .trust-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .trust-item,
    .assurance-card,
    .category-feature,
    .showcase-card,
    .showcase-photo {
      background: var(--panel);
      border: 1px solid rgba(255,255,255,.6);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }
    .trust-item {
      border-radius: 26px;
      padding: 20px 22px;
    }
    .trust-item strong {
      display: block;
      font-size: 1rem;
      line-height: 1.45;
    }
    .trust-label {
      display: inline-block;
      margin-bottom: 8px;
      color: var(--brand);
      font-size: .75rem;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }
    .split-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
    .split-head h2 { margin: 8px 0 0; font-size: clamp(2.2rem, 3vw, 3.2rem); line-height: 1.02; letter-spacing: -.03em; max-width: 13ch; }
    .page-head .split-head h2 { max-width: none; }
    .collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .collection-card { border-radius: 32px; padding: 28px; min-height: 320px; position: relative; overflow: hidden; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
    .collection-card:hover, .product-card:hover, .mini-card:hover, .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-strong);
      border-color: rgba(170,58,45,.14);
    }
      .collection-card .icon-shape { width: 72px; height: 72px; border-radius: 22px; background: linear-gradient(135deg, rgba(170,58,45,.12), rgba(186,141,58,.26)); margin-bottom: 52px; position: relative; }
      .collection-card .icon-shape::after {
        content: "";
        position: absolute;
        inset: 16px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,.5);
      }
      .option-icon {
        position: absolute;
        inset: 16px;
        width: 40px;
        height: 40px;
        z-index: 1;
        fill: none;
        stroke: var(--brand);
        stroke-width: 2.8;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .icon-shape-shipping .option-icon {
        stroke: var(--brand);
      }
      .icon-shape-pickup .option-icon {
        stroke: var(--ink-soft);
      }
      .collection-card h3 { font-size: 1.6rem; margin: 0 0 10px; line-height: 1.1; }
      .collection-card p { color: var(--muted); line-height: 1.65; max-width: 34ch; }
      .collection-card .ghost-art { position: absolute; right: -18px; bottom: -18px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(170,58,45,.16), rgba(170,58,45,0)); }
      .checkout-mode-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
      .checkout-mode-form { display: flex; }
      .checkout-mode-card { display: flex; flex-direction: column; width: 100%; }
      .checkout-mode-card .icon-shape { width: 100%; aspect-ratio: 1 / 1; height: auto; border-radius: 42px; margin-bottom: 24px; }
      .checkout-mode-card .icon-shape::after { inset: 18%; border-radius: 21px; }
      .checkout-mode-card .option-icon { inset: auto; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 62%; height: 62%; max-width: 160px; max-height: 160px; }
      .showcase-grid {
        display: grid;
        grid-template-columns: 1fr 1.05fr;
      gap: 24px;
      align-items: stretch;
    }
    .showcase-card {
      border-radius: 32px;
      padding: 28px;
    }
    .showcase-points {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }
    .showcase-title-lg {
      margin: 16px 0 14px;
      font-size: clamp(2.2rem, 3.2vw, 3.5rem);
      line-height: 1.02;
    }
    .showcase-title-md {
      margin: 0 0 12px;
      font-size: 1.7rem;
    }
    .showcase-title-sm {
      margin: 0 0 10px;
      font-size: 1.5rem;
    }
    .showcase-copy {
      margin: 0;
      max-width: 62ch;
    }
    .showcase-copy-tight {
      margin: 0;
    }
    .showcase-point {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 12px;
      align-items: center;
    }
    .showcase-point strong {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(170,58,45,.12), rgba(186,141,58,.18));
      color: var(--brand);
    }
    .showcase-stack {
      display: grid;
      grid-template-rows: 1fr auto;
      gap: 18px;
    }
    .feature-card-single {
      grid-template-columns: 1fr;
    }
    .news-shell {
      display: grid;
      gap: 24px;
    }
    .shop-breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 0.95rem;
    }
    .shop-breadcrumbs a {
      color: var(--brand);
    }
    .shop-breadcrumbs .sep {
      opacity: .45;
    }
    .shop-group-intro {
      margin-bottom: 18px;
    }
    .shop-group-intro h2 {
      margin: 8px 0 0;
      font-size: clamp(1.8rem, 2.4vw, 2.5rem);
      line-height: 1.05;
      max-width: none;
    }
    .shop-active-filters {
      margin-bottom: 18px;
    }
    .shop-active-filter-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .shop-active-filter-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 42px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(170,58,45,.08);
      border: 1px solid rgba(170,58,45,.14);
      color: var(--brand);
      font-size: .84rem;
      font-weight: 700;
      text-decoration: none;
      transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    .shop-active-filter-pill:hover {
      background: rgba(170,58,45,.12);
      box-shadow: 0 12px 24px rgba(170,58,45,.12);
      transform: translateY(-1px);
    }
    .shop-active-filter-pill.is-reset {
      background: rgba(32,24,21,.05);
      border-color: rgba(32,24,21,.1);
      color: var(--text);
    }
    .shop-active-filter-pill.is-reset:hover {
      background: rgba(32,24,21,.08);
      box-shadow: 0 12px 24px rgba(32,24,21,.08);
    }
    .shop-active-filter-remove {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(170,58,45,.12);
      font-size: 1rem;
      line-height: 1;
    }
    .shop-empty-state {
      margin-bottom: 18px;
      padding: 24px 26px;
      border-radius: 28px;
      background: rgba(255,251,247,.82);
      border: 1px solid rgba(255,255,255,.62);
      box-shadow: var(--shadow);
    }
    .shop-empty-state[hidden] {
      display: none;
    }
    .shop-empty-state h3 {
      margin: 0 0 8px;
      font-size: 1.45rem;
    }
    .shop-empty-state p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      max-width: 62ch;
    }
    .infos-layout {
      display: grid;
      grid-template-columns: 320px minmax(0, 1fr);
      gap: 26px;
      align-items: start;
    }
    .infos-nav-card {
      position: sticky;
      top: 18px;
    }
    .infos-main {
      min-width: 0;
      display: grid;
      gap: 16px;
    }
    .infos-page-card {
      border-radius: 32px;
      padding: 28px;
      background: var(--panel);
      border: 1px solid rgba(255,255,255,.62);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }
    .infos-page-card h2 {
      margin: 10px 0 14px;
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.04;
      max-width: none;
    }
    .infos-richtext {
      color: var(--text);
      line-height: 1.75;
    }
    .infos-richtext a {
      color: var(--brand-deep);
      text-decoration: none;
      overflow-wrap: anywhere;
    }
    .infos-richtext a.btn-primary {
      color: white;
    }
    .infos-richtext a.btn-primary:hover {
      color: white;
    }
    .infos-richtext a.btn-secondary {
      color: var(--text);
    }
    .infos-richtext a:hover {
      color: var(--brand);
    }
    .infos-richtext > :first-child {
      margin-top: 0;
    }
    .infos-richtext h2,
    .infos-richtext h3,
    .infos-richtext h4 {
      max-width: none;
    }
    .infos-richtext img {
      max-width: 100%;
      height: auto;
      border-radius: 20px;
    }
    .infos-richtext table {
      width: 100%;
      border-collapse: collapse;
      margin: 18px 0;
    }
    .infos-richtext td,
    .infos-richtext th {
      padding: 10px 12px;
      border-bottom: 1px solid rgba(31,29,26,.08);
      text-align: left;
    }
    .infos-richtext .infos-box {
      margin: 22px 0;
    }
    .infos-richtext .infos-box--hero {
      display: grid;
      justify-items: center;
      gap: 12px;
    }
    .infos-richtext .infos-box--hero > img,
    .infos-richtext .infos-box--hero > a > img,
    .infos-richtext .infos-box--hero img {
      width: 100%;
      max-width: 920px;
      height: auto;
      margin: 0 auto;
      border-radius: 24px;
      display: block;
    }
    .infos-richtext .infos-box--gallery {
      display: grid;
      gap: 14px;
      align-items: start;
    }
    .infos-richtext .infos-box--cols-1 {
      grid-template-columns: 1fr;
    }
    .infos-richtext .infos-box--cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .infos-richtext .infos-box--cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .infos-richtext .infos-box--cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .infos-richtext .infos-box--gallery > .infos-box-item {
      min-width: 0;
      display: block;
    }
    .infos-richtext .infos-box--gallery > .infos-box-item > a,
    .infos-richtext .infos-box--gallery > .infos-box-item > img,
    .infos-richtext .infos-box--gallery > .infos-box-item img {
      display: block;
      width: 100%;
      height: auto;
      margin: 0;
    }
    .infos-richtext .infos-box--gallery > .infos-box-item > p {
      margin: 0;
    }
    .infos-richtext .infos-box--media {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      align-items: start;
    }
    .infos-richtext .infos-box--media > * {
      min-width: 0;
      margin-top: 0;
      margin-bottom: 0;
    }
    .infos-richtext .infos-box--media-right > :first-child {
      order: 2;
    }
    .infos-richtext .infos-box--media-right > :nth-child(2) {
      order: 1;
    }
    .infos-richtext .infos-box--media > img,
    .infos-richtext .infos-box--media > a > img,
    .infos-richtext .infos-box--media img {
      width: 100%;
      height: auto;
      display: block;
    }
    .infos-page-actions {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .infos-overview-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 24px;
    }
    .infos-overview-card {
      display: grid;
      gap: 10px;
      padding: 22px;
      border-radius: 24px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(31,29,26,.08);
      color: var(--text);
      text-decoration: none;
      transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
    }
    .infos-overview-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(35,30,26,.12);
      background: rgba(255,255,255,.9);
    }
    .infos-overview-card h3 {
      margin: 0;
      font-size: 1.35rem;
      line-height: 1.15;
    }
    .shop-tree-shell {
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(31,29,26,.08);
    }
    .shop-tree-nav {
      display: block;
    }
    .shop-tree-list,
    .shop-tree-children {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .shop-tree-list {
      display: grid;
      gap: 8px;
    }
    .shop-tree-children {
      display: none;
      padding-left: 14px;
      margin-top: 8px;
      border-left: 1px solid rgba(31,29,26,.08);
    }
    .shop-tree-item.is-open > .shop-tree-children {
      display: grid;
      gap: 8px;
    }
    .shop-tree-row {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }
    .shop-tree-toggle {
      appearance: none;
      border: 0;
      background: transparent;
      width: 18px;
      height: 18px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
    }
    .shop-tree-toggle span {
      width: 8px;
      height: 8px;
      border-right: 1.5px solid var(--muted);
      border-bottom: 1.5px solid var(--muted);
      transform: rotate(-45deg);
      transition: transform 180ms ease;
      margin-top: -2px;
    }
    .shop-tree-item.is-open > .shop-tree-row .shop-tree-toggle span {
      transform: rotate(45deg);
      margin-top: -5px;
    }
    .shop-tree-toggle-placeholder {
      cursor: default;
      opacity: 0;
    }
    .shop-tree-link {
      flex: 1 1 auto;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 16px;
      color: var(--text);
      background: rgba(255,255,255,.56);
      transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
      hyphens: auto;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      overflow-wrap: break-word;
      word-break: normal;
    }
    .shop-tree-link:hover {
      background: rgba(170,58,45,.08);
      color: var(--brand);
      transform: translateX(1px);
    }
    .shop-tree-item.is-active > .shop-tree-row .shop-tree-link {
      background: linear-gradient(135deg, rgba(170,58,45,.12), rgba(186,141,58,.12));
      color: var(--brand);
      box-shadow: inset 0 0 0 1px rgba(170,58,45,.08);
    }
    .shop-tree-label {
      min-width: 0;
      line-height: 1.35;
      hyphens: inherit;
      -webkit-hyphens: inherit;
      -ms-hyphens: inherit;
      overflow-wrap: break-word;
      word-break: normal;
    }
    .shop-tree-count {
      flex-shrink: 0;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(35,24,20,.06);
      color: var(--muted);
      font-size: 0.85rem;
      font-variant-numeric: tabular-nums;
    }
    .shop-tree-item.level-1 > .shop-tree-row .shop-tree-link {
      font-weight: 700;
    }
    .shop-tree-item.level-2 > .shop-tree-row .shop-tree-link,
    .shop-tree-item.level-3 > .shop-tree-row .shop-tree-link,
    .shop-tree-item.level-4 > .shop-tree-row .shop-tree-link,
    .shop-tree-item.level-5 > .shop-tree-row .shop-tree-link {
      font-weight: 600;
    }
    .news-hero,
    .news-card,
    .news-empty {
      background: var(--panel);
      border: 1px solid rgba(255,255,255,.62);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }
    .news-hero {
      border-radius: 34px;
      padding: 32px;
      position: relative;
      overflow: hidden;
    }
    .news-hero::after {
      content: "";
      position: absolute;
      right: -60px;
      top: -60px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(170,58,45,.16), rgba(170,58,45,0));
      pointer-events: none;
    }
    .news-hero-copy {
      max-width: 60ch;
      position: relative;
      z-index: 1;
    }
    .news-hero-copy h1 {
      margin: 14px 0 12px;
      font-size: clamp(2.4rem, 4vw, 4rem);
      line-height: .98;
      letter-spacing: -.04em;
    }
    .news-grid {
      display: grid;
      gap: 20px;
    }
    .news-card,
    .news-empty {
      border-radius: 30px;
      padding: 28px;
      max-width: 100%;
      overflow: hidden;
    }
    .news-card-top {
      display: grid;
      gap: 8px;
      margin-bottom: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(32,24,21,.08);
    }
    .news-card-title-row {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 12px;
    }
    .news-card-title-row h2 {
      flex: 1 1 auto;
      min-width: 0;
      width: auto;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .news-card h2 {
      margin: 0;
      font-size: clamp(1.5rem, 2.6vw, 2rem);
      line-height: 1.08;
      max-width: none;
      width: auto;
    }
    .news-pin {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(170,58,45,.12), rgba(186,141,58,.18));
      font-size: 1rem;
      line-height: 1;
    }
    .news-meta {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.5;
    }
    .news-richtext {
      color: var(--text);
      max-width: 100%;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .news-download-link {
      font-weight: 700;
    }
    .news-download-meta {
      color: var(--muted);
      font-size: .9rem;
      white-space: nowrap;
    }
    .news-embedded-product-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      align-items: flex-start;
      margin: 14px 0;
    }
    .news-embedded-product {
      display: inline-block;
      vertical-align: top;
      width: min(280px, 100%);
      margin: 14px 14px 14px 0;
      overflow-wrap: normal;
      word-break: normal;
    }
    .news-embedded-product-grid .news-embedded-product {
      margin: 0;
    }
    .news-embedded-product .product-card {
      padding: 10px;
      border-radius: 20px;
    }
    .news-embedded-product .product-status-row {
      margin-bottom: 8px;
    }
    .news-embedded-product .product-thumb {
      margin-bottom: 10px;
      border-radius: 16px;
    }
    .news-embedded-product .product-card h3 {
      font-size: .95rem;
      line-height: 1.15;
    }
    .news-embedded-product .product-meta {
      gap: 8px;
    }
    .news-embedded-product .price {
      font-size: .92rem;
    }
    .news-embedded-product .product-specs {
      gap: 6px;
    }
    .news-embedded-product .product-specs span {
      padding: 5px 8px;
      font-size: .68rem;
    }
    .news-embedded-product .product-card,
    .news-embedded-product .product-meta,
    .news-embedded-product .product-specs {
      overflow-wrap: normal;
      word-break: normal;
    }
    @media (min-width: 780px) {
      .news-embedded-product-grid {
        margin: 18px 0;
      }
      .news-embedded-product {
        width: 280px;
        margin: 18px 18px 18px 0;
      }
    }
    .news-richtext > :first-child {
      margin-top: 0;
    }
    .news-richtext > :last-child {
      margin-bottom: 0;
    }
    .news-richtext p,
    .news-richtext li {
      line-height: 1.75;
    }
    .news-richtext h3,
    .news-richtext h4 {
      margin: 1.4em 0 .5em;
      font-size: 1.15rem;
    }
    .news-richtext h2 {
      margin: 0 0 12px;
      max-width: none;
      width: auto;
      font-size: clamp(1.5rem, 2.6vw, 2rem);
      line-height: 1.08;
    }
    .news-richtext a {
      color: var(--brand-deep);
      text-decoration: underline;
      text-decoration-thickness: .08em;
      text-underline-offset: .18em;
      overflow-wrap: anywhere;
    }
    .news-richtext .product-name-link {
      text-decoration: none;
    }
    .news-richtext img {
      width: 100%;
      height: auto;
      border-radius: 22px;
      margin: 20px 0;
      border: 1px solid rgba(32,24,21,.08);
    }
    .news-richtext table {
      display: block;
      max-width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      width: 100%;
      border-collapse: collapse;
      margin: 18px 0;
    }
    .news-richtext pre {
      max-width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }
    .news-richtext th,
    .news-richtext td {
      padding: 12px 14px;
      text-align: left;
      border-bottom: 1px solid rgba(32,24,21,.08);
    }
    .showcase-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .showcase-photo {
      border-radius: 30px;
      min-height: 220px;
      overflow: hidden;
      position: relative;
    }
    .showcase-photo.large { min-height: 360px; }
    .showcase-photo img { width: 100%; height: 100%; object-fit: cover; }
    .showcase-photo.has-product-image::after,
    .category-feature-media.has-product-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(32,24,21,.14));
    }
    .product-listing { display: grid; grid-template-columns: 290px 1fr; gap: 26px; }
    .filter-card, .checkout-card, .cart-card { border-radius: 28px; padding: 24px; }
    .category-feature {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      border-radius: 30px;
      padding: 18px;
      margin-bottom: 18px;
    }
    .category-feature-copy {
      padding: 10px 8px 10px 6px;
    }
    .category-feature-copy h3 {
      font-size: clamp(1.8rem, 2.6vw, 2.5rem);
      line-height: 1.05;
      margin: 10px 0 14px;
      max-width: 12ch;
    }
    .category-feature-media {
      min-height: 250px;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #fff7f2, #f1ddd0);
    }
    .category-feature-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .filter-group { padding: 18px 0; border-top: 1px solid var(--line); }
    .filter-group:first-of-type { border-top: 0; padding-top: 0; }
    .filter-title { display: flex; justify-content: space-between; align-items: center; font-weight: 700; margin-bottom: 14px; }
    .service-note {
      padding: 10px 0;
      color: var(--muted);
      border-top: 1px dashed rgba(32,24,21,.08);
    }
    .service-note:first-of-type { border-top: 0; }
    .fake-check {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 12px;
      color: var(--muted);
      background: rgba(255,255,255,.45);
      border: 1px solid transparent;
      border-radius: 16px;
      font: inherit;
      font-weight: 600;
      box-shadow: none;
      text-align: left;
      cursor: pointer;
    }
    .fake-check:hover {
      border-color: rgba(170,58,45,.14);
      background: rgba(255,255,255,.72);
    }
    .fake-check.is-active {
      color: var(--brand);
      background: rgba(170,58,45,.08);
      border-color: rgba(170,58,45,.16);
    }
    .fake-check span.box {
      width: 18px;
      height: 18px;
      border-radius: 6px;
      border: 1px solid rgba(31,29,26,.16);
      background: white;
      position: relative;
      flex: 0 0 auto;
    }
    .fake-check.is-active span.box {
      border-color: rgba(170,58,45,.3);
      background: rgba(170,58,45,.12);
    }
    .fake-check.is-active span.box::after {
      content: "";
      position: absolute;
      inset: 4px;
      border-radius: 3px;
      background: var(--brand);
    }
    .category-toolbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
    }
    .quick-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .quick-filter {
      border: 1px solid rgba(32,24,21,.1);
      background: rgba(255,252,248,.76);
      color: var(--muted);
      padding: 10px 14px;
      border-radius: 999px;
      font: inherit;
      font-weight: 700;
    }
    .quick-filter.is-active {
      background: rgba(170,58,45,.1);
      color: var(--brand);
      border-color: rgba(170,58,45,.18);
    }
    .results-meta {
      display: grid;
      justify-items: end;
      color: var(--muted);
    }
    .results-meta strong {
      font-size: 1.3rem;
      color: var(--ink-soft);
    }
    .search-feedback {
      display: grid;
      gap: 14px;
      padding: 18px 20px;
      border-radius: 24px;
      background: rgba(255,251,247,.78);
      border: 1px solid rgba(255,255,255,.62);
      box-shadow: var(--shadow);
      margin-bottom: 18px;
    }
    .search-feedback[hidden],
    .empty-state[hidden] { display: none; }
    .search-feedback-copy {
      display: grid;
      gap: 4px;
    }
    .search-feedback-copy strong {
      font-size: 1rem;
    }
    .search-feedback-copy span {
      color: var(--muted);
    }
    .active-filters {
      display: grid;
      gap: 10px;
      margin-bottom: 18px;
      padding: 16px 18px;
      border-radius: 22px;
      background: rgba(255,251,247,.72);
      border: 1px solid rgba(255,255,255,.62);
      box-shadow: var(--shadow);
    }
    .active-filters[hidden] { display: none; }
    .active-filters strong { font-size: .92rem; }
    .active-filter-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .active-filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(170,58,45,.08);
      border: 1px solid rgba(170,58,45,.14);
      color: var(--brand);
      font-size: .82rem;
      font-weight: 800;
    }
    .active-filter-chip button {
      width: 22px;
      height: 22px;
      padding: 0;
      border-radius: 50%;
      background: rgba(170,58,45,.12);
      color: var(--brand);
      box-shadow: none;
    }
    .search-suggestions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .search-chip {
      display: inline-flex;
      align-items: center;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(170,58,45,.08);
      border: 1px solid rgba(170,58,45,.12);
      color: var(--brand);
      font-size: .84rem;
      font-weight: 800;
    }
    .empty-state {
      margin-top: 22px;
      padding: 28px;
      border-radius: 28px;
      background: rgba(255,251,247,.82);
      border: 1px solid rgba(255,255,255,.62);
      box-shadow: var(--shadow);
    }
    .empty-state h3 {
      margin: 0 0 8px;
      font-size: 1.5rem;
    }
    .empty-state-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }
    .toolbar { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 18px; align-items: center; }
    .toolbar .search-pill, .toolbar .sort-pill { border-radius: 999px; padding: 14px 18px; background: rgba(255,252,249,.78); border: 1px solid var(--line); color: var(--muted); box-shadow: inset 0 1px 0 rgba(255,255,255,.72); }
    .product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
    .product-card { display: flex; flex-direction: column; width: 100%; min-width: 0; height: 100%; border-radius: 30px; padding: 18px; background: rgba(255,251,247,.78); border: 1px solid rgba(255,255,255,.62); box-shadow: var(--shadow); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
    .product-link { display: block; }
    .product-status-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }
    .product-status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid color-mix(in srgb, var(--status-color, var(--brand)) 18%, white);
      background: color-mix(in srgb, var(--status-color, var(--brand)) 10%, rgba(255,251,246,.84));
      color: color-mix(in srgb, var(--status-color, var(--brand)) 72%, #2c211d);
      font-size: .76rem;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    .product-status-pill::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--status-color, var(--brand));
      box-shadow: 0 0 0 5px color-mix(in srgb, var(--status-color, var(--brand)) 16%, transparent);
      flex: 0 0 auto;
    }
    .product-thumb {
      aspect-ratio: 1 / 1.08; border-radius: 24px; margin-bottom: 16px; background:
            linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.78)),
            radial-gradient(circle at 80% 0%, rgba(170,58,45,.12), transparent 30%),
            radial-gradient(circle at 25% 100%, rgba(186,141,58,.18), transparent 28%);
      border: 1px solid rgba(31,29,26,.08); position: relative; overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px;
    }
    .product-thumb img,
    .gallery-stage img,
    .thumb-row .mini img,
    .line-item .thumb img {
      display: block;
    }
    .product-thumb.has-product-image img {
      width: 100% !important;
      height: 100% !important;
      object-fit: contain !important;
    }
    .gallery-stage img,
    .thumb-row .mini img,
    .line-item .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .thumb-object { position: absolute; inset: 18% 22% 14% 22%; border-radius: 28px; background: linear-gradient(160deg, #ae3c31, #7f221b 70%); box-shadow: 0 25px 50px rgba(170,58,45,.22); }
    .thumb-object.alt { inset: 26% 28% 14% 28%; border-radius: 100px; background: linear-gradient(160deg, #7d4a22, #ba8d3a); }
    .product-thumb.has-product-image {
      background: #fff !important;
      background-image: none !important;
    }
    .gallery-stage.has-product-image::after,
    .thumb-row .mini.has-product-image::after,
    .line-item .thumb.has-product-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(32,24,21,.08));
      pointer-events: none;
    }
    .product-thumb.has-product-image .thumb-object,
    .product-thumb.has-product-image .thumb-object.alt,
    .gallery-stage.has-product-image .hero-product {
      display: none;
    }
    .product-meta { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
    .product-meta > div:first-child { min-width: 0; flex: 1 1 auto; }
    .product-card h3 { margin: 0 0 6px; font-size: 1.2rem; line-height: 1.2; }
    .product-name-link { text-decoration: none; }
    .product-name-link:hover { color: var(--brand); }
    .product-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: auto 0 0;
    }
    .product-specs span {
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(32,24,21,.08);
      color: var(--muted);
      font-size: .78rem;
      font-weight: 700;
    }
    .price { font-size: 1.2rem; font-weight: 800; white-space: nowrap }
    .pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
    .pill { border-radius: 999px; padding: 8px 12px; background: rgba(170,58,45,.08); color: var(--brand); font-size: .82rem; font-weight: 800; }
    .product-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: start; }
    .gallery, .product-info, .editorial-card, .feature-card, .mini-card { border-radius: 30px; padding: 26px; }
    .gallery-stage { aspect-ratio: 1 / 1; border-radius: 28px; background: linear-gradient(180deg, #fff, #f7ece7); border: 1px solid var(--line); position: relative; overflow: hidden; }
    .gallery-stage::before {
      content: "";
      position: absolute;
      inset: 24px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.46);
    }
    .gallery-stage .hero-product { position: absolute; inset: 12% 22% 10% 22%; border-radius: 36px; background: linear-gradient(150deg, #aa3a2d, #d77a67); box-shadow: 0 35px 60px rgba(170,58,45,.24); }
    .thumb-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
    .thumb-row .mini { aspect-ratio: 1; border-radius: 18px; border: 1px solid var(--line); background: white; position: relative; overflow: hidden; }
    .thumb-row .mini::after { content: ""; position: absolute; inset: 22%; border-radius: 18px; background: linear-gradient(135deg, rgba(170,58,45,.7), rgba(186,141,58,.65)); }
    .thumb-row .mini.has-product-image::after { display: none; }
    .product-info h1 { font-size: clamp(2.5rem, 4vw, 4rem); line-height: .98; letter-spacing: -.035em; margin: 10px 0 16px; max-width: 9ch; }
    .trust-inline {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin: 18px 0 6px;
    }
    .trust-inline-card,
    .detail-card,
    .checkout-trust-item,
    .order-assurance-item {
      padding: 16px 18px;
      border-radius: 22px;
      background: rgba(255,255,255,.68);
      border: 1px solid rgba(32,24,21,.08);
    }
    .trust-inline-card strong,
    .checkout-trust-item strong,
    .order-assurance-item strong {
      display: block;
      margin-bottom: 6px;
      font-size: .96rem;
    }
    .trust-inline-card span,
    .checkout-trust-item span,
    .order-assurance-item span,
    .detail-row span,
    .purchase-support-row span {
      color: var(--muted);
      line-height: 1.6;
    }
    .product-highlights { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 22px 0; }
    .product-facts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin: 20px 0 6px;
    }
    .product-fact {
      padding: 14px 16px;
      border-radius: 20px;
      background: rgba(255,255,255,.68);
      border: 1px solid rgba(32,24,21,.08);
    }
    .product-fact span {
      display: block;
      color: var(--muted);
      font-size: .8rem;
      margin-bottom: 6px;
    }
    .product-fact strong {
      font-size: .98rem;
    }
    .mini-card h4 { margin: 0 0 8px; font-size: 1.08rem; line-height: 1.2; }
      .purchase-box { display: grid; grid-template-columns: 120px 1fr auto; gap: 12px; margin-top: 18px; }
      .purchase-box-stacked { grid-template-columns: 1fr; }
      .input-pill {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        padding: 14px 18px;
        border-radius: 999px;
        border: 1px solid var(--line);
        background: rgba(255,255,255,.75);
      }
      .order-entry-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }
      .order-entry-card {
        display: grid;
        gap: 8px;
        padding: 16px;
        border-radius: 24px;
        border: 1px solid rgba(32,24,21,.08);
        background: rgba(255,255,255,.58);
      }
      .order-entry-label {
        font-size: .82rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--brand);
      }
      .order-entry-input {
        width: 100%;
        font-size: 1.05rem;
        font-weight: 700;
      }
      .order-entry-hint {
        color: var(--muted);
        font-size: .9rem;
        line-height: 1.5;
      }
    .qty-pill {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.75);
    }
    .qty-pill button {
      width: 34px;
      height: 34px;
      padding: 0;
      border-radius: 50%;
      background: rgba(170,58,45,.08);
      color: var(--brand);
      box-shadow: none;
    }
    .qty-pill span {
      min-width: 18px;
      text-align: center;
      font-weight: 800;
    }
    .purchase-support {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }
    .purchase-support-row,
    .detail-row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 0;
      border-top: 1px solid rgba(32,24,21,.08);
    }
    .purchase-support-row:first-child,
    .detail-row:first-child {
      border-top: 0;
    }
      .purchase-support-row strong,
      .detail-row strong {
        font-size: .92rem;
        color: var(--ink-soft);
      }
      .checkout-form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }
      .checkout-field {
        display: grid;
        gap: 8px;
        min-width: 0;
      }
      .checkout-field-full {
        grid-column: 1 / -1;
      }
      .checkout-field span {
        font-size: .82rem;
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--brand);
      }
      .checkout-field .input-pill {
        width: 100%;
      }
      .product-detail-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
    .product-story-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
    }
    .detail-card h3 {
      margin: 0 0 10px;
      font-size: 1.3rem;
    }
    .detail-list {
      display: grid;
      margin-top: 8px;
    }
    .detail-note {
      margin-top: 18px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(170,58,45,.08);
      color: var(--brand-deep);
      font-weight: 700;
      line-height: 1.6;
    }
    .confirm-overlay {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(32,24,21,.34);
      backdrop-filter: blur(6px);
      z-index: 40;
    }
    .confirm-overlay.is-open {
      display: flex;
    }
    .confirm-dialog {
      width: min(100%, 520px);
      border-radius: 30px;
      padding: 28px;
      background: var(--panel-strong);
      border: 1px solid rgba(255,255,255,.64);
      box-shadow: var(--shadow-strong);
    }
    .confirm-dialog h3 {
      margin: 0 0 10px;
      font-size: 1.5rem;
      line-height: 1.1;
    }
    .confirm-dialog p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }
    .confirm-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
    }
    .confirm-actions .btn,
    .confirm-actions form {
      width: 100%;
    }
    .confirm-actions form .btn {
      width: 100%;
    }
    .benefit-stack {
      display: grid;
      gap: 12px;
      margin-top: 8px;
    }
    .benefit-point {
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(170,58,45,.06);
      border: 1px solid rgba(170,58,45,.1);
    }
    .benefit-point strong {
      display: block;
      margin-bottom: 6px;
    }
    .benefit-point span {
      color: var(--muted);
      line-height: 1.6;
    }
    .editorial-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
    .editorial-card h2 { font-size: clamp(2.1rem, 3vw, 3rem); line-height: 1.02; margin: 12px 0 18px; max-width: 12ch; }
    .editorial-card .news-richtext h2 { max-width: none; width: 100%; }
    .feature-list { display: grid; gap: 16px; }
    .feature-card { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: start; }
    .feature-icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, rgba(170,58,45,.14), rgba(186,141,58,.2)); }
    .cart-layout, .checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 26px; }
    .line-item { display: grid; grid-template-columns: 120px 1fr auto; gap: 18px; padding: 18px; margin-bottom: 16px; }
    .item-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 14px;
    }
    .qty-control {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.72);
      border: 1px solid rgba(32,24,21,.08);
    }
    .qty-control button {
      width: 28px;
      height: 28px;
      padding: 0;
      border-radius: 50%;
      background: rgba(170,58,45,.08);
      color: var(--brand);
      box-shadow: none;
    }
    .qty-control span {
      min-width: 14px;
      text-align: center;
      font-weight: 800;
    }
    .line-link {
      border: 0;
      background: transparent;
      color: var(--muted);
      font: inherit;
      font-weight: 700;
      padding: 0;
    }
    .line-link:hover { color: var(--brand); }
      .line-item .thumb { border-radius: 18px; min-height: 110px; background: linear-gradient(135deg, #fff, #f0d4c4); border: 1px solid var(--line); position: relative; overflow: hidden; }
      .line-item .thumb::after { display: none; }
      .line-item .thumb.has-product-image::after { display: none; }
    .summary-row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; color: var(--muted); }
    .summary-row.total { color: var(--text); font-size: 1.2rem; font-weight: 800; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 16px; }
    .shipping-progress {
      margin-bottom: 14px;
      padding: 16px 18px;
      border-radius: 22px;
      background: rgba(170,58,45,.08);
      border: 1px solid rgba(170,58,45,.08);
    }
    .shipping-progress-head {
      display: grid;
      gap: 4px;
      margin-bottom: 12px;
    }
    .shipping-progress-head strong {
      font-size: .98rem;
    }
    .shipping-progress-head span {
      color: var(--muted);
      font-size: .88rem;
    }
    .shipping-progress-bar {
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.55);
      overflow: hidden;
    }
    .shipping-progress-bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(135deg, var(--brand), #d06f5d);
    }
    .checkout-trust-list,
    .order-assurance {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }
    .cart-recommendations { margin-top: 4px; }
    .assurance-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .rechnung-card {
      display: flex;
      flex-direction: column;
      gap: 18px;
      min-height: 100%;
      padding: 24px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(252,247,244,.98));
      border: 1px solid rgba(31,29,26,.08);
      box-shadow: 0 18px 42px rgba(68,43,31,.08);
    }
    .rechnung-card-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 18px;
    }
    .rechnung-card-copy {
      min-width: 0;
      display: grid;
      gap: 10px;
    }
    .rechnung-card h3 {
      margin: 0;
      font-size: 1.18rem;
      line-height: 1.2;
    }
    .rechnung-card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 16px;
      color: var(--muted);
      font-size: .95rem;
      line-height: 1.5;
    }
    .rechnung-card-price {
      flex-shrink: 0;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(170,58,45,.08);
      color: var(--accent);
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
    }
    .rechnung-card-body {
      display: grid;
      gap: 12px;
      padding-top: 2px;
    }
    .rechnung-card-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 10px 0;
      border-top: 1px solid rgba(31,29,26,.08);
      color: var(--muted);
    }
    .rechnung-card-row strong {
      color: var(--text);
      font-weight: 600;
      text-align: right;
    }
    .rechnung-card-actions {
      margin-top: auto;
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 12px;
    }
    .assurance-card {
      border-radius: 28px;
      padding: 24px;
    }
    .assurance-card h3 {
      font-size: 1.35rem;
      line-height: 1.15;
      margin: 8px 0 10px;
    }
    .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .field { display: grid; gap: 8px; }
    .field input, .field textarea, .field select {
      width: 100%; padding: 15px 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.76); font: inherit;
    }
    .field textarea { min-height: 120px; resize: vertical; }
    .login-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) 380px;
      gap: 26px;
      align-items: start;
    }
    .login-card,
    .login-sidecard {
      border-radius: 30px;
    }
    .login-intro h1 {
      margin: 16px 0 10px;
      font-size: clamp(2.3rem, 4vw, 3.8rem);
      line-height: .98;
      letter-spacing: -.035em;
      max-width: 10ch;
    }
    .login-intro p {
      max-width: 54ch;
      line-height: 1.75;
    }
    .login-form {
      margin-top: 24px;
    }
    .login-form-grid {
      grid-template-columns: 1fr;
    }
    .login-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }
    .login-support {
      display: grid;
      gap: 10px;
      margin-top: 22px;
    }
    .login-support-row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 12px 0;
      border-top: 1px solid rgba(32,24,21,.08);
    }
    .login-support-row strong {
      font-size: .92rem;
      color: var(--ink-soft);
    }
    .login-support-row span {
      color: var(--muted);
      line-height: 1.6;
    }
    .footer { padding: 4px 0 34px; }
    .footer-card {
      border-radius: 32px;
      padding: 28px;
      background:
              radial-gradient(circle at top left, rgba(229,180,112,.24), transparent 26%),
              radial-gradient(circle at 82% 18%, rgba(255,255,255,.12), transparent 22%),
              linear-gradient(140deg, #6d231d 0%, #43100e 46%, #1e0809 100%);
      color: white;
      box-shadow: 0 32px 100px rgba(53, 13, 11, .42);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.1);
    }
    .footer-card::after {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,.08);
      pointer-events: none;
    }
    .footer-card::before {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      right: -150px;
      top: -170px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,.14), rgba(255,255,255,0) 70%);
    }
    .footer-main {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
      gap: 20px;
      align-items: start;
    }
    .footer-brand {
      display: grid;
      gap: 14px;
      max-width: none;
    }
    .footer-logo {
      display: block;
      width: min(10rem, 100%);
      height: auto;
    }
    .footer-intro {
      display: none;
      margin: 0;
      font-size: .78rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgba(255,233,220,.82);
    }
    .footer-title {
      margin: 0;
      font-size: clamp(1.8rem, 3.1vw, 3rem);
      line-height: .95;
      letter-spacing: -.05em;
      color: #f5ff6b;
      max-width: none;
    }
    .footer-copy {
      margin: 0;
      max-width: 58ch;
      color: rgba(255,241,233,.82);
      line-height: 1.65;
      font-size: .95rem;
    }
    .footer-rail {
      display: grid;
      gap: 12px;
      align-content: start;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-panel {
      padding: 14px 16px;
      border-radius: 20px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
    }
    .footer-rail .footer-panel:nth-child(3) {
      grid-column: 1 / -1;
    }
    .footer-panel-label {
      display: inline-block;
      margin-bottom: 8px;
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,233,220,.72);
    }
    .footer-address {
      display: grid;
      gap: 4px;
    }
    .footer-contact-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px 28px;
      align-items: flex-start;
    }
    .footer-contact-grid .footer-address {
      flex: 1 1 220px;
      min-width: 220px;
    }
    .footer-address strong {
      color: #fff7f2;
      font-size: .95rem;
    }
    .footer-address span,
    .footer-address a {
      color: rgba(255,239,230,.8);
      line-height: 1.45;
      font-size: .88rem;
    }
    .footer-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .footer-chip {
      display: inline-flex;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      color: rgba(255,244,237,.94);
      backdrop-filter: blur(10px);
      font-size: .78rem;
      font-weight: 700;
    }
    .footer-bottom {
      position: relative;
      z-index: 1;
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.12);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
    }
    .footer small { display: block; opacity: .76; margin-top: 0; }
    .footer-signature {
      color: rgba(255,232,220,.76);
      font-size: .85rem;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .footer-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 11px 14px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.16);
      color: white;
      background: rgba(255,255,255,.06);
      font-weight: 700;
      transition: background .24s ease, transform .24s ease, border-color .24s ease, box-shadow .24s ease;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
    }
    .footer-link:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.26);
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(0,0,0,.18);
    }
    .footer-links {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }
    .legacy-footer-copy,
    .legacy-footer-links {
      display: none;
    }
    .kicker-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
    main { padding-top: 22px; }
    .page-head { padding: 25px 0 0px; position: relative; }
    .page-head.is-empty { display: none; }
    .page-head::after {
      content: "";
      position: absolute;
      inset: 12px 0 auto;
      height: 160px;
      background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.32), transparent 60%);
      pointer-events: none;
    }
    main > section,
    .product-card,
    .collection-card,
    .editorial-card,
    .feature-card,
    .mini-card,
    .hero-panel,
    .hero-visual {
      animation: rise .7s ease both;
    }
    @keyframes rise {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @media (max-width: 1080px) {
      .hero-shell, .collection-grid, .product-layout, .editorial-grid, .cart-layout, .checkout-layout, .product-listing, .showcase-grid, .category-feature, .login-layout { grid-template-columns: 1fr; }
      .metrics, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        .trust-inline, .product-detail-grid, .product-story-grid, .checkout-form-grid { grid-template-columns: 1fr; }
      .trust-strip, .assurance-grid { grid-template-columns: 1fr; }
      .hero-copy h1, .split-head h2, .editorial-card h2, .product-info h1 { max-width: none; }
      .infos-richtext .infos-box--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 780px) {
      .nav { flex-wrap: wrap; }
        .nav-links-wrap { order: 3; flex-basis: 100%; justify-content: flex-start; }
        .nav-actions { width: 100%; justify-content: space-between; }
        .cart-status { min-width: 0; }
        .nav-links { width: 100%; overflow-x: auto; padding-bottom: 4px; justify-content: flex-start; }
        .news-hero, .news-card, .news-empty { padding: 22px; border-radius: 26px; }
      .metrics, .product-grid, .thumb-row, .product-highlights, .form-grid, .product-facts, .browser-products, .showcase-row { grid-template-columns: minmax(0, 1fr); }
      .category-toolbar { flex-direction: column; align-items: stretch; }
      .results-meta { justify-items: start; }
      .hero-panel, .hero-visual, .filter-card, .checkout-card, .cart-card, .gallery, .product-info, .editorial-card { padding: 22px; border-radius: 24px; }
      .collection-card, .footer-card { border-radius: 24px; }
      .line-item { grid-template-columns: 1fr; }
        .purchase-box { grid-template-columns: 1fr; }
        .order-entry-grid { grid-template-columns: 1fr; }
        .purchase-support-row, .detail-row, .login-support-row { flex-direction: column; gap: 4px; }
      .infos-layout,
      .infos-overview-grid { grid-template-columns: 1fr; }
      .infos-richtext .infos-box--media { grid-template-columns: 1fr; }
      .infos-richtext .infos-box--media-right > :first-child,
      .infos-richtext .infos-box--media-right > :nth-child(2) { order: initial; }
      .infos-richtext .infos-box--cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .infos-nav-card { position: static; }
      .shop-tree-link { padding: 10px 11px; }
      .rechnung-card-head, .rechnung-card-row { flex-direction: column; }
      .rechnung-card-price { align-self: flex-start; }
      .rechnung-card-actions .btn { width: 100%; }
      .confirm-actions { flex-direction: column; }
      .mock-browser { transform: none; }
      .footer-main, .footer-bottom {
        grid-template-columns: 1fr;
        display: grid;
        justify-content: start;
      }
      .footer-rail {
        grid-template-columns: 1fr;
      }
      .footer-rail .footer-panel:nth-child(3) {
        grid-column: auto;
      }
      .footer-links {
        grid-template-columns: 1fr;
      }
      .footer-title { max-width: none; }
    }
    @media (max-width: 480px) {
      .nav-brand img {
        width: 100%;
        max-width: 100%;
      }
      .nav-links-wrap {
        justify-content: center;
      }
      .nav-links {
        justify-content: center;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
      }
      .infos-richtext .infos-box--cols-2,
      .infos-richtext .infos-box--cols-3,
      .infos-richtext .infos-box--cols-4 { grid-template-columns: 1fr; }
    }


/* Shop view switcher */
.shop-view-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 251, 247, .92);
  border: 1px solid rgba(170, 58, 45, .12);
  box-shadow: 0 10px 24px rgba(35, 30, 26, .08);
  margin-left: auto;
}
.shop-view-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  text-decoration: none;
  color: #5a4039;
  border: 1px solid transparent;
  background: transparent;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.shop-view-switch:hover {
  background: rgba(170, 58, 45, .08);
  color: #8f3024;
}
.shop-view-switch.is-active {
  background: rgba(170, 58, 45, .10);
  border-color: rgba(170, 58, 45, .28);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}
.shop-view-switch-icon {
  display: block;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  object-fit: contain;
}
@media (max-width: 780px) {
  .shop-view-switch {
    width: 36px;
    height: 36px;
  }
  .shop-view-switch-icon {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
  }
}
