    :root {
      --bg: #f4f4f4;
      --text: #404346;
      --muted: #777;
      --line: #dedede;
      --line-dark: #d0d0d0;
      --accent: #4967ea;
      --card-blue: #3b66f5;
      --orange: #f28c18;
      --badge-orange: #d35400;
      --badge-orange-soft: #fff4e8;
      --white: #ffffff;
      --home-cream: #fdf1e2;
      --home-purple: #6d5ae6;
      --home-purple-soft: #ede9ff;
      --sidebar-width: 128px;
      --radius-xl: 22px;
      --layout-max: 1320px;
      /* Larghezza dell’area contenuto dentro .layout-container (come la barra di ricerca) */
      --layout-inner-max: calc(var(--layout-max) - 48px);
      --site-header-sticky-offset: 124px;
      --canvas-bg: #383D40;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
    }

    @media (prefers-reduced-motion: no-preference) {
      html {
        scroll-behavior: smooth;
      }
    }

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

    .layout-container {
      max-width: var(--layout-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
      width: 100%;
    }

    .top-header {
      position: sticky;
      top: 0;
      z-index: 1020;
      background: #f7f7f7;
      padding: 14px 0 12px;
      overflow: visible;

      transition: padding 0.2s ease;
    }

    .top-header.is-compact {
      padding: 10px 0;
    }

    .header-inner {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      grid-template-rows: auto auto;
      gap: 14px 20px;
      align-items: center;
    }

    .header-inner .brand {
      grid-column: 1;
      grid-row: 1;
    }

    .header-inner .nav-mega-wrap {
      grid-column: 2;
      grid-row: 1;
      justify-self: center;
      min-width: 0;
      position: relative;
    }

    .header-inner .header-actions {
      grid-column: 3;
      grid-row: 1;
    }

    .header-inner .search-wrap {
      grid-column: 1 / -1;
      grid-row: 2;
    }

    .top-header.is-compact .header-inner {
      grid-template-rows: auto;
      gap: 0 16px;
    }

    .top-header.is-compact .nav-mega-wrap {
      display: none;
    }

    .top-header.is-compact .search-wrap {
      grid-column: 2;
      grid-row: 1;
      max-width: none;
    }

    .top-header.is-compact .brand {
      grid-column: 1;
      grid-row: 1;
    }

    .top-header.is-compact .header-actions {
      grid-column: 3;
      grid-row: 1;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 17px;
      font-weight: 500;
      white-space: nowrap;
    }

    .brand-mark {
      width: 18px;
      height: 18px;
      position: relative;
      display: inline-block;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      background: var(--orange);
      border-radius: 10px;
    }

    .brand-mark::before {
      width: 8px;
      height: 16px;
      left: 0;
      top: 1px;
      transform: rotate(18deg);
    }

    .brand-mark::after {
      width: 8px;
      height: 16px;
      right: 0;
      top: 1px;
      transform: rotate(-18deg);
    }

    .main-nav {
      display: flex;
      gap: 24px;
      font-size: 0.8125rem;
      line-height: 1.1;
      justify-content: center;
      min-width: 0;
    }

    .main-nav a {
      color: #2f3337;
      max-width: 86px;
      font-size: inherit;
    }

    .main-nav a[data-mega-id]:hover,
    .main-nav a[data-mega-id]:focus-visible {
      color: var(--card-blue);
    }

    /* Blocca lo scroll della pagina quando il mega menu è aperto (classe su body da menu.js) */
    body.desktop-mega-open {
      overflow: hidden;
      overscroll-behavior: none;
    }

    /* Mega menu desktop (click → L2 + L3; sotto la barra ricerca) */
    .desktop-mega {
      position: fixed;
      left: 0;
      right: 0;
      z-index: 1030;
      padding: 0 0 24px;
      pointer-events: none;
    }

    .desktop-mega.is-open {
      pointer-events: auto;
    }

    .desktop-mega-inner {
      background: #fff;
      border-radius: 0.5rem;
      padding: 16px 24px 0;
      max-width: var(--layout-inner-max);
      margin: 0 auto;
      overflow: hidden;
    }

    .desktop-mega-cat {
      display: inline-block;
      font-size: 14px;
      font-weight: 800;
      color: #1a1a1e;
      margin-bottom: 12px;
    }

    .desktop-mega-cat:hover {
      color: var(--card-blue);
    }

    .desktop-mega-body {
      display: grid;
      grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
      gap: 0 28px;
      min-height: 180px;
      padding-top: 12px;
      border-top: 1px solid #ececee;
    }

    .desktop-mega--leaf .desktop-mega-body {
      grid-template-columns: 1fr;
      min-height: 0;
    }

    .desktop-mega--leaf .desktop-mega-l2 {
      border-right: none;
      padding-right: 0;
    }

    .desktop-mega-l2 {
      list-style: none;
      margin: 0;
      padding: 0 16px 16px 0;
      border-right: 1px solid #ececee;
    }

    .desktop-mega-l2 li {
      margin: 0 0 4px;
    }

    .desktop-mega-l2 li.is-active .desktop-mega-l2-btn,
    .desktop-mega-l2 li.is-active .desktop-mega-l2-link {
      background: #e8f4fc;
    }

    .desktop-mega-l2-btn,
    .desktop-mega-l2-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      padding: 11px 14px;
      border: none;
      background: transparent;
      font: inherit;
      font-size: 14px;
      font-weight: 700;
      color: #2d3748;
      text-align: left;
      cursor: pointer;
      text-decoration: none;
      border-radius: 12px;
      transition: background 0.15s ease;
    }

    .desktop-mega-l2-btn:hover,
    .desktop-mega-l2-link:hover {
      background: #f3f8fd;
    }

    .desktop-mega-l2-btn .bi,
    .desktop-mega-l2-link .bi {
      font-size: 12px;
      color: #718096;
      flex-shrink: 0;
    }

    .desktop-mega-l2-only {
      display: inline-flex;
      padding: 12px 16px;
      font-weight: 700;
      color: var(--card-blue);
      border-radius: 12px;
      background: #f3f8fd;
    }

    .desktop-mega-l3-wrap {
      padding-bottom: 16px;
    }

    .desktop-mega-l3 {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .desktop-mega-l3 li a {
      display: block;
      padding: 9px 4px;
      font-size: 14px;
      font-weight: 500;
      color: #4a5568;
    }

    .desktop-mega-l3 li a:hover {
      color: var(--card-blue);
    }

    .desktop-mega-all {
      display: inline-block;
      margin-top: 12px;
      font-size: 14px;
      font-weight: 800;
      color: var(--card-blue);
    }

    .desktop-mega-all:hover {
      text-decoration: underline;
    }

    .desktop-mega-foot {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px 20px;
      padding: 14px 0 18px;
      margin-top: 4px;
      border-top: 1px solid #ececee;
      font-size: 12px;
      color: #666;
    }

    .desktop-mega-foot-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 4px 0;
    }

    .desktop-mega-foot-links a {
      color: #2f3337;
      font-weight: 700;
    }

    .desktop-mega-foot-links a:hover {
      color: var(--card-blue);
    }

    .desktop-mega-dot {
      display: inline;
    }

    .desktop-mega-dot::before {
      content: "·";
      margin: 0 8px;
      color: #c4c4c4;
      font-weight: 700;
    }

    .desktop-mega-foot-help {
      margin: 0;
      font-size: 12px;
    }

    .desktop-mega-foot-help a {
      color: var(--card-blue);
      font-weight: 800;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      justify-content: flex-end;
      min-width: 0;
    }

    .header-volantino {
      display: none;
      font-size: 0.875rem;
      font-weight: 700;
      color: #2f3337;
      white-space: nowrap;
    }

    .header-volantino:hover {
      color: #111;
    }

    .top-header.is-compact .header-volantino {
      display: inline;
    }

    .header-icons {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 18px;
      color: #2f3337;
      white-space: nowrap;
    }

    .header-account-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      line-height: 0;
      vertical-align: middle;
    }

    .header-account-btn-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      font-size: 1.15rem;
      color: #2f3337;
      background: linear-gradient(145deg, #f8f9fb 0%, #eef1f6 100%);
      border: 1px solid rgba(45, 55, 72, 0.08);
      transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
    }

    .header-account-btn:hover .header-account-btn-inner {
      color: var(--card-blue);
      background: linear-gradient(145deg, #eef3ff 0%, #e4ebff 100%);
      border-color: rgba(59, 102, 245, 0.22);
    }

    .header-account-btn:active .header-account-btn-inner {
      transform: scale(0.96);
    }

    .header-account-btn:focus-visible {
      outline: none;
    }

    .header-account-btn:focus-visible .header-account-btn-inner {
      outline: 2px solid var(--card-blue);
      outline-offset: 3px;
    }

    /* Offcanvas menu account */
    .account-offcanvas.offcanvas {
      --bs-offcanvas-width: min(380px, 94vw);
      background: #fafbfc;
      color: var(--text);
      border: none;
      border-top-left-radius: 1.25rem;
      border-bottom-left-radius: 1.25rem;
      overflow: hidden;
    }

    .account-offcanvas-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding: 1.35rem 1.35rem 1.15rem;
      background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
      border-bottom: 1px solid rgba(45, 55, 72, 0.08);
    }

    .account-offcanvas-header-text {
      min-width: 0;
    }

    .account-offcanvas-kicker {
      margin: 0 0 4px;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--card-blue);
    }

    .account-offcanvas-title {
      margin: 0;
      font-size: 1.35rem;
      font-weight: 800;
      line-height: 1.2;
      color: #14181c;
      letter-spacing: -0.02em;
    }

    .account-offcanvas-close {
      flex-shrink: 0;
      margin-top: 2px;
      opacity: 0.55;
      transition: opacity 0.15s ease;
    }

    .account-offcanvas-close:hover {
      opacity: 1;
    }

    .account-offcanvas-body {
      min-height: 0;
      background: #fafbfc;
    }

    .account-offcanvas-user {
      display: flex;
      align-items: center;
      gap: 14px;
      margin: 1.1rem 1.25rem 0.25rem;
      padding: 1rem 1.1rem;
      background: #fff;
      border-radius: 16px;
      border: 1px solid rgba(45, 55, 72, 0.07);
    }

    .account-offcanvas-avatar {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      background: linear-gradient(135deg, var(--card-blue) 0%, #2d4fd4 100%);
    }

    .account-offcanvas-user-meta {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .account-offcanvas-greeting {
      font-size: 0.8125rem;
      font-weight: 600;
      color: #6b7280;
    }

    .account-offcanvas-name {
      font-size: 1.0625rem;
      font-weight: 800;
      color: #14181c;
      letter-spacing: -0.02em;
    }

    .account-offcanvas-nav {
      padding: 1.15rem 1rem 1rem;
      overflow-y: auto;
    }

    .account-offcanvas-section-label {
      margin: 0 0 8px 0.35rem;
      padding-top: 0.5rem;
      font-size: 0.6875rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #9ca3af;
    }

    .account-offcanvas-section-label:first-of-type {
      padding-top: 0;
    }

    .account-offcanvas-list {
      list-style: none;
      margin: 0 0 1.25rem;
      padding: 0;
      background: #fff;
      border-radius: 16px;
      border: 1px solid rgba(45, 55, 72, 0.07);
      overflow: hidden;
    }

    .account-offcanvas-list:last-of-type {
      margin-bottom: 0;
    }

    .account-offcanvas-list li + li {
      border-top: 1px solid rgba(45, 55, 72, 0.06);
    }

    .account-offcanvas-item {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
      padding: 14px 14px 14px 16px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #1f2937;
      text-decoration: none;
      border: none;
      background: none;
      cursor: pointer;
      font-family: inherit;
      text-align: left;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .account-offcanvas-item:hover {
      background: #f8fafc;
      color: var(--card-blue);
    }

    .account-offcanvas-item:hover .account-offcanvas-item-icon {
      background: rgba(59, 102, 245, 0.12);
      color: var(--card-blue);
    }

    .account-offcanvas-item:hover .account-offcanvas-item-arrow {
      color: var(--card-blue);
      transform: translateX(2px);
    }

    .account-offcanvas-item:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: -2px;
      z-index: 1;
    }

    .account-offcanvas-item-icon {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: #4b5563;
      background: #f3f4f6;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .account-offcanvas-item-text {
      flex: 1;
      min-width: 0;
    }

    .account-offcanvas-item-arrow {
      flex-shrink: 0;
      font-size: 0.85rem;
      color: #c4c9d1;
      transition: transform 0.2s ease, color 0.15s ease;
    }

    .account-offcanvas-footer {
      margin-top: auto;
      padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
      background: linear-gradient(180deg, transparent 0%, rgba(248, 250, 252, 0.95) 30%, #f1f5f9 100%);
      border-top: 1px solid rgba(45, 55, 72, 0.08);
    }

    .account-offcanvas-logout {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 14px 18px;
      font-size: 0.9375rem;
      font-weight: 800;
      font-family: inherit;
      color: #fff;
      background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
      border: none;
      border-radius: 14px;
      cursor: pointer;
      transition: transform 0.15s ease, filter 0.15s ease;
    }

    .account-offcanvas-logout:hover {
      filter: brightness(1.05);
    }

    .account-offcanvas-logout:active {
      transform: scale(0.98);
    }

    .account-offcanvas-logout:focus-visible {
      outline: 2px solid #7f1d1d;
      outline-offset: 3px;
    }

    .account-offcanvas-logout i {
      font-size: 1.1rem;
    }

    .cart-badge {
      position: relative;
      display: inline-flex;
      align-items: center;
      color: inherit;
      text-decoration: none;
    }

    .cart-badge:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 3px;
      border-radius: 6px;
    }

    .cart-badge .dot {
      position: absolute;
      top: -7px;
      right: -8px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #c96d17;
      color: #fff;
      font-size: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }

    .search-wrap {
      position: relative;
      width: 100%;
      max-width: 100%;
    }

    .search-input {
      width: 100%;
      height: 44px;
      border-radius: 999px;
      border: 1px solid #d0d0d0;
      background: #ffffff;
      padding: 0 52px 0 18px;
      color: #333;
      font-size: 14px;
      outline: none;
    }

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

    .search-input:focus {
      border-color: #b8b8b8;
    }

    .search-icon {
      position: absolute;
      right: 17px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 22px;
      color: #6c6c6c;
    }

    .nav-burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: stretch;
      gap: 7px;
      width: 44px;
      height: 44px;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      color: #111;
      border-radius: 10px;
      flex-shrink: 0;
      -webkit-tap-highlight-color: transparent;
    }

    .nav-burger:hover {
      background: rgba(0, 0, 0, 0.05);
    }

    .nav-burger:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .nav-burger-bar {
      display: block;
      height: 3px;
      width: 24px;
      border-radius: 2px;
      background: currentColor;
    }

    .mobile-nav-overlay {
      position: fixed;
      inset: 0;
      z-index: 1050;
      visibility: hidden;
      pointer-events: none;
      transition: visibility 0.3s step-end;
    }

    .mobile-nav-overlay.is-open {
      visibility: visible;
      pointer-events: auto;
      transition: visibility 0s step-start;
    }

    .mobile-nav-backdrop {
      position: absolute;
      inset: 0;
      border: none;
      padding: 0;
      margin: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 15, 18, 0.48);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.28s ease;
    }

    .mobile-nav-overlay.is-open .mobile-nav-backdrop {
      opacity: 1;
    }

    .mobile-nav-sheet {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: min(80vh, 100dvh);
      max-height: 80vh;
      display: flex;
      flex-direction: column;
      background: #fff;
      border-radius: 28px 28px 0 0;
      transform: translate3d(0, 105%, 0);
      transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
      overflow: hidden;
      padding-top: 0;
    }

    .mobile-nav-overlay.is-open .mobile-nav-sheet {
      transform: translate3d(0, 0, 0);
    }

    .mobile-nav-sheet-inner {
      position: relative;
      display: flex;
      flex-direction: column;
      min-height: 0;
      flex: 1;
      padding: 8px 16px 0;
      overflow: hidden;
    }

    .mobile-nav-sheet-inner--drill {
      padding: 0;
    }

    .mobile-nav-header-bar {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr) 44px;
      align-items: center;
      gap: 8px;
      padding: 12px 12px 10px;
      flex-shrink: 0;
      border-bottom: 1px solid #e8e8ea;
      background: #fff;
    }

    /* Slot fissi: con [hidden] sul back il pulsante non partecipa alla griglia e senza slot il titolo finiva nella colonna 44px (troncato "Ca..."). */
    .mobile-nav-header-slot {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      min-width: 44px;
      flex-shrink: 0;
    }

    .mobile-nav-header-slot--start {
      justify-content: flex-start;
    }

    .mobile-nav-header-slot--end {
      justify-content: flex-end;
    }

    .mobile-nav-back-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      border-radius: 12px;
      background: transparent;
      color: #1a1a1e;
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
    }

    .mobile-nav-back-btn:hover {
      background: rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-back-btn:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .mobile-nav-back-btn[hidden] {
      display: none;
    }

    .mobile-nav-header-title {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      color: #1a202c;
      text-align: center;
      line-height: 1.3;
      padding: 0 4px;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .mobile-nav-close-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      padding: 0;
      border: none;
      border-radius: 12px;
      background: transparent;
      color: #1a1a1e;
      font-size: 20px;
      cursor: pointer;
    }

    .mobile-nav-close-icon:hover {
      background: rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-close-icon:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .mobile-nav-drill-wrap {
      --drill-count: 1;
      flex: 1;
      min-height: 0;
      overflow: hidden;
      width: 100%;
      position: relative;
    }

    /* Larghezza esplicita: senza questo i pannelli flex non sono ciascuno 100% del wrap e la translate % non copre la vista. */
    .mobile-nav-drill-track {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      height: 100%;
      min-height: 0;
      width: calc(var(--drill-count) * 100%);
      transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
      will-change: transform;
    }

    .mobile-nav-panel {
      flex: 0 0 calc(100% / var(--drill-count));
      min-width: calc(100% / var(--drill-count));
      max-width: calc(100% / var(--drill-count));
      box-sizing: border-box;
      min-height: 0;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-panel--root {
      background: #fff;
    }

    .mobile-nav-panel--list {
      background: linear-gradient(180deg, #e8f4fc 0%, #f5f9fd 100%);
    }

    .mobile-nav-list-inner {
      padding-bottom: 8px;
    }

    .mobile-nav-cat-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 16px 14px;
      font-size: 14px;
      font-weight: 600;
      color: #1a202c;
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .mobile-nav-cat-link:hover {
      color: #000;
    }

    .mobile-nav-cat-link-icon {
      display: inline-flex;
      width: 36px;
      height: 36px;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.85);
      color: #2d3748;
      font-size: 18px;
      flex-shrink: 0;
    }

    .mobile-nav-list-sep {
      height: 1px;
      margin: 0 16px 4px;
      background: rgba(0, 0, 0, 0.06);
    }

    .mobile-nav-list {
      list-style: none;
      margin: 0;
      padding: 0 8px 0 0;
    }

    .mobile-nav-list li {
      margin: 0;
    }

    .mobile-nav-list-row {
      width: calc(100% - 8px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 8px 16px 16px;
      margin: 0;
      border: none;
      background: transparent;
      font: inherit;
      font-size: 15px;
      font-weight: 500;
      color: #2d3748;
      text-align: left;
      cursor: pointer;
      border-radius: 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-list-row:hover {
      background: rgba(255, 255, 255, 0.45);
    }

    .mobile-nav-list-chevron {
      font-size: 14px;
      color: #718096;
      flex-shrink: 0;
    }

    .mobile-nav-list-link {
      display: flex;
      align-items: center;
      padding: 16px 16px 16px 16px;
      font-size: 15px;
      font-weight: 500;
      color: #2d3748;
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-list-link:hover {
      color: #000;
      background: rgba(255, 255, 255, 0.35);
    }

    .mobile-nav-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px 10px;
      padding: 12px 16px 16px;
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
      min-width: 0;
      color: #111;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.25;
      text-decoration: none;
    }

    button.mobile-nav-tile {
      border: none;
      background: none;
      cursor: pointer;
      font: inherit;
      padding: 0;
    }

    .mobile-nav-tile:hover .mobile-nav-tile-visual {
      transform: translateY(-2px);
    }

    .mobile-nav-tile-visual {
      width: 100%;
      aspect-ratio: 1;
      max-width: 104px;
      margin: 0 auto;
      border-radius: 20px;
      background: var(--tile-tint, #f0f4f8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: #2d3748;
      transition: transform 0.18s ease;
    }

    .mobile-nav-tile-label {
      display: block;
      padding: 0 2px;
      font-size: .675rem;
    }

    .mobile-nav-footer {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      flex-shrink: 0;
      padding: 16px 8px max(20px, env(safe-area-inset-bottom, 20px));
      background: #f3f3f4;
      border-radius: 0;
      margin-left: -16px;
      margin-right: -16px;
      border-top: 1px solid #e8e8ea;
    }

    .mobile-nav-sheet-inner--drill .mobile-nav-footer {
      margin-left: 0;
      margin-right: 0;
    }

    .mobile-nav-footer-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px 6px;
      font-size: 11px;
      font-weight: 700;
      color: #333;
      text-align: center;
      line-height: 1.2;
    }

    .mobile-nav-footer-link:hover {
      color: #000;
    }

    .mobile-nav-footer-mark {
      width: 14px;
      height: 14px;
      position: relative;
      display: inline-block;
    }

    .mobile-nav-footer-mark::before,
    .mobile-nav-footer-mark::after {
      content: "";
      position: absolute;
      background: var(--orange);
      border-radius: 8px;
    }

    .mobile-nav-footer-mark::before {
      width: 6px;
      height: 13px;
      left: 0;
      top: 0;
      transform: rotate(18deg);
    }

    .mobile-nav-footer-mark::after {
      width: 6px;
      height: 13px;
      right: 0;
      top: 0;
      transform: rotate(-18deg);
    }

    @media (prefers-reduced-motion: reduce) {
      .mobile-nav-backdrop,
      .mobile-nav-sheet {
        transition: none;
      }

      .mobile-nav-drill-track {
        transition: none;
      }

      .mobile-filter-backdrop,
      .mobile-filter-sheet {
        transition: none;
      }
    }

    .mobile-fab-group {
      display: none;
      position: fixed;
      left: 50%;
      bottom: max(18px, env(safe-area-inset-bottom, 18px));
      transform: translateX(-50%);
      z-index: 1040;
      align-items: center;
      gap: 12px;
    }

    .mobile-filter-fab {
      z-index: 1040;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 48px;
      padding: 0 20px;
      border: none;
      border-radius: 999px;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
      -webkit-tap-highlight-color: transparent;
      white-space: nowrap;
    }

    .mobile-filter-fab--primary {
      width: 72px;
      height: 72px;
      padding: 0;
      border-radius: 50%;
      background: #fff;
      color: #3a3f45;
    }

    .mobile-filter-fab--secondary {
      height: 72px;
      padding: 0 22px;
      border-radius: 999px;
      background: #3a4148;
      color: #fff;
      font-size: 16px;
    }

    .mobile-filter-fab--secondary:hover {
      background: #323940;
      color: #fff;
    }

    .mobile-filter-fab--primary:hover {
      background: #f3f4f6;
      color: #374151;
    }

    .mobile-filter-fab--primary i {
      font-size: 30px;
    }

    .mobile-filter-fab--secondary > span {
      font-size: 16px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.01em;
    }

    .mobile-filter-fab-count {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #eceff1;
      color: #2b3138;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      font-weight: 700;
      line-height: 1;
      margin-left: 10px;
    }

    .mobile-filter-fab-count.is-empty {
      display: none;
    }

    .mobile-filter-fab {
      z-index: 1040;
      display: inline-flex;
    }

    .mobile-filter-fab i {
      font-size: 18px;
    }

    .mobile-filter-fab:hover {
      background: #1e1e22;
      color: #fff;
    }

    .mobile-filter-fab:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 3px;
    }

    body.mobile-filter-open .mobile-fab-group,
    body.mobile-active-filters-open .mobile-fab-group {
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, 12px);
    }

    .mobile-active-filters-overlay {
      position: fixed;
      inset: 0;
      z-index: 1056;
      visibility: hidden;
      pointer-events: none;
      transition: visibility 0.3s step-end;
    }

    .mobile-active-filters-overlay.is-open {
      visibility: visible;
      pointer-events: auto;
      transition: visibility 0s step-start;
    }

    .mobile-active-filters-backdrop {
      position: absolute;
      inset: 0;
      border: none;
      margin: 0;
      width: 100%;
      height: 100%;
      background: rgba(12, 12, 14, 0.52);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      opacity: 0;
      transition: opacity 0.28s ease;
      cursor: pointer;
    }

    .mobile-active-filters-overlay.is-open .mobile-active-filters-backdrop {
      opacity: 1;
    }

    .mobile-active-filters-sheet {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background: #2c2f35;
      color: #f5f7fa;
      border-radius: 24px 24px 0 0;
      transform: translate3d(0, 105%, 0);
      transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
      padding: 14px 16px 24px;
    }

    .mobile-active-filters-overlay.is-open .mobile-active-filters-sheet {
      transform: translate3d(0, 0, 0);
    }

    .mobile-active-filters-close {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      margin: 0 auto 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #3b4047;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
    }

    .mobile-active-filters-body {
      display: grid;
      gap: 16px;
    }

    .mobile-active-filters-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .mobile-active-filter-chip {
      border: none;
      border-radius: 8px;
      background: #fff;
      color: #374151;
      padding: 10px 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      line-height: 1;
      white-space: nowrap;
    }

    .mobile-active-filter-chip strong {
      font-weight: 700;
      color: #111827;
    }

    .mobile-active-filter-chip i {
      font-size: 11px;
      color: #4b5563;
    }

    .mobile-active-filters-clear {
      justify-self: center;
      width: min(220px, 100%);
      height: 50px;
      border: none;
      border-radius: 14px;
      background: #252b33;
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      text-transform: lowercase;
      cursor: pointer;
    }

    .mobile-filter-overlay {
      position: fixed;
      inset: 0;
      z-index: 1055;
      visibility: hidden;
      pointer-events: none;
      transition: visibility 0.3s step-end;
    }

    .mobile-filter-overlay.is-open {
      visibility: visible;
      pointer-events: auto;
      transition: visibility 0s step-start;
    }

    .mobile-filter-backdrop {
      position: absolute;
      inset: 0;
      border: none;
      padding: 0;
      margin: 0;
      width: 100%;
      height: 100%;
      background: rgba(12, 12, 14, 0.52);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.28s ease;
    }

    .mobile-filter-overlay.is-open .mobile-filter-backdrop {
      opacity: 1;
    }

    .mobile-filter-sheet {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      max-height: 78vh;
      display: flex;
      flex-direction: column;
      background: #2c2c2f;
      color: #f0f0f0;
      border-radius: 24px 24px 0 0;
      transform: translate3d(0, 105%, 0);
      transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
      overflow: hidden;
      padding-top: 12px;
    }

    .mobile-filter-overlay.is-open .mobile-filter-sheet {
      transform: translate3d(0, 0, 0);
    }

    .mobile-filter-close {
      position: relative;
      align-self: center;
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      margin-bottom: 6px;
      border-radius: 50%;
      border: none;
      background: #3a3a3f;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      z-index: 2;
    }

    .mobile-filter-close:hover {
      background: #48484e;
    }

    .mobile-filter-sheet-body {
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      padding: 0 16px;
    }

    .mobile-filter-view {
      display: flex;
      flex-direction: column;
      min-height: 0;
      flex: 1;
      overflow: hidden;
    }

    .mobile-filter-section-label {
      margin: 4px 0 12px;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
    }

    .mobile-filter-pill {
      align-self: flex-start;
      margin-bottom: 20px;
      padding: 10px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.2);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
    }

    .mobile-filter-pill:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .mobile-filter-rows {
      display: flex;
      flex-direction: column;
      gap: 10px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 8px;
    }

    .mobile-filter-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 16px 18px;
      border: none;
      border-radius: 14px;
      background: #3a3a3f;
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      font-family: inherit;
      text-align: left;
      cursor: pointer;
      transition: background 0.15s ease;
    }

    .mobile-filter-row:hover {
      background: #45454a;
    }

    .mobile-filter-row i {
      font-size: 18px;
      opacity: 0.85;
    }

    .mobile-filter-view-detail {
      overflow: hidden;
    }

    .mobile-filter-back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
      padding: 6px 0;
      border: none;
      background: none;
      color: rgba(255, 255, 255, 0.85);
      font-size: 15px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
    }

    .mobile-filter-back:hover {
      color: #fff;
    }

    .mobile-filter-detail-title {
      margin: 0 0 14px;
      font-size: 1.2rem;
      font-weight: 800;
      color: #fff;
    }

    .mobile-filter-detail-scroll {
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 8px;
    }

    .mobile-filter-search {
      margin-bottom: 1rem;
    }

    .mobile-filter-sheet-footer {
      flex-shrink: 0;
      display: flex;
      gap: 12px;
      padding: 14px 16px max(16px, env(safe-area-inset-bottom));
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      background: #2c2c2f;
    }

    .mobile-filter-sheet-footer .filter-btn-reset {
      flex: 1;
    }

    .mobile-filter-sheet-footer .filter-btn-apply {
      flex: 1.4;
    }

    .page-hero {
      padding: 16px 0 16px;
      background: var(--bg);
    }

    .breadcrumbs {
      display: flex;
      gap: 14px;
      font-size: 0.75rem;
      line-height: 1.35;
      color: #666;
      margin-bottom: 12px;
      align-items: center;
      flex-wrap: wrap;
    }

    .breadcrumbs .sep {
      color: #9a9a9a;
    }

    .page-title {
      font-size: 28px;
      line-height: 1.1;
      font-weight: 700;
      margin: 0 0 18px;
      color: #3d4246;
    }

    .hero-bottom {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 20px;
      padding-bottom: 4px;
    }

    .availability-pill {
      display: inline-flex;
      align-items: center;
      height: 34px;
      padding: 0 12px;
      border-radius: 10px;
      border: 1px solid var(--line-dark);
      background: #f8f8f8;
      font-size: 14px;
      color: #64686b;
    }

    .active-filters-bar {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      padding-bottom: 14px;
      margin-bottom: 10px;
      border-bottom: 1px solid #e5e7eb;
    }

    .active-filters-label {
      font-size: 14px;
      color: #4b5563;
      font-weight: 600;
    }

    .active-filters-chips {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      flex: 1 1 auto;
      min-width: 0;
    }

    .active-filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 34px;
      padding: 0 12px;
      border-radius: 9px;
      border: 1px solid #d8dde5;
      background: #f7f8fa;
      color: #374151;
      font-size: 13px;
      font-weight: 500;
      line-height: 1;
    }

    .active-filter-chip strong {
      font-weight: 700;
      color: #1f2937;
    }

    .active-filter-chip i {
      font-size: 11px;
      color: #6b7280;
    }

    .active-filters-link {
      margin-left: auto;
      font-size: 14px;
      color: #374151;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
      white-space: nowrap;
    }

    .sort-view {
      display: flex;
      align-items: center;
      gap: 26px;
      color: #505458;
      font-size: 14px;
      line-height: 1.1;
      font-weight: 500;
    }

    .sort-view .view-icons {
      display: flex;
      gap: 10px;
      align-items: center;
      font-size: 16px;
    }

    .sort-view .d-flex > span {
      font-size: 13px;
      font-weight: 600;
      color: #6b7280;
    }

    .view-icon-btn {
      width: 30px;
      height: 30px;
      border: 1px solid transparent;
      border-radius: 8px;
      background: transparent;
      color: #6b7280;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
      line-height: 1;
    }

    .view-icon-btn i {
      display: block;
      line-height: 1;
    }

    .view-icon-btn:hover {
      background: #f3f4f6;
      color: #374151;
    }

    .view-icon-btn.is-active {
      border-color: #cfd7e6;
      background: #eef3ff;
      color: #2f56e0;
    }

    .content-area {
      border-top: 1px solid #ededed;
      background: #fff;
      padding: 22px 0 48px;
      width: 100%;
      border-top-right-radius: 22px;
      border-top-left-radius: 22px;
    }

    .filter-head {
      display: flex;
      align-items: center;
      gap: 26px;
      margin-bottom: 18px;
      padding-left: 0;
      flex-wrap: wrap;
    }

    .filter-head .title {
      font-size: 24px;
      font-weight: 600;
      display: none;
    }

    .filter-head .label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #30353a;
    }

    .filter-head .note {
      font-size: 0.75rem;
      color: #666;
    }

    .catalog-layout {
      display: grid;
      grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }

    .filters-sidebar {
      padding-top: 8px;
    }

    @media (min-width: 841px) {
      .filters-sidebar {
        position: sticky;
        top: var(--site-header-sticky-offset);
        align-self: start;
        z-index: 12;
        max-height: calc(100vh - var(--site-header-sticky-offset) - 24px);
        overflow-y: auto;
        overflow-x: hidden;
      }
    }

    .products-grid-wrap {
      min-width: 0;
    }

    .filter-item {
      height: 106px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: #2f3337;
      font-size: 0.75rem;
      text-align: center;
    }

    .filter-item i {
      font-size: 28px;
      color: #4a4f54;
    }

    .filter-item.filter-trigger {
      cursor: pointer;
      border-radius: 14px;
      transition: background 0.15s ease;
    }

    .filter-item.filter-trigger:hover {
      background: rgba(0, 0, 0, 0.04);
    }

    .filter-item.filter-trigger:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .filter-item--all-filters {
      position: relative;
    }

    .filter-item-active-badge {
      position: absolute;
      top: 6px;
      right: 6px;
      min-width: 18px;
      height: 18px;
      padding: 0 5px;
      box-sizing: border-box;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      line-height: 18px;
      text-align: center;
      pointer-events: none;
    }

    .filter-item-active-badge[hidden] {
      display: none !important;
    }

    .filter-offcanvas-main {
      position: relative;
      min-height: 160px;
      max-width: 100%;
      overflow-x: hidden;
      overflow-y: auto;
    }

    .filter-offcanvas-loading {
      position: absolute;
      inset: 0;
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 24px 16px;
      box-sizing: border-box;
      max-width: 100%;
      background: rgba(56, 61, 64, 0.96);
      border-radius: 12px;
    }

    .filter-offcanvas-loading[hidden] {
      display: none !important;
    }

    .filter-offcanvas-loading-spinner {
      width: 28px;
      height: 28px;
      border: 3px solid rgba(255, 255, 255, 0.12);
      border-top-color: rgba(255, 255, 255, 0.88);
      border-radius: 50%;
      animation: filter-offcanvas-spin 0.65s linear infinite;
    }

    @keyframes filter-offcanvas-spin {
      to {
        transform: rotate(360deg);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .filter-offcanvas-loading-spinner {
        animation: none;
        border-top-color: rgba(255, 255, 255, 0.45);
      }
    }

    .filter-offcanvas-loading-text {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.62);
      text-align: center;
    }

    /* Offcanvas filtri (dark) */
    .filter-offcanvas.offcanvas {
      --bs-offcanvas-width: min(420px, 92vw);
      background: var(--canvas-bg);
      color: #f0f0f0;
      border: none;
      border-top-right-radius: 1rem;
      border-bottom-right-radius: 1rem;
      overflow: hidden;
    }

    .filter-offcanvas .offcanvas-header {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 1.1rem 1.25rem;
    }

    .filter-offcanvas .offcanvas-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
    }

    .filter-offcanvas .btn-close {
      opacity: 0.85;
    }

    .filter-offcanvas .offcanvas-body {
      padding: 0;
      overflow: hidden;
      flex: 1 1 auto;
      min-height: 0;
    }

    .filter-offcanvas-inner {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .filter-search-wrap {
      position: relative;
      margin-bottom: 1.25rem;
    }

    .filter-search-input {
      width: 100%;
      height: 46px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(0, 0, 0, 0.25);
      color: #fff;
      padding: 0 48px 0 18px;
      font-size: 14px;
      outline: none;
    }

    .filter-search-input::placeholder {
      color: rgba(255, 255, 255, 0.45);
    }

    .filter-search-wrap .search-ic {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
      color: rgba(255, 255, 255, 0.55);
      pointer-events: none;
    }

    .filter-option-list {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .filter-levels {
      margin-top: 4px;
    }

    .filter-levels-viewport {
      overflow: hidden;
      width: 100%;
    }

    .filter-levels-track {
      --filter-step: 0;
      display: flex;
      width: 300%;
      transform: translateX(calc(var(--filter-step) * -33.333333333%));
      transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
      will-change: transform;
    }

    @media (prefers-reduced-motion: reduce) {
      .filter-levels-track {
        transition: none;
      }
    }

    .filter-offcanvas .filter-level {
      flex: 0 0 33.333333333%;
      width: 33.333333333%;
      min-width: 33.333333333%;
      max-width: 33.333333333%;
      box-sizing: border-box;
      padding-right: 4px;
    }

    .filter-level-title {
      margin: 0 0 8px;
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.72);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .filter-level-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .filter-level-item-btn {
      width: 100%;
      border: none;
      border-radius: 12px;
      background: #343438;
      color: #fff;
      padding: 11px 12px;
      font: inherit;
      font-size: 14px;
      font-weight: 600;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      transition: background 0.12s ease;
    }

    .filter-level-item-btn:hover {
      background: #404046;
    }

    .filter-level-item-btn i {
      opacity: 0.85;
    }

    .filter-level-back {
      border: none;
      background: none;
      color: rgba(255, 255, 255, 0.82);
      font-size: 13px;
      font-weight: 700;
      padding: 0 0 8px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
    }

    .filter-level-back:hover {
      color: #fff;
    }

    .filter-option-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 5px 10px;
      border-radius: 12px;
      cursor: pointer;
      margin: 0;
      transition: background 0.12s ease;
    }

    .filter-option-row:hover {
      background: rgba(255, 255, 255, 0.06);
    }

    .filter-option-row .form-check-input {
      width: 1.15rem;
      height: 1.15rem;
      margin-top: 0;
      border-radius: 6px;
      border-color: rgba(255, 255, 255, 0.35);
      background-color: transparent;
    }

    .filter-option-row .form-check-input:checked {
      background-color: var(--accent);
      border-color: var(--accent);
    }

    .filter-option-label {
      flex: 1;
      font-size: .875rem;
      font-weight: 600;
      color: #fff;
    }

    .filter-option-count {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      white-space: nowrap;
    }

    .filter-offcanvas .filter-offcanvas-footer {
      margin-top: auto;
      padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      flex-direction: column;
      align-items: stretch;
      flex-shrink: 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      gap: 0.75rem;
      background: #2e2e2e;
    }

    .filter-offcanvas-footer-active {
      width: 100%;
      min-width: 0;
    }

    .filter-offcanvas-footer-heading {
      display: block;
      width: 100%;
      margin: 0 0 8px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: rgba(255, 255, 255, 0.55);
    }

    .filter-offcanvas-footer-chips {
      display: flex;
      flex-wrap: wrap;
      align-content: flex-start;
      gap: 6px;
      width: 100%;
      min-height: 40px;
      max-height: 120px;
      overflow-y: auto;
      overflow-x: hidden;
      padding: 8px 6px;
      margin: 0;
      border-radius: 10px;
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-sizing: border-box;
      -webkit-overflow-scrolling: touch;
    }

    .filter-offcanvas-footer-chip {
      display: inline-flex;
      align-items: center;
      max-width: 100%;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 600;
      line-height: 1.3;
      color: rgba(255, 255, 255, 0.92);
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.14);
      word-break: break-word;
    }

    .filter-offcanvas-footer-empty {
      margin: 0;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.38);
    }

    .filter-offcanvas-footer-actions {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: stretch;
      width: 100%;
      min-width: 0;
      gap: 12px;
    }

    .filter-offcanvas-footer-actions .filter-btn-reset,
    .filter-offcanvas-footer-actions .filter-btn-apply {
      min-width: 0;
    }

    .filter-btn-reset {
      flex: 1;
      height: 48px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: transparent;
      color: #fff;
      font-weight: 700;
      font-size: 15px;
    }

    .filter-btn-apply {
      flex: 1.35;
      height: 48px;
      border-radius: 12px;
      border: none;
      background: #e8e8e8;
      color: #222;
      font-weight: 700;
      font-size: 15px;
    }

    .filter-btn-reset:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .filter-btn-apply:hover {
      background: #fff;
    }

    .offcanvas-backdrop.show {
      background: rgba(15, 15, 18, 0.48);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      
    }

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

    .products-grid.is-list {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    @media (min-width: 768px) {
      .products-grid.is-list .product-card {
        border-radius: 12px;
      }

      .products-grid.is-list .product-body {
        display: grid;
        grid-template-columns: 128px minmax(0, 1fr) auto;
        grid-template-areas:
          "visual header actions"
          "visual price actions"
          "visual specs actions";
        align-items: center;
        gap: 10px 14px;
        padding: 14px 16px;
      }

      .products-grid.is-list .product-card-header {
        grid-area: header;
        margin-bottom: 0;
      }

      .products-grid.is-list .product-card-link--media {
        grid-area: visual;
        min-width: 0;
        align-self: center;
      }

      .products-grid.is-list .phone-visual {
        height: 118px;
        margin-bottom: 0;
      }

      .products-grid.is-list .phone {
        width: 82px;
        height: 116px;
      }

      .products-grid.is-list .screen {
        width: 48px;
        height: 102px;
      }

      .products-grid.is-list .discount-badge {
        left: 2px;
        width: 58px;
        height: 58px;
      }

      .products-grid.is-list .eco-badge {
        right: 4px;
      }

      .products-grid.is-list .product-price-block {
        grid-area: price;
      }

      .products-grid.is-list .product-quick-specs {
        grid-area: specs;
        margin-top: 0;
      }

      .products-grid.is-list .card-actions {
        grid-area: actions;
        margin-top: 0;
        padding-top: 0;
        flex-direction: column;
        align-items: flex-end;
      }

      .products-grid.is-list .compare {
        margin-right: 0;
      }
    }

    .product-card {
      background: #fff;
      border: 1px solid #e3e5e8;
      border-radius: 14px;
      min-height: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .product-body {
      /*padding: 16px 16px 14px;*/
      padding: 10px 10px 10px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 0;
    }

    .product-card-header {
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto;
      gap: 8px 10px;
      margin-bottom: 12px;
      align-items: start;
    }

    .product-badges {
      grid-column: 1;
      grid-row: 1;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      min-height: 20px;
    }

    .product-pill-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--badge-orange);
      line-height: 1;
    }

    .product-pill-badge i {
      font-size: 11px;
      opacity: 0.95;
    }

    .product-card-header .product-fav {
      grid-column: 2;
      grid-row: 1;
    }

    .product-card-header .product-card-link--title {
      grid-column: 1 / -1;
      grid-row: 2;
      min-width: 0;
      color: inherit;
      text-decoration: none;
      align-self: start;
    }

    .product-card-header .product-card-link--title:hover .product-title,
    .product-card-header .product-card-link--title:focus-visible .product-title {
      color: var(--card-blue);
    }

    .product-card-header .product-card-link--title:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
      border-radius: 4px;
    }

    .product-card-link--media {
      display: block;
      color: inherit;
      text-decoration: none;
      border-radius: 10px;
    }

    .product-card-link--media:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .product-card .product-title {
      flex: unset;
      min-width: 0;
      margin: 0;
      font-size: .816rem;
      line-height: 1.35;
      min-height: 65px;
      font-weight: 600;
      color: #111827;
      display: -webkit-box;
      line-clamp: 3;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-align: left;
      font-family: inherit;
    }

    @keyframes product-fav-pop {
      0% {
        transform: scale(1);
      }
      40% {
        transform: scale(1.4);
      }
      70% {
        transform: scale(0.92);
      }
      100% {
        transform: scale(1);
      }
    }

    .product-fav {
      flex-shrink: 0;
      border: none;
      background: none;
      padding: 0;
      margin: 0;
      color: #b8bcc4;
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      transition: color 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      vertical-align: middle;
    }

    .product-fav i {
      display: block;
      transform-origin: center;
    }

    .product-fav.product-fav--pop i {
      animation: product-fav-pop 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
    }

    @media (prefers-reduced-motion: reduce) {
      .product-fav.product-fav--pop i {
        animation: none;
      }
    }

    .product-fav:hover {
      color: #9ca3af;
    }

    .product-fav.is-active {
      color: #e11d48;
    }

    .product-fav.is-active:hover {
      color: #be123c;
    }

    .phone-visual {
      position: relative;
      height: 168px;
      margin-bottom: 16px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }

    .discount-badge {
      position: absolute;
      left: 0;
      bottom: 10px;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--card-blue);
      color: #fff;
      font-weight: 700;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 5px 4px;
      line-height: 1.12;
      z-index: 2;
    }

    .discount-badge .db-amount {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .discount-badge .db-mid {
      font-size: 7px;
      font-weight: 700;
      text-transform: uppercase;
      margin-top: 3px;
      letter-spacing: 0.04em;
    }

    .discount-badge .db-club {
      font-size: 6px;
      font-weight: 600;
      margin-top: 4px;
      line-height: 1.25;
      opacity: 0.95;
      max-width: 84px;
    }

    .eco-badge {
      position: absolute;
      right: 0;
      bottom: 12px;
      width: 30px;
      height: 36px;
      background: #00a651;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 800;
      z-index: 2;
      clip-path: polygon(0% 0%, 72% 0%, 100% 50%, 72% 100%, 0% 100%);
      border-radius: 0;
      padding-right: 4px;
    }

    .eco-badge i {
      display: none;
    }

    .phone {
      width: 96px;
      height: 136px;
      border-radius: 10px;
      background: linear-gradient(180deg, #4a4f58 0%, #1c2026 100%);
      position: relative;
      border: 2px solid #2a2e35;
    }

    .phone::before {
      content: "";
      position: absolute;
      left: 7px;
      top: 10px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #0e1218;
    }

    .screen {
      position: absolute;
      right: 7px;
      top: 7px;
      width: 56px;
      height: 122px;
      border-radius: 8px;
      background: radial-gradient(circle at 62% 35%, #b49e95 0%, #7a6762 35%, #3d3940 70%, #23272d 100%);
      border: 1px solid rgba(255,255,255,.12);
    }

    .product-price-block {
      margin-top: 0;
    }

    .price-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 10px;
    }

    .price {
      font-size: 15px;
      margin: 0;
      color: #1f2937;
      line-height: 1.2;
    }

    .price strong {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .price-ora {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      color: var(--badge-orange);
      border: 1px solid #fdba74;
      background: #fffdfb;
      border-radius: 999px;
      padding: 3px 10px;
      line-height: 1;
      letter-spacing: 0.02em;
    }

    .price-ora[hidden] {
      display: none !important;
    }

    .old-price {
      margin-top: 6px;
      font-size: 12px;
      color: #9ca3af;
      line-height: 1.3;
    }

    .product-quick-specs {
      margin-top: 10px;
      padding: 5px 7px 5px;
      border: 1px solid #eceff3;
      border-radius: 10px;
      background: #fafbfc;
      display: grid;
      gap: 8px;
    }

    .product-spec-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-width: 0;
    }

    .product-spec-row--stacked {
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      gap: 4px;
    }

    .product-spec-row--dotted {
      border-bottom: 1px dotted #cfd6e1;
      padding-bottom: 6px;
    }

    .product-spec-label {
      font-size: 11px;
      font-weight: 700;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      flex-shrink: 0;
    }

    .product-spec-value {
      font-size: 12px;
      font-weight: 600;
      color: #374151;
      min-width: 0;
      text-align: right;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .product-spec-row--stacked .product-spec-value {
      text-align: left;
      white-space: normal;
      overflow: visible;
      text-overflow: unset;
      line-height: 1.25;
    }

    .product-spec-chips {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 6px;
    }

    .product-spec-chip {
      display: inline-flex;
      align-items: center;
      padding: 3px 7px;
      border-radius: 999px;
      border: 1px solid #d9dee7;
      background: #fff;
      color: #4b5563;
      font-size: 11px;
      font-weight: 700;
      line-height: 1;
    }

    .product-spec-chip.is-active {
      border-color: #3b66f5;
      color: #1d4ed8;
      background: #eef3ff;
    }

    .product-specs-more {
      margin-top: 2px;
    }

    .product-specs-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      color: #374151;
      cursor: pointer;
      list-style: none;
      user-select: none;
    }

    .product-specs-toggle::-webkit-details-marker {
      display: none;
    }

    .product-specs-toggle::after {
      content: "▾";
      font-size: 10px;
      transition: transform 0.2s ease;
    }

    .product-specs-more[open] .product-specs-toggle::after {
      transform: rotate(180deg);
    }

    .product-specs-more[open] .product-specs-toggle {
      margin-bottom: 6px;
    }

    .product-specs-more[open] .product-specs-toggle {
      color: #1f2937;
    }

    .product-specs-extra {
      display: grid;
      gap: 8px;
    }

    .product-color-dots {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .product-color-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 1px solid rgba(17, 24, 39, 0.12);
      background: var(--dot, #9ca3af);
      flex-shrink: 0;
    }

    .card-actions {
      margin-top: auto;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding-top: 10px;
      gap: 12px;
    }

    .compare {
      font-size: .6rem;
      font-weight: 500;
      color: #6b7280;
      display: flex;
      align-items: center;
      gap: 3px;
      margin-right: auto;
    }

    .compare i {
      font-size: 16px;
      color: #9ca3af;
    }

    .cart-btn {
      flex: 1 1 auto;
      width: 100%;
      min-width: 55px;
      height: 30px;
      padding: 0 14px;
      border-radius: 8px;
      background: var(--card-blue);
      border: none;
      color: #fff;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s ease, transform 0.1s ease;
    }

    .qty-stepper {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: 30px;
      padding: 0 4px;
      border: 1px solid #d8dee8;
      border-radius: 8px;
      background: #fff;
    }

    .qty-stepper-btn {
      width: 20px;
      height: 20px;
      border: none;
      border-radius: 6px;
      background: #f3f5f8;
      color: #374151;
      font-size: 14px;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
    }

    .qty-stepper-btn:hover {
      background: #e9edf3;
    }

    .qty-stepper-value {
      min-width: 18px;
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      color: #111827;
      line-height: 1;
      user-select: none;
    }

    .cart-btn:hover {
      background: #2f56e0;
      color: #fff;
    }

    .cart-btn:active {
      transform: translateY(1px);
    }

    .product-card-footer {
      flex-shrink: 0;
      margin-top: auto;
    }

    .product-card-footer-spacer {
      min-height: 40px;
      box-sizing: border-box;
      border-top: 1px solid transparent;
      background: transparent;
    }

    .sponsor-row {
      border-top: 1px solid #ebebeb;
      background: #f5f5f5;
      min-height: 30px;
      box-sizing: border-box;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      color: #374151;
    }

    .sponsor-row .info {
      color: #666;
      font-size: 14px;
    }

    /* Fine pagina — servizi + CTA */
    .prefooter-services {
      background: #fff;
      padding: 44px 0 36px;
      border-top: 1px solid #ededed;
      width: 100%;
    }

    .prefooter-services-top {
      margin-bottom: 22px;
    }

    .prefooter-services-title {
      font-size: 22px;
      font-weight: 800;
      margin: 0 0 8px;
      color: #111827;
      line-height: 1.2;
    }

    .prefooter-lead {
      font-size: 15px;
      color: #4b5563;
      margin: 0 0 26px;
      font-weight: 600;
      line-height: 1.45;
    }

    .prefooter-services-intro .prefooter-lead {
      margin-bottom: 0;
    }

    .service-carousel-nav {
      display: none;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .service-carousel-btn {
      width: 36px;
      height: 36px;
      padding: 0;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      background: #fff;
      color: #374151;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      transition: background 0.15s ease, border-color 0.15s ease;
    }

    .service-carousel-btn:hover {
      background: #f3f4f6;
      border-color: #9ca3af;
    }

    .service-carousel-btn:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .service-carousel {
      min-width: 0;
    }

    .service-cards-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 14px;
    }

    .service-card {
      border: 1px solid #e5e7eb;
      border-radius: 14px;
      padding: 18px 14px;
      background: #fff;
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 118px;
      
    }

    .service-card:hover {
    }

    .service-card i {
      font-size: 26px;
      color: #4a4f54;
    }

    .service-card strong {
      font-size: 13px;
      color: #1f2937;
      font-weight: 700;
      line-height: 1.35;
    }

    .prefooter-cta {
      background: #fff;
      padding: 20px 0 56px;
      width: 100%;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 36px;
    }

    .cta-col h2 {
      font-size: 22px;
      font-weight: 800;
      margin: 0 0 12px;
      color: #111827;
    }

    .cta-col p {
      font-size: 14px;
      color: #6b7280;
      line-height: 1.55;
      margin: 0 0 16px;
    }

    .pill-field-wrap {
      position: relative;
      margin-bottom: 10px;
    }

    .pill-field-wrap .pill-input {
      width: 100%;
      height: 46px;
      border-radius: 999px;
      border: 1px solid #b8bcc4;
      padding: 0 50px 0 18px;
      font-size: 14px;
      outline: none;
      font-family: inherit;
      background: #fff;
    }

    .pill-field-wrap .pill-input::placeholder {
      color: #9ca3af;
    }

    .pill-field-wrap .end-ic {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      color: #6b7280;
      pointer-events: none;
    }

    .cta-link {
      font-size: 13px;
      color: var(--card-blue);
      font-weight: 600;
    }

    .cta-link:hover {
      color: #2f56e0;
    }

    .social-row {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 4px;
    }

    .social-row a {
      width: 44px;
      height: 44px;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: #374151;
      font-size: 18px;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .social-row a:hover {
      background: #f9fafb;
      color: #111827;
    }

    .site-footer {
      background: #2a2a2a;
      color: rgba(255, 255, 255, 0.88);
      padding: 40px 0 52px;
      width: 100%;
    }

    .site-footer-tagline {
      text-align: center;
      font-size: 13px;
      line-height: 1.65;
      max-width: 960px;
      margin: 0 auto 40px;
      color: rgba(255, 255, 255, 0.78);
    }

    .footer-links-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 28px 36px;
    }

    .footer-col h3 {
      font-size: 14px;
      font-weight: 800;
      margin: 0 0 16px;
      color: #fff;
    }

    .footer-col ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-col li {
      margin-bottom: 10px;
    }

    .footer-col a {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.72);
      font-weight: 500;
    }

    .footer-col a:hover {
      color: #fff;
    }

    @media (max-width: 1100px) {
      .main-nav { gap: 16px; font-size: 0.8125rem; }
      .products-grid { grid-template-columns: repeat(3, 1fr); }
      .service-cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

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

    @media (max-width: 840px) {
      .header-inner {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px 14px;
      }

      .header-inner .brand {
        grid-column: 1;
        grid-row: 1;
      }

      .header-inner .header-actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
      }

      .header-inner .nav-mega-wrap {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
        justify-content: flex-start;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 4px;
      }

      .header-inner .nav-mega-wrap .main-nav {
        justify-content: flex-start;
      }

      .header-inner .search-wrap {
        grid-column: 1 / -1;
        grid-row: 3;
      }

      .top-header.is-compact .header-inner {
        grid-template-rows: auto auto;
      }

      .top-header.is-compact .search-wrap {
        grid-column: 1 / -1;
        grid-row: 2;
      }

      .top-header.is-compact .brand {
        grid-column: 1;
        grid-row: 1;
      }

      .top-header.is-compact .header-actions {
        grid-column: 2;
        grid-row: 1;
      }
      .page-hero { padding: 24px 0 12px; }
      .hero-bottom { flex-direction: column; align-items: flex-end; }
      .active-filters-bar { gap: 8px; }
      .active-filters-label { font-size: 13px; }
      .active-filter-chip {
        height: 32px;
        padding: 0 10px;
        font-size: 12px;
      }
      .active-filters-link {
        margin-left: 0;
        width: 100%;
      }
      .filter-head { flex-wrap: wrap; }
      .catalog-layout { grid-template-columns: 1fr; }
      .filters-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
      }
      .filter-item {
        height: auto;
        padding: 10px 6px;
        border: 1px solid var(--line);
        border-radius: 14px;
      }
      .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cta-grid { grid-template-columns: 1fr; }
      .footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .service-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 767px) {
      /* iOS Safari: evita l'auto-zoom al focus sugli input con font < 16px */
      .search-input {
        font-size: 16px;
      }

      .nav-burger {
        display: inline-flex;
      }

      .header-inner {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto auto;
        gap: 10px 12px;
        align-items: center;
      }

      .header-inner .nav-burger {
        grid-column: 1;
        grid-row: 1;
      }

      .header-inner .brand {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
      }

      .header-inner .header-actions {
        grid-column: 3;
        grid-row: 1;
      }

      .header-inner .nav-mega-wrap {
        display: none !important;
      }

      .desktop-mega {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
      }

      .header-inner .search-wrap {
        grid-column: 1 / -1;
        grid-row: 2;
      }

      .top-header.is-compact .header-inner {
        grid-template-rows: auto auto;
      }

      .top-header.is-compact .header-inner .search-wrap {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
      }

      .top-header.is-compact .header-inner .nav-burger {
        grid-column: 1;
        grid-row: 1;
      }

      .top-header.is-compact .header-inner .brand {
        grid-column: 2;
        grid-row: 1;
      }

      .top-header.is-compact .header-inner .header-actions {
        grid-column: 3;
        grid-row: 1;
      }

      .mobile-fab-group {
        display: inline-flex;
      }

      .active-filters-bar {
        display: none;
      }

      .filter-head,
      .filters-sidebar {
        display: none !important;
      }

      .catalog-layout {
        gap: 0;
      }

      .content-area {
        padding: 16px 0 96px;
        border-top: none;
      }

      .content-area > .layout-container {
        padding-left: 10px;
        padding-right: 10px;
      }

      .breadcrumbs {
        line-height: 1.45;
        gap: 6px 10px;
        margin-bottom: 10px;
      }

      .page-title {
        line-height: 1.12;
        margin-bottom: 14px;
      }

      .products-grid {
        gap: 10px 8px;
        padding-bottom: 4px;
      }

      .product-card {
        border-color: #e4e4e6;
      }

      .prefooter-services {
        padding: 32px 0 28px;
      }

      .prefooter-services-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 16px;
      }

      .prefooter-services-intro {
        min-width: 0;
        flex: 1;
      }

      .prefooter-services-title {
        font-size: 1.25rem;
        margin-bottom: 6px;
      }

      .prefooter-services-intro .prefooter-lead {
        font-size: 0.875rem;
        font-weight: 500;
        color: #6b7280;
        line-height: 1.4;
      }

      .service-carousel-nav {
        display: flex;
        margin-top: 2px;
      }

      .service-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 16px;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
        outline: none;
      }

      .service-carousel::-webkit-scrollbar {
        height: 4px;
      }

      .service-carousel::-webkit-scrollbar-thumb {
        background: #d1d5db;
        border-radius: 4px;
      }

      .service-carousel .service-cards-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        grid-template-columns: none;
        margin: 0;
        padding-bottom: 6px;
      }

      .service-carousel .service-card {
        flex: 0 0 min(280px, calc(100vw - 52px));
        scroll-snap-align: start;
        min-height: 128px;
        padding: 16px 14px;
        gap: 0;
        justify-content: space-between;
        align-items: flex-start;
        border-radius: 15px;
      }

      .service-carousel .service-card i {
        flex-shrink: 0;
      }

      .service-carousel .service-card strong {
        margin-top: auto;
        padding-top: 12px;
        font-size: 13px;
        max-width: 100%;
      }
    }

    @media (max-width: 520px) {
      .service-cards-grid { grid-template-columns: 1fr; }
      .footer-links-grid { grid-template-columns: 1fr; }
    }

    /* Pagina login / registrazione */
    .auth-page {
      background: #fff;
    }

    .auth-page .top-header {
      transition: padding 0.32s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: padding;
    }

    .auth-page .header-inner {
      transition: gap 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .auth-page .search-wrap,
    .auth-page .brand,
    .auth-page .header-actions {
      transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.24s ease;
    }

    .auth-page .top-header.is-compact .search-wrap,
    .auth-page .top-header.is-compact .brand,
    .auth-page .top-header.is-compact .header-actions {
      transform: translateY(-1px);
    }

    .auth-main {
      border-top: 1px solid #ededed;
    background: #fff;
    padding: 22px 0 48px;
    width: 100%;
    border-top-right-radius: 22px;
    border-top-left-radius: 22px;
    }

    .auth-layout {
      display: grid;
      grid-template-columns: 1.25fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .auth-visual {
      min-height: 640px;
      border-radius: 6px;
      overflow: hidden;
      background: #f2f3f6;
    }

    .auth-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .auth-panel {
      padding: 14px 0;
    }

    .auth-title {
      font-size: 28px;
      line-height: 1.1;
      font-weight: 700;
      margin: 0 0 18px;
      color: #3d4246;
    }

    .auth-title-mark {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .auth-subtitle {
      margin: 0 0 20px;
      color: #6b7280;
      font-size: 13px;
      line-height: 1.45;
      max-width: 58ch;
    }

    .auth-form {
      display: grid;
      gap: 10px;
      margin-bottom: 14px;
    }

    .auth-label {
      font-size: 12px;
      color: #1f2937;
      font-weight: 700;
    }

    .auth-input {
      width: 100%;
      border: 1px solid #d7dbe3;
      border-radius: 8px;
      height: 42px;
      padding: 0 12px;
      font: inherit;
      color: #111827;
      outline: none;
      background: #fff;
    }

    .auth-input:focus {
      border-color: #8fb0ff;
    }

    .auth-primary-btn {
      height: 42px;
      border: none;
      border-radius: 8px;
      background: #3b66f5;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      margin-top: 4px;
    }

    .auth-primary-btn:hover {
      background: #2f56e0;
    }

    .auth-separator {
      position: relative;
      text-align: center;
      margin: 10px 0 14px;
      color: #9ca3af;
      font-size: 12px;
    }

    .auth-separator::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      border-top: 1px dashed #d5d9e2;
      z-index: 0;
    }

    .auth-separator span {
      position: relative;
      z-index: 1;
      background: #fff;
      padding: 0 10px;
    }

    .auth-socials {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      margin-bottom: 18px;
    }

    .auth-social-btn {
      height: 42px;
      border: 1px solid #dde2ea;
      border-radius: 8px;
      background: #fff;
      font-size: 20px;
      line-height: 1;
      color: #111827;
      cursor: pointer;
    }

    .auth-social-btn:hover {
      background: #f8f9fb;
    }

    .auth-links-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      padding-top: 14px;
      border-top: 1px dashed #d9dde6;
    }

    .auth-link-pill {
      min-height: 34px;
      border: 1px solid #dbe1ea;
      border-radius: 8px;
      background: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: #374151;
      font-size: 12px;
      font-weight: 600;
      padding: 6px 8px;
      text-align: center;
    }

    .auth-link-pill:hover {
      background: #f8f9fb;
      color: #111827;
    }

    .auth-switch {
      margin: 0 0 16px;
      font-size: 13px;
      color: #6b7280;
    }

    .auth-switch a {
      color: #3b66f5;
      font-weight: 700;
      text-decoration: none;
    }

    .auth-switch a:hover {
      text-decoration: underline;
    }

    .auth-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .auth-form-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 12px;
      margin: 4px 0 2px;
    }

    .auth-form-row--split {
      justify-content: space-between;
    }

    .auth-check {
      display: inline-flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 12px;
      color: #374151;
      line-height: 1.35;
      cursor: pointer;
    }

    .auth-check input {
      margin-top: 2px;
      flex-shrink: 0;
    }

    .auth-check--block {
      display: flex;
      margin: 2px 0;
    }

    .auth-check a {
      color: #3b66f5;
      font-weight: 600;
    }

    .auth-inline-link {
      font-size: 12px;
      color: #3b66f5;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
    }

    .auth-inline-link:hover {
      text-decoration: underline;
    }

    .auth-field-hint {
      margin: -4px 0 0;
      font-size: 11px;
      color: #9ca3af;
      line-height: 1.35;
    }

    .auth-visual--login {
      background: linear-gradient(135deg, #1e3a8a 0%, #3b66f5 50%, #93c5fd 100%);
    }

    .auth-visual--register {
      background: linear-gradient(135deg, #0f766e 0%, #14b8a6 45%, #a7f3d0 100%);
    }

    @media (max-width: 520px) {
      .auth-row {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 1100px) {
      .auth-layout {
        grid-template-columns: 1fr;
      }

      .auth-visual {
        min-height: 320px;
      }
    }

    @media (max-width: 767px) {
      .auth-visual {
        display: none;
      }

      .auth-layout {
        gap: 0;
      }

      .auth-main {
        padding-top: 10px;
      }

      .auth-title {
        font-size: 28px;
      }

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

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

    /* —— Account dashboard (area personale / brand da $SITE_BRAND) —— */
    .account-hero .page-title {
      margin-bottom: 10px;
    }

    .account-intro {
      margin: 0 0 8px;
      max-width: 52rem;
      font-size: 1rem;
      line-height: 1.5;
      color: #5c6368;
      font-weight: 500;
    }

    .account-area {
      padding-top: 28px;
    }

    .account-dash-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-bottom: 28px;
    }

    .account-dash-card {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 132px;
      padding: 20px 22px;
      border-radius: 18px;
      font-size: 1.125rem;
      font-weight: 700;
      color: #2d3135;
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: transform 0.18s ease;
      overflow: hidden;
    }

    .account-dash-card:hover {
      transform: translateY(-2px);
    }

    .account-dash-card:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .account-dash-card__text {
      position: relative;
      z-index: 1;
      max-width: 55%;
      line-height: 1.25;
    }

    .account-dash-card__visual {
      flex-shrink: 0;
      width: 72px;
      height: 72px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      background: rgba(255, 255, 255, 0.55);
    }

    .account-dash-card--orders {
      background: linear-gradient(135deg, #ffe8de 0%, #ffd4c4 100%);
    }

    .account-dash-card--orders .account-dash-card__visual {
      color: #c45c3a;
    }

    .account-dash-card--returns {
      background: linear-gradient(135deg, #fff3d9 0%, #ffe4ad 100%);
    }

    .account-dash-card--returns .account-dash-card__visual {
      color: #b7791f;
    }

    .account-dash-card--wishlist {
      background: linear-gradient(135deg, #e3f0ff 0%, #cfe5fc 100%);
    }

    .account-dash-card--wishlist .account-dash-card__visual {
      color: #2f6fdb;
    }

    .account-dash-card--club {
      background: linear-gradient(135deg, #efe8ff 0%, #e0d4fc 100%);
    }

    .account-dash-card--club .account-dash-card__visual {
      color: #6b4fc7;
    }

    .account-dash-card--addresses {
      background: linear-gradient(135deg, #e0f5f0 0%, #c8ebe3 100%);
    }

    .account-dash-card--addresses .account-dash-card__visual {
      color: #1f8a6b;
    }

    .account-dash-bottom {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .account-profile-card {
      background: var(--white);
      border: 1px solid #e5e7eb;
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .account-profile-banner {
      height: 128px;
      background:
        radial-gradient(circle at 20% 80%, rgba(255, 180, 160, 0.45) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(130, 170, 255, 0.35) 0%, transparent 40%),
        linear-gradient(110deg, #f0f4ff 0%, #fff5f0 50%, #e8f7f2 100%);
    }

    .account-profile-card__body {
      padding: 20px 22px 22px;
    }

    .account-profile-card__row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }

    .account-profile-card__title {
      margin: 0;
      font-size: 1.125rem;
      font-weight: 700;
      color: #2d3135;
    }

    .account-profile-card__edit {
      font-size: 0.9375rem;
      font-weight: 600;
      color: #374151;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .account-profile-card__edit:hover {
      color: var(--accent);
    }

    .account-profile-card__desc {
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.5;
      color: #6b7280;
    }

    .account-settings-nav {
      background: var(--white);
      border: 1px solid #e5e7eb;
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .account-settings-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 20px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #374151;
      border-bottom: 1px solid #eef0f3;
      transition: background 0.15s ease;
    }

    .account-settings-link:last-child {
      border-bottom: 0;
    }

    .account-settings-link:hover {
      background: #f9fafb;
    }

    .account-settings-link:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: -2px;
      position: relative;
      z-index: 1;
    }

    .account-settings-link i {
      font-size: 1rem;
      color: #9ca3af;
      flex-shrink: 0;
    }

    @media (max-width: 767px) {
      .account-dash-grid {
        grid-template-columns: 1fr;
      }

      .account-dash-card {
        min-height: 112px;
      }

      .account-dash-bottom {
        grid-template-columns: 1fr;
      }
    }

    /* —— Indirizzi: stesso page-hero / content-area di account (.account-hero, .account-area) —— */
    .addresses-widget {
      position: relative;
    }

    .addresses-tab-input {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .addresses-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      padding-bottom: 0;
      margin-bottom: 18px;
      border-bottom: 1px solid #e5e7eb;
    }

    .addresses-tabs {
      display: flex;
      gap: 0;
    }

    .addresses-tab {
      display: inline-block;
      padding: 10px 18px 12px;
      margin-bottom: -1px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #6b7280;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      transition: color 0.15s ease, border-color 0.15s ease;
    }

    .addresses-tab:hover {
      color: #374151;
    }

    #addr-tab-shipping:checked ~ .addresses-toolbar .addresses-tab[for="addr-tab-shipping"],
    #addr-tab-billing:checked ~ .addresses-toolbar .addresses-tab[for="addr-tab-billing"] {
      color: #1f2937;
      border-bottom-color: #3b66f5;
    }

    .addresses-add-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-left: auto;
      padding: 11px 20px;
      min-height: 42px;
      box-sizing: border-box;
      border: none;
      border-radius: 10px;
      background: #1f2328;
      color: #fff;
      font-size: 0.875rem;
      font-weight: 700;
      font-family: inherit;
      line-height: 1.2;
      text-decoration: none;
      white-space: nowrap;
      cursor: pointer;
      transition: background 0.15s ease;
    }

    .addresses-add-btn:hover {
      background: #111418;
      color: #fff;
    }

    .addresses-add-btn:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .addresses-scroll-wrap {
      max-height: min(58vh, 520px);
      overflow-y: auto;
      padding-right: 4px;
      scrollbar-width: thin;
      scrollbar-color: #c4c9d0 transparent;
    }

    .addresses-scroll-wrap::-webkit-scrollbar {
      width: 6px;
    }

    .addresses-scroll-wrap::-webkit-scrollbar-thumb {
      background: #c4c9d0;
      border-radius: 6px;
    }

    .addresses-scroll--shipping,
    .addresses-scroll--billing {
      display: none;
      grid-template-columns: 1fr;
      gap: 14px;
      align-content: start;
    }

    #addr-tab-shipping:checked ~ .addresses-scroll-wrap .addresses-scroll--shipping,
    #addr-tab-billing:checked ~ .addresses-scroll-wrap .addresses-scroll--billing {
      display: grid;
    }

    @media (min-width: 768px) {
      #addr-tab-shipping:checked ~ .addresses-scroll-wrap .addresses-scroll--shipping,
      #addr-tab-billing:checked ~ .addresses-scroll-wrap .addresses-scroll--billing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .address-card {
      background: linear-gradient(180deg, #e4f5ef 0%, #d8f0e8 100%);
      border-radius: 14px;
      padding: 18px 20px 16px;
      border: 1px solid rgba(31, 138, 107, 0.12);
      min-width: 0;
    }

    .address-card--billing {
      background: linear-gradient(180deg, #eef2ff 0%, #e4e8fc 100%);
      border-color: rgba(59, 102, 245, 0.15);
    }

    .address-card--billing .address-card__alias {
      color: #3b52c4;
    }

    .address-card__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .address-card__alias {
      font-size: 1rem;
      font-weight: 700;
      color: #1f8a6b;
    }

    .address-card__actions {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .address-card__icon-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: none;
      border-radius: 10px;
      background: transparent;
      color: #6b7280;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .address-card__icon-btn:hover {
      background: rgba(255, 255, 255, 0.65);
      color: #374151;
    }

    .address-card__icon-btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 1px;
    }

    .address-card__body {
      margin-bottom: 14px;
    }

    .address-card__line {
      margin: 0 0 4px;
      font-size: 0.9375rem;
      line-height: 1.45;
      color: #374151;
      font-weight: 500;
    }

    .address-card__line:last-child {
      margin-bottom: 0;
    }

    .address-card__foot {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #4b5563;
    }

    .address-card__star {
      color: #c9a227;
      font-size: 0.95rem;
    }

    /* Offcanvas form indirizzo (indirizzi.php, solo data-bs-toggle) */
    .address-form-offcanvas.offcanvas {
      --bs-offcanvas-width: min(440px, 94vw);
      background: #fafbfc;
      color: var(--text);
      border: none;
      border-top-left-radius: 1.25rem;
      border-bottom-left-radius: 1.25rem;
      overflow: hidden;
    }

    .address-form-offcanvas-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      padding: 1.25rem 1.25rem 1rem;
      background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
      border-bottom: 1px solid rgba(45, 55, 72, 0.08);
    }

    .address-form-offcanvas-title {
      margin: 0;
      font-size: 1.2rem;
      font-weight: 800;
      line-height: 1.25;
      color: #14181c;
      letter-spacing: -0.02em;
    }

    .address-form-offcanvas-close {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      padding: 0;
      border: none;
      border-radius: 12px;
      background: #1f2328;
      color: #fff;
      font-size: 1rem;
      line-height: 1;
      cursor: pointer;
      transition: background 0.15s ease;
    }

    .address-form-offcanvas-close:hover {
      background: #111418;
      color: #fff;
    }

    .address-form-offcanvas-close:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .address-form-offcanvas-body {
      padding: 1.25rem 1.25rem 1.5rem;
      background: #fafbfc;
    }

    /* Form indirizzo (add-address.php / edit-address.php / offcanvas) */
    .address-form {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .address-form-top-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 1.1rem;
      flex-wrap: wrap;
    }

    .address-form-link-reg {
      padding: 0;
      border: none;
      background: none;
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--card-blue);
      text-decoration: underline;
      text-underline-offset: 2px;
      cursor: pointer;
    }

    .address-form-link-reg:hover {
      color: #2d4fd4;
    }

    .address-form-link-reg:disabled {
      opacity: 0.45;
      color: #9ca3af;
      text-decoration: none;
      cursor: not-allowed;
    }

    .address-form-link-reg:disabled:hover {
      color: #9ca3af;
    }

    .address-form-required-legend {
      font-size: 0.75rem;
      color: #6b7280;
      font-weight: 500;
      margin-left: auto;
    }

    .address-form-field {
      margin-bottom: 0.9rem;
    }

    .address-form-label {
      display: block;
      margin-bottom: 6px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #374151;
    }

    .address-form-asterisk {
      color: #c2410c;
      font-weight: 700;
    }

    .address-form-control {
      display: block;
      width: 100%;
      padding: 10px 12px;
      font-size: 0.9375rem;
      font-family: inherit;
      line-height: 1.35;
      color: #1f2937;
      background: #fff;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      transition: border-color 0.15s ease;
    }

    .address-form-control:focus {
      outline: none;
      border-color: var(--card-blue);
    }

    .address-form-select {
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
    }

    .address-form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 0.9rem;
    }

    .address-form-row-2 .address-form-field {
      margin-bottom: 0;
    }

    .address-form-row-2--wide {
      grid-template-columns: minmax(0, 1fr) minmax(88px, 130px);
    }

    .address-form-footer {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid #eef0f3;
    }

    .address-form-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 12px 18px;
      font-family: inherit;
      font-size: 0.9375rem;
      font-weight: 700;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .address-form-btn--primary {
      background: #2d3135;
      color: #fff;
    }

    .address-form-btn--primary:hover {
      background: #1a1d20;
    }

    .address-form-btn--ghost {
      background: transparent;
      color: #4b5563;
      border: 1px solid #d1d5db;
    }

    .address-form-btn--ghost:hover {
      background: #f9fafb;
    }

    .address-form-btn:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    @media (max-width: 575px) {
      .address-form-row-2,
      .address-form-row-2--wide {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767px) {
      .addresses-toolbar {
        flex-direction: column;
        align-items: stretch;
      }

      .addresses-add-btn {
        width: 100%;
        margin-left: 0;
      }

      .addresses-tabs {
        width: 100%;
        justify-content: stretch;
      }

      .addresses-tab {
        flex: 1;
        text-align: center;
      }
    }

    /* —— Lista ordini (ordini.php) —— */
    .orders-widget {
      position: relative;
    }

    .orders-filter-input {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .orders-toolbar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px 20px;
      margin-bottom: 18px;
    }

    .orders-toolbar__hint {
      margin: 0;
      font-size: 0.8125rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #6b7280;
    }

    .orders-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      background: #fff;
      overflow: hidden;
    }

    .orders-tab {
      padding: 10px 18px 12px;
      margin: 0;
      margin-bottom: -1px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #6b7280;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      transition: color 0.15s ease, border-color 0.15s ease;
    }

    .orders-tab:hover {
      color: #374151;
    }

    #order-filter-all:checked ~ .orders-toolbar .orders-tab[for="order-filter-all"],
    #order-filter-active:checked ~ .orders-toolbar .orders-tab[for="order-filter-active"],
    #order-filter-completed:checked ~ .orders-toolbar .orders-tab[for="order-filter-completed"],
    #return-filter-all:checked ~ .orders-toolbar .orders-tab[for="return-filter-all"],
    #return-filter-active:checked ~ .orders-toolbar .orders-tab[for="return-filter-active"],
    #return-filter-completed:checked ~ .orders-toolbar .orders-tab[for="return-filter-completed"] {
      color: #1f2937;
      border-bottom-color: #c45c3a;
    }

    .orders-scroll-wrap {
      min-height: 120px;
    }

    .orders-panel {
      display: none;
      grid-template-columns: 1fr;
      gap: 16px;
      align-content: start;
    }

    #order-filter-all:checked ~ .orders-scroll-wrap .orders-panel--all,
    #order-filter-active:checked ~ .orders-scroll-wrap .orders-panel--active,
    #order-filter-completed:checked ~ .orders-scroll-wrap .orders-panel--completed,
    #return-filter-all:checked ~ .orders-scroll-wrap .returns-panel--all,
    #return-filter-active:checked ~ .orders-scroll-wrap .returns-panel--active,
    #return-filter-completed:checked ~ .orders-scroll-wrap .returns-panel--completed {
      display: grid;
    }

    @media (min-width: 768px) {
      #order-filter-all:checked ~ .orders-scroll-wrap .orders-panel--all,
      #order-filter-active:checked ~ .orders-scroll-wrap .orders-panel--active,
      #order-filter-completed:checked ~ .orders-scroll-wrap .orders-panel--completed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      /* Lista resi: il pannello è 1 colonna (wrapper gruppi); le card sono 2 per riga sotto .returns-order-group__cards */
      #return-filter-all:checked ~ .orders-scroll-wrap .returns-panel--all,
      #return-filter-active:checked ~ .orders-scroll-wrap .returns-panel--active,
      #return-filter-completed:checked ~ .orders-scroll-wrap .returns-panel--completed {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .order-card {
      background: linear-gradient(145deg, #fff6f2 0%, #ffe8de 55%, #ffd8c8 100%);
      border-radius: 14px;
      padding: 18px 20px 16px;
      border: 1px solid rgba(196, 92, 58, 0.14);
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .order-card--shipped {
      background: linear-gradient(145deg, #f3f7ff 0%, #e8effc 55%, #dce6fa 100%);
      border-color: rgba(59, 102, 245, 0.15);
    }

    .order-card--delivered {
      background: linear-gradient(180deg, #e4f5ef 0%, #d8f0e8 100%);
      border-color: rgba(31, 138, 107, 0.12);
    }

    .order-card__top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .order-card__id-block {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .order-card__label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #9a6b5c;
    }

    .order-card--shipped .order-card__label {
      color: #5b6b9a;
    }

    .order-card--delivered .order-card__label {
      color: #1f8a6b;
    }

    .order-card__id {
      font-size: 1.0625rem;
      font-weight: 800;
      color: #2d3135;
      letter-spacing: -0.02em;
    }

    .order-status {
      flex-shrink: 0;
      padding: 6px 11px;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .order-status--preparing {
      background: rgba(245, 158, 11, 0.2);
      color: #b45309;
    }

    .order-status--shipped {
      background: rgba(59, 102, 245, 0.15);
      color: #2d4fd4;
    }

    .order-status--delivered {
      background: rgba(31, 138, 107, 0.18);
      color: #0f6b52;
    }

    .order-card__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      margin-bottom: 14px;
      font-size: 0.875rem;
      font-weight: 600;
      color: #4b5563;
    }

    .order-card__meta-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .order-card__meta-item i {
      font-size: 1rem;
      color: #6b7280;
    }

    .order-card__items {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
      padding: 12px 0;
      border-top: 1px solid rgba(45, 55, 72, 0.08);
      border-bottom: 1px solid rgba(45, 55, 72, 0.08);
    }

    .order-card__thumbs {
      display: flex;
      gap: 8px;
    }

    .order-card__thumb {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 240, 0.95) 100%);
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .order-card--shipped .order-card__thumb {
      background:
        linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    }

    .order-card--delivered .order-card__thumb {
      background:
        linear-gradient(135deg, #e8f5f0 0%, #d4ebe3 100%);
    }

    .order-card__items-count {
      margin: 0;
      font-size: 0.875rem;
      font-weight: 600;
      color: #6b7280;
    }

    .order-card__foot {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
    }

    .order-card__total {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .order-card__total-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #6b7280;
    }

    .order-card__total-value {
      font-size: 1.25rem;
      font-weight: 800;
      color: #1f2937;
      letter-spacing: -0.02em;
    }

    .order-card__link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      min-height: 42px;
      border-radius: 10px;
      font-size: 0.875rem;
      font-weight: 700;
      color: #fff;
      background: #1f2328;
      text-decoration: none;
      transition: background 0.15s ease;
    }

    .order-card__link:hover {
      background: #111418;
      color: #fff;
    }

    .order-card__link:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    @media (max-width: 767px) {
      .orders-toolbar {
        flex-direction: column;
        align-items: stretch;
      }

      .orders-tabs {
        width: 100%;
        justify-content: stretch;
      }

      .orders-tab {
        flex: 1;
        text-align: center;
      }

      #order-filter-all:checked ~ .orders-scroll-wrap .orders-panel--all,
      #order-filter-active:checked ~ .orders-scroll-wrap .orders-panel--active,
      #order-filter-completed:checked ~ .orders-scroll-wrap .orders-panel--completed,
      #return-filter-all:checked ~ .orders-scroll-wrap .returns-panel--all,
      #return-filter-active:checked ~ .orders-scroll-wrap .returns-panel--active,
      #return-filter-completed:checked ~ .orders-scroll-wrap .returns-panel--completed {
        grid-template-columns: 1fr;
      }

      .order-card__foot {
        flex-direction: column;
        align-items: stretch;
      }

      .order-card__link {
        width: 100%;
      }
    }

    /* —— Lista desideri (lista-desideri.php) —— */
    .wishlist-widget {
      max-width: 100%;
    }

    .wishlist-toolbar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 14px 20px;
      margin-bottom: 20px;
    }

    .wishlist-toolbar__count {
      margin: 0;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #374151;
    }

    .wishlist-toolbar__count strong {
      font-weight: 800;
      color: #1f2937;
    }

    .wishlist-toolbar__heart {
      font-size: 1.1rem;
      color: #2f6fdb;
    }

    .wishlist-toolbar__bulk {
      font-weight: 700;
      font-size: 0.875rem;
      border-radius: 10px;
      padding: 10px 18px;
    }

    .wishlist-empty {
      text-align: center;
      padding: 48px 24px 56px;
      border-radius: 16px;
      border: 1px dashed #c5d8f0;
      background: linear-gradient(180deg, #f5f9ff 0%, #eef5fc 100%);
    }

    .wishlist-empty__icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #2f6fdb;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(47, 111, 219, 0.2);
    }

    .wishlist-empty__title {
      margin: 0 0 10px;
      font-size: 1.25rem;
      font-weight: 800;
      color: #1f2937;
      letter-spacing: -0.02em;
    }

    .wishlist-empty__text {
      margin: 0 auto 22px;
      max-width: 340px;
      font-size: 0.9375rem;
      line-height: 1.5;
      color: #6b7280;
    }

    .wishlist-empty__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border-radius: 10px;
      font-size: 0.9375rem;
      font-weight: 700;
      color: #fff;
      background: #1f2328;
      text-decoration: none;
      transition: background 0.15s ease;
    }

    .wishlist-empty__cta:hover {
      background: #111418;
      color: #fff;
    }

    .wishlist-empty__cta:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .wishlist-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .wishlist-item {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      gap: 16px 18px;
      padding: 16px 18px;
      border-radius: 14px;
      border: 1px solid rgba(47, 111, 219, 0.18);
      background: linear-gradient(145deg, #fff 0%, #f3f8ff 100%);
      min-width: 0;
    }

    .wishlist-item--unavailable {
      opacity: 0.92;
      background: linear-gradient(145deg, #fafafa 0%, #f3f4f6 100%);
      border-color: #e5e7eb;
    }

    .wishlist-item__media {
      flex-shrink: 0;
      width: 88px;
      height: 88px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 2rem;
      color: #2f6fdb;
      border: 1px solid rgba(47, 111, 219, 0.15);
      transition: border-color 0.15s ease, color 0.15s ease;
    }

    .wishlist-item__media:hover {
      color: #1d4ed8;
      border-color: rgba(29, 78, 216, 0.35);
    }

    .wishlist-item__media--phone {
      background: linear-gradient(145deg, #eef4ff 0%, #dbeafe 100%);
    }

    .wishlist-item__media--tv {
      background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
      color: #15803d;
    }

    .wishlist-item__media--tv:hover {
      color: #166534;
      border-color: rgba(22, 101, 52, 0.3);
    }

    .wishlist-item__media--audio {
      background: linear-gradient(145deg, #faf5ff 0%, #f3e8ff 100%);
      color: #7c3aed;
    }

    .wishlist-item__media--audio:hover {
      color: #6d28d9;
      border-color: rgba(109, 40, 217, 0.3);
    }

    .wishlist-item__media--watch {
      background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
      color: #c2410c;
    }

    .wishlist-item__media--watch:hover {
      color: #9a3412;
      border-color: rgba(154, 52, 18, 0.3);
    }

    .wishlist-item__main {
      flex: 1 1 220px;
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px 20px;
      min-width: 0;
    }

    .wishlist-item__text {
      flex: 1 1 200px;
      min-width: 0;
    }

    .wishlist-item__badge {
      display: inline-block;
      margin-bottom: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 0.6875rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #6b7280;
      background: #e5e7eb;
    }

    .wishlist-item__title {
      margin: 0 0 6px;
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.35;
      letter-spacing: -0.015em;
    }

    .wishlist-item__title a {
      color: #1f2937;
      text-decoration: none;
    }

    .wishlist-item__title a:hover {
      color: #2f6fdb;
      text-decoration: underline;
    }

    .wishlist-item__sku {
      margin: 0 0 8px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #9ca3af;
      font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
    }

    .wishlist-item__added {
      margin: 0;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #6b7280;
    }

    .wishlist-item__added i {
      font-size: 0.9rem;
      opacity: 0.85;
    }

    .wishlist-item__buy {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
      min-width: 160px;
    }

    .wishlist-item__prices {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: flex-end;
      gap: 8px 12px;
    }

    .wishlist-item__price {
      font-size: 1.125rem;
      font-weight: 800;
      color: #1f2937;
      letter-spacing: -0.02em;
    }

    .wishlist-item__price-old {
      font-size: 0.875rem;
      font-weight: 600;
      color: #9ca3af;
      text-decoration: line-through;
    }

    .wishlist-item__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: flex-end;
    }

    .wishlist-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 40px;
      padding: 8px 14px;
      border-radius: 10px;
      font-size: 0.8125rem;
      font-weight: 700;
      font-family: inherit;
      border: none;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
    }

    .wishlist-btn:disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }

    .wishlist-btn--cart {
      color: #fff;
      background: #1f2328;
    }

    .wishlist-btn--cart:hover:not(:disabled) {
      background: #111418;
    }

    .wishlist-btn--ghost {
      color: #4b5563;
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid #e5e7eb;
    }

    .wishlist-btn--ghost:hover {
      background: #fff;
      border-color: #d1d5db;
      color: #b91c1c;
    }

    .wishlist-btn:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .wishlist-btn__label {
      display: inline;
    }

    .wishlist-footnote {
      margin: 22px 0 0;
      font-size: 0.8125rem;
      line-height: 1.45;
      color: #9ca3af;
    }

    @media (max-width: 639px) {
      .wishlist-item__buy {
        align-items: stretch;
        width: 100%;
        min-width: 0;
      }

      .wishlist-item__prices {
        justify-content: flex-start;
      }

      .wishlist-item__actions {
        width: 100%;
        justify-content: stretch;
      }

      .wishlist-btn {
        flex: 1 1 auto;
      }

      .wishlist-toolbar {
        flex-direction: column;
        align-items: stretch;
      }

      .wishlist-toolbar__bulk {
        width: 100%;
      }
    }

    /* —— Club CMS (club.php) —— */
    .club-cms-hero {
      position: relative;
    }

    .club-cms-hero__badge {
      width: 56px;
      height: 56px;
      margin-bottom: 14px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #6b4fc7;
      background: linear-gradient(145deg, #efe8ff 0%, #e0d4fc 100%);
      border: 1px solid rgba(107, 79, 199, 0.2);
    }

    .club-cms-hero__title {
      margin-bottom: 8px;
    }

    .club-cms-hero__lead {
      max-width: 40rem;
    }

    .club-cms-body .layout-container {
      max-width: 880px;
    }

    .club-cms-block {
      margin-bottom: 28px;
      padding: 22px 24px;
      border-radius: 16px;
      border: 1px solid #e5e7eb;
      background: #fff;
    }

    .club-cms-block--highlight {
      border-color: rgba(107, 79, 199, 0.22);
      background: linear-gradient(180deg, #faf8ff 0%, #fff 100%);
    }

    .club-cms-block__title {
      margin: 0 0 12px;
      font-size: 1.25rem;
      font-weight: 800;
      color: #1f2937;
      letter-spacing: -0.02em;
    }

    .club-cms-block__text {
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.55;
      color: #4b5563;
    }

    .club-cms-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-bottom: 28px;
    }

    .club-cms-card {
      padding: 20px 18px;
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      background: #fff;
      min-width: 0;
    }

    .club-cms-card__icon {
      width: 44px;
      height: 44px;
      margin-bottom: 12px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      color: #6b4fc7;
      background: rgba(107, 79, 199, 0.1);
    }

    .club-cms-card__title {
      margin: 0 0 8px;
      font-size: 1rem;
      font-weight: 800;
      color: #1f2937;
      letter-spacing: -0.015em;
    }

    .club-cms-card__text {
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.5;
      color: #6b7280;
    }

    .club-cms-steps {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .club-cms-steps li {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .club-cms-steps__num {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9375rem;
      font-weight: 800;
      color: #fff;
      background: #6b4fc7;
    }

    .club-cms-steps li strong {
      display: block;
      font-size: 0.9375rem;
      font-weight: 800;
      color: #1f2937;
      margin-bottom: 4px;
    }

    .club-cms-steps__detail {
      display: block;
      font-size: 0.875rem;
      font-weight: 500;
      color: #6b7280;
      line-height: 1.45;
    }

    .club-cms-cta {
      margin-top: 8px;
      padding: 28px 24px;
      border-radius: 16px;
      text-align: center;
      border: 1px solid rgba(107, 79, 199, 0.2);
      background: linear-gradient(145deg, #f5f0ff 0%, #ede4ff 100%);
    }

    .club-cms-cta__text {
      margin: 0 0 16px;
      font-size: 1.0625rem;
      font-weight: 800;
      color: #312e81;
    }

    .club-cms-cta__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
    }

    .club-cms-cta__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 22px;
      border-radius: 10px;
      font-size: 0.9375rem;
      font-weight: 700;
      text-decoration: none;
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    }

    .club-cms-cta__btn--primary {
      color: #fff;
      background: #1f2328;
    }

    .club-cms-cta__btn--primary:hover {
      background: #111418;
      color: #fff;
    }

    .club-cms-cta__btn--ghost {
      color: #4338ca;
      background: #fff;
      border: 1px solid rgba(67, 56, 202, 0.35);
    }

    .club-cms-cta__btn--ghost:hover {
      border-color: #4338ca;
      color: #312e81;
    }

    .club-cms-cta__btn:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    @media (max-width: 767px) {
      .club-cms-grid {
        grid-template-columns: 1fr;
      }
    }

    /* —— Carrello (carrello.php) —— */
    .cart-page {
      padding-bottom: 48px;
    }

    .cart-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(230px, 290px);
      gap: 10px;
      align-items: start;
    }

    .cart-layout__main {
      min-width: 0;
    }

    .cart-layout__aside {
      position: sticky;
      top: calc(var(--site-header-sticky-offset, 124px) + 12px);
      width: 100%;
    }

    .cart-summary-head {
      background: #fff;
      border: 1px solid #e8eaef;
      border-radius: 16px;
      padding: 20px 22px 18px;
      margin-bottom: 22px;
      box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    }

    .cart-summary-head__row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
    }

    .cart-summary-head__total {
      margin: 0;
      font-size: 1.125rem;
      font-weight: 600;
      color: #374151;
      line-height: 1.35;
      max-width: 100%;
    }

    .cart-summary-head__total strong {
      font-weight: 800;
      color: #111827;
    }

    .cart-summary-head__actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px 18px;
    }

    .cart-summary-head__link {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--card-blue);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .cart-summary-head__link:hover {
      color: #2d4fd4;
    }

    .cart-summary-head__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 28px;
      font-size: 1rem;
      font-weight: 800;
      border-radius: 10px;
      border: none;
      background: var(--card-blue);
      color: #fff;
      text-decoration: none;
      transition: filter 0.15s ease, background 0.15s ease;
    }

    .cart-summary-head__cta:hover {
      background: #2d4fd4;
      color: #fff;
      filter: brightness(1.02);
    }

    .cart-coupon-trigger {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0;
      padding: 0;
      border: none;
      background: none;
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--card-blue);
      cursor: pointer;
      font-family: inherit;
      text-underline-offset: 2px;
    }

    .cart-coupon-trigger:hover {
      color: #2d4fd4;
    }

    .cart-coupon-offcanvas.offcanvas-bottom {
      left: 10%;
      right: 10%;
      width: auto;
      max-width: 80vw;
      height: auto;
      max-height: min(88vh, 100%);
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      border-top: 1px solid #e8eaef;
      box-shadow: 0 -12px 48px rgba(15, 23, 42, 0.12);
    }

    .cart-coupon-offcanvas-handle {
      width: 40px;
      height: 5px;
      margin: 14px auto 0;
      border-radius: 999px;
      background: #d1d5db;
      flex-shrink: 0;
    }

    .cart-coupon-offcanvas-header {
      padding: 12px 28px 18px;
      border-bottom: none;
    }

    .cart-coupon-offcanvas-title {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      font-size: 1.125rem;
      font-weight: 800;
      color: #111827;
    }

    .cart-coupon-offcanvas-title .bi {
      font-size: 1.25rem;
      color: var(--card-blue);
    }

    .cart-coupon-offcanvas-body {
      padding: 8px 28px calc(28px + env(safe-area-inset-bottom, 0px));
    }

    .cart-coupon-panel__inner {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 14px;
    }

    @media (min-width: 576px) {
      .cart-coupon-panel__inner {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
      }
    }

    .cart-coupon-input {
      flex: 1 1 auto;
      min-width: 0;
      width: 100%;
      min-height: 52px;
      padding-left: 18px;
      padding-right: 18px;
      border-radius: 12px;
      border: 1px solid #d1d5db;
      font-size: 1rem;
    }

    @media (min-width: 576px) {
      .cart-coupon-input {
        flex: 1 1 0;
        width: 0;
      }
    }

    .cart-coupon-apply {
      flex-shrink: 0;
      min-height: 52px;
      border-radius: 12px;
      font-weight: 700;
      padding: 0 24px;
      white-space: nowrap;
      width: 100%;
      background: var(--card-blue);
      color: #fff;
      border: none;
    }

    @media (min-width: 576px) {
      .cart-coupon-apply {
        width: auto;
      }
    }

    .cart-coupon-apply:hover {
      background: #2d4fd4;
      color: #fff;
      filter: brightness(1.02);
    }

    .cart-items {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 0;
    }

    .cart-item-card {
      background: #fff;
      border: 1px solid #e8eaef;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    }

    .cart-item-card__grid {
      display: grid;
      grid-template-columns: minmax(120px, 200px) minmax(0, 1fr);
      gap: 22px 28px;
      padding: 22px 22px 20px;
      align-items: start;
    }

    .cart-item-main {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .cart-item-media {
      text-align: center;
      background-color: #F7F7F7;
      border-radius: 20px;
      padding: 20px;
    }

    .cart-item-media__visual {
      aspect-ratio: 1;
      max-width: 200px;
      margin: 0 auto;
      border-radius: 12px;
      background: #eef1f5;
      border: 1px solid #e5e7eb;
    }

    .cart-item-media__visual--tv {
      background: linear-gradient(145deg, #1e293b 0%, #0f172a 45%, #020617 100%);
      position: relative;
    }

    .cart-item-media__visual--tv::after {
      content: "";
      position: absolute;
      inset: 14%;
      border-radius: 6px;
      background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .cart-item-media__visual--laptop {
      background: linear-gradient(160deg, #2d2a24 0%, #1a1814 50%, #0c0b09 100%);
      position: relative;
    }

    .cart-item-media__visual--laptop::after {
      content: "";
      position: absolute;
      left: 10%;
      right: 10%;
      top: 12%;
      bottom: 28%;
      border-radius: 5px 5px 0 0;
      background: linear-gradient(180deg, #0c4a6e 0%, #082f49 100%);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .cart-item-media__delivery {
      margin: 12px 0 0;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #4b5563;
      display: flex;
      align-items: flex-start;
      gap: 6px;
      line-height: 1.4;
    }

    .cart-item-media__info {
      flex-shrink: 0;
      border: none;
      background: none;
      padding: 0;
      color: #9ca3af;
      cursor: pointer;
      line-height: 1;
    }

    .cart-item-main__top {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px 20px;
      margin-bottom: 18px;
    }

    .cart-item-main__left {
      flex: 1 1 220px;
      min-width: 0;
    }

    .cart-item-availability {
      margin: 0 0 8px;
      font-size: 0.8125rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .cart-item-availability--ok {
      color: #15803d;
    }

    .cart-item-availability--caution {
      color: #b45309;
    }

    .cart-item-availability__info {
      border: none;
      background: none;
      padding: 0;
      color: inherit;
      opacity: 0.75;
      cursor: pointer;
      line-height: 1;
    }

    .cart-item-title {
      margin: 0;
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.35;
      color: #111827;
      letter-spacing: -0.02em;
    }

    .cart-item-price-block {
      flex-shrink: 0;
      text-align: right;
    }

    .cart-price-ora {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: flex-end;
      margin-bottom: 4px;
    }

    .cart-price-ora__badge {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 999px;
      font-size: 0.6875rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #c2410c;
      border: 1px solid #fdba74;
      background: #fff7ed;
    }

    .cart-price-ora__amount {
      font-size: 1.25rem;
      font-weight: 800;
      color: #111827;
    }

    .cart-price-was {
      margin: 0;
      font-size: 0.8125rem;
      color: #6b7280;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 6px;
    }

    .cart-price-was__info {
      border: none;
      background: none;
      padding: 0;
      color: #9ca3af;
      cursor: pointer;
      line-height: 1;
    }

    .cart-item-toolbar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px 18px;
      padding-top: 14px;
      margin-top: 4px;
      border-top: 1px solid #eef0f3;
    }

    .cart-item-toolbar__qty {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .cart-item-toolbar__qty-label {
      font-size: 0.875rem;
      font-weight: 700;
      color: #374151;
    }

    .cart-item-toolbar__icons {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .cart-icon-btn {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      background: #fff;
      color: #4b5563;
      cursor: pointer;
      transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    }

    .cart-icon-btn:hover {
      background: #f9fafb;
      border-color: #d1d5db;
      color: #111827;
    }

    .cart-icon-btn--small {
      width: 32px;
      height: 32px;
      border-radius: 8px;
    }

    .cart-icon-btn--danger:hover {
      color: #b91c1c;
      border-color: #fecaca;
      background: #fef2f2;
    }

    .cart-line-total {
      margin: 0 0 0 auto;
      font-size: 1.375rem;
      font-weight: 800;
      color: #111827;
      letter-spacing: -0.02em;
      white-space: nowrap;
    }

    .cart-item-main .cart-services {
      margin-top: 16px;
      padding: 12px 14px 14px;
      border-radius: 12px;
      border: 1px solid #eef0f3;
      background: #fafbfc;
    }

    .cart-service-row {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 12px 16px;
      align-items: center;
      padding: 5px 0;
      border-bottom: 1px solid #eef0f3;
    }

    .cart-service-row:last-child {
      border-bottom: none;
    }

    .cart-service-badge {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      padding: 2px 7px;
      border-radius: 999px;
      font-size: 0.625rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      line-height: 1.2;
      white-space: nowrap;
    }

    .cart-service-badge i {
      font-size: 0.5625rem;
      line-height: 1;
    }

    .cart-service-badge--included {
      color: #166534;
      background: #dcfce7;
      border: 1px solid #86efac;
    }

    .cart-service-badge--added {
      color: #166534;
      background: #ecfdf5;
      border: 1px solid #a7f3d0;
    }

    .cart-service-add {
      width: 36px;
      height: 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #d1d5db;
      border-radius: 8px;
      background: #f3f4f6;
      color: #4b5563;
      cursor: pointer;
      padding: 0;
      transition: background 0.15s ease, border-color 0.15s ease;
    }

    .cart-service-add:hover {
      background: #e5e7eb;
      border-color: #9ca3af;
      color: #111827;
    }

    .cart-service-row__body {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 14px;
      min-width: 0;
    }

    .cart-service-row__name {
      font-size: 0.695rem;
      font-weight: 600;
      color: #374151;
      line-height: 1.4;
    }

    .cart-service-row__price {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-end;
      gap: 6px 8px;
      font-size: 0.9375rem;
      font-weight: 700;
      color: #111827;
    }

    .cart-service-row__price > span:first-child {
      white-space: nowrap;
    }

    .cart-service-price__info {
      border: none;
      background: none;
      padding: 0;
      color: #9ca3af;
      cursor: pointer;
      line-height: 1;
    }

    .cart-recap {
      background: #F7F7F7;
      border: 1px solid #e8eaef;
      border-radius: 16px;
      padding: 22px 24px 24px;
      max-width: none;
      width: 100%;
      box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    }

    .cart-recap__title {
      margin: 0 0 16px;
      font-size: 1.125rem;
      font-weight: 800;
      color: #111827;
    }

    .cart-recap__rows {
      margin: 0 0 20px;
    }

    .cart-recap__row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      padding: 8px 0;
      font-size: 0.9375rem;
      border-bottom: 1px solid #f3f4f6;
    }

    .cart-recap__row dt {
      margin: 0;
      font-weight: 600;
      color: #6b7280;
    }

    .cart-recap__row dd {
      margin: 0;
      font-weight: 700;
      color: #111827;
    }

    .cart-recap__row--discount dt {
      color: #166534;
    }

    .cart-recap__row--discount dd {
      color: #15803d;
      font-weight: 800;
    }

    .cart-recap__row--coupon dt {
      color: #6b7280;
    }

    .cart-recap__row--coupon dd {
      color: #c2410c;
      font-weight: 800;
    }

    .cart-recap__code {
      display: inline-block;
      margin-left: 4px;
      padding: 2px 8px;
      border-radius: 6px;
      font-size: 0.8125rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      color: #9a3412;
      background: #fff7ed;
      border: 1px solid #fed7aa;
      vertical-align: baseline;
    }

    .cart-recap__row--total {
      border-bottom: none;
      padding-top: 14px;
      margin-top: 4px;
      border-top: 2px solid #e8eaef;
    }

    .cart-recap__row--total dt,
    .cart-recap__row--total dd {
      font-size: 1.125rem;
      font-weight: 800;
      color: #111827;
    }

    .cart-recap__cta {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      font-weight: 800;
      font-size: 1rem;
      border-radius: 10px;
      background: var(--card-blue);
      color: #fff;
      text-decoration: none;
      border: none;
      transition: filter 0.15s ease, background 0.15s ease;
    }

    .cart-recap__cta:hover {
      background: #2d4fd4;
      color: #fff;
    }

    @media (max-width: 991px) {
      .cart-layout {
        grid-template-columns: 1fr;
      }

      .cart-layout__aside {
        position: static;
        top: auto;
        max-width: 480px;
      }
    }

    @media (max-width: 767px) {
      .cart-item-card__grid {
        grid-template-columns: 1fr;
        padding: 18px 16px 16px;
      }

      .cart-item-main .cart-services {
        padding: 10px 12px 12px;
      }

      .cart-item-media__visual {
        max-width: 160px;
      }

      .cart-item-price-block {
        width: 100%;
        text-align: left;
      }

      .cart-price-ora {
        justify-content: flex-start;
      }

      .cart-price-was {
        justify-content: flex-start;
      }

      .cart-line-total {
        margin-left: 0;
        width: 100%;
        text-align: right;
      }

      .cart-item-toolbar {
        justify-content: space-between;
      }

      .cart-service-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .cart-service-row__lead {
        order: 0;
      }

      .cart-service-row__body {
        order: 1;
      }

      .cart-service-row__price {
        order: 2;
        justify-content: flex-start;
      }

      .cart-summary-head__actions {
        width: 100%;
        justify-content: flex-start;
      }

      .cart-summary-head__cta {
        flex: 1 1 auto;
        min-width: min(100%, 200px);
      }
    }

    /* —— Checkout (checkout.php) —— */
    .checkout-flow .top-header {
      display: none;
    }

    body.checkout-flow {
      padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    }

    .checkout-page {
      padding: 20px 0 calc(120px + env(safe-area-inset-bottom, 0px));
      min-height: 60vh;
      background: #f3f4f8;
    }

    .checkout-page__top {
      margin-bottom: 28px;
    }

    .checkout-page__brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 22px;
    }

    .checkout-page__logo {
      font-size: 17px;
      font-weight: 300;
      text-decoration: none;
    }

    .checkout-page__logo:hover {
      color: var(--card-blue);
    }

    .checkout-page__back-cart {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--card-blue);
      text-decoration: none;
    }

    .checkout-page__back-cart:hover {
      color: #2d4fd4;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .checkout-page__head-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
      gap: 24px 32px;
      align-items: start;
    }

    .checkout-page__title {
      font-size: 28px;
      line-height: 1.1;
      font-weight: 700;
      margin: 0 0 18px;
      color: #3d4246;
    }

    .checkout-mini-recap {
      background: #fff;
      border: 1px solid #e8eaef;
      border-radius: 12px;
      padding: 18px 20px;
      box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    }

    .checkout-mini-recap__grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 16px 20px;
      align-items: start;
    }

    .checkout-mini-recap__delivery {
      margin: 0 0 6px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #4b5563;
      line-height: 1.4;
    }

    .checkout-mini-recap__detail-link {
      display: inline-block;
      margin-bottom: 12px;
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--card-blue);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .checkout-mini-recap__detail-link:hover {
      color: #2d4fd4;
    }

    .checkout-mini-recap__thumb-wrap {
      max-width: 88px;
    }

    .checkout-mini-recap__thumb {
      aspect-ratio: 1;
      width: 100%;
      max-width: 88px;
      margin: 0;
      border-radius: 10px;
    }

    .checkout-mini-recap__amounts {
      margin: 0;
      min-width: 180px;
    }

    .checkout-mini-recap__row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin: 0;
      padding: 4px 0;
      font-size: 0.875rem;
      color: #374151;
    }

    .checkout-mini-recap__row dt {
      margin: 0;
      font-weight: 500;
    }

    .checkout-mini-recap__row dd {
      margin: 0;
      font-weight: 600;
      text-align: right;
    }

    .checkout-mini-recap__row--muted {
      color: #6b7280;
    }

    .checkout-mini-recap__row--muted dd {
      color: #059669;
    }

    .checkout-mini-recap__row--total {
      margin-top: 8px;
      padding-top: 10px;
      border-top: 1px solid #e8eaef;
      font-size: 0.9375rem;
    }

    .checkout-mini-recap__row--total dt,
    .checkout-mini-recap__row--total dd {
      font-weight: 800;
      color: #111827;
    }

    .checkout-steps {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .checkout-step {
      background: #fff;
      border: 1px solid #e8eaef;
      border-radius: 12px;
      padding: 22px 22px 24px;
      box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    }

    .checkout-step__head {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px 12px;
      margin-bottom: 20px;
    }

    .checkout-step__num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 0.9375rem;
      font-weight: 800;
      color: #5b21b6;
      background: #ede9fe;
      flex-shrink: 0;
    }

    .checkout-step__title {
      margin: 0;
      font-size: 1.125rem;
      font-weight: 800;
      color: #111827;
    }

    .checkout-step__info {
      border: none;
      background: none;
      padding: 4px;
      color: #9ca3af;
      cursor: pointer;
      line-height: 1;
      border-radius: 6px;
    }

    .checkout-step__info:hover {
      color: var(--card-blue);
    }

    .checkout-option-grid {
      display: grid;
      gap: 14px;
    }

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

    .checkout-option-grid--3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .checkout-option-grid--addresses {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .checkout-option-card {
      position: relative;
      display: block;
      margin: 0;
      min-width: 0;
      cursor: pointer;
      border-radius: 10px;
      border: 1px solid #d1d5db;
      background: #fff;
      transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    }

    .checkout-option-card:hover {
      border-color: #9ca3af;
    }

    .checkout-option-card__check {
      position: absolute;
      top: 10px;
      right: 10px;
      left: auto;
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--card-blue);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
      opacity: 0;
      transform: scale(0.85);
      transition: opacity 0.15s ease, transform 0.15s ease;
      z-index: 2;
      pointer-events: none;
      box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
    }

    .checkout-option-card:has(.checkout-option-card__input:checked) {
      border-color: var(--card-blue);
      border-width: 2px;
      background: #eff6ff;
      box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.12);
    }

    .checkout-option-card:has(.checkout-option-card__input:checked) .checkout-option-card__check {
      opacity: 1;
      transform: scale(1);
    }

    .checkout-option-card__inner {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      grid-template-rows: auto auto;
      gap: 10px 14px;
      align-items: start;
      padding: 18px 42px 18px 18px;
      min-height: 100px;
    }

    .checkout-option-card__icon {
      grid-column: 1;
      grid-row: 1;
      align-self: start;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: #f3f4f6;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      color: #4b5563;
    }

    .checkout-option-card:has(.checkout-option-card__input:checked) .checkout-option-card__icon {
      background: #dbeafe;
      color: var(--card-blue);
    }

    .checkout-option-card__content {
      grid-column: 2;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
    }

    .checkout-option-card__label {
      font-size: 1rem;
      font-weight: 800;
      color: #111827;
    }

    .checkout-option-card__meta {
      font-size: 0.8125rem;
      font-weight: 600;
      color: #6b7280;
    }

    .checkout-option-card__hint {
      font-size: 0.75rem;
      color: #9ca3af;
      line-height: 1.35;
    }

    .checkout-option-card__price {
      grid-column: 1 / -1;
      grid-row: 2;
      justify-self: end;
      font-size: 0.9375rem;
      font-weight: 800;
      color: #111827;
      text-align: right;
      line-height: 1.35;
      max-width: 100%;
      white-space: normal;
      overflow-wrap: break-word;
      word-break: normal;
      hyphens: auto;
    }

    .checkout-option-card__price--surcharge {
      color: #b45309;
    }

    .checkout-address-card-wrap {
      position: relative;
      min-width: 0;
    }

    .checkout-address-card {
      position: relative;
      display: block;
      margin: 0;
      cursor: pointer;
      border-radius: 10px;
      border: 1px solid #d1d5db;
      background: #fff;
      padding: 16px 44px 16px 16px;
      min-height: 120px;
      transition: border-color 0.15s ease, background 0.15s ease, padding 0.15s ease;
    }

    .checkout-address-card:hover {
      border-color: #9ca3af;
    }

    .checkout-address-card:has(.checkout-option-card__input:checked) {
      border-color: var(--card-blue);
      border-width: 2px;
      background: #eff6ff;
    }

    .checkout-address-card:has(.checkout-option-card__input:checked) .checkout-address-card__check {
      opacity: 1;
      transform: scale(1);
    }

    .checkout-address-card .checkout-address-card__check {
      top: 10px;
      right: 10px;
      left: auto;
    }

    .checkout-address-card__body {
      display: flex;
      flex-direction: column;
      gap: 4px;
      align-items: flex-start;
      text-align: left;
    }

    .checkout-address-card__name {
      font-size: 0.9375rem;
      font-weight: 800;
      color: #111827;
    }

    .checkout-address-card__line,
    .checkout-address-card__phone {
      font-size: 0.8125rem;
      color: #4b5563;
      line-height: 1.35;
    }

    .checkout-address-card__actions {
      position: absolute;
      top: 8px;
      right: 42px;
      display: flex;
      gap: 4px;
      z-index: 3;
    }

    .checkout-address-card__icon-btn {
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.95);
      color: #6b7280;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
    }

    .checkout-address-card__icon-btn:hover {
      color: var(--card-blue);
      background: #fff;
    }

    .checkout-address-card__icon-btn--danger:hover {
      color: #dc2626;
    }

    .checkout-address-card--add {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      border: 1px dashed #c4c9d4;
      background: #fafafa;
      cursor: pointer;
      font-family: inherit;
      border-radius: 10px;
      transition: border-color 0.15s ease, background 0.15s ease;
    }

    .checkout-address-card--add:hover {
      border-color: var(--card-blue);
      background: #f8fafc;
    }

    .checkout-address-card__add-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 0.9375rem;
      font-weight: 700;
      color: #6b7280;
    }

    .checkout-address-card--add:hover .checkout-address-card__add-inner {
      color: var(--card-blue);
    }

    .checkout-address-card__add-inner .bi {
      font-size: 1.5rem;
    }

    .checkout-pay-intro {
      margin: 0 0 12px;
      font-size: 0.9375rem;
      font-weight: 700;
      color: #374151;
    }

    .checkout-form {
      margin: 0;
    }

    .checkout-fieldset {
      margin: 0 0 28px;
      padding: 0;
      border: none;
      min-width: 0;
    }

    .checkout-fieldset__legend {
      display: block;
      width: 100%;
      margin: 0 0 8px;
      padding: 0;
      font-size: 1rem;
      font-weight: 800;
      color: #111827;
    }

    .checkout-fieldset__hint {
      margin: 0 0 16px;
      font-size: 0.875rem;
      color: #6b7280;
      line-height: 1.45;
    }

    .checkout-fiscal-panel {
      margin: 0 0 28px;
      padding: 20px;
      border-radius: 10px;
      border: 1px solid #e0e7ff;
      background: #f8faff;
    }

    .checkout-fiscal-panel__title {
      margin: 0 0 8px;
      font-size: 1rem;
      font-weight: 800;
      color: #111827;
    }

    .checkout-fiscal-panel__intro {
      margin: 0 0 18px;
      font-size: 0.875rem;
      color: #4b5563;
      line-height: 1.45;
    }

    .checkout-fiscal-grid {
      margin-bottom: 0;
    }

    .checkout-consents {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 520px;
      margin: 0 auto 28px;
      padding: 22px 24px;
      border-radius: 10px;
      border: 1px solid #e8eaef;
      background: #fafbfc;
    }

    .checkout-checkbox {
      display: grid;
      grid-template-columns: 22px minmax(0, 1fr);
      gap: 12px 14px;
      align-items: flex-start;
      margin: 0;
      cursor: pointer;
      font-size: 0.875rem;
      line-height: 1.45;
      color: #374151;
    }

    .checkout-checkbox--optional {
      color: #6b7280;
    }

    .checkout-checkbox__box {
      width: 22px;
      height: 22px;
      margin-top: 2px;
      flex-shrink: 0;
      border-radius: 6px;
      border: 2px solid #c4c9d4;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.15s ease, background 0.15s ease;
    }

    .checkout-checkbox__box::after {
      content: "";
      width: 6px;
      height: 10px;
      border: solid #fff;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg) translate(-1px, -1px);
      opacity: 0;
    }

    .checkout-checkbox__input:checked + .checkout-checkbox__box {
      border-color: var(--card-blue);
      background: var(--card-blue);
    }

    .checkout-checkbox__input:checked + .checkout-checkbox__box::after {
      opacity: 1;
    }

    .checkout-checkbox__input:focus-visible + .checkout-checkbox__box {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .checkout-checkbox__text {
      min-width: 0;
    }

    .checkout-inline-link {
      font-weight: 700;
      color: var(--card-blue);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .checkout-inline-link:hover {
      color: #2d4fd4;
    }

    .checkout-submit-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      max-width: 440px;
      margin: 0 auto;
    }

    .checkout-submit-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      min-width: min(100%, 280px);
      padding: 0 32px;
      border: none;
      border-radius: 10px;
      font-size: 1.0625rem;
      font-weight: 800;
      font-family: inherit;
      color: #fff;
      background: var(--card-blue);
      cursor: pointer;
      transition: filter 0.15s ease, background 0.15s ease;
    }

    .checkout-submit-btn:hover {
      background: #2d4fd4;
      filter: brightness(1.02);
    }

    .checkout-submit-btn:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 3px;
    }

    .checkout-submit-note {
      margin: 0;
      font-size: 0.8125rem;
      color: #6b7280;
      line-height: 1.4;
      text-align: center;
      max-width: 36em;
    }

    .checkout-sticky-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1080;
      background: #fff;
      border-top: 1px solid #e8eaef;
      border-radius: 16px 16px 0 0;
      box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.08);
    }

    /* Sopra la barra totale (1080): backdrop e pannello offcanvas devono coprire anche il footer fisso checkout */
    body.checkout-flow .offcanvas-backdrop.show {
      z-index: 1085;
    }

    body.checkout-flow .offcanvas.show {
      z-index: 1090;
    }

    .site-toast-container {
      z-index: 1095;
      right: max(12px, env(safe-area-inset-right, 0px));
      bottom: max(16px, env(safe-area-inset-bottom, 0px));
      left: auto;
      max-width: min(420px, calc(100vw - 24px));
    }

    body.checkout-flow .site-toast-container {
      z-index: 1110;
      bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    }

    #siteToast.text-bg-success .btn-close {
      filter: none;
    }

    #siteToast.text-bg-danger .btn-close,
    #siteToast.text-bg-success .btn-close {
      opacity: 0.85;
    }

    #siteToast.text-bg-danger .btn-close {
      filter: invert(1) grayscale(100%);
    }

    .checkout-sticky-bar__inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px 24px;
      padding-top: 20px;
      padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
      padding-left: max(24px, env(safe-area-inset-left, 0px) + 8px);
      padding-right: max(24px, env(safe-area-inset-right, 0px) + 8px);
      min-height: 72px;
    }

    .checkout-sticky-bar__total {
      margin: 0;
      flex: 1 1 220px;
      min-width: 0;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #374151;
      line-height: 1.35;
    }

    .checkout-sticky-bar__total strong {
      font-weight: 800;
      color: #111827;
    }

    .checkout-sticky-bar__mid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px 20px;
      flex: 1 1 200px;
      justify-content: center;
      min-width: 0;
    }

    .checkout-sticky-bar__ship {
      display: flex;
      flex-direction: column;
      gap: 2px;
      font-size: 0.8125rem;
      font-weight: 700;
      color: #111827;
      line-height: 1.25;
    }

    .checkout-sticky-bar__ship-line--muted {
      font-weight: 600;
      color: #6b7280;
      font-size: 0.75rem;
    }

    .checkout-sticky-bar__link {
      font-size: 0.8125rem;
      font-weight: 700;
      color: var(--card-blue);
      text-decoration: underline;
      text-underline-offset: 2px;
      white-space: nowrap;
    }

    .checkout-sticky-bar__link:hover {
      color: #2d4fd4;
    }

    .checkout-sticky-bar__btn {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 32px;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 800;
      font-family: inherit;
      color: #fff;
      background: var(--card-blue);
      cursor: pointer;
      transition: filter 0.15s ease, background 0.15s ease;
    }

    .checkout-sticky-bar__btn:hover {
      background: #2d4fd4;
      filter: brightness(1.02);
    }

    .checkout-sticky-bar__btn:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    @media (max-width: 767px) {
      .checkout-sticky-bar__inner {
        flex-direction: column;
        align-items: stretch;
        padding-top: 18px;
        padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
        padding-left: max(20px, env(safe-area-inset-left, 0px) + 12px);
        padding-right: max(20px, env(safe-area-inset-right, 0px) + 12px);
        gap: 14px;
      }

      .checkout-sticky-bar__total {
        text-align: center;
        flex: none;
      }

      .checkout-sticky-bar__mid {
        flex: none;
        justify-content: space-between;
        width: 100%;
      }

      .checkout-sticky-bar__btn {
        width: 100%;
      }
    }

    @media (max-width: 991px) {
      .checkout-page__head-grid {
        grid-template-columns: 1fr;
      }

      .checkout-option-grid--2 {
        grid-template-columns: 1fr;
      }

      .checkout-option-grid--3 {
        grid-template-columns: 1fr;
      }

      .checkout-option-grid--addresses {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 575px) {
      .checkout-mini-recap__grid {
        grid-template-columns: 1fr;
      }

      .checkout-mini-recap__amounts {
        width: 100%;
      }

      .checkout-option-card__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: left;
      }

      .checkout-option-card__icon {
        grid-column: 1;
        grid-row: 1;
      }

      .checkout-option-card__content {
        grid-column: 1;
        grid-row: 2;
      }

      .checkout-option-card__price {
        grid-column: 1;
        grid-row: 3;
        justify-self: start;
        text-align: left;
      }
    }

    /* —— Dettaglio ordine (ordine.php) —— */
    .order-detail-back-wrap {
      margin: 0 0 20px;
    }

    .order-detail-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9375rem;
      font-weight: 700;
      color: #374151;
      text-decoration: none;
    }

    .order-detail-back:hover {
      color: var(--card-blue);
    }

    .order-detail-back:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 3px;
      border-radius: 4px;
    }

    .order-detail-hero-card {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px 28px;
      margin-top: 8px;
      padding: 22px 24px;
      border-radius: 18px;
      border: 1px solid rgba(0, 0, 0, 0.06);
    }

    .order-detail-hero-card--preparing {
      background: linear-gradient(145deg, #fff6f2 0%, #ffe8de 50%, #ffd8c8 100%);
      border-color: rgba(196, 92, 58, 0.14);
    }

    .order-detail-hero-card--shipped {
      background: linear-gradient(145deg, #f3f7ff 0%, #e8effc 50%, #dce6fa 100%);
      border-color: rgba(59, 102, 245, 0.15);
    }

    .order-detail-hero-card--delivered {
      background: linear-gradient(180deg, #e4f5ef 0%, #d8f0e8 100%);
      border-color: rgba(31, 138, 107, 0.12);
    }

    .order-detail-hero-card--success {
      background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 42%, #a7f3d0 100%);
      border-color: rgba(16, 185, 129, 0.28);
    }

    .order-complete-success-badge {
      display: flex;
      justify-content: center;
      margin: 4px 0 18px;
    }

    .order-complete-success-badge__ring {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(145deg, #10b981, #059669);
      color: #fff;
      font-size: 1.75rem;
      box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    }

    .order-complete-hero-card {
      margin-top: 0;
    }

    .order-complete-hero-card__main {
      max-width: min(640px, 100%);
    }

    .order-complete-meta-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 700;
      color: #047857;
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid rgba(16, 185, 129, 0.32);
    }

    .order-complete-meta-pill i {
      font-size: 1rem;
      opacity: 0.9;
    }

    .order-complete-email-note {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 10px 12px;
      max-width: 720px;
      margin: 0 0 24px;
      padding: 14px 18px;
      border-radius: 14px;
      background: #f0fdf4;
      border: 1px solid rgba(16, 185, 129, 0.25);
      font-size: 0.9375rem;
      line-height: 1.5;
      color: #14532d;
    }

    .order-complete-email-note i {
      font-size: 1.25rem;
      color: #059669;
      margin-top: 2px;
    }

    .order-complete-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
      gap: 28px;
      align-items: start;
    }

    .order-complete-aside {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .order-complete-aside-card,
    .order-complete-next-card {
      padding: 18px 20px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    }

    .order-complete-aside-card__title {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 12px;
      font-size: 1rem;
      font-weight: 800;
      color: #1f2937;
    }

    .order-complete-aside-card__title i {
      color: var(--accent, #3b66f5);
    }

    .order-complete-aside-card__strong {
      margin: 0 0 6px;
      font-weight: 700;
      color: #111827;
    }

    .order-complete-aside-card__line {
      margin: 0;
      font-size: 0.9375rem;
      color: #4b5563;
      line-height: 1.45;
    }

    .order-complete-aside-card__muted {
      margin: 12px 0 0;
      font-size: 0.875rem;
      color: #6b7280;
    }

    .order-complete-aside-card__ship-cost {
      margin: 10px 0 0;
      font-size: 0.875rem;
      color: #374151;
    }

    .order-complete-next-card__title {
      margin: 0 0 10px;
      font-size: 0.9375rem;
      font-weight: 800;
      color: #1f2937;
    }

    .order-complete-next-card__list {
      margin: 0;
      padding-left: 1.15rem;
      font-size: 0.875rem;
      line-height: 1.55;
      color: #4b5563;
    }

    .order-complete-next-card__list li {
      margin-bottom: 6px;
    }

    .order-complete-next-card__list a {
      font-weight: 700;
    }

    .order-complete-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-top: 28px;
      padding-top: 8px;
    }

    .order-complete-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 0.9375rem;
      text-decoration: none !important;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    }

    .order-complete-btn--primary {
      background: var(--accent, #3b66f5);
      color: #fff !important;
      box-shadow: 0 4px 14px rgba(59, 102, 245, 0.35);
    }

    .order-complete-btn--primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(59, 102, 245, 0.4);
      color: #fff !important;
    }

    .order-complete-btn--secondary {
      background: #fff;
      color: #1f2937 !important;
      border: 2px solid rgba(15, 23, 42, 0.12);
    }

    .order-complete-btn--secondary:hover {
      border-color: rgba(59, 102, 245, 0.45);
      color: var(--accent, #3b66f5) !important;
    }

    .order-complete-btn--ghost {
      background: transparent;
      color: #6b7280 !important;
      padding-left: 16px;
      padding-right: 16px;
    }

    .order-complete-btn--ghost:hover {
      color: #111827 !important;
    }

    @media (max-width: 900px) {
      .order-complete-layout {
        grid-template-columns: 1fr;
      }

      .order-complete-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .order-complete-btn {
        width: 100%;
      }
    }

    .order-detail-hero-card__title {
      margin-bottom: 6px;
    }

    .order-detail-hero-card__intro {
      margin-bottom: 14px;
    }

    .order-detail-hero-card__meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px 16px;
    }

    .order-detail-hero-card__pay {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #4b5563;
    }

    .order-detail-hero-card__pay i {
      font-size: 1.1rem;
      color: #6b7280;
    }

    .order-detail-hero-card__split-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.8125rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(196, 92, 58, 0.28);
      color: #9a3412;
    }

    .order-detail-hero-card__split-badge i {
      font-size: 1rem;
      opacity: 0.9;
    }

    .order-detail-hero-card__coupon-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 0.8125rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(67, 56, 202, 0.35);
      color: #4338ca;
    }

    .order-detail-hero-card__coupon-badge i {
      font-size: 1rem;
      opacity: 0.95;
    }

    .order-detail-hero-card__coupon-text {
      font-weight: 800;
      text-transform: uppercase;
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      color: #5b21b6;
    }

    .order-detail-hero-card__coupon-code {
      font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
      font-weight: 800;
      font-size: 0.875rem;
      color: #312e81;
      letter-spacing: 0.04em;
    }

    .order-detail-hero-card__total-block {
      flex-shrink: 0;
      text-align: right;
      padding: 12px 18px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.9);
    }

    .order-detail-hero-card__total-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #6b7280;
      margin-bottom: 4px;
    }

    .order-detail-hero-card__total-value {
      font-size: 1.65rem;
      font-weight: 800;
      color: #1f2937;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }

    .order-detail-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
      gap: 28px;
      align-items: start;
    }

    .order-detail-main {
      min-width: 0;
    }

    .order-detail-aside {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .order-detail-section {
      margin-bottom: 28px;
    }

    .order-detail-section__title {
      margin: 0 0 16px;
      font-size: 1.125rem;
      font-weight: 800;
      color: #111827;
      letter-spacing: -0.02em;
    }

    .order-detail-returns__intro {
      margin: -6px 0 18px;
      max-width: 52rem;
      font-size: 0.9375rem;
      line-height: 1.5;
      color: #6b7280;
      font-weight: 500;
    }

    .order-detail-returns-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .order-detail-return-card {
      padding: 18px 20px 16px;
      border-radius: 14px;
      border: 1px solid rgba(196, 92, 58, 0.16);
      background: linear-gradient(145deg, #fff8f4 0%, #ffefe6 55%, #ffe4d6 100%);
    }

    .order-detail-return-card__top {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .order-detail-return-card__id-block {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .order-detail-return-card__label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #9a6b5c;
    }

    .order-detail-return-card__code {
      font-size: 1.0625rem;
      font-weight: 800;
      color: #2d3135;
      letter-spacing: -0.02em;
    }

    .order-detail-return-card__product {
      margin: 0 0 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(45, 55, 72, 0.08);
    }

    .order-detail-return-card__product-name {
      display: block;
      margin-bottom: 4px;
      font-size: 0.9375rem;
      font-weight: 700;
      color: #1f2937;
      line-height: 1.35;
    }

    .order-detail-return-card__product-meta {
      font-size: 0.8125rem;
      font-weight: 600;
      color: #6b7280;
    }

    .order-detail-return-card__meta {
      margin: 0;
      display: grid;
      gap: 8px 16px;
    }

    .order-detail-return-card__meta-row {
      display: grid;
      grid-template-columns: minmax(88px, 120px) minmax(0, 1fr);
      gap: 10px 16px;
      align-items: baseline;
      font-size: 0.875rem;
    }

    .order-detail-return-card__meta-row dt {
      margin: 0;
      font-weight: 700;
      color: #6b7280;
    }

    .order-detail-return-card__meta-row dd {
      margin: 0;
      font-weight: 600;
      color: #374151;
      line-height: 1.45;
    }

    .order-detail-return-card__amount {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
      margin: 14px 0 0;
      padding-top: 14px;
      border-top: 1px solid rgba(45, 55, 72, 0.08);
    }

    .order-detail-return-card__amount-label {
      font-size: 0.75rem;
      font-weight: 600;
      color: #6b7280;
    }

    .order-detail-return-card__amount-value {
      font-size: 1.125rem;
      font-weight: 800;
      color: #1f2937;
      letter-spacing: -0.02em;
    }

    .order-detail-return-card__amount--done .order-detail-return-card__amount-value {
      color: #0f6b52;
    }

    .order-detail-return-card__actions {
      margin: 14px 0 0;
    }

    .order-detail-return-card__detail-link {
      font-weight: 700;
      font-size: 0.9375rem;
      color: var(--card-blue);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .order-detail-return-card__detail-link:hover {
      color: #2d4fd4;
    }

    .order-detail-return-card__detail-link:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
      border-radius: 4px;
    }

    @media (max-width: 575px) {
      .order-detail-return-card__meta-row {
        grid-template-columns: 1fr;
        gap: 2px;
      }
    }

    .returns-empty {
      margin: 0;
      padding: 20px 16px;
      border-radius: 14px;
      background: #f9fafb;
      border: 1px dashed #e5e7eb;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #6b7280;
      text-align: center;
    }

    .returns-order-groups {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .returns-order-group {
      margin: 0;
      padding: 0;
      border: none;
      background: transparent;
    }

    .returns-order-group__head {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px 14px;
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 1px solid #e5e7eb;
    }

    .returns-order-group__label {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #9ca3af;
    }

    .returns-order-group__order-link {
      font-size: 1rem;
      font-weight: 800;
      color: var(--card-blue);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

    .returns-order-group__order-link:hover {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .returns-order-group__badge {
      font-size: 0.8125rem;
      font-weight: 700;
      color: #374151;
      background: #f3f4f6;
      border-radius: 999px;
      padding: 4px 10px;
    }

    .returns-order-group__cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      align-content: start;
    }

    @media (max-width: 767px) {
      .returns-order-group__cards {
        grid-template-columns: 1fr;
      }
    }

    .reso-detail-hero {
      margin-top: 8px;
    }

    .reso-detail-hero__eyebrow {
      margin: 0 0 6px;
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(17, 24, 39, 0.55);
    }

    .reso-detail-hero__title {
      margin-bottom: 6px;
    }

    .reso-detail-hero__intro {
      margin-bottom: 14px;
    }

    .reso-detail-hero__intro a {
      font-weight: 800;
      color: var(--card-blue);
      text-decoration: none;
    }

    .reso-detail-hero__intro a:hover {
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .reso-detail-product {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 16px 18px;
      border-radius: 14px;
      background: #f9fafb;
      border: 1px solid #e5e7eb;
    }

    .reso-detail-product__thumb {
      flex-shrink: 0;
      width: 72px;
      height: 72px;
      border-radius: 12px;
      background: linear-gradient(145deg, #e5e7eb 0%, #d1d5db 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .reso-detail-product__thumb-inner {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.65);
    }

    .reso-detail-product__name {
      margin: 0 0 6px;
      font-size: 1.0625rem;
      font-weight: 800;
      color: #111827;
      letter-spacing: -0.02em;
      line-height: 1.35;
    }

    .reso-detail-product__sku {
      margin: 0;
      font-size: 0.875rem;
      font-weight: 600;
      color: #6b7280;
    }

    .reso-detail-dl {
      margin: 0;
      padding: 16px 18px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid #e5e7eb;
    }

    .reso-detail-dl__row {
      display: grid;
      grid-template-columns: minmax(0, 140px) minmax(0, 1fr);
      gap: 8px 16px;
      padding: 10px 0;
      border-bottom: 1px solid #f3f4f6;
    }

    .reso-detail-dl__row:first-child {
      padding-top: 0;
    }

    .reso-detail-dl__row:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .reso-detail-dl__row dt {
      margin: 0;
      font-size: 0.8125rem;
      font-weight: 700;
      color: #6b7280;
    }

    .reso-detail-dl__row dd {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 600;
      color: #111827;
    }

    .reso-detail-amount {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 18px 20px;
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      background: linear-gradient(180deg, #fafafa 0%, #f3f4f6 100%);
    }

    .reso-detail-amount--done {
      border-color: rgba(15, 107, 82, 0.2);
      background: linear-gradient(180deg, #ecfdf5 0%, #d1fae5 100%);
    }

    .reso-detail-amount__label {
      font-size: 0.8125rem;
      font-weight: 700;
      color: #6b7280;
    }

    .reso-detail-amount__value {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #111827;
    }

    .reso-detail-amount--done .reso-detail-amount__value {
      color: #0f6b52;
    }

    .reso-detail-amount__hint {
      margin: 0;
      font-size: 0.875rem;
      font-weight: 500;
      color: #6b7280;
      line-height: 1.45;
    }

    .reso-detail-actions {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    @media (max-width: 575px) {
      .reso-detail-dl__row {
        grid-template-columns: 1fr;
        gap: 4px;
      }
    }

    .order-detail-split-note {
      
      margin: 0 0 22px;
      padding: 14px 16px 14px 14px;
      border-radius: 14px;
      background: #e5fdff;
      border: 1px solid rgba(59, 102, 245, 0.22);
      /* border-left: 4px solid var(--card-blue); */
      font-size: 0.9375rem;
      line-height: 1.55;
      color: #374151;
      font-weight: 500;
    }

    .order-detail-split-note i {
      color: var(--card-blue);
      flex-shrink: 0;
      margin-top: 3px;
      font-size: 1.1rem;
    }

    .order-detail-split-note--returns {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background: #fff4e5;
      border-color: rgba(196, 92, 58, 0.28);
    }

    .order-detail-split-note--returns i {
      color: #c45c3a;
    }

    .order-detail-split-note__link {
      font-weight: 700;
      color: var(--card-blue);
      text-decoration: underline;
      text-underline-offset: 3px;
      margin-left: 0.15em;
      white-space: nowrap;
    }

    .order-detail-split-note__link:hover {
      color: #2d4fd4;
    }

    .order-detail-split-note__link:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
      border-radius: 4px;
    }

    #order-detail-returns {
      scroll-margin-top: calc(var(--site-header-sticky-offset, 124px) + 16px);
    }

    .order-detail-shipment-block {
      margin-bottom: 28px;
      padding: 20px 20px 22px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid #e5e7eb;
    }

    .order-detail-shipment-block:last-of-type {
      margin-bottom: 0;
    }

    .order-detail-shipment-block--single {
      padding: 0;
      border: none;
      background: transparent;
    }

    .order-detail-shipment-block__head {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
    }

    .order-detail-shipment-block__title {
      margin: 0;
      font-size: 1.0625rem;
      font-weight: 800;
      color: #111827;
      letter-spacing: -0.02em;
    }

    .order-detail-shipment-block__hint {
      margin: 0 0 16px;
      font-size: 0.875rem;
      font-weight: 600;
      color: #6b7280;
      line-height: 1.45;
    }

    .order-detail-timeline-card {
      margin-bottom: 16px;
      padding: 18px 18px 16px 16px;
      border-radius: 14px;
      background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
      border: 1px solid #e8f0fa;
    }

    .order-detail-shipment-block--single .order-detail-timeline-card {
      margin-top: 0;
    }

    .order-detail-timeline {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .order-detail-timeline__step {
      position: relative;
      padding: 0 0 1.5rem 2.65rem;
      border-left: 4px solid #e2e8f0;
      margin-left: 15px;
    }

    .order-detail-timeline__step--done {
      border-left-color: #059669;
    }

    .order-detail-timeline__step:last-child {
      border-left-color: transparent;
      padding-bottom: 0;
    }

    .order-detail-timeline__dot {
      position: absolute;
      left: -3px;
      top: 0;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: 800;
      background: #fff;
      border: 3px solid #94a3b8;
      color: transparent;
      box-sizing: border-box;
      transform: translateX(-50%);
    }

    .order-detail-timeline__step--done .order-detail-timeline__dot {
      background: linear-gradient(145deg, #10b981 0%, #059669 100%);
      border-color: #047857;
      color: #fff;
    }

    .order-detail-timeline__text {
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
      padding-top: 2px;
    }

    .order-detail-timeline__label {
      font-size: 1rem;
      font-weight: 800;
      color: #1f2937;
      line-height: 1.3;
      letter-spacing: -0.015em;
    }

    .order-detail-timeline__step:not(.order-detail-timeline__step--done) .order-detail-timeline__label {
      color: #64748b;
      font-weight: 700;
    }

    .order-detail-timeline__date {
      font-size: 0.8125rem;
      font-weight: 700;
      color: #047857;
      letter-spacing: 0.01em;
    }

    .order-detail-shipment-items-heading {
      margin: 20px 0 12px;
      font-size: 0.9375rem;
      font-weight: 800;
      color: #1f2937;
      letter-spacing: -0.01em;
    }

    .order-detail-shipment-block--single .order-detail-shipment-items-heading {
      margin-top: 8px;
    }

    .order-detail-tracking-box {
      padding: 16px 18px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid #e5e7eb;
    }

    .order-detail-tracking-box__courier {
      margin: 0 0 8px;
      font-size: 0.9375rem;
      color: #4b5563;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .order-detail-tracking-box__courier i {
      color: var(--card-blue);
      font-size: 1.1rem;
    }

    .order-detail-tracking-box__code {
      margin: 0 0 12px;
      font-size: 0.875rem;
      color: #6b7280;
    }

    .order-detail-tracking-box__code code {
      font-size: 0.9375rem;
      font-weight: 700;
      color: #1f2937;
      background: #f3f4f6;
      padding: 4px 8px;
      border-radius: 6px;
    }

    .order-detail-tracking-box__link {
      font-size: 0.9375rem;
      font-weight: 700;
      color: var(--card-blue);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .order-detail-tracking-box__link:hover {
      color: #2d4fd4;
    }

    .order-detail-tracking-note {
      margin: 0;
      padding: 12px 14px;
      font-size: 0.9375rem;
      line-height: 1.5;
      color: #475569;
      font-weight: 600;
      background: #f1f5f9;
      border: 1px solid #e8f0fa;
      border-radius: 12px;
    }

    .order-detail-items {
      list-style: none;
      margin: 0;
      padding: 0;
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      background: #fff;
      overflow: hidden;
    }

    .order-detail-item {
      display: grid;
      grid-template-columns: 72px minmax(0, 1fr) auto;
      grid-template-rows: auto auto;
      gap: 12px 16px;
      align-items: center;
      padding: 16px 18px;
      border-bottom: 1px solid #eef0f3;
    }

    .order-detail-item__actions {
      grid-column: 1 / -1;
      grid-row: 2;
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 8px;
    }

    .order-detail-return-trigger {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 8px 14px;
      min-height: 38px;
      border-radius: 10px;
      border: 1px solid #d1d5db;
      background: #fff;
      color: #374151;
      font-family: inherit;
      font-size: 0.8125rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    }

    .order-detail-return-trigger:hover {
      background: #f9fafb;
      border-color: #9ca3af;
      color: #1f2937;
    }

    .order-detail-return-trigger:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .order-detail-return-trigger i {
      font-size: 1rem;
      color: #6b7280;
    }

    .order-return-offcanvas-product {
      margin: 6px 0 0;
      font-size: 0.8125rem;
      font-weight: 600;
      line-height: 1.4;
      color: #6b7280;
    }

    .order-return-fieldset {
      margin: 0 0 1.1rem;
      padding: 0;
      border: 0;
      min-width: 0;
    }

    .order-return-fieldset legend {
      float: left;
      width: 100%;
      margin-bottom: 10px;
      padding: 0;
    }

    .order-return-radio-stack {
      clear: both;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .order-return-radio {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin: 0;
      padding: 10px 12px;
      border-radius: 10px;
      border: 1px solid #d1d5db;
      background: #fff;
      cursor: pointer;
      font-size: 0.875rem;
      font-weight: 600;
      color: #374151;
      transition: border-color 0.15s ease, background 0.15s ease;
    }

    .order-return-radio:hover {
      background: #f9fafb;
    }

    .order-return-radio:has(input:checked) {
      border-color: var(--card-blue);
      background: #f3f6ff;
    }

    .order-return-radio input {
      margin-top: 3px;
      flex-shrink: 0;
    }

    .order-return-radio__text {
      line-height: 1.35;
    }

    .order-detail-item:last-child {
      border-bottom: 0;
    }

    .order-detail-item__thumb {
      width: 72px;
      height: 72px;
      border-radius: 12px;
      background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .order-detail-item__body {
      min-width: 0;
    }

    .order-detail-item__name {
      margin: 0 0 4px;
      font-size: 0.9375rem;
      font-weight: 700;
      color: #1f2937;
      line-height: 1.35;
    }

    .order-detail-item__sku {
      margin: 0 0 6px;
      font-size: 0.8125rem;
      color: #6b7280;
      font-weight: 500;
    }

    .order-detail-item__qty {
      margin: 0;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #4b5563;
    }

    .order-detail-item__prices {
      text-align: right;
      flex-shrink: 0;
    }

    .order-detail-item__unit {
      display: block;
      font-size: 0.75rem;
      color: #9ca3af;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .order-detail-item__line {
      font-size: 1rem;
      font-weight: 800;
      color: #1f2937;
    }

    .order-detail-footnote {
      margin: 1.5rem 0 0;
      font-size: 0.875rem;
      line-height: 1.5;
      color: #6b7280;
    }

    .order-detail-footnote a {
      color: var(--card-blue);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .order-detail-footnote a:hover {
      color: #2d4fd4;
    }

    .order-detail-side-card {
      background: #F7F7F7;
      border: 0px solid #e5e7eb;
      border-radius: var(--radius-xl);
      padding: 18px 20px;
    }

    .order-detail-side-card__title {
      margin: 0 0 14px;
      font-size: 0.8125rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #6b7280;
    }

    .order-detail-sum-rows {
      margin: 0;
    }

    .order-detail-sum-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      padding: 2px 0;
      font-size: 0.9375rem;
    }

    .order-detail-sum-row__k {
      font-weight: 600;
      color: #4b5563;
    }

    .order-detail-sum-row__v {
      font-weight: 700;
      color: #1f2937;
    }

    .order-detail-sum-row--discount .order-detail-sum-row__k {
      color: #047857;
    }

    .order-detail-sum-row--discount .order-detail-sum-row__v {
      color: #059669;
    }

    .order-detail-sum-hint {
      font-size: 0.75rem;
      font-weight: 600;
      color: #9ca3af;
      letter-spacing: 0.01em;
    }

    .order-detail-sum-row--emph .order-detail-sum-row__k,
    .order-detail-sum-row--emph .order-detail-sum-row__v {
      font-weight: 800;
      color: #111827;
    }

    .order-detail-sum-row--coupon {
      padding: 10px 12px;
      margin: 4px 0;
      border-radius: 10px;
      background: rgba(59, 102, 245, 0.08);
      border: 1px solid rgba(59, 102, 245, 0.2);
    }

    .order-detail-sum-coupon-code {
      font-family: ui-monospace, "Cascadia Code", "SF Mono", Menlo, monospace;
      font-weight: 800;
      font-size: 0.9em;
      letter-spacing: 0.03em;
      color: #312e81;
    }

    .order-detail-sum-row--coupon .order-detail-sum-row__k {
      color: #3730a3;
      font-weight: 700;
    }

    .order-detail-sum-row--coupon .order-detail-sum-row__v {
      color: #4338ca;
      font-weight: 800;
    }

    .order-detail-sum-row--after-coupon {
      padding-top: 4px;
    }

    .order-detail-sum-row--after-coupon .order-detail-sum-row__k {
      font-weight: 700;
      color: #374151;
    }

    .order-detail-sum-row--after-coupon .order-detail-sum-row__v {
      font-weight: 800;
      color: #1f2937;
    }

    .order-detail-sum-row--total {
      border-top: 1px solid #eef0f3;
      margin-top: 6px;
      padding-top: 14px;
    }

    .order-detail-sum-row--total .order-detail-sum-row__k {
      font-weight: 800;
      color: #1f2937;
    }

    .order-detail-sum-row--total .order-detail-sum-row__v {
      font-size: 1.125rem;
      font-weight: 800;
    }

    .order-detail-address {
      margin: 0;
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 0.9375rem;
      line-height: 1.45;
      color: #374151;
      font-weight: 500;
    }

    .order-detail-address__name {
      font-weight: 800;
      color: #1f2937;
    }

    .order-detail-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .order-detail-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 16px;
      min-height: 44px;
      border-radius: 10px;
      font-size: 0.875rem;
      font-weight: 700;
      text-align: center;
      text-decoration: none;
      transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    }

    .order-detail-action--primary {
      background: #1f2328;
      color: #fff;
      border: none;
    }

    .order-detail-action--primary:hover {
      background: #111418;
      color: #fff;
    }

    .order-detail-action--ghost {
      background: transparent;
      color: #374151;
      border: 1px solid #d1d5db;
    }

    .order-detail-action--ghost:hover {
      background: #f9fafb;
    }

    .order-detail-action:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    button.order-detail-action {
      width: 100%;
      font-family: inherit;
      cursor: pointer;
      gap: 8px;
    }

    .order-messages-offcanvas-kicker {
      margin: 6px 0 0;
      font-size: 0.8125rem;
      font-weight: 600;
      line-height: 1.4;
      color: #6b7280;
    }

    .order-messages-offcanvas-body {
      min-height: min(72vh, 560px);
      gap: 1rem;
    }

    .order-messages-thread-wrap {
      flex: 1 1 auto;
      min-height: 0;
      max-height: min(46vh, 400px);
      overflow-y: auto;
      padding-right: 4px;
      scrollbar-width: thin;
      scrollbar-color: #c4c9d0 transparent;
    }

    .order-messages-thread {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .order-messages-bubble {
      max-width: 92%;
      padding: 12px 14px;
      border-radius: 14px;
    }

    .order-messages-bubble--store {
      align-self: flex-start;
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
    }

    .order-messages-bubble--user {
      align-self: flex-end;
      background: linear-gradient(180deg, #eef4ff 0%, #e8effc 100%);
      border: 1px solid rgba(59, 102, 245, 0.2);
    }

    .order-messages-bubble__meta {
      margin: 0 0 8px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      color: #64748b;
    }

    .order-messages-bubble__text {
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.45;
      font-weight: 500;
      color: #374151;
    }

    .order-messages-empty {
      padding: 28px 18px 24px;
      text-align: center;
      border-radius: 14px;
      border: 1px dashed #cbd5e1;
      background: #fafbfc;
    }

    .order-messages-empty__title {
      margin: 0 0 8px;
      font-size: 1rem;
      font-weight: 800;
      color: #1f2937;
    }

    .order-messages-empty__text {
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.5;
      color: #6b7280;
      font-weight: 500;
    }

    .order-messages-composer {
      flex-shrink: 0;
      margin-top: auto;
      padding-top: 4px;
      border-top: 1px solid #eef0f3;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .order-messages-composer .address-form-label {
      margin-bottom: 2px;
    }

    .order-messages-composer__submit {
      margin-top: 4px;
    }

    @media (max-width: 991px) {
      .order-detail-layout {
        grid-template-columns: 1fr;
      }

      .order-detail-aside {
        order: -1;
      }
    }

    @media (max-width: 575px) {
      .order-detail-hero-card__total-block {
        width: 100%;
        text-align: left;
      }

      .order-detail-item {
        grid-template-columns: 56px minmax(0, 1fr);
        grid-template-rows: auto auto auto;
      }

      .order-detail-item__thumb {
        width: 56px;
        height: 56px;
        grid-column: 1;
        grid-row: 1 / span 2;
      }

      .order-detail-item__body {
        grid-column: 2;
        grid-row: 1;
      }

      .order-detail-item__prices {
        grid-column: 2;
        grid-row: 2;
        text-align: left;
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 8px 14px;
      }

      .order-detail-item__actions {
        grid-column: 1 / -1;
        grid-row: 3;
      }

      .order-detail-item__unit {
        margin-bottom: 0;
      }
    }

    /* —— Pagina prodotto (prodotto.php) —— */
    .pdp-page {
      padding-top: 20px;
      padding-bottom: 56px;
    }

    @media (min-width: 992px) {
      .pdp-main-row {
        align-items: flex-start;
      }

      .pdp-gallery-sticky {
        position: sticky;
        top: var(--site-header-sticky-offset, 124px);
        z-index: 2;
        align-self: flex-start;
      }

      .pdp-buy-sticky {
        position: sticky;
        top: var(--site-header-sticky-offset, 124px);
        z-index: 4;
        background: #fff;
        padding-bottom: 18px;
        margin-bottom: 12px;
        border-bottom: 1px solid #e8eaef;
        border-radius: 20px;
        padding: 20px;
        margin: 0 0 0 -10px;
      }

      .pdp-buy-scroll {
        position: relative;
        z-index: 1;
      }
    }

    .pdp-breadcrumbs {
      margin-bottom: 22px;
    }

    .pdp-gallery__top {
      margin-bottom: 10px;
    }

    .pdp-stock {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.875rem;
      font-weight: 700;
    }

    .pdp-stock--ok {
      color: #15803d;
    }

    .pdp-stock__info {
      border: none;
      background: none;
      padding: 0;
      color: #15803d;
      line-height: 1;
      cursor: pointer;
      opacity: 0.85;
    }

    .pdp-stock__info:hover {
      opacity: 1;
    }

    .pdp-gallery__layout {
      display: flex;
      gap: 16px;
      align-items: stretch;
      min-height: 320px;
    }

    .pdp-gallery__thumbs-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }

    .pdp-gallery__scroll {
      width: 40px;
      height: 32px;
      border: 1px solid #dee2e6;
      border-radius: 8px;
      background: #fff;
      color: #495057;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      cursor: pointer;
      transition: background 0.15s ease, border-color 0.15s ease;
    }

    .pdp-gallery__scroll:hover {
      background: #f8f9fa;
      border-color: #ced4da;
    }

    .pdp-gallery__scroll:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .pdp-gallery__thumbs {
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-height: 280px;
      overflow-y: auto;
      overflow-x: hidden;
      padding: 4px 2px;
      scrollbar-width: thin;
    }

    .pdp-thumb {
      width: 56px;
      height: 56px;
      padding: 4px;
      border: 2px solid transparent;
      border-radius: 10px;
      background: #fff;
      cursor: pointer;
      flex-shrink: 0;
      transition: border-color 0.15s ease;
    }

    .pdp-thumb.is-active {
      border-color: var(--card-blue);
    }

    .pdp-thumb:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .pdp-thumb__visual {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: 6px;
      border: 1px solid #e5e7eb;
    }

    .pdp-thumb__visual--0 {
      background: radial-gradient(circle at 40% 35%, #3d3d42 0%, #1a1a1e 55%, #0c0c0e 100%);
    }

    .pdp-thumb__visual--1 {
      background: radial-gradient(circle at 50% 40%, #4a4a52 0%, #222228 55%, #101014 100%);
    }

    .pdp-thumb__visual--2 {
      background: radial-gradient(circle at 35% 45%, #2e3038 0%, #18181c 55%, #0a0a0c 100%);
    }

    .pdp-thumb__visual--3 {
      background: radial-gradient(circle at 55% 30%, #353540 0%, #1c1c24 55%, #0e0e12 100%);
    }

    .pdp-gallery__stage-wrap {
      position: relative;
      flex: 1 1 auto;
      min-width: 0;
    }

    .pdp-gallery__floating-bar {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 6px 10px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid #dee2e6;
    }

    .pdp-float-rating {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.8125rem;
      font-weight: 800;
      color: #1f2937;
      padding-right: 6px;
      border-right: 1px solid #e5e7eb;
    }

    .pdp-float-rating i {
      color: #ea580c;
      font-size: 0.95rem;
    }

    .pdp-float-btn {
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 999px;
      background: transparent;
      color: #4b5563;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .pdp-float-btn:hover {
      background: #f3f4f6;
      color: #1f2937;
    }

    .pdp-float-btn .bi-heart-fill {
      color: #e11d48;
    }

    .pdp-float-btn:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 1px;
    }

    .pdp-gallery__stage {
      margin: 0;
      height: 100%;
      min-height: 300px;
      border-radius: 16px;
      border: 1px solid #dee2e6;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .pdp-main-visual {
      width: min(280px, 72vw);
      aspect-ratio: 1;
      border-radius: 50%;
      position: relative;
      border: 3px solid #1f2937;
      transition: background 0.25s ease;
    }

    .pdp-main-visual::before {
      content: "";
      position: absolute;
      inset: 14%;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.12);
      background: radial-gradient(circle at 45% 38%, rgba(255, 255, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, #1e3a5f 0%, #0f172a 42%, #020617 100%);
    }

    .pdp-main-visual--0 {
      background: radial-gradient(circle at 50% 50%, #3d3d42 0%, #1a1a1e 60%, #0c0c0e 100%);
    }

    .pdp-main-visual--1 {
      background: radial-gradient(circle at 50% 50%, #4a4a52 0%, #222228 60%, #101014 100%);
    }

    .pdp-main-visual--2 {
      background: radial-gradient(circle at 50% 50%, #2e3038 0%, #18181c 60%, #0a0a0c 100%);
    }

    .pdp-main-visual--3 {
      background: radial-gradient(circle at 50% 50%, #353540 0%, #1c1c24 60%, #0e0e12 100%);
    }

    .pdp-gallery__stage--phone {
      min-height: 380px;
    }

    .pdp-gallery__stage--phone .pdp-main-visual {
      width: min(200px, 48vw);
      aspect-ratio: 9 / 19.5;
      border-radius: 32px;
      border-width: 3px;
    }

    .pdp-gallery__stage--phone .pdp-main-visual::before {
      inset: 8%;
      border-radius: 24px;
    }

    .pdp-buy {
      padding-top: 4px;
    }

    .pdp-title {
      font-size: clamp(1.125rem, 2.5vw, 1.5rem);
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: -0.02em;
      color: #111827;
      margin: 0 0 20px;
    }

    .pdp-variant-summary {
      font-size: 0.9375rem;
      color: #4b5563;
      margin: -12px 0 16px;
      line-height: 1.45;
    }

    .pdp-price-row {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 14px;
    }

    .pdp-price-row__left {
      /*flex: 1 1 200px;*/
      min-width: 0;
    }

    .pdp-badge-ora {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #c2410c;
      border: 1px solid #fdba74;
      background: #fff7ed;
      margin-bottom: 8px;
    }

    .pdp-price-line {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 10px 14px;
      margin-bottom: 6px;
    }

    .pdp-price {
      font-size: 1.75rem;
      font-weight: 800;
      color: #111827;
      letter-spacing: -0.03em;
    }

    .pdp-price-vat {
      font-size: 0.875rem;
      font-weight: 600;
      color: #6b7280;
    }

    .pdp-price-row--combo {
      margin-bottom: 20px;
    }

    .pdp-price--combo {
      color: var(--card-blue);
    }

    .pdp-rrp {
      margin: 0;
      font-size: 0.875rem;
      color: #6b7280;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .pdp-rrp__info {
      border: none;
      background: none;
      padding: 0;
      color: #9ca3af;
      cursor: pointer;
      line-height: 1;
    }

    .pdp-rrp--nuovo .pdp-rrp__strike {
      text-decoration: line-through;
      text-decoration-thickness: 1px;
    }

    .pdp-combinations {
      margin: 0 0 24px;
      padding: 0;
      border: none;
    }

    .pdp-variant-group {
      border: none;
      margin: 0 0 22px;
      padding: 0;
      min-width: 0;
    }

    .pdp-variant-group:last-child {
      margin-bottom: 0;
    }

    .pdp-variant-group__legend {
      font-size: 0.9375rem;
      font-weight: 700;
      color: #111827;
      margin-bottom: 10px;
      padding: 0;
      width: 100%;
    }

    .pdp-variant-group__legend--toolbar {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
    }

    .pdp-variant-group__legend-main {
      min-width: 0;
    }

    .pdp-variant-group__more {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--card-blue);
      text-decoration: underline;
      text-underline-offset: 2px;
      white-space: nowrap;
    }

    .pdp-variant-group__more:hover {
      color: #2d4fd4;
    }

    .pdp-variant-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pdp-var-card {
      position: relative;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-width: 88px;
      min-height: 72px;
      padding: 10px 14px 22px;
      border: 1px solid #d1d5db;
      border-radius: 10px;
      background: #fff;
      cursor: pointer;
      font: inherit;
      text-align: center;
      transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
    }

    .pdp-var-card:hover:not(:disabled):not(.is-disabled) {
      border-color: #9ca3af;
    }

    .pdp-var-card:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .pdp-var-card.is-selected {
      border-color: var(--card-blue);
      background: #eef2ff;
      box-shadow: 0 0 0 1px var(--card-blue);
    }

    .pdp-var-card.is-disabled,
    .pdp-var-card:disabled {
      cursor: not-allowed;
      opacity: 0.88;
      background: #f9fafb;
      border-color: #e5e7eb;
    }

    .pdp-var-card.is-disabled .pdp-var-card__label,
    .pdp-var-card:disabled .pdp-var-card__label {
      text-decoration: line-through;
      color: #9ca3af;
    }

    .pdp-var-card__label {
      font-size: 0.875rem;
      font-weight: 700;
      color: #111827;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .pdp-var-card__star {
      font-size: 0.7rem;
      color: #7c3aed;
    }

    .pdp-var-card__extra {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--card-blue);
      margin-top: 4px;
    }

    .pdp-var-card__extra--minus {
      color: #15803d;
    }

    .pdp-var-card__oos {
      font-size: 0.6875rem;
      font-weight: 700;
      color: #6b7280;
      margin-top: 4px;
    }

    .pdp-var-card__check {
      position: absolute;
      bottom: 6px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.85rem;
      color: var(--card-blue);
      opacity: 0;
    }

    .pdp-var-card.is-selected .pdp-var-card__check {
      opacity: 1;
    }

    .pdp-var-card.is-disabled .pdp-var-card__check,
    .pdp-var-card:disabled .pdp-var-card__check {
      opacity: 0;
    }

    .pdp-variant-detail {
      margin-top: 12px;
      padding: 12px 14px 12px 16px;
      border-left: 4px solid var(--muted);
      background: #f8fafc;
      border-radius: 0 8px 8px 0;
      font-size: 0.715rem;
      line-height: 1.3;
      color: #374151;
    }

    .pdp-variant-detail p {
      margin: 0 0 8px;
    }

    .pdp-variant-detail p:last-child {
      margin-bottom: 0;
    }

    .pdp-variant-detail__list {
      margin: 0.35rem 0 0;
      padding-left: 1.1rem;
    }

    .pdp-variant-detail__list li {
      margin-bottom: 6px;
    }

    .pdp-color-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: flex-start;
      padding-bottom: 22px;
    }

    .pdp-color-swatch {
      position: relative;
      width: 32px;
      height: 32px;
      padding: 0;
      border: 2px solid #e5e7eb;
      border-radius: 50%;
      background: transparent;
      cursor: pointer;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

    .pdp-color-swatch__fill {
      display: block;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--pdp-swatch, #ccc);
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    }

    .pdp-color-swatch:hover {
      border-color: #9ca3af;
    }

    .pdp-color-swatch.is-disabled,
    .pdp-color-swatch:disabled {
      cursor: not-allowed;
      opacity: 0.5;
      filter: grayscale(0.25);
    }

    .pdp-color-swatch.is-disabled .pdp-color-swatch__check,
    .pdp-color-swatch:disabled .pdp-color-swatch__check {
      opacity: 0;
    }

    .pdp-color-swatch:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 3px;
    }

    .pdp-color-swatch.is-selected {
      border-color: var(--card-blue);
      box-shadow: 0 0 0 2px rgba(45, 70, 185, 0.18);
    }

    .pdp-color-swatch__check {
      position: absolute;
      left: 50%;
      bottom: -16px;
      transform: translateX(-50%);
      font-size: 0.75rem;
      color: var(--card-blue);
      opacity: 0;
      line-height: 1;
    }

    .pdp-color-swatch.is-selected .pdp-color-swatch__check {
      opacity: 1;
    }

    .pdp-add-cart {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 22px;
      font-size: 0.9375rem;
      font-weight: 700;
      border-radius: 10px;
      border: none;
      background: var(--card-blue);
      color: #fff;
      transition: filter 0.15s ease, background 0.15s ease;
    }

    .pdp-add-cart:hover {
      background: #2d4fd4;
      color: #fff;
      filter: brightness(1.02);
    }

    .pdp-add-cart:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .pdp-buy .pdp-card-actions.card-actions {
      margin-top: 0;
      padding-top: 0;
      gap: 8px;
      align-items: center;
      flex-shrink: 0;
    }

    .pdp-price-row--combo .pdp-card-actions {
      flex: 0 1 auto;
      min-width: 0;
    }

    .pdp-card-actions .pdp-add-cart {
      flex: 0 0 auto;
    }

    .pdp-paypal {
      font-size: 0.875rem;
      line-height: 1.5;
      color: #374151;
      margin: 0 0 22px;
      padding-bottom: 20px;
      border-bottom: 1px solid #e5e7eb;
    }

    .pdp-paypal a {
      font-weight: 700;
      color: var(--card-blue);
      text-decoration: none;
    }

    .pdp-paypal a:hover {
      text-decoration: underline;
    }

    .pdp-ship-box {
      position: relative;
      border: 1px solid #dee2e6;
      border-radius: 12px;
      background: #fff;
      margin-bottom: 20px;
      padding: 12px 10px 10px;
    }

    .pdp-ship-box__legend {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 4px 14px;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #6b7280;
      background: #fff;
      border: 1px solid #dee2e6;
      border-radius: 999px;
      white-space: nowrap;
    }

    .pdp-ship-box__col {
      padding: 12px 14px;
    }

    .pdp-ship-box__col--border {
      border-left: 1px solid #e5e7eb;
    }

    .pdp-ship-opt {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .pdp-ship-opt > i {
      font-size: 1.35rem;
      color: var(--card-blue);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .pdp-ship-opt strong {
      display: block;
      font-size: 0.9375rem;
      color: #111827;
      margin-bottom: 0px;
    }

    .pdp-ship-opt__free {
      display: inline-block;
      font-size: 0.8125rem;
      font-weight: 800;
      color: #15803d;
      margin-bottom: 0px;
    }

    .pdp-ship-opt__meta {
      margin: 0 0 0px;
      font-size: 0.8125rem;
      color: #6b7280;
      line-height: 1.4;
    }

    .pdp-ship-opt__link {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--card-blue);
      text-decoration: none;
    }

    .pdp-ship-opt__link:hover {
      text-decoration: underline;
    }

    .pdp-accordion-links {
      border-top: 1px solid #e5e7eb;
      margin-bottom: 18px;
    }

    .pdp-accordion-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      padding: 16px 4px;
      font-size: 0.9375rem;
      font-weight: 700;
      font-family: inherit;
      color: #1f2937;
      text-decoration: none;
      border: none;
      border-bottom: 1px solid #e5e7eb;
      background: none;
      text-align: left;
      cursor: pointer;
      transition: color 0.15s ease;
    }

    .pdp-accordion-link:hover {
      color: var(--card-blue);
    }

    .pdp-accordion-link__left {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .pdp-accordion-link__left i:first-child {
      font-size: 1.15rem;
      color: #6b7280;
    }

    .pdp-accordion-link__chev {
      color: #9ca3af;
      transition: transform 0.2s ease;
    }

    .pdp-accordion-link:focus-visible {
      outline: 2px solid var(--card-blue);
      outline-offset: 2px;
    }

    .pdp-remote-offcanvas-body {
      position: relative;
      min-height: 120px;
    }

    .pdp-remote-offcanvas-loading {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.92);
    }

    .pdp-remote-offcanvas-loading[hidden] {
      display: none;
    }

    .pdp-remote-offcanvas-loading-spinner {
      width: 36px;
      height: 36px;
      border: 3px solid #e5e7eb;
      border-top-color: var(--card-blue);
      border-radius: 50%;
      animation: pdp-remote-spin 0.7s linear infinite;
    }

    @keyframes pdp-remote-spin {
      to {
        transform: rotate(360deg);
      }
    }

    .pdp-remote-offcanvas-loading-text {
      font-size: 0.875rem;
      font-weight: 600;
      color: #6b7280;
    }

    .pdp-remote-offcanvas-content {
      font-size: 0.9375rem;
      line-height: 1.55;
      color: #374151;
    }

    .pdp-collapse-panel__inner {
      padding: 0 4px 16px 32px;
      font-size: 0.875rem;
      color: #4b5563;
      line-height: 1.5;
    }

    .pdp-spec-list {
      margin: 0;
      padding-left: 1.1rem;
    }

    .pdp-spec-list li {
      margin-bottom: 6px;
    }

    .pdp-club-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      background: #f3f4f6;
      text-decoration: none;
      color: inherit;
      transition: border-color 0.15s ease, background 0.15s ease;
    }

    .pdp-club-card:hover {
      border-color: #d1d5db;
      background: #eceef2;
      color: inherit;
    }

    .pdp-club-card__title {
      display: block;
      font-size: 1rem;
      font-weight: 800;
      color: #111827;
      margin-bottom: 6px;
    }

    .pdp-club-card__text {
      margin: 0;
      font-size: 0.875rem;
      color: #4b5563;
      line-height: 1.45;
    }

    .pdp-club-card__arrow {
      font-size: 1.25rem;
      color: #9ca3af;
      flex-shrink: 0;
    }

    .pdp-bottom-tabs-wrap {
      margin-top: 2.5rem;
      padding-top: 1.75rem;
      border-top: 1px solid #e5e7eb;
    }

    .pdp-bottom-tabs-nav {
      flex-wrap: wrap;
      gap: 4px;
      border-bottom: 1px solid #e5e7eb;
    }

    .pdp-bottom-tabs-nav .nav-item {
      margin-bottom: -1px;
    }

    .pdp-bottom-tabs-nav .nav-link {
      margin-bottom: 0;
      border: 1px solid transparent;
      border-radius: 10px 10px 0 0;
      color: #6b7280;
      font-weight: 800;
      font-size: 0.9375rem;
      padding: 0.65rem 1.2rem;
      background: transparent;
    }

    .pdp-bottom-tabs-nav .nav-link:hover {
      color: var(--card-blue);
      border-color: #e5e7eb #e5e7eb transparent;
      background: #fafafa;
    }

    .pdp-bottom-tabs-nav .nav-link.active {
      color: var(--card-blue);
      background: #fff;
      border-color: #e5e7eb #e5e7eb #fff;
    }

    .pdp-bottom-tabs-content {
      border: 1px solid #e5e7eb;
      border-top: none;
      border-radius: 0 0 12px 12px;
      background: #fff;
    }

    .pdp-bottom-tab-pane {
      padding: 1.25rem 1.35rem 1.5rem;
    }

    .pdp-desc-prose {
      font-size: 0.9375rem;
      line-height: 1.65;
      color: #374151;
      max-width: 72ch;
    }

    .pdp-desc-prose p {
      margin: 0 0 1rem;
    }

    .pdp-desc-prose p:last-of-type {
      margin-bottom: 0.75rem;
    }

    .pdp-desc-prose__list {
      margin: 0;
      padding-left: 1.2rem;
    }

    .pdp-desc-prose__list li {
      margin-bottom: 0.45rem;
    }

    .pdp-related-card {
      height: 100%;
      display: flex;
      flex-direction: column;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }

    .pdp-related-card:hover {
      border-color: #d1d5db;
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    }

    .pdp-related-card__media {
      display: block;
      text-decoration: none;
      background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
      aspect-ratio: 4 / 3;
    }

    .pdp-related-card__visual {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }

    .pdp-related-card__phone {
      width: 56px;
      height: 112px;
      border-radius: 10px;
      background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
      box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6px;
    }

    .pdp-related-card__screen {
      width: 100%;
      height: 100%;
      border-radius: 6px;
      background: linear-gradient(160deg, #1e293b, #334155);
    }

    .pdp-related-card__body {
      padding: 12px 14px 14px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .pdp-related-card__title {
      font-size: 0.875rem;
      font-weight: 700;
      line-height: 1.35;
      color: #111827;
      text-decoration: none;
    }

    .pdp-related-card__title:hover {
      color: var(--card-blue);
    }

    .pdp-related-card__price {
      font-size: 0.9375rem;
      color: #111827;
      margin-top: auto;
    }

    .pdp-related-card__vat {
      display: block;
      font-size: 0.6875rem;
      font-weight: 600;
      color: #6b7280;
      margin-top: 2px;
    }

    @media (max-width: 991px) {
      /* Evita scroll orizzontale da gutter Bootstrap / flex min-width:auto / trasform sui pulsanti miniature */
      .pdp-page > .layout-container {
        overflow-x: clip;
        max-width: 100%;
      }

      .pdp-main-row {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        --bs-gutter-x: 0;
      }

      .pdp-col-gallery,
      .pdp-col-buy {
        min-width: 0;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
      }

      .pdp-gallery-sticky,
      .pdp-gallery,
      .pdp-gallery__layout,
      .pdp-gallery__stage-wrap {
        min-width: 0;
        max-width: 100%;
      }

      .pdp-buy,
      .pdp-buy-scroll {
        min-width: 0;
        max-width: 100%;
      }

      .pdp-gallery__layout {
        flex-direction: column;
      }

      .pdp-gallery__thumbs-wrap {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        justify-content: center;
        order: 2;
      }

      .pdp-gallery__scroll--up,
      .pdp-gallery__scroll--down {
        transform: rotate(-90deg);
      }

      .pdp-gallery__thumbs {
        flex-direction: row;
        max-height: none;
        flex: 1 1 auto;
        min-width: 0;
        max-width: min(100%, 320px);
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 0;
      }

      .pdp-gallery__stage-wrap {
        order: 1;
        width: 100%;
      }

      .pdp-ship-box__col--border {
        border-left: none;
        border-top: 1px solid #e5e7eb;
      }

      .pdp-buy-sticky {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1020;
        margin: 0;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-top: 1px solid #e8eaef;
        box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.08);
        border-radius: 16px 16px 0 0;
      }

      .pdp-page {
        padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
      }

      .pdp-buy-sticky .pdp-title {
        font-size: 0.9375rem;
        font-weight: 800;
        margin: 0 0 4px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
      }

      .pdp-buy-sticky .pdp-variant-summary {
        font-size: 0.75rem;
        margin: 0 0 8px;
        color: #6b7280;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .pdp-buy-sticky .pdp-price-row--combo {
        flex-direction: row;
        align-items: center;
        margin-bottom: 0;
        gap: 10px;
      }

      .pdp-buy-sticky .pdp-price-row__left {
        flex: 1 1 auto;
        min-width: 0;
      }

      .pdp-buy-sticky .pdp-price-line {
        margin-bottom: 0;
        flex-wrap: nowrap;
        gap: 6px;
      }

      .pdp-buy-sticky .pdp-price {
        font-size: 1.125rem;
      }

      .pdp-buy-sticky .pdp-price-vat {
        font-size: 0.6875rem;
      }

      .pdp-buy-sticky .pdp-rrp {
        font-size: 0.6875rem;
        margin-top: 2px;
      }

      .pdp-buy-sticky .pdp-add-cart {
        position: relative;
        height: 30px;
        padding: 0 12px;
        border-radius: 8px;
        font-size: 0.9375rem;
        gap: 0;
      }

      .pdp-buy-sticky .pdp-add-cart__text {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }
    }

    @media (max-width: 575px) {
      .pdp-price-row {
        flex-direction: column;
        align-items: stretch;
      }

      .pdp-add-cart {
        width: 100%;
        justify-content: center;
      }

      .pdp-buy-sticky .pdp-price-row--combo {
        flex-direction: row;
        align-items: center;
      }

      .pdp-buy-sticky .pdp-add-cart {
        width: auto;
        justify-content: center;
      }

      .pdp-gallery__floating-bar {
        top: 8px;
        right: 8px;
        flex-wrap: wrap;
        max-width: calc(100% - 16px);
      }
    }

    /* —— Home: hero slider e blocchi promozionali —— */
    .home-hero-wrap {
      padding: 16px 0 8px;
      background: var(--bg);
    }

    .home-hero-shell {
      max-width: var(--layout-max);
    }

    .home-hero-carousel {
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
      background: #1e293b;
    }

    .home-hero-slide {
      min-height: clamp(280px, 42vw, 380px);
    }

    .home-hero-slide-inner {
      min-height: clamp(280px, 42vw, 380px);
      display: flex;
      align-items: center;
      padding: clamp(24px, 5vw, 48px) clamp(20px, 4vw, 56px);
      position: relative;
      overflow: hidden;
    }

    .home-hero-slide--orange .home-hero-slide-inner {
      background: linear-gradient(125deg, #c2410c 0%, var(--orange) 42%, #fbbf24 100%);
    }

    .home-hero-slide--violet .home-hero-slide-inner {
      background: linear-gradient(120deg, #4c1d95 0%, #7c3aed 45%, #a78bfa 100%);
    }

    .home-hero-slide--blue .home-hero-slide-inner {
      background: linear-gradient(118deg, #1e3a8a 0%, var(--accent) 50%, #38bdf8 100%);
    }

    /* Slide con immagine di sfondo (vedi $heroSlides['bg_image'] in index.php) */
    .home-hero-slide--has-bg .home-hero-slide-inner {
      background-color: #0f172a;
      background-image: var(--hero-slide-bg);
      background-size: var(--hero-slide-bg-size, cover);
      background-position: var(--hero-slide-bg-pos, center);
      background-repeat: no-repeat;
    }

    .home-hero-slide--has-bg .home-hero-slide-inner::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(
        105deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(15, 23, 42, 0.55) 48%,
        rgba(15, 23, 42, 0.2) 100%
      );
      pointer-events: none;
    }

    .home-hero-slide--has-bg .home-hero-slide-inner::after {
      opacity: 0.2;
    }

    .home-hero-slide-inner::after {
      content: "";
      position: absolute;
      width: clamp(180px, 38vw, 420px);
      height: clamp(180px, 38vw, 420px);
      border-radius: 50%;
      right: -8%;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.12);
      pointer-events: none;
    }

    .home-hero-copy {
      position: relative;
      z-index: 1;
      max-width: min(520px, 100%);
      color: #fff;
    }

    .home-hero-kicker {
      display: inline-block;
      font-size: 0.8125rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      opacity: 0.95;
      margin-bottom: 10px;
    }

    .home-hero-title {
      margin: 0 0 12px;
      font-size: clamp(1.5rem, 3.5vw, 2.15rem);
      font-weight: 800;
      line-height: 1.15;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    }

    .home-hero-text {
      margin: 0 0 22px;
      font-size: 1rem;
      line-height: 1.5;
      opacity: 0.96;
      max-width: 46ch;
    }

    .home-hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 22px;
      border-radius: 999px;
      background: #fff;
      color: #1f2937 !important;
      font-weight: 800;
      font-size: 0.9375rem;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .home-hero-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
      color: #111 !important;
    }

    .home-hero-carousel .carousel-indicators.home-hero-dots {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 14px;
      margin: 0;
      justify-content: center;
      gap: 8px;
      z-index: 3;
    }

    .home-hero-dots [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.45);
      border: none;
      opacity: 1;
    }

    .home-hero-dots [data-bs-target].active {
      background: #fff;
      transform: scale(1.15);
    }

    .home-hero-arrow {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(6px);
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
    }

    .home-hero-arrow:hover {
      background: rgba(255, 255, 255, 0.35);
    }

    .home-hero-carousel .carousel-control-prev {
      left: 12px;
    }

    .home-hero-carousel .carousel-control-next {
      right: 12px;
    }

    .home-hero-carousel .carousel-control-prev-icon,
    .home-hero-carousel .carousel-control-next-icon {
      filter: brightness(0) invert(1);
      width: 1.5rem;
      height: 1.5rem;
    }

    .home-section {
      padding: 20px 0 12px;
      background: var(--bg);
    }

    .hide-scrollbar {
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .hide-scrollbar::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none;
    }

    .home-flash-panel {
      background: var(--home-cream);
      border-radius: var(--radius-xl);
      padding: 20px 20px 16px;
      box-shadow: 0 2px 16px rgba(180, 120, 60, 0.08);
      overflow: hidden;
    }

    .home-flash-head {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
    }

    .home-flash-title {
      margin: 0 0 8px;
      font-size: 1.5rem;
      font-weight: 800;
      color: #3d4246;
    }

    .home-flash-sub {
      margin: 0;
      font-size: 0.875rem;
      color: #5b6166;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
    }

    .home-flash-link {
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 700;
      color: #374151;
    }

    .home-flash-info {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: #6b7280;
    }

    .home-flash-filters {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }

    .home-flash-pill {
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 0.8125rem;
      font-weight: 700;
      cursor: pointer;
      border: 1px solid #d1d5db;
      background: #fff;
      color: #374151;
    }

    .home-flash-pill.is-active {
      background: #3d4246;
      color: #fff;
      border-color: #3d4246;
    }

    .home-flash-body {
      position: relative;
    }

    .home-flash-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 4px;
      margin: 0 -4px;
    }

    .home-flash-item {
      flex: 0 0 min(260px, 82vw);
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .home-flash-item .product-card--flash-row {
      flex: 1;
      width: 100%;
      min-height: 0;
    }

    .product-card--flash-row .price-ora--flash {
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-size: 10px;
      color: var(--orange);
      border-color: var(--orange);
      background: #fff;
    }

    .product-card--flash-row .old-price--flash-row {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 8px;
    }

    .product-card--flash-row .old-price-pct {
      font-size: 0.8125rem;
      font-weight: 800;
      color: var(--orange);
    }

    .home-flash-timer {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8125rem;
      font-weight: 800;
      color: var(--orange);
      margin-bottom: 8px;
    }

    .home-flash-nav {
      display: flex;
      justify-content: flex-end;
      gap: 8px;
      margin-top: 10px;
    }

    .home-brand-header {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-end;
      gap: 16px;
      margin-bottom: 18px;
    }

    .home-brand-kicker {
      margin: 0 0 4px;
      font-size: 0.8125rem;
      font-weight: 800;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .home-brand-heading {
      margin: 0;
      font-size: clamp(1.35rem, 3vw, 1.85rem);
      font-weight: 800;
      color: #3d4246;
    }

    .home-brand-picks-label {
      margin: 0 0 8px;
      font-size: 0.8125rem;
      color: #6b7280;
      font-weight: 600;
    }

    .home-brand-logos {
      display: flex;
      gap: 10px;
    }

    .home-brand-logo-tile {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 2px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: var(--accent);
      background: #fff;
    }

    .home-brand-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.42fr) minmax(0, 0.68fr);
      grid-template-rows: 1fr 1fr;
      gap: 12px;
      min-height: 360px;
    }

    .home-brand-tile {
      border-radius: var(--radius-xl);
      overflow: hidden;
      position: relative;
      text-decoration: none;
      color: inherit;
    }

    .home-brand-tile--hero {
      grid-column: 1;
      grid-row: 1 / -1;
      background: linear-gradient(135deg, #5b21b6 0%, #6366f1 55%, #818cf8 100%);
      display: grid;
      grid-template-columns: 1fr minmax(0, 38%);
      align-items: end;
      min-height: 0;
    }

    .home-brand-tile-copy {
      padding: 28px 24px 28px 28px;
      color: #fff;
      align-self: center;
    }

    .home-brand-tile-brand {
      margin: 0 0 8px;
      font-weight: 800;
      font-size: 1rem;
      opacity: 0.95;
    }

    .home-brand-tile-tag {
      margin: 0 0 10px;
      font-size: clamp(1.1rem, 2.2vw, 1.45rem);
      font-weight: 800;
      line-height: 1.2;
    }

    .home-brand-tile-text {
      margin: 0 0 18px;
      font-size: 0.9rem;
      line-height: 1.45;
      opacity: 0.92;
    }

    .home-brand-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 20px;
      border-radius: 999px;
      background: #fff;
      color: #1f2937 !important;
      font-weight: 800;
      font-size: 0.875rem;
    }

    .home-brand-btn--ghost {
      background: #fff;
      color: #1f2937 !important;
    }

    .home-brand-tile-visual {
      min-height: 100%;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
      mask-image: radial-gradient(ellipse 80% 100% at 100% 50%, #000 55%, transparent 70%);
    }

    .home-brand-tile--stack {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 16px 12px 12px;
      color: #fff;
      font-weight: 800;
      min-height: 0;
    }

    .home-brand-tile--cyan {
      grid-column: 2;
      grid-row: 1;
      background: linear-gradient(160deg, #06b6d4 0%, #22d3ee 100%);
    }

    .home-brand-tile--lime {
      grid-column: 2;
      grid-row: 2;
      background: linear-gradient(160deg, #ca8a04 0%, #eab308 55%, #bef264 100%);
    }

    .home-brand-mini-title {
      font-size: 1rem;
      margin-bottom: 8px;
    }

    .home-brand-mini-visual {
      flex: 1;
      width: 100%;
      min-height: 80px;
      background: radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.35) 0%, transparent 65%);
      border-radius: 12px;
    }

    .home-brand-mini-visual--kbd {
      background: radial-gradient(circle at 50% 70%, rgba(0, 0, 0, 0.15) 0%, transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    }

    .home-brand-tile--side {
      grid-column: 3;
      grid-row: 1 / -1;
      background: linear-gradient(145deg, #dc2626 0%, var(--orange) 55%, #fb923c 100%);
      padding: 28px 24px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .home-brand-side-title {
      margin: 0 0 12px;
      font-size: clamp(1.15rem, 2vw, 1.45rem);
      font-weight: 800;
      line-height: 1.2;
    }

    .home-brand-side-text {
      margin: 0 0 20px;
      font-size: 0.9rem;
      line-height: 1.5;
      opacity: 0.95;
    }

    .home-picks-head {
      margin-bottom: 18px;
    }

    .home-picks-kicker {
      margin: 0 0 6px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8125rem;
      font-weight: 800;
      color: var(--home-purple);
    }

    .home-picks-title {
      margin: 0 0 6px;
      font-size: clamp(1.35rem, 3vw, 1.75rem);
      font-weight: 800;
      color: #3d4246;
    }

    .home-picks-lead {
      margin: 0;
      font-size: 0.9375rem;
      color: #6b7280;
    }

    .home-picks-viewport {
      margin: 0 -24px;
      padding: 0 24px 8px;
      overflow-x: hidden;
      min-width: 0;
    }

    .home-picks-track {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-padding: 24px;
      padding-bottom: 12px;
      min-width: 0;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
      touch-action: pan-x pan-y;
    }

    .home-picks-item {
      flex: 0 0 min(280px, 82vw);
      scroll-snap-align: center;
      min-width: 0;
    }

    .home-picks-item .product-card--picks-row {
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .home-picks-item.is-active .product-card--picks-row {
      border-color: var(--home-purple);
      box-shadow: 0 8px 28px rgba(109, 90, 230, 0.15);
    }

    .home-product-grid-head {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px 20px;
      margin-bottom: 18px;
    }

    .home-product-grid-title {
      margin: 0;
      font-size: clamp(1.2rem, 2.4vw, 1.4rem);
      font-weight: 800;
      color: #3d4246;
    }

    .home-product-grid-link {
      font-size: 0.875rem;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 2px;
      color: var(--accent);
    }

    .home-product-grid-link:hover {
      color: #3d52d6;
    }

    .home-product-grid-block .home-product-grid__cells {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    @media (max-width: 1100px) {
      .home-product-grid-block .home-product-grid__cells {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 480px) {
      .home-product-grid-block .home-product-grid__cells {
        grid-template-columns: 1fr;
      }
    }

    .home-picks-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 8px;
      min-width: 0;
    }

    .home-picks-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: var(--home-purple);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
    }

    .home-picks-nav-btn:hover {
      filter: brightness(1.06);
    }

    .home-picks-dots {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 999px;
      background: var(--home-purple-soft);
      flex: 1 1 0;
      min-width: 0;
      max-width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      overscroll-behavior-x: contain;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      justify-content: center;
    }

    .home-picks-dots::-webkit-scrollbar {
      width: 0;
      height: 0;
      display: none;
    }

    .home-picks-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      padding: 0;
      background: rgba(109, 90, 230, 0.25);
      cursor: pointer;
    }

    .home-picks-dot.is-active {
      background: var(--home-purple);
      transform: scale(1.2);
    }

    .home-picks-pause {
      margin-left: 4px;
    }

    .home-spotlight-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .home-spotlight-title {
      margin: 0;
      font-size: 1.35rem;
      font-weight: 800;
      color: #111827;
    }

    .home-spotlight-arrows {
      display: flex;
      gap: 8px;
    }

    .home-spotlight-grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
      gap: 16px;
      align-items: stretch;
    }

    .home-spot-card {
      border-radius: var(--radius-xl);
      background: #f3f4f6;
      border: 1px solid #e5e7eb;
      overflow: hidden;
    }

    .home-spot-card-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
      gap: 12px;
      align-items: stretch;
      min-height: 260px;
      padding: 24px;
    }

    .home-spot-card-inner--stack {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      min-height: 280px;
    }

    .home-spot-card--narrow .home-spot-card-inner--stack {
      padding-bottom: 16px;
    }

    .home-spot-copy {
      min-width: 0;
    }

    .home-spot-logo {
      margin: 0 0 10px;
      font-size: 0.6875rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      color: #6b7280;
    }

    .home-spot-headline {
      margin: 0 0 12px;
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      font-weight: 800;
      line-height: 1.25;
      color: #111827;
    }

    .home-spot-headline--sm {
      font-size: 1.05rem;
    }

    .home-spot-body {
      margin: 0 0 18px;
      font-size: 0.875rem;
      line-height: 1.5;
      color: #4b5563;
    }

    .home-spot-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 18px;
      border-radius: 10px;
      background: #fff;
      border: 1px solid #d1d5db;
      color: #111827 !important;
      font-weight: 700;
      font-size: 0.875rem;
    }

    .home-spot-cta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
    }

    .home-spot-link {
      font-size: 0.8125rem;
      color: var(--accent);
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .home-spot-visual {
      border-radius: 14px;
      min-height: 160px;
      background: linear-gradient(135deg, #e0e7ff 0%, #fce7f3 40%, #dbeafe 100%);
      position: relative;
      overflow: hidden;
    }

    .home-spot-visual--phones::after {
      content: "";
      position: absolute;
      inset: 20% 10% 8%;
      border-radius: 20px;
      background: linear-gradient(145deg, #6366f1, #a855f7);
      opacity: 0.35;
      transform: rotate(-6deg);
    }

    .home-spot-visual--bundle {
      min-height: 120px;
      background: linear-gradient(160deg, #fef3c7 0%, #fde68a 100%);
    }

    @media (max-width: 991px) {
      .home-brand-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        min-height: 0;
      }

      .home-brand-tile--hero {
        grid-column: 1 / -1;
        grid-row: 1;
        grid-template-columns: 1fr;
      }

      .home-brand-tile-visual {
        min-height: 120px;
        mask-image: none;
        opacity: 0.5;
      }

      .home-brand-tile--cyan {
        grid-column: 1;
        grid-row: 2;
      }

      .home-brand-tile--lime {
        grid-column: 2;
        grid-row: 2;
      }

      .home-brand-tile--side {
        grid-column: 1 / -1;
        grid-row: 3;
        min-height: 200px;
      }

      .home-spotlight-grid {
        grid-template-columns: 1fr;
      }

      .home-spot-card-inner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 575px) {
      .home-hero-arrow {
        display: none;
      }

      .home-flash-head {
        flex-direction: column;
      }

      .home-brand-header {
        flex-direction: column;
        align-items: flex-start;
      }
    }
