  html {
    scroll-behavior: smooth;
    min-height: 100%;
    overflow-x: hidden;
    /* Solo l’elemento documento scrolla in verticale; body ha overflow-y nascosto → niente seconda barra. */
    overflow-y: auto;
    scrollbar-gutter: auto;
  }

  html:has(body.page-no-header) {
    overscroll-behavior-y: contain;
  }

  :root {
    --bg: #FAFAF5;
    --bg-white: #FFFFFF;
    --gold: #D4AF37;
    --gold-grad: linear-gradient(120deg, #d4af37, #f1d97c);
    --heart-red: #ff5b89;
    --text: #1f1b14;
    --muted: #5c5546;
    --shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  @property --rotate {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }
  * { box-sizing: border-box; }
  [hidden] { display: none !important; }
  body {
    margin: 0;
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    background:
      radial-gradient(circle at 20% 20%, rgba(212,175,55,0.08), transparent 28%),
      radial-gradient(circle at 80% 0%, rgba(241,217,124,0.06), transparent 25%),
      var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    max-width: 100%;
    padding-top: 70px;
  }

  body.page-no-header {
    padding-top: 0;
    padding-bottom: 0;
    overflow-x: hidden;
    /* Mai overflow-y: visible con overflow-x: hidden → la spec lo tratta come auto e crea doppio scroll con html. */
    overflow-y: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  ::selection { background: rgba(212,175,55,0.18); color: var(--text); }

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

  /* Layout helpers */
  .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-inline: clamp(12px, 4vw, 24px);
    box-sizing: border-box;
  }
  main {
    overflow-x: hidden;
    /* Se si imposta solo overflow-x, la spec imposta overflow-y a auto → doppia barra con html */
    overflow-y: visible;
  }
  main:has(#works) {
    overflow-x: visible;
    overflow-y: visible;
  }
  .section.shop > .container,
  #brands > .container {
    width: min(1600px, 100%);
    padding-inline: 12px;
  }
.section {
    padding: 90px 0;
    position: relative;
    isolation: isolate;
    overflow-x: hidden;
    overflow-y: visible;
  }
  /* Shop: riduci altezza per minimizzare lo scroll verticale */
  .section.shop {
    padding: 12px 0 12px;
  }
  /* Works: carte che si espandono/hover fuori dalla griglia senza essere tagliate */
  #works {
    overflow-x: visible;
  }
  .section::before,
  .section::after {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 60%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.75;
  }
  .section::before { top: -40px; left: -120px; }
  .section::after { bottom: -50px; right: -120px; }
  .section > .container { position: relative; z-index: 1; }

  /* Header */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(0,0,0,0.05);
    z-index: 30;
    pointer-events: none;
  }
  .scroll-progress span {
    display: block;
    height: 100%;
    background: var(--gold-grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.12s ease-out;
  }
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.82);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
    transition: all 0.25s ease;
    --header-bar-height: 70px;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 70px;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.4px;
    transition: height 0.25s ease, gap 0.25s ease;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }
  .nav.is-search-open .nav-right {
    flex: 1;
    justify-content: center;
    gap: 0;
  }
  .nav.is-search-open .nav-search {
    justify-content: center;
  }
  .nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.2s ease;
    position: relative;
  }
  .nav-actions:hover,
  .nav-actions:focus-within { gap: 10px; }
  .nav.is-search-open .nav-actions {
    width: 100%;
    justify-content: center;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    color: var(--text);
    text-decoration: none;
  }
  .logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.12));
  }
  .logo-text {
    display: grid;
    gap: 4px;
    align-items: center;
  }
  .logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }
  .logo-tagline {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 22px);
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
    align-self: stretch;
  }
  .nav-panel--root { display: contents; }
  .nav-panel--sub { display: none; }
  .nav-panel__header,
  .nav-panel__body { display: none; }
  .nav-search {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    min-width: 54px;
    align-self: stretch;
    position: relative;
  }
  .nav-search-form {
    display: flex;
    justify-content: flex-end;
    width: auto;
  }
  .nav.is-search-open .nav-search-form {
    width: 100%;
    justify-content: center;
  }
  .nav-search-field {
    height: 54px;
    width: 54px;
    overflow: hidden;
    background: rgba(255,255,255,0);
    border-radius: 999px;
    position: relative;
    transition: all 0.25s ease;
  }
  .nav-search-field:hover,
  .nav-search-field:focus-within {
    box-shadow: none;
  }
  .search-wrapper.active .nav-search-field,
  .nav.is-search-open .nav-search-field {
    width: min(560px, 100%);
    border-radius: 50px;
    background: rgba(31,27,20,0.45);
    box-shadow: 0 12px 24px rgba(0,0,0,0.16);
    transition: all 0.35s ease;
  }
  .nav-search-input {
    width: 100%;
    height: 40px;
    padding: 0 56px 0 16px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #fdf6e3;
    transform: translate(0, 50px);
    transition: all 0.25s ease;
    transition-delay: 0.12s;
  }
  .nav-search-input::placeholder {
    color: rgba(253,246,227,0.7);
  }
  .nav-search-input:focus { outline: none; }
  .search-wrapper.active .nav-search-input,
  .nav.is-search-open .nav-search-input {
    opacity: 1;
    transform: translate(0, 6px);
  }
  .nav-search-btn {
    width: 54px;
    height: 54px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    padding: 0;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: none;
    transition: all 0.2s ease;
  }
  .nav-search-btn:hover {
    border-color: transparent;
    background: transparent;
    transform: scale(1.12);
  }
  .search-wrapper.active .nav-search-btn,
  .nav.is-search-open .nav-search-btn {
    width: 40px;
    height: 40px;
    margin: 7px;
    border-radius: 999px;
    border-color: transparent;
    background: transparent;
    color: #fdf6e3;
  }
  .nav-search-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.9;
    transition: opacity 0.2s ease;
  }
  .search-wrapper.active .nav-search-btn svg,
  .nav.is-search-open .nav-search-btn svg {
    opacity: 1;
  }
  .nav-search-btn:focus-visible {
    outline: 2px solid rgba(212,175,55,0.55);
    outline-offset: 3px;
  }
  .nav-search-btn:active {
    transform: scale(0.98);
  }
  .search-wrapper .close {
    position: absolute;
    z-index: 1;
    top: 18px;
    right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: rotate(-180deg);
    transition: all 0.3s cubic-bezier(0.285, -0.450, 0.935, 0.110);
    transition-delay: 0.2s;
  }
  .search-wrapper.active .close,
  .nav.is-search-open .search-wrapper .close {
    right: -36px;
    opacity: 1;
    pointer-events: auto;
    transform: rotate(45deg);
    transition: all 0.6s cubic-bezier(0.000, 0.105, 0.035, 1.570);
    transition-delay: 0.5s;
  }
  .search-wrapper .close::before,
  .search-wrapper .close::after {
    position: absolute;
    content: '';
    background: var(--gold);
    border-radius: 2px;
  }
  .search-wrapper .close::before {
    width: 3px;
    height: 20px;
    left: 8px;
    top: 0;
  }
  .search-wrapper .close::after {
    width: 20px;
    height: 3px;
    left: 0;
    top: 8px;
  }
  .nav.is-search-open .nav-links { display: none; }
  .nav.is-search-open .nav-actions .nav-icon { display: none; }
  .nav.is-search-open .nav-search { display: inline-flex; }
  .nav-search-panel {
    position: fixed;
    left: clamp(12px, 4vw, 24px);
    right: clamp(12px, 4vw, 24px);
    top: var(--header-bar-height, 70px);
    width: auto;
    max-width: 1080px;
    margin-inline: auto;
    transform: translateY(8px);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    padding: 24px 0 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 25;
  }
  .nav.is-search-open .nav-search-panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0);
    display: none;
  }
  .nav-search-panel__inner {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }
  .nav-search-panel__main {
    display: grid;
    gap: 16px;
    justify-items: stretch;
  }
  .nav-search-results {
    max-height: 280px;
    overflow: auto;
  }
  .nav-search-panel .utility-filters,
  .nav-search-panel .utility-results {
    width: min(1040px, 100%);
    border-radius: 18px;
    border: 1px solid rgba(212,175,55,0.18);
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(250,247,240,0.92));
    box-shadow: 0 18px 36px rgba(0,0,0,0.08);
  }
  .nav-search-panel .utility-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 18px;
    align-items: start;
    padding: 16px;
  }
  .nav-search-panel .utility-filter-group {
    align-items: flex-start;
    text-align: left;
  }
  .nav-search-panel .utility-filter-title {
    color: #544427;
    font-weight: 700;
    letter-spacing: 2px;
  }
  .nav-search-panel .utility-chips {
    justify-content: flex-start;
  }
  .nav-search-panel .utility-chip {
    border-radius: 8px;
    border-color: rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.75);
    box-shadow: none;
  }
  .nav-search-panel .utility-filter-actions {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .nav-search-panel .utility-chip:hover {
    border-color: rgba(212,175,55,0.55);
    color: var(--text);
  }
  .nav-search-panel .utility-chip.is-active {
    border-color: rgba(212,175,55,0.75);
    box-shadow: 0 12px 24px rgba(212,175,55,0.18);
  }
  .nav-search-panel .utility-results {
    padding: 14px;
  }
  .nav-search-panel .utility-result {
    border-radius: 16px;
    border-color: rgba(212,175,55,0.2);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .nav-search-panel .utility-result:hover {
    transform: translateY(-2px);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 20px 36px rgba(0,0,0,0.12);
  }
  .nav-search-panel .utility-thumb {
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(255,255,255,0.9));
  }
  .nav-search-panel .utility-meta {
    color: rgba(47,36,18,0.7);
  }
  .nav-item {
    display: inline-flex;
    align-items: center;
    height: 100%;
  }
  .nav-link {
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: clamp(11px, 1.1vw, 13px);
    color: var(--muted);
  }
  .nav-link:hover { color: var(--text); }
  .mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-bar-height, 70px);
    width: auto;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    padding: 26px 0 32px;
    opacity: 0;
    visibility: hidden;
    transform: none;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 20;
  }
  .nav-item:hover .mega-menu,
  .nav-item:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 240px));
    gap: 18px 18px;
    width: min(1180px, 100%);
    max-width: 1180px;
    margin: 0 auto;
    padding-inline: clamp(16px, 4vw, 28px);
    box-sizing: border-box;
    justify-content: center;
  }
  .mega-col h4 {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
  }
  .mega-col a {
    display: block;
    padding: 4px 0;
    font-size: 15px;
    color: var(--muted);
  }
  .mega-col a:hover { color: var(--text); }
  .mega-media {
    display: grid;
    gap: 14px;
  }
  .mega-card {
    display: grid;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 12px;
    color: var(--text);
  }
  .mega-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
  }
  .mega-card span { display: inline-block; }
  .cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
  }
  .cart-count {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: var(--gold-grad);
    color: #2f2412;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  }
  .nav-checkbox {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    pointer-events: none;
  }
  .nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    transition-duration: 0.3s;
  }
  .nav-toggle .bars {
    width: 100%;
    height: 4px;
    background-color: var(--text);
    border-radius: 5px;
    transition-duration: 0.3s;
  }
  .nav.is-open .nav-toggle { transform: scale(1.02); }
  .nav-checkbox:checked ~ .nav-right .nav-toggle .bars { margin-left: 13px; }
  .nav-checkbox:checked ~ .nav-right .nav-toggle #bar2 {
    transform: rotate(135deg);
    margin-left: 0;
    transform-origin: center;
  }
  .nav-checkbox:checked ~ .nav-right .nav-toggle #bar1 {
    transform: rotate(45deg);
    transform-origin: left center;
  }
  .nav-checkbox:checked ~ .nav-right .nav-toggle #bar3 {
    transform: rotate(-45deg);
    transform-origin: left center;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold-grad);
    transition: width 0.25s ease;
  }
  .nav-link:hover::after { width: 100%; }
  .nav-subtoggle {
    display: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font: inherit;
  }
  .nav-icon {
    min-width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid transparent;
    color: var(--text);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }
  .nav-actions .nav-icon[aria-label="Cerca"] {
    background: transparent;
    color: var(--text);
    border-color: transparent;
    box-shadow: none;
  }
  .nav-actions .nav-icon[aria-label="Cerca"]:hover {
    background: transparent;
    border-color: transparent;
  }
  .nav-actions .nav-icon[aria-label="Cerca"].is-active {
    background: transparent;
    border-color: transparent;
    color: var(--text);
    box-shadow: none;
  }
  .nav-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .nav-icon:hover {
    border-color: transparent;
    background: transparent;
    transform: none;
  }
  .nav-actions .nav-icon:hover,
  .nav-actions .nav-icon:focus-visible { transform: scale(1.12); }
  .nav-icon.is-active {
    border-color: rgba(212,175,55,0.6);
    background: rgba(212,175,55,0.16);
    color: #6b5a33;
  }
  .nav-actions .nav-icon[aria-label="Wishlist"].is-active {
    border-color: transparent;
    background: transparent;
    color: var(--text);
  }
  .nav-icon:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 2px;
  }
  .nav-icon::after { display: none; }
  .nav-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: var(--gold-grad);
    color: #2f2412;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  }
  .nav-badge[hidden] { display: none; }

  .account-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 150px;
    padding: 10px;
    display: grid;
    gap: 6px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.14);
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 60;
  }
  .account-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .account-menu[hidden] { display: none; }
  .account-menu__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 0;
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .account-menu__icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .account-menu__icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .account-menu__item:hover,
  .account-menu__item:focus-visible {
    background: rgba(212,175,55,0.16);
    color: #6b5a33;
  }
  .account-menu__item--logout {
    color: #8f4a2c;
  }


  /* Utility drawer */
  .utility-drawer {
    position: fixed;
    inset: 0;
    display: grid;
    justify-items: end;
    align-items: stretch;
    background: rgba(24,18,10,0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: clip;
    transition:
      opacity 0.25s ease,
      visibility 0s linear 0.25s;
    z-index: 80;
  }
  .utility-drawer.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.25s ease,
      visibility 0s linear 0s;
  }
  .utility-backdrop {
    position: absolute;
    inset: 0;
  }
  .utility-sheet {
    position: relative;
    width: min(420px, 92vw);
    height: 100%;
    background: #fff;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(14px);
    transition: transform 0.25s ease;
    z-index: 1;
  }
  .utility-drawer.is-open .utility-sheet { transform: translateX(0); }

  /* Store online in arrivo — modale iscrizione */
  .store-coming-soon {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: grid;
    place-items: center;
    padding: 20px;
    box-sizing: border-box;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    isolation: isolate;
  }
  .store-coming-soon.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .store-coming-soon__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 12, 8, 0.62);
    backdrop-filter: blur(6px);
  }
  .store-coming-soon__dialog {
    position: relative;
    z-index: 1;
    width: min(384px, calc(100vw - 32px));
    max-width: 100%;
    max-height: min(90vh, 680px);
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(10px) scale(0.98);
    transition: transform 0.28s ease;
  }
  .store-coming-soon.is-open .store-coming-soon__dialog {
    transform: translateY(0) scale(1);
  }
  .store-coming-soon__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    width: 34px;
    height: 34px;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.94);
    color: #2a2620;
    cursor: pointer;
    border-radius: 8px;
    display: grid;
    place-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, transform 0.15s ease;
  }
  .store-coming-soon__close svg {
    display: block;
  }
  .store-coming-soon__close:hover {
    background: #f5f3ef;
  }
  .store-coming-soon__close:active {
    transform: scale(0.96);
  }

  .store-nl-card {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 54px 28px 28px;
    overflow: hidden;
    background:
      radial-gradient(ellipse 115% 85% at 50% -5%, #ffffff 0%, #f9f8f5 42%, #f3f1ec 100%);
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow:
      0 10px 40px rgba(0, 0, 0, 0.1),
      0 2px 8px rgba(0, 0, 0, 0.04);
    font-family: 'Inter', 'Inter UI', ui-sans-serif, system-ui, sans-serif;
    text-align: left;
  }
  .store-nl-main {
    transition:
      opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
      max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.55s;
    max-height: 3200px;
    overflow: hidden;
  }
  .store-nl-main[hidden] {
    display: none !important;
  }
  .store-nl-card.is-done .store-nl-main:not([hidden]) {
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
    max-height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .store-nl-masthead {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2px;
    position: relative;
    z-index: 2;
  }
  .store-nl-logo {
    height: 34px;
    width: auto;
    max-width: 104px;
    object-fit: contain;
    display: block;
    margin: 0;
    pointer-events: none;
    user-select: none;
    opacity: 0.92;
  }
  .store-nl-copy {
    position: relative;
    z-index: 2;
    text-align: left;
    margin-bottom: 4px;
  }
  .store-nl-title {
    margin: 14px 0 0;
    padding-right: 32px;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0.01em;
    color: #141210;
  }
  .store-nl-text {
    margin: 14px 0 0;
    color: #4a453c;
    font-size: 0.875rem;
    line-height: 1.62;
    max-width: 100%;
  }
  /* Solo spazio per il check animato durante invio — nessun tracciato decorativo visibile a riposo */
  .store-nl-illu {
    position: relative;
    z-index: 1;
    height: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
    transition: height 0.2s ease, margin 0.2s ease;
  }
  .store-nl-card.is-saving .store-nl-illu,
  .store-nl-card.is-done .store-nl-illu {
    height: 56px;
    margin: 10px 0 14px;
  }
  .store-nl-line2 {
    position: absolute;
    left: calc(50% - 25px);
    top: calc(50% - 26px);
    width: 50px;
    height: 52px;
    opacity: 0;
    pointer-events: none;
    transform-origin: 50% 50%;
    stroke-dasharray: 6 48;
    stroke-dashoffset: -42;
  }
  .store-nl-line2 path {
    fill: none;
    stroke: #111;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .store-nl-card.is-saving .store-nl-line2 {
    opacity: 1;
    animation: 4s 500ms storeNlLineRotate forwards;
  }
  .store-nl-card.is-done .store-nl-line2 {
    animation: 500ms storeNlLineScaleDown forwards;
  }
  .store-nl-form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 26px 0 0;
    text-align: left;
    transform-origin: 0 50%;
    transition: transform 500ms, opacity 500ms;
  }
  .store-nl-field-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .store-nl-field-row .store-nl-input {
    width: 100%;
  }
  .store-nl-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 16px 33px;
    border: 1px solid rgba(154, 123, 40, 0.55);
    border-radius: 9px;
    background: linear-gradient(180deg, #e8d5a3 0%, #d4af37 48%, #b8962e 100%);
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      0 2px 10px rgba(180, 150, 60, 0.22);
    transition: box-shadow 0.4s ease, transform 0.4s ease, filter 0.25s ease;
  }
  .store-nl-submit:hover {
    filter: brightness(1.03);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.52),
      0 8px 32px rgba(212, 175, 55, 0.38);
  }
  .store-nl-submit:active {
    transform: scale(0.97);
    filter: brightness(0.98);
    box-shadow:
      inset 0 1px 3px rgba(0, 0, 0, 0.12),
      0 4px 22px rgba(212, 175, 55, 0.3);
  }
  .store-nl-submit:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
  .store-nl-submit__label {
    position: relative;
    top: 0.5px;
  }
  .store-nl-submit__arrow {
    flex-shrink: 0;
    opacity: 0.92;
  }
  .store-nl-card.is-saving .store-nl-form {
    opacity: 0.88;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .store-nl-card.is-done {
    padding: 44px 28px 36px;
    text-align: center;
    transition: box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow:
      0 14px 48px rgba(0, 0, 0, 0.12),
      0 2px 12px rgba(212, 175, 55, 0.12),
      0 0 0 1px rgba(212, 175, 55, 0.18);
    transform: scale(1.01);
  }
  .store-nl-card.is-done .store-nl-masthead {
    margin-bottom: 10px;
  }
  .store-nl-success {
    position: relative;
    z-index: 2;
    padding: 6px 8px 10px;
    margin: 0 auto;
    max-width: 28rem;
    text-align: center;
  }
  .store-nl-success[hidden] {
    display: none !important;
  }
  .store-nl-card.is-done .store-nl-success:not([hidden]) {
    animation: storeNlThanksIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .store-nl-success__mark {
    display: flex;
    justify-content: center;
    margin: 0 auto 16px;
    color: #9a7b28;
    animation: storeNlMarkPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }
  .store-nl-success.is-duplicate .store-nl-success__mark {
    color: #6b5d48;
    animation: storeNlMarkPop 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
  }
  .store-nl-success__mark svg {
    display: block;
  }
  .store-nl-success__check {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
  }
  .store-nl-card.is-done .store-nl-success:not([hidden]) .store-nl-success__check {
    animation: storeNlCheckDraw 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
  }
  .store-nl-success__title {
    margin: 0 0 12px;
    padding: 0 8px;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #141210;
  }
  .store-nl-success__text {
    margin: 0;
    padding: 0 6px;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #4a453c;
  }
  .store-nl-consent {
    width: 100%;
    margin: 22px 0 0;
    padding-top: 2px;
    font-size: 11px;
    line-height: 1.5;
    color: #4d483f;
    text-align: left;
  }
  .store-nl-consent *,
  .store-nl-consent *::before,
  .store-nl-consent *::after {
    box-sizing: border-box;
  }
  .store-nl-consent .checkbox-wrapper {
    position: relative;
    display: block;
    overflow: visible;
  }
  .store-nl-consent .checkbox-wrapper .label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    cursor: pointer;
    user-select: none;
    color: #1a1a1a;
  }
  .store-nl-consent .checkbox-wrapper .check {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    /* Deve restare focusabile: required + reportValidity() altrimenti “is not focusable” */
  }
  .store-nl-consent .checkbox-wrapper__graphic {
    flex-shrink: 0;
    line-height: 0;
    color: #1a1a1a;
  }
  .store-nl-consent .checkbox-wrapper__graphic svg {
    display: block;
    vertical-align: middle;
  }
  .store-nl-consent .checkbox-wrapper .path1 {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 0.5s ease, opacity 0.35s ease;
    opacity: 0;
  }
  .store-nl-consent .checkbox-wrapper .check:checked + .checkbox-wrapper__graphic .path1 {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  .store-nl-consent .checkbox-wrapper .check:focus-visible + .checkbox-wrapper__graphic svg rect {
    stroke: #d5f365;
    stroke-width: 2.5;
  }
  .store-nl-consent__text {
    flex: 1;
    min-width: 0;
    user-select: text;
    color: #4d483f;
    cursor: pointer;
  }
  .store-nl-consent__text a {
    color: #8a6d2a;
    text-decoration: underline;
  }
  .store-nl-input {
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(184, 150, 46, 0.42);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    font-family: inherit;
    font-size: 15px;
    color: #141210;
    outline: none !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.045);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }
  .store-nl-input::placeholder {
    color: #bcb4a8;
  }
  .store-nl-input:hover {
    border-color: rgba(184, 150, 46, 0.55);
    background: #fff;
  }
  .store-nl-input:focus {
    border-color: #9a7b28;
    background: #fff;
    box-shadow:
      inset 0 1px 3px rgba(0, 0, 0, 0.04),
      0 0 0 3px rgba(212, 175, 55, 0.2);
  }
  .store-coming-soon__status.store-nl-status {
    position: relative;
    z-index: 2;
    margin: 12px 0 0;
    min-height: 1.2em;
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
  }
  .store-coming-soon__status.is-active {
    display: block;
  }
  .store-coming-soon__status.is-success {
    color: #2e7d32;
    font-weight: 600;
  }
  .store-coming-soon__status.is-error {
    color: #c62828;
  }

  @keyframes storeNlLineRotate {
    0% { transform: rotate(0); opacity: 1; }
    25% { transform: rotate(360deg); opacity: 1; }
    50% { transform: rotate(720deg); opacity: 1; }
    75% { transform: rotate(1080deg); opacity: 1; stroke-dasharray: 6 48; stroke-dashoffset: -42; }
    100% { transform: rotate(1080deg); opacity: 1; stroke-dashoffset: 0; stroke-dasharray: 36 48; }
  }
  @keyframes storeNlLineScaleDown {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
  }
  @keyframes storeNlThanksIn {
    0% {
      opacity: 0;
      transform: translateY(20px) scale(0.94);
      filter: blur(2px);
    }
    65% {
      opacity: 1;
      transform: translateY(-2px) scale(1.02);
      filter: blur(0);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
      filter: blur(0);
    }
  }
  @keyframes storeNlCheckDraw {
    to {
      stroke-dashoffset: 0;
    }
  }
  @keyframes storeNlMarkPop {
    0% {
      opacity: 0;
      transform: scale(0.35) translateY(8px);
    }
    55% {
      opacity: 1;
      transform: scale(1.08) translateY(0);
    }
    100% {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .store-nl-line2,
    .store-nl-form,
    .store-nl-main {
      transition: none !important;
      animation: none !important;
    }
    .store-nl-card.is-done .store-nl-success:not([hidden]) {
      animation: none !important;
      filter: none !important;
    }
    .store-nl-card.is-done .store-nl-success:not([hidden]) .store-nl-success__check {
      stroke-dashoffset: 0 !important;
      animation: none !important;
    }
    .store-nl-card.is-saving .store-nl-form {
      opacity: 1;
    }
    .store-nl-card.is-done .store-nl-main:not([hidden]) {
      transform: none;
      opacity: 0;
      transition: opacity 0.2s ease !important;
    }
    .store-nl-success__mark {
      animation: none !important;
    }
    .store-nl-card.is-done {
      transform: none;
      box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04);
    }
  }

  /* Account modal */
  .account-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(31,27,20,0.4);
    --auth-neu-1: var(--bg);
    --auth-neu-2: rgba(31,27,20,0.12);
    --auth-white: var(--bg-white);
    --auth-gray: var(--muted);
    --auth-black: var(--text);
    --auth-purple: var(--gold-grad);
    --auth-transition: 1.25s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: clip;
    transition:
      opacity 0.25s ease,
      visibility 0s linear 0.25s;
    z-index: 90;
  }
  .account-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.25s ease,
      visibility 0s linear 0s;
  }
  .account-dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    max-height: min(720px, 92vh);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: grid;
    place-items: center;
    padding: 12px;
    transform: translateY(14px) scale(0.98);
    transition: transform 0.25s ease;
    overflow: visible;
  }
  .account-modal.is-open .account-dialog { transform: translateY(0) scale(1); }
  .account-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
  }
  .account-auth {
    width: 100%;
    display: grid;
    place-items: center;
  }
  .account-dashboard--panel {
    width: min(920px, 92vw);
    max-height: min(720px, 92vh);
    overflow-y: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
  .utility-header {
    position: relative;
    padding: 20px 20px 12px;
    display: grid;
    gap: 6px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .utility-eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 11px;
    color: var(--muted);
  }
  .utility-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
  }
  .utility-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .utility-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
  }
  .utility-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
  }

  /* Account auth layout */
  .account-modal .main {
    position: relative;
    width: min(1000px, 92vw);
    --auth-form-width: min(600px, 92vw);
    --auth-switch-width: min(400px, 88vw);
    min-height: 560px;
    height: min(600px, 82vh);
    padding: 25px;
    background: var(--auth-neu-1);
    box-shadow: none;
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    color: var(--auth-gray);
    transform-origin: center;
  }
  .account-modal .account-alert--floating {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, 86%);
    z-index: 3;
  }
  .account-modal .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: var(--auth-form-width);
    height: 100%;
    padding: 25px;
    background: var(--auth-neu-1);
    transition: var(--auth-transition);
  }
  .account-modal .form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  .account-modal [hidden] {
    display: none;
  }
  .account-modal .form__icons {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
  }
  .account-modal .form__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--auth-black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow:
      2px 2px 4px var(--auth-neu-2),
      -2px -2px 4px var(--auth-white);
    opacity: 0.6;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .account-modal .form__icon:hover {
    opacity: 1;
    transform: translateY(-1px);
  }
  .account-modal .form__input {
    width: min(350px, 80vw);
    height: 40px;
    margin: 4px 0;
    padding-left: 18px;
    font-size: 13px;
    letter-spacing: 0.15px;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    background: var(--auth-neu-1);
    transition: 0.25s ease;
    border-radius: 8px;
    box-shadow:
      inset 2px 2px 4px var(--auth-neu-2),
      inset -2px -2px 4px var(--auth-white);
  }
  .account-modal .form__input:focus {
    box-shadow:
      inset 4px 4px 6px var(--auth-neu-2),
      inset -4px -4px 6px var(--auth-white);
  }
  .account-modal .form__span {
    margin-top: 22px;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.2px;
  }
  .account-modal .form__radio-group {
    width: min(350px, 80vw);
    display: grid;
    gap: 6px;
    margin-top: 6px;
    margin-bottom: 6px;
    text-align: left;
  }
  .account-modal .form__radio-group .form__radio {
    margin-right: 14px;
  }
  .account-modal .form__radio-group {
    grid-auto-flow: row;
  }
  .account-modal .form__radio-group .form__radio-title {
    grid-column: 1 / -1;
  }
  .account-modal .form__radio-group .form__radio {
    display: inline-flex;
  }
  .account-modal .form__radio-group {
    grid-template-columns: repeat(2, max-content);
    align-items: center;
    justify-content: flex-start;
  }
  .account-modal .form__radio-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--auth-black);
    letter-spacing: 0.2px;
  }
  .account-modal .form__radio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--auth-black);
    cursor: pointer;
  }
  .account-modal .form__radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .account-modal .form__radio-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d7d7d7;
    display: grid;
    place-items: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .account-modal .form__radio-dot::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--auth-black);
    transform: scale(0);
    transition: transform 0.2s ease;
  }
  .account-modal .form__radio input:checked + .form__radio-dot {
    border-color: var(--auth-black);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
  }
  .account-modal .form__radio input:checked + .form__radio-dot::after {
    transform: scale(1);
  }
  .account-modal .form__legal {
    width: min(350px, 80vw);
    margin-top: 8px;
    display: grid;
    gap: 10px;
    text-align: left;
  }
  .account-modal .form__privacy-title {
    margin: 0;
    font-size: 9px;
    font-weight: 600;
    color: var(--auth-black);
  }
  .account-modal .form__privacy-text {
    margin: 0;
    font-size: 9px;
    line-height: 1.3;
    color: var(--auth-gray);
  }
  .account-modal .form__legal .checkbox-wrapper .label {
    font-size: 8px;
    line-height: 1.2;
    gap: 8px;
  }
  .account-modal .form__legal .checkbox-wrapper .label svg {
    width: 28px;
    height: 28px;
  }
  .account-modal .form__legal .checkbox-wrapper .label svg rect {
    stroke-width: 2px;
  }
  .account-modal .form__legal .checkbox-wrapper .label svg .path1 {
    stroke-width: 2px;
  }
  .account-modal .form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--auth-black);
  }
  .account-modal .form__checkbox-input {
    margin-top: 2px;
    accent-color: var(--gold);
  }
  .account-modal .form__checkbox a {
    color: inherit;
    text-decoration: underline;
  }
  .account-modal .form__link {
    border: none;
    background: transparent;
    color: var(--auth-black);
    font-size: 13px;
    margin-top: 18px;
    border-bottom: 1px solid var(--auth-gray);
    line-height: 1.8;
    cursor: pointer;
    padding: 0;
    text-align: center;
  }
  .account-modal .form__link:hover {
    opacity: 0.8;
  }
  .account-modal .account-link {
    color: var(--auth-black);
    text-align: center;
  }
  .account-modal .form_title {
    margin: 0;
  }
  .account-modal .form__icon--facebook { color: var(--gold); }
  .account-modal .form__icon--linkedin { color: var(--gold); }
  .account-modal .form__icon--twitter { color: var(--gold); }

  /* Account page */
  .account-page > .container {
    display: grid;
    gap: 24px;
    justify-items: center;
  }
  .account-page .account-guest {
    width: min(520px, 92vw);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    box-shadow: var(--shadow);
    text-align: center;
    display: grid;
    gap: 14px;
  }
  .account-page .account-guest[hidden] { display: none; }
  .account-page .account-dashboard--panel {
    width: min(960px, 92vw);
    max-height: none;
  }
  .account-modal .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--auth-black);
  }
  .account-modal .description {
    font-size: 14px;
    letter-spacing: 0.25px;
    text-align: center;
    line-height: 1.6;
  }
  .account-modal .button {
    width: 180px;
    height: 50px;
    border-radius: 25px;
    margin-top: 22px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.15px;
    background: var(--auth-purple);
    color: #2f2412;
    box-shadow:
      8px 8px 16px var(--auth-neu-2),
      -8px -8px 16px var(--auth-white);
    border: none;
    outline: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .account-modal .button:hover {
    box-shadow:
      6px 6px 12px var(--auth-neu-2),
      -6px -6px 12px var(--auth-white);
    transform: translateY(-1px);
  }
  .account-modal .form--reset .button {
    margin-top: 16px;
  }
  .account-modal .a-container {
    z-index: 100;
    left: calc(100% - var(--auth-form-width));
  }
  .account-modal .b-container {
    left: calc(100% - var(--auth-form-width));
    z-index: 0;
  }
  .account-modal .switch {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--auth-switch-width);
    padding: 50px;
    z-index: 200;
    transition: var(--auth-transition);
    background: var(--auth-neu-1);
    overflow: hidden;
    box-shadow:
      4px 4px 10px var(--auth-neu-2),
      -4px -4px 10px var(--auth-white);
    --switch-circle-left: -60%;
    --switch-circle-top-left: 60%;
  }
  .account-modal .switch__circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--auth-neu-1);
    box-shadow:
      inset 8px 8px 12px var(--auth-neu-2),
      inset -8px -8px 12px var(--auth-white);
    bottom: -60%;
    left: var(--switch-circle-left);
    transition: var(--auth-transition);
  }
  .account-modal .switch__circle--t {
    top: -30%;
    left: var(--switch-circle-top-left);
    width: 300px;
    height: 300px;
  }
  .account-modal .switch__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    width: var(--auth-switch-width);
    padding: 50px 55px;
    transition: var(--auth-transition);
  }
  .account-modal .switch__button {
    margin-top: 30px;
  }
  .account-modal .switch.is-txr {
    left: calc(100% - var(--auth-switch-width));
    transition: var(--auth-transition);
    transform-origin: left;
    --switch-circle-left: 60%;
    --switch-circle-top-left: -60%;
  }
  .account-modal .is-txl {
    left: 0;
    transition: var(--auth-transition);
    transform-origin: right;
  }
  .account-modal .is-z200 {
    z-index: 200;
    transition: var(--auth-transition);
  }
  .account-modal .is-hidden {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: var(--auth-transition);
  }
  .account-modal .is-gx {
    animation: is-gx var(--auth-transition);
  }
  @keyframes is-gx {
    0%, 10%, 100% { width: var(--auth-switch-width); }
    30%, 50% { width: calc(var(--auth-switch-width) + 100px); }
  }
  @media (max-width: 720px) {
    .account-modal {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding:
        calc(16px + env(safe-area-inset-top))
        calc(12px + env(safe-area-inset-right))
        calc(24px + env(safe-area-inset-bottom))
        calc(12px + env(safe-area-inset-left));
      height: 100vh;
      height: 100dvh;
      overflow: hidden;
      overscroll-behavior: contain;
    }
    .account-dialog {
      width: 100%;
      max-width: 100%;
      max-height: calc(100vh - 40px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
      max-height: calc(100dvh - 40px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
      padding: 0;
      overflow: hidden;
    }
    .account-modal .main {
      width: 100%;
      min-height: 0;
      height: auto;
      padding: 18px 14px 16px;
      max-width: 100%;
      max-height: calc(100vh - 40px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
      max-height: calc(100dvh - 40px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      box-shadow: none;
      border: 1px solid rgba(0,0,0,0.08);
    }
    .account-modal .container,
    .account-modal .switch {
      position: static;
      width: 100%;
      height: auto;
      padding: 0;
      box-shadow: none;
    }
    .account-modal .container { background: transparent; }
    .account-modal .switch {
      margin-top: 12px;
      padding-top: 16px;
      border-top: 1px solid rgba(0,0,0,0.08);
    }
    .account-modal .switch__circle { display: none; }
    .account-modal .switch__container {
      position: static;
      width: 100%;
      padding: 0;
    }
    .account-modal .switch__container.is-hidden { display: none; }
    .account-modal .form {
      height: auto;
      padding: 10px 4px;
    }
    .account-modal .form__input {
      width: 100%;
      max-width: 100%;
    }
    .account-modal .button {
      width: min(240px, 100%);
      height: 46px;
    }
    .account-modal .form__span {
      margin-top: 14px;
      margin-bottom: 8px;
    }
    .account-modal .account-alert--floating {
      width: min(92%, 420px);
    }
    .account-modal .is-gx {
      animation: none;
    }
  }
  @media (max-width: 900px) {
    .account-section[data-account-section="profile"] .utility-form {
      grid-template-columns: 1fr;
    }
    .account-section[data-account-section="profile"] .utility-form > * {
      grid-column: 1 / -1;
    }
    .account-profile-hint,
    .account-security__content .account-profile-hint {
      padding-left: 0;
      margin-top: 0;
    }
  }
  .utility-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 20px 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .utility-tab {
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.02);
    color: var(--muted);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .utility-tab.is-active {
    border-color: rgba(212,175,55,0.6);
    background: var(--gold-grad);
    color: #2f2412;
  }
  .utility-drawer:not(.is-open) .utility-body {
    overflow-y: hidden;
  }
  .utility-body {
    flex: 1;
    padding: 16px 20px 24px;
    overflow-y: auto;
    display: grid;
    gap: 16px;
  }
  .utility-panel { display: none; }
  .utility-panel.is-active { display: grid; gap: 16px; }
  .utility-panel[data-panel="wishlist"] {
    gap: 8px;
    align-content: start;
  }
  .utility-search {
    display: grid;
    gap: 10px;
  }
  .utility-filters {
    display: grid;
    gap: 14px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #faf7f0;
  }
  .utility-filter-group {
    display: grid;
    gap: 8px;
  }
  .utility-filter-title {
    margin: 0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--muted);
  }
  .utility-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .utility-chip {
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: var(--muted);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .utility-chip:hover { border-color: rgba(212,175,55,0.4); }
  .utility-chip.is-active {
    border-color: rgba(212,175,55,0.6);
    background: var(--gold-grad);
    color: #2f2412;
  }
  .utility-filter-actions {
    display: flex;
    justify-content: flex-start;
  }
  .utility-form {
    display: grid;
    gap: 12px;
  }
  .utility-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--muted);
  }
  .utility-field {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }
  .utility-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: var(--text);
  }
  .utility-input:focus {
    outline: 2px solid rgba(212,175,55,0.4);
    border-color: rgba(212,175,55,0.5);
  }
  .utility-btn {
    border: none;
    background: #2f2412;
    color: #fff;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .utility-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.18);
  }
  .utility-btn--ghost {
    background: transparent;
    color: #2f2412;
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow: none;
  }
  .utility-btn--ghost:hover {
    box-shadow: 0 10px 18px rgba(0,0,0,0.1);
  }
  .utility-btn--small {
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 1px;
  }
  .account-section[data-account-section="addresses"] .utility-field .bottone1 {
    margin-left: auto;
  }
  .account-section[data-account-section="preferences"] .bottone1 {
    justify-self: end;
  }
  .account-action-btn {
    position: relative;
    margin: 0;
    padding: 0.45em 0.8em;
    outline: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    background-color: #333;
    border-radius: 8px;
    color: #fff;
    font-weight: 300;
    font-size: 12px;
    font-family: inherit;
    letter-spacing: 0.6px;
    z-index: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
  }
  .account-action-btn:hover {
    animation: sh0 0.5s ease-in-out both;
    box-shadow: none;
    transform: none;
  }
  @keyframes sh0 {
    0% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
    25% {
      transform: rotate(7deg) translate3d(0, 0, 0);
    }
    50% {
      transform: rotate(-7deg) translate3d(0, 0, 0);
    }
    75% {
      transform: rotate(1deg) translate3d(0, 0, 0);
    }
    100% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
  }
  .account-action-btn:hover span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
  }
  .account-action-btn::before,
  .account-action-btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
    z-index: -1;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
  }
  .account-action-btn:hover::before,
  .account-action-btn:hover::after {
    opacity: 0.15;
    transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
  }
  .account-action-btn:hover::before {
    transform: translate3d(50%, 0, 0) scale(0.9);
  }
  .account-action-btn:hover::after {
    transform: translate(50%, 0) scale(1.1);
  }
  .account-save-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #090909;
    padding: 0.45em 0.9em;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    border-radius: 0.45em;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  }
  .account-save-btn:hover {
    color: #ffffff;
    border: 1px solid #009087;
    transform: none;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
  }
  .account-save-btn:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5, inset -4px -4px 12px #ffffff;
  }
  .account-save-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  .account-save-btn::after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #009087;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  .account-save-btn:hover::before {
    top: -35%;
    background-color: #009087;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  .account-save-btn:hover::after {
    top: -45%;
    background-color: #009087;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  .account-save-btn--brand {
    background: var(--gold-grad);
    color: #2f2412;
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 12px 22px rgba(0,0,0,0.14);
  }
  .account-save-btn--brand:hover {
    color: #1f1b14;
    border-color: rgba(212,175,55,0.8);
  }
  .account-save-btn--brand:active {
    color: #1f1b14;
    box-shadow: inset 3px 3px 10px rgba(0,0,0,0.18), inset -3px -3px 10px rgba(255,255,255,0.5);
  }
  .account-save-btn--brand::before {
    background-color: rgba(212,175,55,0.2);
  }
  .account-save-btn--brand::after {
    background-color: var(--gold);
  }
  .account-save-btn--brand:hover::before,
  .account-save-btn--brand:hover::after {
    background-color: var(--gold);
  }
  .account-exit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 34px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    color: #1f1b14;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
  }
  .account-exit-btn__icon {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 32%;
    height: calc(100% - 8px);
    border-radius: 10px;
    background: var(--gold-grad);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: 0;
  }
  .account-exit-btn__icon svg {
    fill: #1f1b14;
    transition: transform 0.2s ease;
  }
  .account-exit-btn__text {
    position: relative;
    z-index: 2;
    transform: translateX(6px);
    transition: color 0.2s ease;
  }
  .account-exit-btn:hover {
    border-color: rgba(212,175,55,0.6);
  }
  .account-exit-btn:hover .account-exit-btn__icon {
    width: calc(100% - 8px);
  }
  .account-exit-btn:hover .account-exit-btn__icon svg {
    transform: translateX(2px);
  }
  .account-auth {
    display: grid;
    gap: 14px;
  }
  .account-switch,
  .account-section-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .account-tab {
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.02);
    color: var(--muted);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .account-tab.is-active {
    border-color: rgba(212,175,55,0.6);
    background: var(--gold-grad);
    color: #2f2412;
  }
  .account-tabs-bar {
    display: flex;
    justify-content: center;
    margin: 0 auto 28px;
  }
  .account-tabs-bar .nav {
    display: flex;
    justify-content: center;
    max-width: 100%;
  }
  .account-tabs-bar .ul {
    width: fit-content;
    height: fit-content;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
  }
  .account-tabs-bar .li {
    margin-bottom: 0;
  }
  .account-tabs-bar .button {
    background-color: transparent;
    font-family: sans-serif;
    color: #000;
    border: none;
    font-size: 22px;
    font-weight: 700;
    padding: 10px 30px;
    cursor: pointer;
    position: relative;
    padding-left: 11px;
    text-align: center;
    transition: 0.1s;
    z-index: 1;
  }
  .account-tabs-bar .p {
    z-index: 2;
    position: relative;
  }
  .account-tabs-bar .button:hover {
    color: #000;
    text-align: center;
  }
  .account-tabs-bar .button:hover::before {
    transform: rotate(0deg);
    width: 100%;
    height: 40px;
    top: 2px;
    border-radius: 3px;
    background-color: #d8c18a;
  }
  .account-tabs-bar .button::before {
    content: "";
    border-radius: 1px;
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #d8c18a;
    left: -10px;
    top: 19px;
    cursor: pointer;
    transform: rotate(225deg);
    transition: 0.3s;
    z-index: -1;
  }
  .account-tabs-bar .button:active::before {
    background-color: #c9ae72;
  }
  .account-tabs-bar .button.is-active {
    color: #000;
  }
  .account-tabs-bar .button.is-active::before {
    transform: rotate(0deg);
    width: 100%;
    height: 40px;
    top: 2px;
    border-radius: 3px;
    background-color: #d8c18a;
  }
  .account-tabs-bar .btn:nth-child(1):hover ~ svg .rect {
    stroke-dashoffset: 0;
    stroke-dasharray: 0 2 8 73.3 8 10.7;
  }
  .account-tabs-bar .btn:nth-child(2):hover ~ svg .rect {
    stroke-dashoffset: 0;
    stroke-dasharray: 0 12.6 9.5 49.3 9.5 31.6;
  }
  .account-tabs-bar .btn:nth-child(3):hover ~ svg .rect {
    stroke-dashoffset: 0;
    stroke-dasharray: 0 24.5 8.5 27.5 8.5 55.5;
  }
  .account-tabs-bar .btn:nth-child(4):hover ~ svg .rect {
    stroke-dashoffset: 0;
    stroke-dasharray: 0 34.7 6.9 10.2 6.9 76;
  }
  .account-tabs-bar .btn:hover ~ .outline .rect {
    stroke-dashoffset: 0;
    stroke-dasharray: 0 0 10 40 10 40;
    transition: 0.5s !important;
  }
  .account-link {
    border: none;
    background: transparent;
    color: #2f2412;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    padding: 0;
  }
  .account-link:hover { text-decoration: underline; }
  .account-alert {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.04);
    color: var(--text);
    font-size: 12px;
  }
  .account-alert.is-error {
    background: rgba(214,77,77,0.12);
    color: #7a1c1c;
    border: 1px solid rgba(214,77,77,0.35);
  }
  .account-alert.is-success {
    background: rgba(32,156,104,0.12);
    color: #1b5f40;
    border: 1px solid rgba(32,156,104,0.35);
  }
  .account-dashboard {
    display: grid;
    gap: 16px;
  }
  .account-summary {
    display: grid;
    gap: 4px;
  }
  .account-name,
  .account-email {
    margin: 0;
  }
  .account-name {
    font-weight: 700;
    font-size: 15px;
  }
  .account-email {
    font-size: 12px;
    color: var(--muted);
  }
  .account-section {
    display: none;
    gap: 12px;
  }
  .account-section.is-active { display: grid; }
  .account-section[data-account-section="profile"] .utility-form {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 8px 16px;
    align-items: center;
  }
  .account-section[data-account-section="profile"] .utility-label {
    margin: 0;
  }
  .account-section[data-account-section="profile"] .utility-input {
    margin: 0;
    padding: 8px 10px;
    font-size: 13px;
  }
  .account-section[data-account-section="profile"] .account-profile-intro,
  .account-section[data-account-section="profile"] .account-profile-block,
  .account-section[data-account-section="profile"] .account-profile-delete {
    grid-column: 1 / -1;
  }
  .account-profile-intro {
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px dashed rgba(212,175,55,0.35);
    background: #fffdf6;
    display: grid;
    gap: 6px;
  }
  .account-profile-block {
    display: grid;
    gap: 4px;
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .account-profile-block--first {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
  }
  .account-preferences-block {
    display: grid;
    gap: 4px;
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .account-preferences-block--first {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
  }
  .account-profile-hint {
    grid-column: 1 / -1;
    padding-left: calc(160px + 16px);
    margin: -4px 0 6px;
  }
  .account-preferences-hint {
    margin: -4px 0 6px;
  }
  .account-profile-link {
    color: #6b5a33;
    text-decoration: underline;
    font-weight: 600;
  }
  .account-profile-link:hover {
    color: #2f2412;
  }
  .account-profile-delete {
    justify-content: flex-start;
  }
  .account-section[data-account-section="profile"] .profile-actions {
    grid-column: 1 / -1;
    justify-self: end;
    margin-top: 6px;
  }
  .account-security {
    grid-column: 1 / -1;
  }
  .account-security__summary {
    list-style: none;
  }
  .account-security__summary::-webkit-details-marker {
    display: none;
  }
  .account-security__chevron {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  .account-security[open] .account-security__chevron {
    transform: rotate(225deg);
  }
  @media (min-width: 721px) {
    .account-security {
      display: contents;
    }
    .account-security__summary {
      display: none;
    }
    .account-security__content {
      display: contents;
    }
    details.account-security:not([open]) > .account-security__content {
      display: contents !important;
    }
  }
  @media (min-width: 901px) {
    .account-security {
      display: block;
      width: 100%;
    }
    .account-security__content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
      width: 100%;
    }
    .account-security__content .account-profile-hint {
      padding-left: 0;
      margin-top: 0;
    }
    details.account-security:not([open]) > .account-security__content {
      display: grid !important;
    }
  }
  #bottone1,
  .bottone1 {
    padding: 0.06em 0.16em;
    width: 10.5em;
    height: 3.35em;
    background-color: #212121;
    border: 0.08em solid #fff;
    border-radius: 0.3em;
    font-size: 10.5px;
    cursor: pointer;
  }
  #bottone1 span,
  .bottone1 span {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0.28em;
    width: 100%;
    height: 2.1em;
    background-color: #212121;
    border-radius: 0.2em;
    font-size: 1.28em;
    color: #fff;
    border: 0.08em solid #fff;
    box-sizing: border-box;
    box-shadow: 0 0.32em 0.085em 0.02em #fff;
  }
  #bottone1 span:hover,
  .bottone1 span:hover {
    transition: all 0.5s;
    transform: translate(0, 0.3em);
    box-shadow: 0 0 0 0 #fff;
  }
  #bottone1 span:not(hover),
  .bottone1 span:not(hover) {
    transition: all 1s;
  }
  @media (max-width: 720px) {
    .account-security {
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 14px;
      padding: 10px 12px;
      background: #fff;
      margin-top: 8px;
    }
    .account-section[data-account-section="profile"] .utility-form {
      grid-template-columns: 1fr;
    }
    .account-section[data-account-section="profile"] .utility-form > * {
      grid-column: 1 / -1;
    }
    .account-security__summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 8px 10px;
      border-radius: 10px;
      background: #faf7f0;
      color: #2f2412;
      border: 1px solid rgba(0,0,0,0.06);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      cursor: pointer;
    }
    .account-security__content {
      margin-top: 10px;
      display: grid;
      gap: 8px;
      grid-template-columns: 1fr;
    }
    .account-security__content > * {
      grid-column: 1 / -1;
    }
    .account-profile-hint,
    .account-security__content .account-profile-hint {
      padding-left: 0;
      margin-top: 0;
    }
    .account-security-block .utility-subtitle {
      display: none;
    }
    #bottone1,
    .bottone1 {
      width: 100%;
      max-width: 360px;
      height: 4.15em;
      margin-left: auto;
    }
    #bottone1 span,
    .bottone1 span {
      width: 100%;
      height: 100%;
      bottom: 0.32em;
      padding: 0 14px;
      box-sizing: border-box;
      font-size: 1.34em;
      box-shadow: 0 0.36em 0.095em 0.02em #fff;
    }
    #bottone1 span:hover,
    .bottone1 span:hover {
      transform: translate(0, 0.36em);
    }
  }
  .cancel-account-btn {
    --bg: #e74c3c;
    --text-color: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    white-space: nowrap;
    border: none;
    background: var(--bg);
    color: var(--text-color);
    padding: 0.7em 1em;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.2s;
    border-radius: 5px;
    opacity: 0.8;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: #c0392b 0px 7px 2px, #000 0px 8px 5px;
  }
  .cancel-account-btn:hover {
    opacity: 1;
  }
  .cancel-account-btn:active {
    top: 4px;
    box-shadow: #c0392b 0px 3px 2px, #000 0px 3px 5px;
  }
  .cancel-account-btn__corner,
  .cancel-account-btn__cut,
  .cancel-account-btn__fill {
    display: none;
  }
  .cancel-account-btn__text {
    position: relative;
    z-index: 1;
  }
  @media (max-width: 720px) {
    .account-section[data-account-section="profile"] .utility-form {
      grid-template-columns: 1fr;
    }
    .account-profile-hint {
      padding-left: 0;
      margin-top: 0;
    }
    .account-section[data-account-section="profile"] .profile-actions {
      justify-self: end;
    }
    .account-section[data-account-section="addresses"] .utility-field .bottone1 {
      width: auto;
      max-width: none;
      margin-left: auto;
    }
  }
  .account-address-form {
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #faf7f0;
  }
  .account-address-list,
  .account-order-list {
    display: grid;
    gap: 12px;
  }
  .account-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 12px;
    background: #fff;
    display: grid;
    gap: 10px;
  }
  .account-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .account-card__header-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-wrap: wrap;
  }
  @media (max-width: 720px) {
    .account-card__header-actions {
      width: 100%;
      justify-content: flex-end;
    }
  }
  .account-card__title {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
  }
  .account-card__meta {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
  }
  .account-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .account-card__remove {
    margin-left: auto;
  }
  .cta {
    position: relative;
    padding: 7px 12px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
  }
  .cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: rgba(212,175,55,0.2);
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
  }
  .cta span {
    position: relative;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #2f2412;
  }
  .cta svg {
    position: relative;
    top: 0;
    margin-left: 6px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #2f2412;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  .cta:hover:before {
    width: 100%;
    background: rgba(212,175,55,0.25);
  }
  .cta:hover svg {
    transform: translateX(0);
  }
  .cta:active {
    transform: scale(0.95);
  }
  .account-card__remove.cart-remove {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    border: none;
    background: none;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding: 0;
  }
  .account-card__remove.cart-remove::before {
    margin-left: auto;
  }
  .account-card__remove.cart-remove::after,
  .account-card__remove.cart-remove::before {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    transition: 0.5s;
  }
  .account-card__remove.cart-remove:hover::after,
  .account-card__remove.cart-remove:hover::before {
    width: 100%;
  }
  .account-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .account-badge {
    border-radius: 999px;
    padding: 3px 8px;
    background: rgba(212,175,55,0.2);
    color: #2f2412;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
  }
  .account-chip {
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(0,0,0,0.02);
    color: var(--muted);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .account-chip.is-active {
    border-color: rgba(212,175,55,0.6);
    background: var(--gold-grad);
    color: #2f2412;
  }
  .account-status {
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
  }
  .account-order-items {
    display: grid;
    gap: 4px;
  }
  .account-order-item,
  .account-order-more,
  .account-order-total {
    margin: 0;
    font-size: 12px;
  }
  .account-order-more { color: var(--muted); }
  .account-order-total {
    font-weight: 700;
  }
  .account-check {
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    letter-spacing: 0.4px;
  }
  .account-check input {
    margin: 0;
  }
  .checkbox-wrapper input[type="checkbox"] {
    visibility: hidden;
    display: none;
  }

  .checkbox-wrapper *,
  .checkbox-wrapper ::after,
  .checkbox-wrapper ::before {
    box-sizing: border-box;
    user-select: none;
  }

  .checkbox-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
  }

  .checkbox-wrapper .label {
    cursor: pointer;
  }

  .checkbox-wrapper .check {
    width: 50px;
    height: 50px;
    position: absolute;
    opacity: 0;
  }

  .checkbox-wrapper .label svg {
    vertical-align: middle;
  }

  .checkbox-wrapper .path1 {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: .5s stroke-dashoffset;
    opacity: 0;
  }

  .checkbox-wrapper .check:checked + label svg g path {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  .utility-hint {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
  }
  .utility-results,
  .utility-list {
    display: grid;
    gap: 10px;
  }
  .utility-panel[data-panel="wishlist"] .utility-list { gap: 8px; }
  .utility-empty {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
  }
  .utility-panel[data-panel="wishlist"] .utility-empty {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px dashed rgba(212,175,55,0.35);
    background: #fffdf6;
    text-align: center;
    letter-spacing: 0.3px;
  }
  .utility-results-list {
    display: grid;
    gap: 10px;
  }
  .utility-result {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    box-shadow: 0 12px 22px rgba(0,0,0,0.08);
  }
  .utility-result:hover { border-color: rgba(212,175,55,0.45); }
  .utility-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    background: #f7f2e4;
    display: grid;
    place-items: center;
  }
  .utility-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .utility-thumb-placeholder {
    font-weight: 800;
    color: #6b5a33;
  }
  .utility-info {
    display: grid;
    gap: 4px;
  }
  .utility-name {
    font-weight: 700;
    color: var(--text);
  }
  .utility-meta {
    font-size: 12px;
    color: var(--muted);
  }
  .utility-quick {
    display: grid;
    gap: 8px;
  }
  .utility-subtitle {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.4px;
  }
  .utility-panel[data-panel="wishlist"] .utility-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--muted);
  }
  .utility-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .utility-quick-link {
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.1);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    background: rgba(0,0,0,0.02);
  }
  .utility-quick-link:hover {
    border-color: rgba(212,175,55,0.45);
    color: var(--text);
  }
  .utility-item {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: #fff;
    background-image: linear-gradient(#fff, #fff),
      linear-gradient(135deg, rgba(212,175,55,0.35), rgba(0,0,0,0.06));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .utility-item:hover,
  .utility-item:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }
  .utility-item .utility-thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.05);
    background: #f7f2e4;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
  }
  .utility-item .utility-info {
    gap: 6px;
  }
  .utility-item .utility-name {
    font-size: 14px;
    line-height: 1.3;
  }
  .utility-item .utility-meta {
    font-size: 12px;
    letter-spacing: 0.3px;
    font-variant-numeric: tabular-nums;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-card {
    grid-template-columns: 110px 1fr;
    gap: 14px;
    height: 110px;
    padding: 0 14px 0 0;
    border-radius: 16px;
    border: none;
    background-image: none;
    overflow: hidden;
    align-items: start;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-card .utility-thumb {
    width: 110px;
    height: 100%;
    border-radius: 0;
    border: none;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-card .utility-thumb img {
    object-fit: contain;
    object-position: center;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-info {
    display: grid;
    gap: 4px;
    align-content: start;
    align-self: start;
    margin-top: 2px;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-name {
    font-size: 15px;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 40px);
  }
  .utility-panel[data-panel="wishlist"] .wishlist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.4px;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-brand {
    text-transform: uppercase;
    font-weight: 600;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-price {
    font-weight: 700;
    color: var(--text);
  }
  .utility-panel[data-panel="wishlist"] .wishlist-actions {
    align-self: start;
    justify-content: flex-end;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-cart-btn {
    margin-top: 8px;
    justify-self: start;
    width: 9em;
    height: 2.4em;
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: var(--bg-white);
    color: var(--text);
    box-shadow: 6px 6px 12px rgba(31,27,20,0.14),
                -6px -6px 12px rgba(255,255,255,0.9);
  }
  .utility-panel[data-panel="wishlist"] .wishlist-cart-btn::before {
    content: '';
    width: 0;
    height: 2.4em;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: var(--gold-grad);
    transition: 0.5s ease;
    display: block;
    z-index: -1;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-cart-btn:hover::before {
    width: 9em;
  }
  .utility-panel[data-panel="wishlist"] .utility-btn--ghost.utility-btn--small {
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    padding: 6px 12px;
    letter-spacing: 1.2px;
  }
  .utility-panel[data-panel="wishlist"] .cart-remove {
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b5a33;
    transition: all 0.2s ease;
  }
  .utility-panel[data-panel="wishlist"] .cart-remove:hover {
    border-color: rgba(212,175,55,0.6);
    color: #2f2412;
  }
  .utility-actions {
    display: grid;
    gap: 8px;
    justify-items: end;
  }
  .utility-panel[data-panel="wishlist"] .utility-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }
  .utility-panel[data-panel="wishlist"] .utility-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }
  .utility-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: #2f2412;
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .utility-icon-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
  }
  .utility-icon-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  }
  .utility-icon-btn:focus-visible {
    outline: 2px solid rgba(212,175,55,0.45);
    outline-offset: 2px;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-like {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-like--float {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    z-index: 2;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-like .heart-container {
    width: 100%;
    height: 100%;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-like .svg-outline { display: none; }
  .utility-panel[data-panel="wishlist"] .wishlist-like .svg-filled {
    display: block;
    animation: none;
    fill: var(--heart-red);
  }
  .utility-panel[data-panel="wishlist"] .wishlist-like .svg-celebrate {
    stroke: var(--heart-red);
    fill: var(--heart-red);
  }
  .utility-panel[data-panel="wishlist"] .wishlist-like svg {
    stroke: none;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-like.is-popping .svg-filled {
    animation: keyframes-svg-filled 0.9s;
  }
  .utility-panel[data-panel="wishlist"] .wishlist-like.is-popping .svg-celebrate {
    display: block;
  }
  .account-summary {
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #faf7f0;
  }
  .account-name {
    margin: 0;
    font-weight: 700;
  }
  .account-email {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
  }
  .utility-panel .cart-items,
  .utility-panel .cart-summary {
    box-shadow: none;
  }
  .utility-panel .cart-items {
    padding: 12px;
  }
  .utility-panel .cart-summary {
    padding: 12px;
  }
  @media (max-width: 720px) {
    .utility-sheet { width: 100%; }
    .utility-body { padding: 16px; }
  }
  .flower-loader {
    overflow: hidden;
    position: relative;
    text-indent: -9999px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #e96;
    border-radius: 100%;
    -moz-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
      #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
    -webkit-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
      #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
    box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px,
      #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
    -moz-animation: flower-loader 5s infinite ease-in-out;
    -webkit-animation: flower-loader 5s infinite ease-in-out;
    animation: flower-loader 5s infinite ease-in-out;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }

  @-moz-keyframes flower-loader {
    0% {
      -moz-transform: rotate(0deg);
      transform: rotate(0deg);
      -moz-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
        #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
      box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px,
        #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
    }
    50% {
      -moz-transform: rotate(1080deg);
      transform: rotate(1080deg);
      -moz-box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px,
        #7fb9ea -12px 12px 0 4px, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
      box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px,
        #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
    }
  }
  @-webkit-keyframes flower-loader {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
        #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
      box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px,
        #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
    }
    50% {
      -webkit-transform: rotate(1080deg);
      transform: rotate(1080deg);
      -webkit-box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px,
        #7fb9ea -12px 12px 0 4px, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
      box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px,
        #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
    }
  }
  @keyframes flower-loader {
    0% {
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -moz-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
        #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
      -webkit-box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px,
        #7fb9ea 12px -12px 0 4px, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
      box-shadow: white 0 0 15px 0, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px,
        #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px;
    }
    50% {
      -moz-transform: rotate(1080deg);
      -ms-transform: rotate(1080deg);
      -webkit-transform: rotate(1080deg);
      transform: rotate(1080deg);
      -moz-box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px,
        #7fb9ea -12px 12px 0 4px, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
      -webkit-box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px,
        #7fb9ea -12px 12px 0 4px, #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
      box-shadow: white 0 0 15px 0, #7fb9ea 12px 12px 0 4px, #7fb9ea -12px 12px 0 4px,
        #7fb9ea -12px -12px 0 4px, #7fb9ea 12px -12px 0 4px;
    }
  }
  header.is-scrolled {
    background: rgba(255,255,255,0.9);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    --header-bar-height: 64px;
  }
  header.is-scrolled .nav { height: 64px; gap: 16px; }
  header.is-scrolled .logo img { height: 42px; }

  /* Hero */
  .hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: clamp(40px, 8vw, 100px) 0 clamp(50px, 9vw, 120px);
    color: #111;
    text-align: center;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7f2e5 100%);
  }
  .hero-headline {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: 1px;
    color: #111;
    text-shadow: 0 18px 36px rgba(0,0,0,0.12);
  }
  .hero-loop {
    position: relative;
    display: grid;
    place-items: center;
    pointer-events: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-track {
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    padding-inline: clamp(12px, 4vw, 24px);
    box-sizing: content-box;
  }
  .hero-track .carousel-item {
    opacity: 0.95;
    cursor: pointer;
  }
  .hero-track .carousel-item img {
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.35);
    mask-image: linear-gradient(black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(black 80%, transparent 100%);
  }
  @media (hover: none) {
    .hero .carousel-item:active img {
      transform: rotateY(0deg) translateY(-6px);
    }
  }
  .hero::before,
  .hero::after { content: none; }
  .hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 25px 60px rgba(0,0,0,0.28);
    backdrop-filter: blur(4px);
    text-align: left;
    max-width: 760px;
  }
  .eyebrow {
    letter-spacing: 4px;
    font-size: 11px;
    text-transform: uppercase;
    color: #f4e9c4;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 6.5vw, 66px);
    margin: 16px 0 12px;
    font-weight: 700;
  }
  .hero p {
    max-width: 680px;
    margin: 0 0 18px;
    color: #efe7d6;
  }
  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
  }
  .hero-badges span {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(241,217,124,0.5);
    background: rgba(0,0,0,0.26);
    color: #f7e9c2;
    letter-spacing: 0.3px;
    font-weight: 600;
  }
  .hero-script {
    position: absolute;
    right: 6%;
    top: 22%;
    color: #f7e9c2;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(20px, 4vw, 28px);
    letter-spacing: 0.6px;
    max-width: 220px;
    text-align: right;
    text-shadow: 0 14px 26px rgba(0,0,0,0.34);
    z-index: 3;
  }
  .page-hero {
    min-height: 46vh;
    padding: clamp(32px, 6vw, 80px) 0;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fffaf0, #f4e3b9);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .page-hero::after {
    content: '';
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.15), rgba(212,175,55,0));
    filter: blur(60px);
    z-index: 0;
  }
  .page-hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
  }
  .page-hero h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 50px);
  }
  .page-hero p { margin: 0; color: var(--muted); }
  .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .conditions-stack {
    display: grid;
    gap: 24px;
  }
  .conditions-stack .condition-section {
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
  }
  .conditions-stack.is-filtered .condition-section {
    display: none;
  }
  .conditions-stack.is-filtered .condition-section.is-active {
    display: grid;
  }
  .conditions-docs::before,
  .conditions-docs::after {
    content: none;
  }
  .conditions-docs .section-title::before {
    content: none;
  }
  .supporto-page .support-page {
    background: #f9f6f0;
    display: none;
  }
  .supporto-page .support-page--alt {
    background: #ffffff;
  }
  .supporto-page .support-page.is-active {
    display: block;
  }
  .supporto-page .support-page + .support-page {
    border-top: 1px solid rgba(0,0,0,0.06);
  }
  .supporto-page .support-page .info-card {
    max-width: 820px;
    margin: 0 auto;
  }
  .supporto-page .support-nav {
    padding: 50px 0 30px;
  }
  .supporto-page .support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  .supporto-page .support-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0,0,0,0.08);
    background: #f8f4ea;
  }
  .supporto-page .support-contact-card {
    width: min(1390px, 100%);
    height: 254px;
    background: #ffffff;
    position: relative;
    display: flex;
    place-content: center;
    place-items: center;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    border-radius: 20px;
    border: none;
    box-shadow: none;
    padding: 26px 20px;
    text-align: center;
    justify-self: center;
    z-index: 0;
  }
  .supporto-page .support-contact-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3100px;
    background-image: var(--gold-grad);
    height: 130%;
    animation: rotBGimg 10s linear infinite;
    transition: all 0.2s linear;
    transform-origin: center;
    z-index: 0;
  }
  .supporto-page .support-contact-card::after {
    content: '';
    position: absolute;
    background: #ffffff;
    inset: 4px;
    border-radius: 15px;
    z-index: 0;
  }
  .supporto-page .support-contact-card > *:not(.support-card__icon) {
    position: relative;
    z-index: 2;
  }
  .supporto-page .support-contact-card,
  .supporto-page .support-contact-card a {
    color: var(--text);
  }
  .supporto-page .support-contact-card h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.2vw, 30px);
    line-height: 1.1;
    letter-spacing: 0.2px;
    color: var(--text);
  }
  .supporto-page .support-contact-card p {
    margin: 0;
    max-width: 34ch;
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
  }
  .supporto-page .support-contact-card .info-actions {
    margin-top: 2px;
  }
  .supporto-page .support-contact-card .info-actions a {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-decoration: none;
    box-shadow: none;
  }
  .supporto-page .support-contact-card .info-actions a:hover,
  .supporto-page .support-contact-card .info-actions a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .supporto-page .support-contact-card .support-card__icon {
    position: absolute;
    top: 12px;
    bottom: auto;
    left: 12px;
    right: auto;
    width: 126px;
    height: 126px;
    transform: none;
    background: transparent;
    border: none;
    color: var(--text);
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
  }
  .supporto-page .support-contact-card .support-card__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.4;
  }
  @keyframes rotBGimg {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  .supporto-page .support-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
  }
  .supporto-page #faqs .info-card {
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .supporto-page .support-slider {
    --color-pure: #fff;
    --color-primary: #212121;
    --color-secondary: #fff7e2;
    --muted: #d6c08a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
  }
  .supporto-page .support-slider .wrap {
    --round: 12px;
    --p-x: 8px;
    --p-y: 6px;
    --w-label: 140px;
    display: flex;
    align-items: center;
    padding: var(--p-y) var(--p-x);
    position: relative;
    background: var(--color-primary);
    border-radius: var(--round);
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    top: 0;
    z-index: 1;
  }
  .supporto-page .support-slider .wrap::-webkit-scrollbar { display: none; }
  .supporto-page .support-slider input {
    height: 0;
    width: 0;
    position: absolute;
    overflow: hidden;
    display: none;
    visibility: hidden;
  }
  .supporto-page .support-slider .label {
    cursor: pointer;
    outline: none;
    font-size: 0.875rem;
    letter-spacing: initial;
    font-weight: 500;
    color: var(--color-secondary);
    background: transparent;
    padding: 12px 16px;
    width: var(--w-label);
    min-width: var(--w-label);
    text-decoration: none;
    user-select: none;
    transition: color 0.25s ease;
    outline-offset: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
  }
  .supporto-page .support-slider .label span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }
  .supporto-page .support-slider .wrap input[class*="rd-"]:checked + label {
    color: var(--color-pure);
  }
  .supporto-page .support-slider .bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    left: var(--p-x);
    transform-origin: 0 0 0;
    height: 100%;
    width: var(--w-label);
    z-index: 0;
    transition: transform 0.5s cubic-bezier(0.33, 0.83, 0.99, 0.98);
  }
  .supporto-page .support-slider .bar::before,
  .supporto-page .support-slider .bar::after {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--bg);
  }
  .supporto-page .support-slider .bar::before {
    top: 0;
    border-radius: 0 0 9999px 9999px;
  }
  .supporto-page .support-slider .bar::after {
    bottom: 0;
    border-radius: 9999px 9999px 0 0;
  }
  .supporto-page .support-slider .slidebar {
    position: absolute;
    height: calc(100% - (var(--p-y) * 4));
    width: var(--w-label);
    border-radius: calc(var(--round) - var(--p-y));
    background: var(--muted);
    left: var(--p-x);
    transform-origin: 0 0 0;
    z-index: 0;
    transition: transform 0.5s cubic-bezier(0.33, 0.83, 0.99, 0.98);
  }
  .supporto-page .support-slider .rd-1:checked ~ .bar,
  .supporto-page .support-slider .rd-1:checked ~ .slidebar,
  .supporto-page .support-slider .rd-1 + label:hover ~ .slidebar {
    transform: translateX(0) scaleX(1);
  }
  .supporto-page .support-slider .rd-2:checked ~ .bar,
  .supporto-page .support-slider .rd-2:checked ~ .slidebar,
  .supporto-page .support-slider .rd-2 + label:hover ~ .slidebar {
    transform: translateX(100%) scaleX(1);
  }
  .supporto-page .support-slider .rd-3:checked ~ .bar,
  .supporto-page .support-slider .rd-3:checked ~ .slidebar,
  .supporto-page .support-slider .rd-3 + label:hover ~ .slidebar {
    transform: translateX(200%) scaleX(1);
  }
  @media (max-width: 720px) {
    .supporto-page .support-slider .wrap {
      --w-label: clamp(98px, 30vw, 130px);
      --p-x: max(8px, calc((100% - (var(--w-label) * 3)) / 2));
    }
    .supporto-page .support-slider .label {
      padding: 10px 12px;
    }
  }
  .info-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.06);
    display: grid;
    gap: 10px;
    min-height: 180px;
  }
  .info-card h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
  }
  .info-card p,
  .info-card ul {
    margin: 0;
    color: var(--muted);
  }
  .info-card ul { padding-left: 18px; }
  .info-card a { color: inherit; font-weight: 600; }
  .info-card details {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 10px;
  }
  .info-card summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
  }
  .info-card summary::marker { color: var(--gold); }
  .info-card .info-meta {
    display: grid;
    gap: 6px;
    font-size: 14px;
  }
  .info-card .info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .info-card .info-actions a {
    padding: 8px 16px;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 999px;
    font-size: 13px;
  }
  .hero-script::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-grad);
    margin: 12px 0 0 auto;
    opacity: 0.65;
    border-radius: 999px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid #f1d97c;
    color: #f8e9b8;
    background: transparent;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.6px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }
  .btn:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  }
  .btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 40%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255,255,255,0.65), rgba(255,255,255,0));
    transform: translateX(-120%) rotate(15deg);
    transition: transform 0.45s ease;
  }
  .btn:hover::before { transform: translateX(220%) rotate(15deg); }
  .scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: 36px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10px;
    color: transparent;
    overflow: hidden;
    z-index: 3;
    backdrop-filter: blur(4px);
    background: rgba(0,0,0,0.12);
  }
  .scroll-indicator span {
    display: block;
    width: 4px;
    height: 12px;
    border-radius: 4px;
    background: #f8e9b8;
    animation: scroll 1.4s ease-in-out infinite;
  }
  @keyframes scroll {
    0% { transform: translateY(0); opacity: 0.9; }
    60% { transform: translateY(16px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
  }
  @keyframes flower1 {
    0% {
      transform: rotate(5deg);
    }
    100% {
      transform: rotate(365deg);
    }
  }

  @keyframes flower2 {
    0% {
      transform: rotate(35deg);
    }
    100% {
      transform: rotate(-325deg);
    }
  }

  @keyframes flower3 {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes flower4 {
    0% {
      transform: rotate(15deg);
    }
    100% {
      transform: rotate(375deg);
    }
  }

  @keyframes flower5 {
    0% {
      transform: rotate(25deg);
    }
    100% {
      transform: rotate(-335deg);
    }
  }

  @keyframes flower6 {
    0% {
      transform: rotate(30deg);
    }
    100% {
      transform: rotate(390deg);
    }
  }

  /* Brands */
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 34px);
    margin-bottom: 14px;
    color: var(--text);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .section-sub {
    color: var(--muted);
    max-width: 640px;
    margin-bottom: 32px;
  }
  body.page-no-header .page-hero {
    padding-top: clamp(24px, 6vw, 64px);
    padding-bottom: clamp(16px, 4vw, 36px);
  }
  body.page-creazione-personalizzata .page-hero {
    background-color: #f4e8d4;
    background-image: url('../imgs/personalizzazioni.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: clamp(340px, 62vh, 780px);
  }
  body.page-creazione-personalizzata .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(255, 250, 240, 0.45),
      rgba(255, 250, 240, 0.68)
    );
    z-index: 0;
  }
  body.page-creazione-personalizzata .page-hero::after {
    content: none;
  }
  body.page-creazione-personalizzata .page-hero h1 {
    color: #1a1510;
    text-shadow:
      0 0 1px rgba(255, 250, 240, 0.95),
      0 0 26px rgba(255, 250, 240, 0.85),
      0 2px 10px rgba(0, 0, 0, 0.12);
  }
  body.page-creazione-personalizzata .page-hero p {
    color: rgba(26, 21, 16, 0.9);
    text-shadow: 0 1px 14px rgba(255, 250, 240, 0.9);
  }
  body.page-no-header section.custom-request {
    padding-top: clamp(48px, 9vw, 80px);
    padding-bottom: clamp(28px, 6vw, 52px);
  }
  .custom-request {
    background: linear-gradient(180deg, rgba(212,175,55,0.08), rgba(255,255,255,0.9));
    overflow-x: hidden;
    overflow-y: visible;
  }
  .custom-request .custom-form,
  .custom-request .custom-form__grid {
    overflow: visible;
    max-height: none;
  }
  .custom-request .checkbox-wrapper {
    overflow: visible;
  }
  .custom-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 28px 12px;
    box-shadow: none;
  }
  .custom-form__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .custom-form__grid > .custom-form__section {
    width: 100%;
  }
  .form-step {
    display: contents;
  }
  .custom-form__steps-nav {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
  }
  .custom-form__step-btn {
    border: 1px solid rgba(212,175,55,0.35);
    background: linear-gradient(180deg, #ffffff 0%, #f6f1e6 100%);
    color: #2f2412;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  }
  .custom-form__step-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .custom-form__step-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 14px 22px rgba(0,0,0,0.12);
    background: var(--gold-grad);
    color: #2f2412;
  }
  .custom-form__step-btn:active:not(:disabled) {
    transform: scale(0.98);
  }
  .custom-form__step-btn:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 2px;
  }
  .custom-form__step-status {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
  }
  .custom-form__row-group {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
  .custom-form__section {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .custom-form__section:first-child {
    border-top: none;
    padding-top: 0;
  }
  .custom-form__section-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
  }
  .custom-form__pair {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }
  .custom-form__pair .custom-form__section {
    grid-column: auto;
    border-top: none;
    padding: 0;
  }
  .custom-form__pair .custom-form__field--full,
  .custom-form__pair textarea {
    width: 100%;
  }
  .custom-form__pair .upload-card {
    width: 100%;
    height: 100%;
    min-height: 300px;
  }
  .custom-form__pair textarea {
    min-height: 300px;
    height: 100%;
  }
  .custom-form__actions {
    grid-column: 1 / -1;
  }
  .custom-form__row-group {
    width: 100%;
  }
  .custom-form__row-group--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .custom-form__row-group--2 .custom-form__field textarea {
    height: 100%;
    min-height: 300px;
  }
  .custom-form__row-group--2 .custom-form__field {
    width: 100%;
  }
  .custom-form__row-group--2 .upload-card {
    width: 100%;
    height: 100%;
    min-height: 300px;
  }
  @media (max-width: 720px) {
    .custom-form__grid {
      grid-template-columns: 1fr;
    }
    .custom-form__row-group,
    .custom-form__row-group--2 {
      grid-template-columns: 1fr;
    }
    .custom-form__steps-nav {
      display: flex;
    }
    .custom-form__section-title {
      min-height: 28px;
      display: flex;
      align-items: center;
    }
    .custom-form__actions {
      justify-content: center;
    }
    .custom-submit {
      margin: 0 auto;
    }
    .custom-form__pair {
      grid-template-columns: 1fr;
    }
    .custom-form.is-stepper .form-step {
      display: none;
    }
    .custom-form.is-stepper .form-step.is-active {
      display: block;
    }
    .bozza-desktop { display: none; }
    .bozza-mobile { display: grid; }
    /* Nessun breakout 100vw / altezza viewport: evita doppio scroll (pagina + blocco interno) */
    .bozza-mobile .custom-form__field--full {
      width: 100%;
      max-width: 100%;
      margin-inline: 0;
    }
    .bozza-mobile .upload-card {
      width: 100%;
      max-width: 100%;
      min-height: 320px;
      min-height: min(360px, 62dvh);
      height: auto;
      border-radius: 14px;
      box-shadow: var(--shadow);
      margin: 0;
      padding: 12px;
    }
    .bozza-mobile .upload-card__header {
      border-radius: 10px;
    }
    .bozza-mobile .upload-card__preview {
      grid-template-columns: 1fr;
      align-content: stretch;
      gap: 0;
      padding: 0;
    }
    .bozza-mobile .upload-card__thumb {
      width: 100%;
      height: 100%;
      border-radius: 0;
    }
    .bozza-mobile .upload-card__thumb img {
      width: 100%;
      max-width: none;
      height: 100%;
      border-radius: 0;
      object-fit: cover;
    }
  }
  @media (min-width: 721px) {
    .bozza-desktop { display: grid; }
    .bozza-mobile { display: none; }
  }
  .custom-form__row {
    min-width: 0;
  }
  .custom-form__field--budget {
    min-width: 240px;
  }
  .custom-form__field--budget .price-slider__range {
    max-width: 280px;
  }
  .custom-form__field--budget .price-slider__limits {
    max-width: 280px;
  }
  .custom-form__field {
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
  }
  .custom-form__field span {
    font-weight: 600;
    letter-spacing: 0.2px;
  }
  .custom-form__field input,
  .custom-form__field select,
  .custom-form__field textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.12);
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  .custom-form__field input:focus,
  .custom-form__field select:focus,
  .custom-form__field textarea:focus {
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
  }
  .custom-form__field--full {
    grid-column: 1 / -1;
  }
  .custom-form__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .custom-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
    max-width: 520px;
  }
  .custom-form__checkbox input {
    margin-top: 3px;
    accent-color: var(--gold);
  }
  .checkbox-wrapper input[type="checkbox"] {
    visibility: hidden;
    display: none;
  }
  .checkbox-wrapper *,
  .checkbox-wrapper ::after,
  .checkbox-wrapper ::before {
    box-sizing: border-box;
    user-select: none;
  }
  .checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--text);
  }
  .checkbox-wrapper .label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text);
  }
  .checkbox-wrapper .check {
    width: 50px;
    height: 50px;
    position: absolute;
    opacity: 0;
  }
  .checkbox-wrapper .label svg {
    vertical-align: middle;
  }
  .checkbox-wrapper .path1 {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: .5s stroke-dashoffset;
    opacity: 0;
  }
  .checkbox-wrapper .check:checked + label svg g path {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  .custom-form__submit {
    border: 0;
    background: var(--text);
    color: #fff;
    padding: 12px 26px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .custom-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.14);
  }
  .custom-submit {
    position: relative;
    padding: 12px 35px;
    background: var(--gold-grad);
    font-size: 17px;
    font-weight: 500;
    color: var(--text);
    border: 3px solid rgba(212,175,55,0.7);
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(212,175,55,0.25);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    overflow: visible;
  }
  .custom-submit .star-1,
  .custom-submit .star-2,
  .custom-submit .star-3,
  .custom-submit .star-4,
  .custom-submit .star-5,
  .custom-submit .star-6 {
    position: absolute;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  }
  .custom-submit .star-1 { top: 20%; left: 20%; width: 25px; }
  .custom-submit .star-2 { top: 45%; left: 45%; width: 15px; transition: all 1s cubic-bezier(0, 0.4, 0, 1.01); }
  .custom-submit .star-3 { top: 40%; left: 40%; width: 5px; transition: all 1s cubic-bezier(0, 0.4, 0, 1.01); }
  .custom-submit .star-4 { top: 20%; left: 40%; width: 8px; transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01); }
  .custom-submit .star-5 { top: 25%; left: 45%; width: 15px; transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01); }
  .custom-submit .star-6 { top: 5%; left: 50%; width: 5px; transition: all 0.8s ease; }
  .custom-submit:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 25px rgba(212,175,55,0.35);
  }
  .custom-submit:hover .star-1 {
    top: -80%;
    left: -30%;
    width: 25px;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
  }
  .custom-submit:hover .star-2 {
    top: -25%;
    left: 10%;
    width: 15px;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
  }
  .custom-submit:hover .star-3 {
    top: 55%;
    left: 25%;
    width: 5px;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
  }
  .custom-submit:hover .star-4 {
    top: 30%;
    left: 80%;
    width: 8px;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
  }
  .custom-submit:hover .star-5 {
    top: 25%;
    left: 115%;
    width: 15px;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
  }
  .custom-submit:hover .star-6 {
    top: 5%;
    left: 60%;
    width: 5px;
    filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
  }
  .custom-submit .fil0 {
    fill: rgba(212,175,55,0.6);
  }
  .upload-card {
    height: 300px;
    width: 300px;
    border-radius: 10px;
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    gap: 5px;
    background-color: rgba(212,175,55,0.08);
    color: var(--text);
  }
  .upload-card__header {
    flex: 1;
    width: 100%;
    border: 2px dashed rgba(212,175,55,0.7);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
  }
  .upload-card__header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }
  .upload-card__header svg {
    height: 88px;
  }
  .upload-card__header p {
    margin: 0;
    color: var(--text);
  }
  .upload-card__preview {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 8px;
    padding: 10px;
    align-content: start;
    justify-items: center;
    opacity: 0;
    pointer-events: auto;
    z-index: 2;
  }
  .upload-card.is-has-files .upload-card__header svg,
  .upload-card.is-has-files .upload-card__header p {
    opacity: 0;
    pointer-events: none;
  }
  .upload-card.is-has-files .upload-card__preview {
    opacity: 1;
    pointer-events: auto;
  }
  .upload-card__thumb {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 10px;
    outline: none;
    box-shadow: 0 0 0 2px transparent;
    pointer-events: auto;
  }
  .upload-card__thumb.is-active {
    box-shadow: 0 0 0 2px rgba(212,175,55,0.7);
  }
  .upload-card__thumb.is-active img {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 2px;
  }
  .upload-card__thumb img {
    width: 100%;
    max-width: 110px;
    height: 84px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  }
  .upload-card__footer {
    background-color: rgba(212,175,55,0.12);
    width: 100%;
    min-height: 50px;
    padding: 8px 10px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
  }
  .upload-card__select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
  }
  .upload-card__select svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    background-color: rgba(70, 66, 66, 0.103);
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.205);
  }
  .upload-card__files {
    display: grid;
    gap: 6px;
    font-size: 12px;
  }
  .upload-card__hint {
    margin: 0;
    font-size: 11px;
    line-height: 1.35;
    color: var(--muted);
    text-align: left;
  }
  .upload-card__empty {
    color: var(--muted);
  }
  .upload-card__file {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 999px;
    padding: 4px 8px 4px 10px;
  }
  .upload-card__file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .upload-card__remove {
    width: auto;
    height: auto;
    border-radius: 0;
    border: none;
    background: transparent;
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: none;
    padding: 0;
  }
  .upload-card__remove svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
  }
  .upload-card__input {
    display: none;
  }
  .section-title::before {
    content: '';
    display: inline-block;
    width: 34px;
    height: 2px;
    background: var(--gold-grad);
    border-radius: 999px;
  }
  .brands-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 2.4fr);
    gap: 26px;
    align-items: start;
    perspective: 1200px;
  }
  .brand-card {
    --brand-card-height: 280px;
    position: relative;
    height: var(--brand-card-height);
    border-radius: 20px;
    overflow: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.2s ease, filter 0.3s ease;
    isolation: isolate;
    cursor: pointer;
    perspective: 1200px;
    transform-style: preserve-3d;
  }
  .brand-card.has-cta {
    height: auto;
    min-height: var(--brand-card-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .brand-card--feature {
    --brand-card-height: 280px;
    align-self: start;
  }
  .brand-card--compact {
    --brand-card-height: 160px;
    --bg-size: 85%;
  }
  #brands .brand-card--compact:not([data-gallery-title="Orologi"]) {
    --bg-size: 108%;
  }
  #brands .brand-card--compact[data-gallery-title="Bracciali"] {
    --bg-size: 110%;
  }
  #brands .brand-card--compact[data-gallery-title="Orecchini"] {
    --bg-size: 74%;
  }
  #brands .brand-card--compact[data-gallery-title="Bracciali"] .brand-face {
    background-position: center 46%;
  }
  #brands .brand-card--compact[data-gallery-title="Bracciali"] .brand-title,
  #brands .brand-card--compact[data-gallery-title="Bracciali"] .brand-subtitle,
  #brands .brand-card--compact[data-gallery-title="Orecchini"] .brand-title,
  #brands .brand-card--compact[data-gallery-title="Orecchini"] .brand-subtitle {
    color: #fff;
    text-shadow: 0 12px 24px rgba(0,0,0,0.45);
  }
  #brands .brand-card--compact[data-gallery-title="Anelli"] .brand-face {
    background-position: center 42%;
  }
  #brands .brand-card--compact[data-gallery-title="Orologi"] .brand-face {
    background-position: center 38%;
  }
  #brands .brand-card--compact[data-gallery-title="Orologi"] {
    --bg-size: 76%;
  }
  .brand-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 12px;
    width: 100%;
  }
  .brand-card--compact .brand-title {
    font-size: 17px;
  }
  .brand-card--compact .brand-subtitle {
    font-size: 11px;
  }
  .brand-shell {
    position: relative;
    width: 100%;
    height: var(--brand-card-height);
  }
  .brand-card:hover { filter: brightness(1.02); }
  .brand-card:active { transform: scale(0.98); }
  .brand-card:hover,
  .brand-card.is-active { z-index: 5; }
  .brand-canvas {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    gap: 0;
    grid-template-areas: "tr-1 tr-2 tr-3 tr-4 tr-5"
      "tr-6 tr-7 tr-8 tr-9 tr-10"
      "tr-11 tr-12 tr-13 tr-14 tr-15"
      "tr-16 tr-17 tr-18 tr-19 tr-20"
      "tr-21 tr-22 tr-23 tr-24 tr-25";
    perspective: 900px;
    z-index: 2;
  }
  .brand-tracker {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
  }
  .brand-tracker:hover { cursor: pointer; }
  .brand-face {
    --tx: 0deg;
    --ty: 0deg;
    --tz: 26px;
    --card-blur: 0px;
    --card-blur-opacity: 0;
    --card-dim: 0;
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    background-image: var(--bg-img);
    background-size: var(--bg-size, cover);
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    color: #fff;
    transform: translateZ(var(--tz)) rotateX(var(--tx)) rotateY(var(--ty)) rotateZ(0deg);
    transform-style: preserve-3d;
    transition: transform 700ms ease, filter 300ms ease, background-position 220ms ease;
    will-change: transform, filter;
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
    filter: brightness(1.02) saturate(1.06);
  }
  .brand-face::before {
    content: '';
    background-image: var(--bg-img);
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    filter: blur(var(--card-blur));
    opacity: var(--card-blur-opacity);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: inherit;
    transform: scale(1.05);
    transform-origin: center;
    transition: opacity 200ms ease, filter 200ms ease;
  }
  .brand-face::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0,0,0,0.22);
    opacity: var(--card-dim);
    mix-blend-mode: normal;
    pointer-events: none;
    border-radius: inherit;
    transition: opacity 200ms ease;
  }
  .brand-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 12px 24px rgba(0,0,0,0.45);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 300ms ease 80ms, transform 300ms ease 80ms;
  }
  .brand-subtitle {
    margin: 0;
    color: #f4e9c7;
    font-size: 14px;
    line-height: 1.5;
    max-width: 340px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 320ms ease 140ms, transform 320ms ease 140ms;
  }
  .brand-cta {
    height: 4em;
    width: 12em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 6;
    transform: translateZ(0);
  }
  .brand-cta:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 4px;
  }
  .brand-cta .flower-wrapper {
    height: 2em;
    width: 8em;
    position: relative;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .brand-cta .flower-text {
    font-size: 11px;
    z-index: 1;
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: all 0.5s ease;
  }
  .brand-cta .flower {
    display: grid;
    grid-template-columns: 1em 1em;
    position: absolute;
    transition: grid-template-columns 0.8s ease;
  }
  .brand-cta .flower1 {
    top: -12px;
    left: -13px;
    transform: rotate(5deg);
  }
  .brand-cta .flower2 {
    bottom: -5px;
    left: 8px;
    transform: rotate(35deg);
  }
  .brand-cta .flower3 {
    bottom: -15px;
    transform: rotate(0deg);
  }
  .brand-cta .flower4 {
    top: -14px;
    transform: rotate(15deg);
  }
  .brand-cta .flower5 {
    right: 11px;
    top: -3px;
    transform: rotate(25deg);
  }
  .brand-cta .flower6 {
    right: -15px;
    bottom: -15px;
    transform: rotate(30deg);
  }
  .brand-cta .petal {
    height: 1em;
    width: 1em;
    border-radius: 40% 70% / 7% 90%;
    background: linear-gradient(#07a6d7, #93e0ee);
    border: 0.5px solid #96d1ec;
    z-index: 0;
    transition: width 0.8s ease, height 0.8s ease;
  }
  .brand-cta .two {
    transform: rotate(90deg);
  }
  .brand-cta .three {
    transform: rotate(270deg);
  }
  .brand-cta .four {
    transform: rotate(180deg);
  }
  .brand-cta:hover .petal,
  .brand-cta:focus-visible .petal {
    background: linear-gradient(#0761d7, #93bdee);
    border: 0.5px solid #96b4ec;
  }
  .brand-cta:hover .flower,
  .brand-cta:focus-visible .flower {
    grid-template-columns: 1.5em 1.5em;
  }
  .brand-cta:hover .flower .petal,
  .brand-cta:focus-visible .flower .petal {
    width: 1.5em;
    height: 1.5em;
  }
  .brand-cta:hover .flower-text,
  .brand-cta:focus-visible .flower-text {
    background: rgba(255, 255, 255, 0.4);
  }
  .brand-cta:hover .flower1,
  .brand-cta:focus-visible .flower1 {
    animation: flower1 15s linear infinite;
  }
  .brand-cta:hover .flower2,
  .brand-cta:focus-visible .flower2 {
    animation: flower2 13s linear 1s infinite;
  }
  .brand-cta:hover .flower3,
  .brand-cta:focus-visible .flower3 {
    animation: flower3 16s linear 1s infinite;
  }
  .brand-cta:hover .flower4,
  .brand-cta:focus-visible .flower4 {
    animation: flower4 17s linear 1s infinite;
  }90  
  .brand-cta:hover .flower5,
  .brand-cta:focus-visible .flower5 {
    animation: flower5 20s linear 1s infinite;
  }
  .brand-cta:hover .flower6,
  .brand-cta:focus-visible .flower6 {
    animation: flower6 15s linear 1s infinite;
  }
  .brand-prompt {
    position: absolute;
    bottom: 12px;
    left: 14px;
    z-index: 4;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #fff;
    max-width: 160px;
    text-align: left;
    transition: opacity 300ms ease;
  }
  .brand-tracker:hover ~ .brand-face,
  .brand-card.is-active .brand-face,
  .brand-card:focus-visible .brand-face {
    transition: 300ms;
    --tz: 32px;
    --card-blur: 5px;
    --card-blur-opacity: 1;
    --card-dim: 0.22;
    background-position: center 48%;
  }
  .brand-card--no-blur .brand-face {
    --card-blur: 0px;
    --card-blur-opacity: 0;
    --card-dim: 0;
  }
  .brand-card--no-blur .brand-face::before,
  .brand-card--no-blur .brand-face::after {
    opacity: 0;
  }
  .brand-card--no-blur .brand-tracker:hover ~ .brand-face,
  .brand-card--no-blur.brand-card.is-active .brand-face,
  .brand-card--no-blur.brand-card:focus-visible .brand-face {
    --card-blur: 0px;
    --card-blur-opacity: 0;
    --card-dim: 0;
  }
  .brand-tracker:hover ~ .brand-face .brand-title,
  .brand-card.is-active .brand-title,
  .brand-card:focus-visible .brand-title {
    opacity: 1;
    transform: translateY(0);
    color: #111;
    text-shadow: none;
  }
  .brand-tracker:hover ~ .brand-face .brand-subtitle,
  .brand-card.is-active .brand-subtitle,
  .brand-card:focus-visible .brand-subtitle {
    opacity: 1;
    transform: translateY(0);
    color: #111;
  }
  .brand-tracker:hover ~ .brand-face .brand-prompt,
  .brand-card.is-active .brand-prompt,
  .brand-card:focus-visible .brand-prompt { opacity: 0; }
  .brand-card:focus-visible { outline: 2px solid rgba(212,175,55,0.6); outline-offset: 3px; }
  .noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .tr-1 { grid-area: tr-1; }
  .tr-2 { grid-area: tr-2; }
  .tr-3 { grid-area: tr-3; }
  .tr-4 { grid-area: tr-4; }
  .tr-5 { grid-area: tr-5; }
  .tr-6 { grid-area: tr-6; }
  .tr-7 { grid-area: tr-7; }
  .tr-8 { grid-area: tr-8; }
  .tr-9 { grid-area: tr-9; }
  .tr-10 { grid-area: tr-10; }
  .tr-11 { grid-area: tr-11; }
  .tr-12 { grid-area: tr-12; }
  .tr-13 { grid-area: tr-13; }
  .tr-14 { grid-area: tr-14; }
  .tr-15 { grid-area: tr-15; }
  .tr-16 { grid-area: tr-16; }
  .tr-17 { grid-area: tr-17; }
  .tr-18 { grid-area: tr-18; }
  .tr-19 { grid-area: tr-19; }
  .tr-20 { grid-area: tr-20; }
  .tr-21 { grid-area: tr-21; }
  .tr-22 { grid-area: tr-22; }
  .tr-23 { grid-area: tr-23; }
  .tr-24 { grid-area: tr-24; }
  .tr-25 { grid-area: tr-25; }
  .brand-tracker.tr-1:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 20deg; --ty: -10deg; }
  .brand-tracker.tr-2:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 20deg; --ty: -5deg; }
  .brand-tracker.tr-3:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 20deg; --ty: 0deg; }
  .brand-tracker.tr-4:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 20deg; --ty: 5deg; }
  .brand-tracker.tr-5:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 20deg; --ty: 10deg; }
  .brand-tracker.tr-6:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 10deg; --ty: -10deg; }
  .brand-tracker.tr-7:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 10deg; --ty: -5deg; }
  .brand-tracker.tr-8:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 10deg; --ty: 0deg; }
  .brand-tracker.tr-9:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 10deg; --ty: 5deg; }
  .brand-tracker.tr-10:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 10deg; --ty: 10deg; }
  .brand-tracker.tr-11:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 0deg; --ty: -10deg; }
  .brand-tracker.tr-12:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 0deg; --ty: -5deg; }
  .brand-tracker.tr-13:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 0deg; --ty: 0deg; }
  .brand-tracker.tr-14:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 0deg; --ty: 5deg; }
  .brand-tracker.tr-15:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: 0deg; --ty: 10deg; }
  .brand-tracker.tr-16:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -10deg; --ty: -10deg; }
  .brand-tracker.tr-17:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -10deg; --ty: -5deg; }
  .brand-tracker.tr-18:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -10deg; --ty: 0deg; }
  .brand-tracker.tr-19:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -10deg; --ty: 5deg; }
  .brand-tracker.tr-20:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -10deg; --ty: 10deg; }
  .brand-tracker.tr-21:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -20deg; --ty: -10deg; }
  .brand-tracker.tr-22:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -20deg; --ty: -5deg; }
  .brand-tracker.tr-23:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -20deg; --ty: 0deg; }
  .brand-tracker.tr-24:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -20deg; --ty: 5deg; }
  .brand-tracker.tr-25:hover ~ .brand-face { transition: 125ms ease-in-out; --tx: -20deg; --ty: 10deg; }
  @media (max-width: 720px) {
    .brands-grid { grid-template-columns: 1fr; }
    .brand-compact-grid { grid-template-columns: repeat(2, minmax(140px, 1fr)); }
    .brand-card { --brand-card-height: 240px; }
    .brand-canvas { pointer-events: none; }
  }
  .marquee {
    margin: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    border-top: 1px solid rgba(212,175,55,0.3);
    border-bottom: 1px solid rgba(212,175,55,0.3);
    padding: 4px 0;
    background: linear-gradient(90deg, rgba(212,175,55,0.08), rgba(245,236,205,0.35));
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee-track {
    display: flex;
    gap: 16px;
    white-space: nowrap;
    align-items: center;
    animation: marquee 18s linear infinite;
  }
  .logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: none;
    background: transparent;
    box-shadow: none;
    min-width: 100px;
    min-height: 32px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--text);
    text-transform: uppercase;
  }
  .logo-chip img {
    max-height: 28px;
    width: auto;
    display: block;
    filter: saturate(0.92) contrast(0.96);
  }

  /* Maison gallery */
  html.no-scroll {
    overflow: hidden;
    height: 100%;
  }
  body.no-scroll {
    overflow: hidden;
    height: 100%;
  }
  .maison-gallery {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .maison-gallery.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .maison-gallery__backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
    backdrop-filter: none;
  }
  .maison-gallery__panel {
    position: relative;
    width: min(1200px, 100%);
    max-height: 92vh;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    transform: translateY(12px) scale(0.98);
    transition: transform 0.25s ease;
    z-index: 1;
  }
  .maison-gallery.is-open .maison-gallery__panel { transform: translateY(0) scale(1); }
  .maison-gallery__header {
    display: none;
  }
  .maison-gallery__title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
  }
  .maison-gallery__count {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
  }
  .maison-gallery__grid {
    padding: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: center;
    justify-items: center;
    overflow: visible;
  }
  .maison-gallery__item {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    aspect-ratio: auto;
    box-shadow: none;
  }
  .maison-gallery__item img {
    width: 100%;
    height: auto;
    max-height: clamp(180px, 40vh, 420px);
    object-fit: contain;
    transition: transform 0.35s ease;
  }
  .maison-gallery__item:hover img { transform: scale(1.04); }
  @media (max-width: 640px) {
    .maison-gallery { padding: 16px; }
    .maison-gallery__grid {
      padding: 0;
      gap: 10px;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .maison-gallery__item img { max-height: clamp(140px, 30vh, 240px); }
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Looping gallery */
  .loop-shell {
    position: relative;
    margin-top: 32px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: clamp(22px, 4vw, 36px) clamp(14px, 3vw, 28px) 64px;
    display: grid;
    place-items: center;
    isolation: isolate;
  }
  .loop-images {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    background: linear-gradient(180deg, rgba(212,175,55,0.08), rgba(255,255,255,0.86));
    border-radius: 12px;
    padding: 18px 8px 56px;
  }
  .carousel-track {
    --item-size: clamp(200px, 22vw, 320px);
    --left: calc(-1 * var(--item-size) * var(--total));
    position: relative;
    width: 100%;
    height: var(--item-size);
    min-height: var(--item-size);
  }
  .carousel-item {
    position: absolute;
    top: 50%;
    left: 100%;
    width: var(--item-size);
    height: var(--item-size);
    display: flex;
    justify-content: center;
    perspective: 1000px;
    transform: translateY(-50%);
    transform-style: preserve-3d;
    animation: scroll-left var(--time) linear infinite;
    animation-delay: calc(var(--time) / var(--total) * (var(--i) - 1) - var(--time));
    will-change: left, transform;
    transition: transform 0.5s ease-in-out;
  }
  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
    transform: rotateY(-45deg);
    transition: transform 0.5s ease-in-out;
    mask-image: linear-gradient(black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(black 70%, transparent 100%);
  }
  .hero .carousel-item.is-active img {
    transform: rotateY(0deg) translateY(-6px);
  }
  .carousel-item:hover img { transform: rotateY(0deg) translateY(-6px); }
  @keyframes scroll-left { to { left: var(--left); } }
  .hero .hero-track {
    --item-size: clamp(200px, 26vw, 320px);
    --left: calc(-1 * var(--item-size) * var(--total));
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(12px, 4vw, 24px);
    box-sizing: content-box;
  }
  .scroll-down {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    font-size: 14px;
    color: var(--text);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .scroll-down .arrow {
    display: inline-block;
    font-size: 16px;
    animation: scroll 1.6s ease-in-out infinite;
  }

  /* About */
  .about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    align-items: center;
  }
  .about .image-wrapper {
    position: relative;
    display: grid;
    place-items: center;
    padding: 6px;
    border-radius: 18px;
    overflow: visible;
    isolation: isolate;
  }
  .about .image-wrapper::after {
    display: none;
  }
  .about .about-card {
    position: relative;
    width: min(360px, 100%);
    aspect-ratio: 3 / 4;
    background: #f1efe7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(0,0,0,0.22);
  }
  .about .about-card > .child {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: clip-path 0.6s ease, filter 0.6s ease;
    z-index: 1;
    background-image: var(--photo-1, var(--photo));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: inherit;
  }
  .about .about-card .card-1 {
    clip-path: polygon(0% 0%, 75% 0%, 0% 75%);
    z-index: 3;
    background-image:
      linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.1)),
      var(--photo-1, var(--photo));
  }
  .about .about-card .card-1:hover {
    clip-path: polygon(0% 0%, 170% 0%, 0% 170%);
  }
  .about .about-card .card-1:has(~ .card-2:hover),
  .about .about-card .card-1:has(~ .card-3:hover) {
    clip-path: polygon(0% 0%, 15% 0%, 0% 15%);
  }
  .about .about-card .card-2 {
    z-index: 1;
    background-image:
      linear-gradient(145deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.12)),
      var(--photo-2, var(--photo));
  }
  .about .about-card .card-3 {
    clip-path: polygon(25% 100%, 100% 25%, 100% 100%);
    z-index: 2;
    background-image:
      linear-gradient(140deg, rgba(255, 255, 255, 0.28), rgba(0, 0, 0, 0.15)),
      var(--photo-3, var(--photo));
  }
  .about .about-card .card-3:hover {
    clip-path: polygon(-70% 100%, 100% -70%, 100% 100%);
  }
  .about .about-card .card-1:hover ~ .card-3,
  .about .about-card .card-2:hover ~ .card-3 {
    clip-path: polygon(85% 100%, 100% 85%, 100% 100%);
  }
  .about .about-card:hover .child { filter: saturate(1.06); }

  /* Chi Siamo (#about): senza scrollbar verticale interna.
     Su `.section`, overflow-x:hidden + overflow-y:visible viene risolto come overflow-y:auto → contenitore scrollabile. */
  #about.section {
    overflow: visible;
  }
  #about .container.about,
  #about .about,
  #about .about .reveal,
  #about .about .image-wrapper {
    overflow: visible;
    max-height: none;
  }

  .quote {
    margin-top: 24px;
    padding: 16px 18px;
    background: rgba(212,175,55,0.08);
    border-left: 3px solid #d4af37;
    border-radius: 12px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text);
  }

  /* Works */
  .works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
  }
  .works-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }
  .works-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.32);
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.4px;
  }
  .works-cta {
    margin-top: 18px;
    width: fit-content;
    --cta-height: 46px;
  }
  .bounce-stage {
    position: relative;
    width: min(720px, 100%);
    min-height: 320px;
    height: auto;
    padding: clamp(20px, 4vw, 36px) clamp(12px, 3vw, 28px);
    margin: 0 auto;
    display: grid;
    place-items: center;
    perspective: 1400px;
    isolation: isolate;
    overflow: visible;
  }
  .bounce-stage::after {
    content: '';
    position: absolute;
    inset: 12% 14%;
    background: radial-gradient(circle, rgba(212,175,55,0.15), rgba(212,175,55,0));
    filter: blur(10px);
    z-index: 0;
  }
  .work-card {
    position: absolute;
    width: 200px;
    aspect-ratio: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 24px 50px rgba(0,0,0,0.22);
    transform: scale(0) var(--base-transform, none);
    opacity: 0;
    transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
    z-index: 1;
    cursor: pointer;
  }
  .work-card.is-in {
    transform: var(--base-transform, none);
    opacity: 1;
  }
  .work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.02);
  }
  .work-card::after {
    display: none;
    content: none;
  }
  .work-card.is-active {
    z-index: 3;
    box-shadow: 0 26px 54px rgba(0,0,0,0.26);
  }

  /* Shop */
  .shop {
    background: linear-gradient(180deg, #fff9ec 0%, #f8f1df 36%, #fafaf5 100%);
    overflow-x: hidden;
    /* allow vertical scroll to pass through the section */
    overflow-y: visible;
    overscroll-behavior: auto;
  }
  .shop::before,
  .shop::after {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.22), transparent 60%);
    filter: blur(32px);
    opacity: 0.8;
    z-index: 0;
  }
  .shop::before { top: -120px; right: 8%; }
  .shop::after {
    bottom: -140px;
    left: -6%;
    background: radial-gradient(circle at 60% 60%, rgba(132,96,28,0.18), transparent 62%);
  }
  /* Collections: evita doppie barre di scorrimento nei contenitori prodotti */
  [data-catalog] {
    overflow: visible !important;
  }
  [data-catalog] > .container {
    overflow: visible !important;
    max-height: none;
  }
  [data-catalog] .catalog-combined,
  [data-catalog] .catalog-grid {
    overflow: visible !important;
    max-height: none;
  }
  /* Index cards: niente scrollbar annidate nelle sezioni card della home */
  #brands,
  #brands .brands-grid,
  #brands .brand-compact-grid {
    overflow: visible !important;
  }
  .vetrina-index,
  .vetrina-index .catalog-carousel,
  .vetrina-index .category-block {
    overflow: hidden !important;
  }
  .vetrina-index .catalog-carousel__viewport {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    height: auto !important;
    max-height: none !important;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    touch-action: pan-x !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .vetrina-index .catalog-carousel__viewport::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .vetrina-index .catalog-carousel__track {
    overflow: visible !important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overscroll-behavior: contain;
    touch-action: pan-x !important;
  }
  .shop-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 28px;
  }
  .muted { color: var(--muted); }
  .shop-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .pill {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.4);
    background: rgba(255,255,255,0.85);
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--text);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  .pill.ghost {
    background: rgba(0,0,0,0.04);
    border-style: dashed;
    color: var(--muted);
    box-shadow: none;
  }
  .filters-bar {
    display: grid;
    gap: 24px;
    margin: 0 auto 48px;
    width: 100%;
    scroll-margin-top: 110px;
  }
  .filters-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .filters-toggle {
    display: none;
    font-size: 20px;
    background: transparent;
    border: none;
    padding: 1.2em 1.8em;
    color: var(--text);
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    transition: 0.5s ease;
  }
  .filters-toggle:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 2px;
  }
  .filters-toggle::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--gold-grad);
    transition: 0.5s ease;
  }
  .filters-toggle:hover {
    color: #2f2412;
    transition-delay: 0.5s;
  }
  .filters-toggle:hover::before { width: 100%; }
  .filters-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    width: 100%;
    background: var(--gold-grad);
    transition: 0.4s ease;
    z-index: -1;
  }
  .filters-toggle:hover::after {
    height: 100%;
    transition-delay: 0.4s;
    color: aliceblue;
  }
  .filters-bar.is-open .filters-toggle {
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  }
  .filters-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .filters-count {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    letter-spacing: 0.2px;
    justify-self: start;
    text-align: left;
  }
  .filters-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
    align-items: start;
  }
  .filters-grid .filter-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
    min-width: 0;
  }
  #prodotti .filters-grid .filter-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: start;
  }
  .filters-grid .filter-group > .filter-field {
    min-width: 0;
  }
  .filters-grid > .filter-field {
    min-width: 0;
  }
  #saldi .filters-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  #saldi .filters-count { white-space: nowrap; }
  #saldi .filters-grid {
    display: flex;
    flex: 0 1 auto;
    flex-wrap: nowrap;
    align-items: flex-start;
    max-width: none;
    margin: 0;
    overflow-x: auto;
    min-width: 0;
    width: 100%;
    justify-content: center;
  }
  .filter-field {
    display: grid;
    gap: 8px;
    font-size: 14px;
  }
  .filter-field > span {
    font-size: 12px;
    letter-spacing: 0.2px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
  }
  .filter-select {
    position: relative;
  }
  .filter-select::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(92,85,70,0.8);
    border-bottom: 2px solid rgba(92,85,70,0.8);
    transform: translateY(-35%) rotate(45deg);
    pointer-events: none;
  }
  .filter-select select {
    width: 100%;
    padding: 8px 28px 8px 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0,0.18);
    background: transparent;
    font: inherit;
    font-weight: 600;
    letter-spacing: 0.2px;
    appearance: none;
    cursor: pointer;
  }
  .filter-select select:focus {
    outline: 2px solid rgba(212,175,55,0.4);
    outline-offset: 2px;
  }
  .filter-field--compact .filter-select select {
    min-width: 86px;
  }
  .filter-field--price .filter-select { display: none; }
  .price-slider {
    display: grid;
    gap: 4px;
    width: 100%;
  }
  .price-slider__value {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
  }
  .price-slider__currency {
    font-size: 9px;
    letter-spacing: 0.4px;
    color: var(--muted);
  }
  .price-slider__numbers {
    position: relative;
    height: 1em;
    min-width: 6ch;
    overflow: hidden;
  }
  .price-slider__number {
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .price-slider__number--current { transform: translateY(0); opacity: 1; }
  .price-slider__number--next { transform: translateY(100%); opacity: 0; }
  .price-slider__numbers.is-animating .price-slider__number--current {
    transform: translateY(-100%);
    opacity: 0;
  }
  .price-slider__numbers.is-animating .price-slider__number--next {
    transform: translateY(0);
    opacity: 1;
  }
  .price-slider__range {
    width: 100%;
    height: 4px;
    accent-color: var(--gold);
  }
  .price-slider__limits {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.2px;
    color: var(--muted);
  }
  .filter-field--swatches .filter-swatches {
    display: grid;
    grid-template-columns: repeat(3, 18px);
    align-items: center;
    gap: 8px 10px;
    justify-content: start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    min-height: 0;
  }
  .filter-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.18);
    cursor: pointer;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
    padding: 0;
    background: transparent;
    appearance: none;
  }
  .filter-swatch.is-active {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 2px;
  }
  .filter-swatch--argento { background: linear-gradient(135deg, #bfc4cc, #f5f6f8); }
  .filter-swatch--nero { background: linear-gradient(135deg, #0f0f12, #2b2b32); }
  .filter-swatch--oro { background: linear-gradient(135deg, #d4af37, #f7e4a3); }
  .filter-swatch--rosa { background: linear-gradient(135deg, #e0a6a1, #f6d4c8); }
  .filter-swatch--bianco { background: linear-gradient(135deg, #ffffff, #f2f2f2); }
  .filter-swatch--arcobaleno {
    background: conic-gradient(
      #f44336,
      #ff9800,
      #ffeb3b,
      #4caf50,
      #2196f3,
      #9c27b0,
      #f44336
    );
  }
  .filters {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: grid;
    gap: 12px;
  }
  .filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .filter-label {
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-right: 4px;
  }
  .filter-chip {
    border: 1px solid rgba(212,175,55,0.38);
    background: rgba(255,255,255,0.85);
    color: var(--text);
    padding: 9px 14px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    font: inherit;
    appearance: none;
  }
  .filter-chip:hover { transform: translateY(-1px); }
  .filter-chip.is-active {
    background: linear-gradient(120deg, #d4af37, #f1d97c);
    color: #2f2412;
    box-shadow: 0 12px 30px rgba(212,175,55,0.35);
  }
  .filter-chip:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 2px;
  }
  .color-chip {
    box-shadow: none;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(0,0,0,0.03);
  }
  .color-chip.is-active {
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
    border-color: rgba(212,175,55,0.5);
  }
  .swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.06);
  }
  .swatch.oro { background: linear-gradient(135deg, #d4af37, #f7e4a3); }
  .swatch.argento { background: linear-gradient(135deg, #c3c7ce, #f4f6fb); }
  .swatch.rosa { background: linear-gradient(135deg, #e0a6a1, #f6d4c8); }
  .swatch.nero { background: linear-gradient(135deg, #0f0f12, #2b2b32); }
  .filter-search {
    display: grid;
    gap: 8px;
  }
  .filter-search label {
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
  }
  .filter-search input {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    font-size: 14px;
    outline: none;
    box-shadow: inset 0 0 0 1px transparent;
    transition: border 0.2s ease, box-shadow 0.2s ease;
  }
  .filter-search input:focus {
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
  }
  .catalog-empty {
    margin: 18px 0 0;
    color: var(--muted);
    font-style: italic;
  }
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 10px;
  }
  .product-card {
    position: relative;
    display: grid;
    grid-template-rows: 220px auto;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 24px 40px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.16);
  }
  .product-visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(0,0,0,0.05));
  }
  .product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
  }
  .product-card:hover .product-visual img { transform: scale(1.06); }
  .floating-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .price-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(0,0,0,0.75);
    color: #f7e9b8;
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 12px 26px rgba(0,0,0,0.3);
  }
  .product-body {
    padding: 16px 16px 18px;
    display: grid;
    gap: 10px;
  }
  .product-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }
  .product-name {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
  }
  .product-sub {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
  }
  .color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.06);
  }
  .color-dot.oro { background: linear-gradient(135deg, #d4af37, #f1d97c); }
  .color-dot.rosa { background: linear-gradient(135deg, #e0a6a1, #f6d4c8); }
  .color-dot.argento { background: linear-gradient(135deg, #c3c7ce, #f4f6fb); }
  .color-dot.nero { background: linear-gradient(135deg, #0f0f12, #2b2b32); }
  .product-desc {
    margin: 0;
    color: var(--muted);
  }
  .product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .meta-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .meta-value {
    font-weight: 700;
    color: var(--text);
  }
  .ghost-btn {
    border: 1px solid rgba(212,175,55,0.5);
    background: transparent;
    color: var(--text);
    padding: 9px 14px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .ghost-btn:hover {
    background: linear-gradient(120deg, #d4af37, #f1d97c);
    color: #2f2412;
    box-shadow: 0 10px 24px rgba(212,175,55,0.3);
  }
  .shop-footer {
    margin-top: 24px;
    padding: 18px 16px;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.3);
    background: rgba(255,255,255,0.9);
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .shop-note {
    margin: 0;
    color: var(--muted);
    max-width: 720px;
  }
  .shop-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  /* Catalogo */
  .category-block {
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
    scroll-margin-top: 110px;
  }
  .category-block:first-of-type {
    margin-top: 20px;
    padding-top: 0;
    border-top: 0;
  }
  .category-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
  }
  .category-eyebrow {
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
  }
  .category-title {
    margin: 0 0 6px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3vw, 28px);
  }
  .category-sub {
    margin: 0;
    color: var(--muted);
    max-width: 520px;
  }
  .catalog-grid {
    margin-top: 10px;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .catalog-grid:not(.catalog-grid--paginated) > .product-card--catalog:nth-child(n + 6) {
    display: none;
  }
  .catalog-combined {
    margin-top: 20px;
    scroll-margin-top: 110px;
  }
  .catalog-pagination {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .catalog-pagination__btn {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.12);
    background: rgba(255,255,255,0.96);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
    font: inherit;
  }
  .catalog-pagination__btn:hover {
    transform: translateY(-1px);
  }
  .catalog-pagination__btn.is-active,
  .catalog-pagination__btn[aria-current='page'] {
    background: var(--gold-grad);
    color: #2f2412;
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 12px 26px rgba(212,175,55,0.28);
  }
  .catalog-pagination__btn:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 2px;
  }
  .product-card--catalog {
    display: block;
    grid-template-rows: none;
    min-height: 260px;
    aspect-ratio: 200 / 260;
    width: 100%;
    max-width: none;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transition: all 0.4s;
    transform-origin: center;
  }
  .product-card--catalog:hover,
  .product-card--catalog:focus-visible {
    border-radius: 10px;
    cursor: pointer;
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 10px 18px rgba(0,0,0,0.12);
    background: #fff;
    z-index: 2;
  }
  .product-card--catalog .product-visual,
  .product-card--catalog .product-body {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s;
    border-radius: inherit;
  }
  .product-card--catalog .product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: scale(1);
    background: #fff;
  }
  .product-card--catalog .product-visual img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    padding: 0;
    transform: none;
  }
  .product-card--catalog .product-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    opacity: 0;
    transform: rotate(90deg) scale(-1);
  }
  .product-card--catalog:hover .product-visual,
  .product-card--catalog:focus-visible .product-visual {
    opacity: 0;
    transform: scaleY(0);
  }
  .product-card--catalog:hover .product-body,
  .product-card--catalog:focus-visible .product-body {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
  .product-card--catalog .product-tag,
  .product-card--catalog .product-sub,
  .product-card--catalog .product-old-price {
    color: rgba(10, 18, 32, 0.7);
  }
  .product-card--catalog .product-name,
  .product-card--catalog .product-price {
    color: #0c1626;
  }
  .product-card--catalog .product-price-row { justify-content: center; }
  .product-card--catalog .product-tag {
    font-size: 11px;
    letter-spacing: 1.1px;
  }
  .product-card--catalog .product-name {
    font-size: 15px;
  }
  .product-card--catalog .product-sub {
    font-size: 13px;
  }
  .product-card--catalog .product-price {
    font-size: 15px;
  }
  .product-card--catalog .product-love {
    width: 26px;
    height: 26px;
  }
  .product-card--catalog .product-love .svg-outline,
  .product-card--catalog .product-love .svg-filled {
    width: 13px;
    height: 13px;
  }
  .product-card--catalog .product-love .svg-celebrate {
    width: 28px;
    height: 28px;
  }
  .product-card--catalog .product-chip,
  .product-card--catalog .product-badge {
    padding: 4px 8px;
    font-size: 11px;
  }
  .catalog-grid .product-card--catalog .product-visual,
  .catalog-carousel__track .product-card--catalog .product-visual {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .catalog-grid .product-card--catalog .product-visual img,
  .catalog-carousel__track .product-card--catalog .product-visual img { opacity: 1; }

  @media (hover: none) {
    .product-card--catalog:active,
    .product-card--catalog.is-pressed {
      transform: translateY(-1px) scale(0.99);
      box-shadow: 0 10px 18px rgba(0,0,0,0.12);
    }
    .product-card--catalog:active .product-visual,
    .product-card--catalog.is-pressed .product-visual {
      opacity: 0;
      transform: scaleY(0);
    }
    .product-card--catalog:active .product-body,
    .product-card--catalog.is-pressed .product-body {
      opacity: 1;
      transform: rotate(0deg) scale(1);
      background: rgba(255,255,255,0.94);
      backdrop-filter: blur(2px);
    }
    .product-card:active,
    .product-card.is-pressed {
      transform: translateY(-2px) scale(0.99);
      box-shadow: 0 28px 46px rgba(0,0,0,0.14);
    }
    .product-card:active .product-visual img,
    .product-card.is-pressed .product-visual img { transform: scale(1.04); }
    .curation-card:active,
    .curation-card.is-pressed {
      transform: translateY(-2px) scale(0.99);
      box-shadow: 0 22px 44px rgba(0,0,0,0.16);
    }
    .portal-card:active,
    .portal-card.is-pressed {
      transform: translateY(-2px) scale(0.99);
      box-shadow: 0 24px 46px rgba(0,0,0,0.14);
    }
    .brand-card:active,
    .brand-card.is-pressed { transform: scale(0.99); }
  }

  @media (max-width: 1200px) {
    .catalog-carousel__track { --carousel-columns: 4; }
    .catalog-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .catalog-grid:not(.catalog-grid--paginated) > .product-card--catalog:nth-child(n + 5) { display: none; }
  }

  @media (max-width: 980px) {
    .catalog-carousel__track { --carousel-columns: 3; }
    .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .catalog-grid:not(.catalog-grid--paginated) > .product-card--catalog:nth-child(n + 4) { display: none; }
  }

  @media (max-width: 720px) {
    .catalog-carousel__track { --carousel-columns: 2; }
    .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .catalog-grid:not(.catalog-grid--paginated) > .product-card--catalog:nth-child(n + 3) { display: none; }
  }

  @media (max-width: 480px) {
    .catalog-carousel__track { --carousel-columns: 1; }
    .catalog-grid { grid-template-columns: minmax(0, 1fr); }
    .product-card--catalog { max-width: none; }
    .catalog-grid:not(.catalog-grid--paginated) > .product-card--catalog:nth-child(n + 2) { display: none; }
  }

  /* Catalog carousel */
  .catalog-carousel {
    position: relative;
    margin-top: 0;
    padding: 0 32px 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .catalog-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
.catalog-carousel__viewport.no-vscroll {
    overflow-y: hidden !important;
    scrollbar-width: none;
  }
  .catalog-carousel__viewport.no-vscroll::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
.section.shop .catalog-carousel__viewport {
  overflow-y: hidden;
  /* allow vertical page scroll to pass through while keeping horizontal drag */
  overscroll-behavior: auto;
  touch-action: pan-x pan-y;
  cursor: default;
}
.section.shop .catalog-carousel__viewport:active { cursor: default; }
  .vetrina-index .catalog-carousel__viewport {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    height: auto !important;
    max-height: none !important;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: none;
    touch-action: pan-x !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .vetrina-index .catalog-carousel__viewport::-webkit-scrollbar {
    height: 0;
    width: 0;
    display: none;
  }
  .catalog-carousel__viewport:active { cursor: grabbing; }
  .catalog-carousel__viewport:focus-visible {
    outline: 3px solid rgba(212,175,55,0.35);
    outline-offset: 4px;
  }
  .catalog-carousel__viewport::-webkit-scrollbar {
    height: 0;
    width: 0;
  }
  .catalog-carousel__viewport::-webkit-scrollbar-thumb {
    background: rgba(212,175,55,0.45);
    border-radius: 999px;
  }
  .catalog-carousel__track {
    display: flex;
    align-items: stretch;
    --carousel-gap: 8px;
    --carousel-columns: 5;
    gap: var(--carousel-gap);
    padding: 4px 0 10px;
  }
  .catalog-carousel__track .product-card--catalog {
    flex: 0 0 calc((100% - ((var(--carousel-columns) - 1) * var(--carousel-gap))) / var(--carousel-columns));
    width: calc((100% - ((var(--carousel-columns) - 1) * var(--carousel-gap))) / var(--carousel-columns));
    scroll-snap-align: start;
  }
  .catalog-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    z-index: 2;
  }
  .catalog-carousel__nav svg {
    width: 18px;
    height: 18px;
    stroke: #5c5546;
    stroke-width: 2.4;
    fill: none;
  }
  .catalog-carousel__nav:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: none;
  }
  .catalog-carousel__nav:focus-visible {
    outline: 3px solid rgba(212,175,55,0.4);
    outline-offset: 3px;
  }
  .catalog-carousel__nav[disabled] {
    opacity: 0.35;
    cursor: default;
    box-shadow: none;
  }
  .catalog-carousel__nav--prev { left: 6px; }
  .catalog-carousel__nav--next { right: 6px; }
  .catalog-carousel__progress {
    height: 3px;
    margin: 6px 12px 0;
    border-radius: 999px;
    background: rgba(0,0,0,0.08);
    overflow: hidden;
  }
  .catalog-carousel__progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: var(--gold-grad);
    transition: width 0.2s ease;
  }

  @media (max-width: 720px) {
    .catalog-carousel { padding: 6px 44px 18px; }
    .catalog-carousel__nav { width: 36px; height: 36px; }
  }

  @media (max-width: 480px) {
    .catalog-carousel { padding: 4px 14px 14px; }
    .catalog-carousel__nav { display: none; }
  }
  .product-love {
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;
    width: 46px;
    height: 46px;
    z-index: 3;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 12px;
    transition: transform 0.2s ease;
  }
  .product-love:hover { transform: scale(1.03); }
  .product-love:focus-visible {
    outline: none;
  }
  .heart-container {
    --heart-color: var(--heart-red);
    position: relative;
    width: 100%;
    height: 100%;
    transition: 0.3s;
  }
  .heart-container .checkbox {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 20;
    cursor: pointer;
    pointer-events: none;
  }
  .heart-container .svg-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .heart-container .svg-outline,
  .heart-container .svg-filled {
    position: absolute;
    width: 24px;
    height: 24px;
    overflow: visible;
  }
  .heart-container .svg-outline {
    fill: none;
    stroke: var(--heart-color);
    stroke-width: 2.4px;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .heart-container .svg-filled {
    fill: var(--heart-color);
    animation: keyframes-svg-filled 1s;
    display: none;
  }
  .heart-container .svg-celebrate {
    position: absolute;
    width: 46px;
    height: 46px;
    animation: keyframes-svg-celebrate 0.5s;
    animation-fill-mode: forwards;
    display: none;
    stroke: var(--heart-color);
    fill: var(--heart-color);
    stroke-width: 2px;
  }
  .heart-container .checkbox:checked ~ .svg-container .svg-outline,
  .product-love.is-active .svg-outline,
  .product-wishlist.is-active .svg-outline { display: none; }
  .heart-container .checkbox:checked ~ .svg-container .svg-filled,
  .product-love.is-active .svg-filled,
  .product-wishlist.is-active .svg-filled { display: block; }
  .heart-container .checkbox:checked ~ .svg-container .svg-celebrate,
  .product-love.is-active .svg-celebrate,
  .product-wishlist.is-active .svg-celebrate { display: block; }
  @keyframes keyframes-svg-filled {
    0% { transform: scale(0); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); filter: brightness(1.5); }
  }
  @keyframes keyframes-svg-celebrate {
    0% { transform: scale(0); }
    50% { opacity: 1; filter: brightness(1.5); }
    100% { transform: scale(1.4); opacity: 0; display: none; }
  }
  .product-chip {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: #4a3f2a;
    font-size: 11px;
    letter-spacing: 0.4px;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .product-swatches {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
  }
  .product-swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.18);
    background: var(--swatch, #d4af37);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0;
    appearance: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .product-swatch:hover { transform: scale(1.08); }
  .product-swatch.is-active { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6); }
  .product-swatch:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 2px;
  }
  .product-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: #4a3f2a;
    font-size: 11px;
    letter-spacing: 0.6px;
    font-weight: 700;
  }
  .product-badge--sale {
    background: #f1e4d4;
    color: #8b3a2f;
  }
  .product-tag {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 11px;
    color: #7b6a3d;
    font-weight: 700;
  }
  .product-tag--sale { color: #b03b30; }
  .product-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .product-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--text);
  }
  .product-old-price {
    color: var(--muted);
    font-size: 14px;
    text-decoration: line-through;
  }

  /* Product page */
  .product-page {
    background: linear-gradient(180deg, #fffdf7 0%, #f8f1df 100%);
    scroll-margin-top: 110px;
  }
  .section.product-page {
    padding-top: 24px;
  }
  .product-page .container {
    position: relative;
    z-index: 1;
  }
  .product-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: start;
  }
  .product-gallery {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    min-height: 420px;
    display: grid;
    align-items: center;
  }
  .gallery-media {
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  .gallery-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
  }
  .gallery-slide {
    flex: 0 0 100%;
    display: grid;
    place-items: center;
    margin: 0;
  }
  .gallery-slide img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
  }
  .gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(0,0,0,0.08);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    color: #3a3222;
    cursor: pointer;
    padding: 0;
    appearance: none;
  }
  .gallery-nav.prev { left: 18px; }
  .gallery-nav.next { right: 18px; }
  .gallery-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
  }
  .gallery-nav svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }
  .gallery-dots span,
  .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0,0,0,0.12);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
  }
  .gallery-dots .is-active {
    width: 18px;
    background: rgba(0,0,0,0.35);
  }
  .product-info {
    display: grid;
    gap: 12px;
  }
  .product-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: none;
    transition: transform 0.2s ease, color 0.2s ease;
    margin-bottom: 18px;
  }
  .product-back svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .product-back:hover {
    transform: translateY(-1px);
    color: #2f2412;
  }
  .product-back:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 2px;
  }
  .product-breadcrumbs {
    margin: 0;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .product-page__title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 34px);
  }
  .product-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .product-page__subtitle {
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--muted);
  }
  .product-page .product-price { font-size: 28px; }
  .product-installments { margin: 0; color: var(--muted); }
  .product-cta-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex-wrap: nowrap;
    width: 100%;
    --cta-height: 52px;
  }
  .product-cta-row .product-cta {
    flex: 1;
    width: auto;
  }
  .qty-control {
    display: inline-flex;
    align-items: stretch;
    height: var(--cta-height);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
  }
  .qty-btn {
    width: 40px;
    height: 100%;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .qty-btn:hover { background: rgba(0,0,0,0.04); }
  .qty-btn:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: -2px;
  }
  .qty-input {
    width: 46px;
    height: 100%;
    border: 0;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    background: transparent;
    outline: none;
    line-height: 1;
    -moz-appearance: textfield;
  }
  .qty-input:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: -2px;
  }
  .qty-input::-webkit-outer-spin-button,
  .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .product-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: var(--cta-height);
    border-radius: 5px;
    background: #2f281b;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    cursor: pointer;
    border: none;
    padding: 0;
  }
  .product-cta::after {
    content: "";
    width: 0%;
    height: 100%;
    background: var(--gold-grad);
    position: absolute;
    transition: all 0.4s ease-in-out;
    right: 0;
    z-index: 0;
  }
  .product-cta:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  .product-cta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 0 22px;
    color: #f6e8c2;
    font-size: 1.05em;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    z-index: 1;
    line-height: 1;
    transition: all 0.3s ease-in-out;
  }
  .product-cta:hover span {
    color: #2f2412;
    animation: scaleUp 0.3s ease-in-out;
  }
  .product-cta:focus-visible {
    outline: 2px solid rgba(212,175,55,0.6);
    outline-offset: 2px;
  }
  @keyframes scaleUp {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
  }
  .product-wishlist {
    border: 0;
    padding: 0;
    background: none;
    color: var(--heart-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }
  .product-wishlist--icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    color: var(--heart-red);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
  }
  .product-page .product-wishlist--icon {
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .product-wishlist .heart-container {
    --heart-color: currentColor;
    width: 24px;
    height: 24px;
  }
  .product-wishlist--icon .heart-container {
    width: 100%;
    height: 100%;
  }
  .product-wishlist > svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .product-wishlist.is-active,
  .product-wishlist--icon.is-active {
    color: var(--heart-red);
    border-color: rgba(255,91,137,0.6);
  }
  .product-page .product-wishlist--icon.is-active { border-color: transparent; }
  .product-wishlist.is-active > svg,
  .product-wishlist--icon.is-active > svg {
    fill: currentColor;
  }
  .product-pay {
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: #51452a;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-size: 11px;
    width: fit-content;
    cursor: pointer;
  }
  .product-perks {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
  }
  .product-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .product-options {
    display: grid;
    gap: 14px;
    padding: 6px 0 2px;
  }
  .product-option {
    display: grid;
    gap: 8px;
  }
  .product-option__label {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
  }
  .product-option__values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .product-option__btn {
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    color: var(--text);
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .product-option__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }
  .product-option__btn:focus-visible {
    outline: 2px solid rgba(212,175,55,0.45);
    outline-offset: 2px;
  }
  .product-option__btn.is-active {
    border-color: rgba(212,175,55,0.75);
    box-shadow: 0 12px 20px rgba(212,175,55,0.18);
    background: linear-gradient(180deg, #fffaf0, #fff3d6);
  }
  .product-option__btn--swatch {
    padding: 6px 10px 6px 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .product-option__swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--swatch, #d4af37);
    border: 1px solid rgba(0,0,0,0.18);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
  }
  .product-option__text {
    font-size: 12px;
    color: var(--text);
  }
  .perk-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f4eddc;
    display: grid;
    place-items: center;
    color: #7b6a3d;
    border: 1px solid rgba(0,0,0,0.08);
  }
  .perk-icon svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .product-details {
    margin-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 24px;
  }
  .product-tabs {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 10px;
  }
  .product-tab {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    font-weight: 700;
  }
  .product-tab.is-active { color: var(--text); }
  .product-tab.is-active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold-grad);
    margin-top: 8px;
    border-radius: 999px;
  }
  .product-detail-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 26px;
  }
  .product-description p {
    margin: 0 0 12px;
    color: var(--muted);
  }
  .product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px 20px;
    margin: 0;
  }
  .product-specs div {
    display: grid;
    gap: 4px;
  }
  .product-specs dt {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
  }
  .product-specs dd {
    margin: 0;
    font-weight: 700;
    color: var(--text);
  }

  /* Portal */
  .portal {
    background: linear-gradient(180deg, #ffffff 0%, #faf6ea 60%, #ffffff 100%);
  }
  .portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  .portal-card {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 18px 16px;
    border-radius: 16px;
    border: 1px solid rgba(212,175,55,0.26);
    background: #fff;
    box-shadow: 0 18px 36px rgba(0,0,0,0.1);
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .portal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px rgba(0,0,0,0.14);
  }
  .portal-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .portal-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
  }
  .portal-text {
    margin: 0;
    color: var(--muted);
  }

  /* Curated selections */
  .curated {
    background: linear-gradient(180deg, #f7f1df 0%, #ffffff 60%, #fafaf5 100%);
  }
  .curation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }
  .curation-card {
    display: grid;
    grid-template-rows: 200px auto;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 18px 36px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .curation-card:hover { transform: translateY(-4px); box-shadow: 0 22px 44px rgba(0,0,0,0.16); }
  .curation-image {
    background-size: cover;
    background-position: center;
    filter: saturate(1.02);
    transition: transform 0.45s ease;
  }
  .curation-card:hover .curation-image { transform: scale(1.04); }
  .curation-body {
    padding: 16px 16px 18px;
    display: grid;
    gap: 8px;
  }
  .curation-title {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
  }
  .curation-text {
    margin: 0;
    color: var(--muted);
  }

  /* Perks */
  .perks {
    background: #fff;
  }
  .perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  .perk {
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.28);
    background: linear-gradient(180deg, rgba(212,175,55,0.08), #fff);
    box-shadow: 0 16px 30px rgba(0,0,0,0.08);
  }
  .perk-title {
    margin: 0 0 6px;
    font-weight: 800;
    letter-spacing: 0.3px;
  }
  .perk-text {
    margin: 0;
    color: var(--muted);
  }

  /* Cart */
  .cart {
    background: linear-gradient(180deg, #fff9ec 0%, #ffffff 70%);
  }
  .cart-shell {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
    margin-top: 16px;
  }
  .cart-items {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 18px 36px rgba(0,0,0,0.1);
    min-height: 200px;
  }
  .cart-empty {
    text-align: center;
    display: grid;
    gap: 10px;
    padding: 24px 0;
  }
  .cart-items.has-items .cart-empty { display: none; }
  .cart-list {
    display: grid;
    gap: 12px;
  }
  .cart-item {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    background: #fdfbf3;
    border: 1px solid rgba(212,175,55,0.22);
  }
  .cart-thumb {
    width: 84px;
    height: 84px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  }
  .cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .cart-info {
    display: grid;
    gap: 4px;
  }
  .cart-name {
    margin: 0;
    font-weight: 700;
    color: var(--text);
  }
  .cart-qty {
    margin-left: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    background: rgba(212,175,55,0.16);
    padding: 3px 6px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .cart-meta {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
  }
  .cart-price {
    font-weight: 800;
    color: var(--text);
  }
  .cart-remove {
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-weight: 700;
  }
  .cart-summary {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 18px 36px rgba(0,0,0,0.1);
    display: grid;
    gap: 10px;
  }
  .cart-checkout-btn {
    --color: #d4af37;
    --color2: #2f2412;
    padding: 0.8em 1.75em;
    background-color: transparent;
    border-radius: 6px;
    border: 0.3px solid var(--color);
    transition: 0.5s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    font-weight: 500;
    font-size: 17px;
    font-family: 'Montserrat', 'Playfair Display', system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
    color: var(--color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 360px);
    margin-top: 10px;
    justify-self: center;
    white-space: nowrap;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }
  .cart-checkout-btn::after,
  .cart-checkout-btn::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    transform: skew(90deg) translate(-50%, -50%);
    position: absolute;
    inset: 50%;
    left: 25%;
    z-index: -1;
    transition: 0.5s ease-out;
    background-color: var(--color);
  }
  .cart-checkout-btn::before {
    top: -50%;
    left: -25%;
    transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
  }
  .cart-checkout-btn:hover::before {
    transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
  }
  .cart-checkout-btn:hover::after {
    transform: skew(45deg) translate(-50%, -50%);
  }
  .cart-checkout-btn:hover {
    color: var(--color2);
  }
  .cart-checkout-btn:active {
    filter: brightness(0.7);
    transform: scale(0.98);
  }
  .cart-checkout-btn span {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
  }
  .cart-progress {
    display: grid;
    gap: 8px;
    margin-bottom: 4px;
  }
  .cart-progress-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: rgba(0,0,0,0.08);
    overflow: visible;
  }
  .cart-progress-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    border-radius: inherit;
    background: var(--gold-grad);
    transition: width 0.25s ease;
    z-index: 1;
  }
  .cart-progress-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff9e4 0%, #f1d97c 55%, #d4af37 100%);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18), 0 0 0 3px rgba(212,175,55,0.2);
    z-index: 2;
  }
  .cart-progress-fill.is-complete::after {
    background: radial-gradient(circle at 30% 30%, #e7fff1 0%, #6bd4b8 60%, #2f6f4e 100%);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18), 0 0 0 3px rgba(47,111,78,0.2);
  }
  .cart-progress-text {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
  }
  .cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
  }
  .cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
    font-size: 18px;
    color: var(--text);
  }
  .cart-note {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 16px;
  }


  /* Consult */
  .consult-shell {
    position: relative;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
  }
  .consult-shell::before {
    content: '';
    position: absolute;
    inset: -4%;
    border-radius: 20px;
    background-image: linear-gradient(var(--rotate), #fff6dd, #f6e0a3 35%, #d4af37 60%, #f6e0a3);
    animation: spin 3s linear infinite;
    z-index: 0;
  }
  .consult-shell::after {
    content: '';
    position: absolute;
    inset: 6%;
    border-radius: 18px;
    background-image: linear-gradient(var(--rotate), #fff6dd, #f6e0a3 35%, #d4af37 60%, #f6e0a3);
    filter: blur(26px);
    opacity: 0.9;
    animation: spin 3s linear infinite;
    z-index: 0;
  }
  .consult {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    border-radius: 16px;
    width: 98%;
    margin: 1% auto;
    padding: clamp(24px, 5vw, 42px);
    border: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: start;
    box-shadow: none;
  }
  @keyframes spin {
    0% { --rotate: 0deg; }
    100% { --rotate: 360deg; }
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 8px;
    color: var(--text);
  }
  .contact-list a { color: inherit; font-weight: 600; }
  .contact-list strong { color: var(--text); font-weight: 700; }
  form {
    display: grid;
    gap: 12px;
  }
  label {
    font-size: 12px;
    letter-spacing: 0.4px;
    color: var(--muted);
    text-transform: uppercase;
  }
  input, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  input:focus, textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.18);
  }
  textarea { min-height: 120px; resize: vertical; }
  .form-status {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }
  .toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    padding: 12px 18px;
    border-radius: 12px;
    background: #1f1b14;
    color: #ffeab8;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    max-width: min(520px, 92vw);
    box-shadow: 0 18px 36px rgba(0,0,0,0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(212,175,55,0.35);
  }
  .toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .toast.is-error {
    background: #4a1414;
    color: #ffecec;
    border-color: rgba(255,255,255,0.2);
  }
  .toast.is-info {
    background: #2c2519;
    color: #ffeab8;
    border-color: rgba(212,175,55,0.28);
  }
  .btn-dark {
    background: var(--text);
    color: #f6e6b3;
    border-color: transparent;
  }
  .btn-dark:hover { background: #2c2519; color: #ffeab8; }
  .animated-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 36px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;
    background-color: var(--bg-white);
    color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.45);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .animated-button svg {
    position: absolute;
    width: 22px;
    fill: var(--gold);
    z-index: 2;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .animated-button .arr-1 {
    right: 16px;
  }
  .animated-button .arr-2 {
    left: -28%;
  }
  .animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background-color: var(--gold);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .animated-button .text {
    position: relative;
    z-index: 3;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: var(--text);
    border-radius: 14px;
  }
  .animated-button:hover .arr-1 {
    right: -25%;
  }
  .animated-button:hover .arr-2 {
    left: 16px;
  }
  .animated-button:hover .text {
    transform: translateX(12px);
  }
  .animated-button:hover svg {
    fill: var(--text);
  }
  .animated-button:active {
    transform: scale(0.96);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.4);
  }
  .animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
  }
  .animated-button.is-disabled,
  .animated-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
  }

  /* Footer */
  .site-footer {
    padding: 52px 0 64px;
    background: #f6f3ec;
    color: var(--text);
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .site-footer a { color: inherit; }
  .footer-utility {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
  }
  .footer-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 0 18px;
    position: relative;
  }
  .footer-feature:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgba(0,0,0,0.12);
  }
  .footer-feature__icon {
    width: 34px;
    height: 34px;
    color: #3a342a;
    flex: 0 0 auto;
  }
  .footer-feature__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }
  .footer-feature__body h4 {
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .footer-feature__body p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }
  .footer-feature__body a {
    color: var(--text);
    font-weight: 600;
  }
  .footer-feature__body a:hover { color: #1f1b14; }
  .footer-divider {
    height: 1px;
    background: rgba(0,0,0,0.12);
    margin: 36px auto 40px;
  }
  .footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(160px, 1fr));
    gap: 36px;
    align-items: start;
  }
  .footer-newsletter h4,
  .footer-column h4 {
    margin: 0 0 16px;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .footer-newsletter__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    column-gap: 10px;
    row-gap: 10px;
    max-width: 420px;
    width: 100%;
  }
  .footer-newsletter__form input {
    border: 1px solid #cfc7bb;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    outline: none;
  }
  .footer-newsletter__form input::placeholder { color: #9f9688; }
  .footer-newsletter__consent {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    padding: 0;
    border: 0;
    border-radius: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #3b352c;
    background: transparent;
  }
  .footer-newsletter__consent input {
    margin: 2px 0 0;
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    accent-color: #3a342a;
  }
  .footer-newsletter__consent a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .footer-newsletter__form button {
    border: 0;
    background: #3a342a;
    color: #fff;
    padding: 0 22px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    cursor: pointer;
  }
  .footer-newsletter__form button:hover { background: #1f1b14; }

  /* Newsletter: card animata (stile subscribe / linea SVG) */
  .footer-newsletter__form.footer-newsletter__form--card {
    display: block;
    max-width: 340px;
    width: 100%;
  }
  .footer-newsletter__form--card .footer-newsletter__consent {
    margin-top: 14px;
  }
  .footer-newsletter-card {
    background: #fff;
    border-radius: 12px;
    box-shadow:
      0 14px 28px rgba(0, 0, 0, 0.25),
      0 10px 10px rgba(0, 0, 0, 0.22);
    height: 200px;
    overflow: hidden;
    padding: 20px;
    position: relative;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    border: 1px solid rgba(207, 199, 187, 0.35);
  }
  .footer-newsletter-card__title {
    font-size: 1.5em;
    height: 29px;
    margin: 0;
    line-height: 1.1;
    font-family: inherit;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1f1b14;
  }
  .footer-newsletter-card__text {
    color: #5c5650;
    font-size: 0.95em;
    line-height: 1.35;
    height: 38px;
    margin: 5px 0 0;
  }
  .footer-newsletter-card__line {
    left: 0;
    position: absolute;
    width: 340px;
    top: 72px;
    pointer-events: none;
  }
  .footer-newsletter-card__line path {
    fill: none;
    stroke: #3a342a;
    stroke-width: 2;
    stroke-dasharray: 300 1903;
  }
  .footer-newsletter-card.saving .footer-newsletter-card__line path {
    stroke-dashoffset: -472;
    stroke-dasharray: 153 1903;
    transition:
      stroke-dasharray 500ms,
      stroke-dashoffset 500ms;
  }
  .footer-newsletter-card.done .footer-newsletter-card__line path {
    stroke-dashoffset: -762;
    stroke-dasharray: 1095 1903;
    transition:
      stroke-dasharray 1500ms,
      stroke-dashoffset 1500ms;
  }
  .footer-newsletter-card__line2 {
    height: 52px;
    left: 150px;
    opacity: 0;
    position: absolute;
    stroke-dasharray: 6 48;
    stroke-dashoffset: -42;
    top: 158px;
    transform-origin: 50% 50%;
    width: 50px;
    pointer-events: none;
  }
  .footer-newsletter-card__line2 path {
    fill: none;
    stroke: #3a342a;
    stroke-width: 2;
  }
  .footer-newsletter-card.saving .footer-newsletter-card__line2 {
    animation: footerNewsletterRotate 4s 500ms forwards;
  }
  .footer-newsletter-card.done .footer-newsletter-card__line2 {
    animation: footerNewsletterScaleDown 500ms forwards;
  }
  .footer-newsletter__form--card .footer-newsletter-card__input {
    background: transparent;
    border: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: inherit;
    height: 40px;
    margin-top: 20px;
    outline: none !important;
    position: relative;
    width: 100%;
    max-width: 300px;
    color: #1f1b14;
    transform-origin: 0 50%;
    transition:
      transform 500ms,
      opacity 500ms;
  }
  .footer-newsletter-card.saving .footer-newsletter__form--card .footer-newsletter-card__input,
  .footer-newsletter-card.done .footer-newsletter__form--card .footer-newsletter-card__input {
    transform: translateY(-16px) scale(0.8);
  }
  .footer-newsletter-card.done .footer-newsletter__form--card .footer-newsletter-card__input {
    opacity: 0;
  }
  .footer-newsletter__form--card .footer-newsletter-card__input::placeholder {
    color: #9f9688;
  }
  @keyframes footerNewsletterRotate {
    0% {
      transform: rotate(0);
      opacity: 1;
    }
    25% {
      transform: rotate(360deg);
      opacity: 1;
    }
    50% {
      transform: rotate(720deg);
      opacity: 1;
    }
    75% {
      transform: rotate(1080deg);
      opacity: 1;
      stroke-dasharray: 6 48;
      stroke-dashoffset: -42;
    }
    100% {
      transform: rotate(1080deg);
      opacity: 1;
      stroke-dashoffset: 0;
      stroke-dasharray: 36 48;
    }
  }
  @keyframes footerNewsletterScaleDown {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  .footer-social-card {
    margin: 18px auto 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    gap: 1rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transition: 0.5s;
  }
  .footer-social-card:hover {
    animation: ease-out 5s;
    background: rgba(173, 173, 173, 0.05);
  }
  .footer-social-list {
    margin: 0;
    padding: 1rem;
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .footer-social-note {
    margin: 0 auto;
    max-width: 320px;
    font-size: 12px;
    line-height: 1.5;
    color: var(--muted);
    text-align: center;
  }
  .footer-social-item {
    position: relative;
    cursor: pointer;
  }
  .footer-social-link {
    display: inline-flex;
  }
  .footer-social-icon {
    transition: all 0.3s;
    padding: 1rem;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    color: var(--gold);
    fill: currentColor;
    box-shadow:
      inset 0 0 20px rgba(255, 255, 255, 0.3),
      inset 0 0 5px rgba(255, 255, 255, 0.5),
      0 5px 5px rgba(0, 0, 0, 0.164);
  }
  .footer-social-text {
    opacity: 0;
    border-radius: 5px;
    padding: 5px;
    transition: all 0.3s;
    color: var(--gold);
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    z-index: 2;
    box-shadow:
      -5px 0 1px rgba(153, 153, 153, 0.2),
      -10px 0 1px rgba(153, 153, 153, 0.2),
      inset 0 0 20px rgba(255, 255, 255, 0.3),
      inset 0 0 5px rgba(255, 255, 255, 0.5),
      0 5px 5px rgba(0, 0, 0, 0.082);
  }
  .footer-social-item:hover .footer-social-icon {
    transform: translate(5px, -5px);
  }
  .footer-social-item:hover .footer-social-link > .footer-social-icon {
    transform: translate(15px, -15px);
    border-radius: 100%;
  }
  .footer-social-item:hover .footer-social-text {
    opacity: 1;
    transform: translate(25px, -2px) skew(-5deg);
  }
  .footer-social-item span {
    opacity: 0;
    position: absolute;
    color: var(--gold);
    border-color: var(--gold);
    box-shadow:
      inset 0 0 20px rgba(255, 255, 255, 0.3),
      inset 0 0 5px rgba(255, 255, 255, 0.5),
      0 5px 5px rgba(0, 0, 0, 0.164);
    border-radius: 50%;
    transition: all 0.3s;
    height: 60px;
    width: 60px;
  }
  .footer-social-item:hover span {
    opacity: 1;
  }
  .footer-social-item:hover span:nth-child(1) {
    opacity: 0.2;
  }
  .footer-social-item:hover span:nth-child(2) {
    opacity: 0.4;
    transform: translate(5px, -5px);
  }
  .footer-social-item:hover span:nth-child(3) {
    opacity: 0.6;
    transform: translate(10px, -10px);
  }
  .footer-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--muted);
    margin-top: 16px;
  }
  .footer-check + .footer-check { margin-top: 10px; }
  .footer-check input {
    margin-top: 3px;
    accent-color: #3a342a;
  }
  .footer-age {
    margin: 10px 0 0;
    font-size: 13px;
    color: var(--muted);
  }
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
  }
  .footer-column a {
    color: var(--muted);
    display: block;
  }
  .footer-column__static {
    color: var(--muted);
    display: block;
  }
  .footer-column a:hover { color: var(--text); }
  .footer-column p {
    margin: 0 0 12px;
    color: var(--muted);
  }
  .footer-contact-title {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    font-weight: 600;
  }
  .footer-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    color: var(--muted);
  }
  .footer-contact__icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
  }

  /* Reveal animations */
  .reveal { opacity: 0; transform: translateY(24px); transition: all 0.7s ease; }
  .reveal.revealed { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    body.title-reveal-enabled .product-card .product-name,
    body.title-reveal-enabled .work-card::after {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      transition-delay: var(--title-delay, 0ms);
    }

    body.title-reveal-enabled .title-reveal .product-name,
    body.title-reveal-enabled .title-reveal.work-card::after {
      opacity: 1;
      transform: translateY(0);
    }

    body.title-reveal-enabled .brand-compact-grid { row-gap: 32px; }

    body.title-reveal-enabled .brand-card[data-mobile-title]::after {
      content: attr(data-mobile-title);
      position: absolute;
      left: 0;
      right: 0;
      top: calc(100% + 10px);
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.3px;
      text-align: center;
      line-height: 1.2;
      color: var(--text);
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      transition-delay: var(--title-delay, 0ms);
      pointer-events: none;
    }

    body.title-reveal-enabled .brand-card.title-reveal[data-mobile-title]::after {
      opacity: 1;
      transform: translateY(0);
    }

    body.title-reveal-enabled .brand-card[data-mobile-title] .brand-title,
    body.title-reveal-enabled .brand-card[data-mobile-title] .brand-subtitle {
      opacity: 0;
      transform: translateY(0);
    }

    .brand-card.is-tilting .brand-face {
      transition: transform 140ms ease, filter 200ms ease, background-position 200ms ease;
    }
  }

  @media (max-width: 900px) {
    .nav {
      flex-wrap: wrap;
      min-height: 64px;
      height: auto;
      gap: 0;
      padding: 10px 0;
      position: relative;
      justify-content: center;
    }
    header.is-scrolled .nav { height: auto; }
    .logo {
      order: 1;
      margin: 0 auto;
      z-index: 2;
    }
    .nav-right {
      order: 2;
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 14px;
      margin-left: 0;
      pointer-events: none;
    }
    .nav-right > * { pointer-events: auto; }
    .nav.is-search-open .nav-right {
      position: static;
      inset: auto;
      padding: 0;
      justify-content: center;
    }
    .nav-actions {
      gap: 8px;
      width: 100%;
      flex: 1;
      justify-content: flex-start;
    }
    .nav-actions .nav-icon[aria-label="Account"] { margin-left: auto; order: 2; }
    .nav-actions .nav-icon[aria-label="Carrello"] { order: 3; }
    .nav-actions .nav-icon[aria-label="Wishlist"] { display: none; }
    .nav.is-search-open .nav-actions {
      width: 100%;
      justify-content: center;
    }
    .nav-icon {
      min-width: 40px;
      height: 40px;
    }
    .nav-icon svg {
      width: 20px;
      height: 20px;
    }
    .nav-toggle .bars { width: 18px; }
    .nav-checkbox {
      position: absolute;
      opacity: 0;
      pointer-events: none;
    }
    .nav-toggle { display: inline-flex; }
    .nav-toggle {
      order: 0;
      width: 40px;
      height: 40px;
      gap: 7px;
    }
    .nav-toggle .bars {
      height: 2px;
      border-radius: 3px;
    }
    .nav-checkbox:checked ~ .nav-right .nav-toggle .bars { margin-left: 6px; }
    .nav.is-search-open .nav-toggle { display: none; }
    .nav-links {
      order: 3;
      width: min(78vw, 320px);
      height: 100vh;
      height: 100dvh;
      max-height: 100dvh;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 0;
      display: flex;
      position: fixed;
      top: 0;
      left: 0;
      bottom: 0;
      z-index: 9;
      max-height: none;
      overflow: hidden;
      padding: 0;
      border-radius: 0;
      background: #fff;
      border: 0;
      box-shadow: 12px 0 30px rgba(0,0,0,0.12);
      transform: translateX(-110%);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: transform 0.3s ease, opacity 0.2s ease, visibility 0s linear 0.3s;
    }
    .nav-panel {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      padding: 78px 18px 24px;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      background: transparent;
      transition: transform 0.3s ease, opacity 0.2s ease;
    }
    .nav-panel--root,
    .nav-panel--sub { display: flex; }
    .nav-panel--root { transform: translateX(0); }
    .nav-panel--sub {
      transform: translateX(100%);
      opacity: 0;
    }
    .nav-links.is-sub-open .nav-panel--root {
      transform: translateX(-100%);
      opacity: 0;
    }
    .nav-links.is-sub-open .nav-panel--sub {
      transform: translateX(0);
      opacity: 1;
    }
    .nav-panel__header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 2px 12px;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      margin-bottom: 10px;
    }
    .nav-panel__back {
      width: 32px;
      height: 32px;
      border: 0;
      background: transparent;
      color: var(--text);
      font-size: 20px;
      cursor: pointer;
    }
    .nav-panel__title {
      flex: 1;
      text-align: center;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text);
    }
    .nav-panel__body { display: block; }
    .nav-search {
      order: 0;
      width: auto;
      justify-content: flex-start;
    }
    .search-wrapper.active {
      order: 0;
      width: 100%;
      justify-content: center;
    }
    .nav-search-form {
      width: auto;
      justify-content: flex-end;
    }
    .search-wrapper.active .nav-search-form {
      width: 100%;
      justify-content: center;
    }
    .nav-search-field {
      width: 48px;
      height: 48px;
      border-radius: 999px;
    }
    .search-wrapper.active .nav-search-field,
    .nav.is-search-open .nav-search-field {
      width: 100%;
      border-radius: 22px;
    }
    .nav-search-input {
      padding: 0 50px 0 12px;
      font-size: 12px;
    }
    .nav-search-btn {
      width: 48px;
      height: 48px;
      border-radius: 999px;
    }
    .search-wrapper.active .nav-search-btn,
    .nav.is-search-open .nav-search-btn {
      width: 36px;
      height: 36px;
      margin: 6px;
      border-radius: 999px;
    }
    .search-wrapper.active .nav-search-input,
    .nav.is-search-open .nav-search-input {
      transform: translate(0, 6px);
    }
    .filters-meta { flex-direction: column; align-items: center; }
    .filters-actions { width: 100%; }
    .filters-header {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: nowrap;
    }
    #prodotti .filters-header { flex-wrap: wrap; }
    .filters-toggle {
      order: 2;
      margin-left: auto;
      flex-shrink: 0;
      white-space: nowrap;
    }
    .filters-count {
      order: 1;
      text-align: left;
      white-space: nowrap;
    }
    #prodotti .filters-count { white-space: normal; }
    .filters-grid {
      grid-template-columns: 1fr;
      max-width: none;
      width: 100%;
    }
    .filters-grid .filter-group { grid-template-columns: 1fr; }
    .filter-field--swatches .filter-swatches {
      display: flex;
      flex-wrap: nowrap;
      gap: 12px;
    }
    .filter-swatch {
      width: 26px;
      height: 26px;
    }
    .filters-bar.is-collapsible .filters-toggle { display: inline-flex; }
    .filters-bar.is-collapsible .filters-grid { display: none; }
    #saldi .filters-bar.is-collapsible .filters-grid { display: none; }
    .filters-bar.is-collapsible.is-open .filters-grid { display: grid; }
    #saldi .filters-bar.is-collapsible.is-open .filters-grid { display: grid; }
    #prodotti .filters-toggle { width: 100%; justify-content: flex-start; }
    .nav.is-open .nav-links,
    .nav .nav-checkbox:checked ~ .nav-links {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition-delay: 0s;
    }
    .nav.is-search-open .nav-links {
      transform: translateX(-110%);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    .nav-item {
      width: 100%;
      display: flex;
      align-items: center;
      position: relative;
      border-bottom: 1px solid rgba(0,0,0,0.06);
      height: auto;
      flex: 0 0 auto;
    }
    .nav-item:last-child { border-bottom: 0; }
    .nav-link {
      width: 100%;
      display: block;
      padding: 12px 14px 14px 10px;
      flex: 1;
      border-radius: 0;
      background: transparent;
      text-align: left;
      font-size: 15px;
      letter-spacing: 1.6px;
      line-height: 1.9;
      color: #1f1b14;
    }
    .nav-link::after { content: none; }
    .nav-item:first-child .nav-link { color: #d39a9a; }
    .nav-subtoggle {
      display: inline-flex;
      position: static;
      margin-left: auto;
      width: 24px;
      height: 24px;
      align-items: center;
      justify-content: center;
      color: rgba(0,0,0,0.4);
      cursor: pointer;
    }
    .nav-subtoggle::before {
      content: '\203A';
      font-size: 18px;
      line-height: 1;
    }
    .nav-item.is-active .nav-subtoggle {
      transform: rotate(90deg);
      color: var(--text);
    }
    .nav-panel--sub .mega-menu {
      display: block;
      padding: 0;
    }
    .nav-panel--sub .mega-grid {
      grid-template-columns: 1fr;
      gap: 10px;
      width: 100%;
      margin: 0;
    }
    .nav-panel--sub .mega-col {
      padding: 0;
      border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .nav-panel--sub .mega-col:last-child { border-bottom: 0; }
    .nav-panel--sub .mega-col__toggle {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      border: 0;
      background: transparent;
      color: var(--text);
      font-size: 15px;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      cursor: pointer;
    }
    .nav-panel--sub .mega-col__toggle::after {
      content: '\203A';
      transform: rotate(0deg);
      transition: transform 0.2s ease;
      color: rgba(0,0,0,0.4);
    }
    .nav-panel--sub .mega-col.is-open .mega-col__toggle::after {
      transform: rotate(90deg);
    }
    .nav-panel--sub .mega-col__links {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.2s ease;
    }
    .nav-panel--sub .mega-col.is-open .mega-col__links {
      max-height: 420px;
      opacity: 1;
      padding-bottom: 8px;
    }
    .nav-panel--sub .mega-col__links a {
      display: block;
      padding: 10px 0 10px 8px;
      font-size: 14px;
      color: var(--muted);
      border-top: 1px solid rgba(0,0,0,0.03);
    }
    .nav-panel--sub .mega-col__links a:first-child {
      border-top: 0;
    }
    .nav-panel--sub .mega-media { display: none; }
    .mega-menu {
      display: none;
      position: static;
      width: 100%;
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: none;
      box-shadow: none;
      border: 0;
      background: transparent;
      padding: 0 0 12px 12px;
    }
    .mega-grid {
      grid-template-columns: 1fr;
      gap: 8px;
      width: 100%;
      margin: 0;
    }
    .mega-col h4 {
      font-size: 11px;
      letter-spacing: 1.2px;
    }
    .mega-col a { font-size: 13px; }
    .mega-media { display: none; }
    .mega-card img { height: 90px; }
    .nav-links .nav-icon {
      width: auto;
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(212,175,55,0.6);
      text-align: center;
    }
    .nav-search-panel {
      padding: 18px 0 22px;
      width: 100%;
      left: 0;
      right: 0;
    }
    .nav-search-panel__inner {
      width: 100%;
      grid-template-columns: 1fr;
    }
    .nav-search-panel .utility-filters {
      grid-template-columns: 1fr;
    }
    .nav-search-panel .utility-filter-group {
      align-items: center;
      text-align: center;
    }
    .nav-search-panel .utility-chips {
      justify-content: center;
    }
    .nav-cta { width: 100%; }
    header { backdrop-filter: blur(6px); }
    .hero { min-height: 68vh; background-attachment: scroll; }
    .hero-loop { inset: auto 0 14% 0; }
    .hero-track { --item-size: clamp(150px, 40vw, 220px); }
    .hero .carousel-item img { transform: rotateY(-45deg); }
    .hero-script { top: auto; bottom: 18%; right: 8%; font-size: 19px; max-width: 200px; }
    .section { padding: 70px 0; }
    .section.product-page { padding-top: 12px; }
    .loop-shell .carousel-item img,
    .loop-images .carousel-item img { transform: none; }
    .shop-header { grid-template-columns: 1fr; }
    .filters { padding: 14px; }
    .category-head { flex-direction: column; align-items: flex-start; }
    .product-page__grid { grid-template-columns: 1fr; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .product-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
    .shop-actions { width: 100%; }
    .shop-actions .btn { flex: 1; justify-content: center; }
    .cart-shell { grid-template-columns: 1fr; }
    .cart-summary { position: sticky; top: 90px; }
    .site-footer { padding: 42px 0 50px; }
    .footer-utility { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
    .footer-feature { padding: 0; }
    .footer-feature:not(:first-child)::before { display: none; }
    .footer-divider { margin: 28px 0 32px; }
    .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-newsletter { grid-column: 1 / -1; }
  }
  @media (max-width: 620px) {
    .logo-name { font-size: 18px; }
    .logo img { height: 40px; }
    .logo-tagline { display: none; }
    .nav-links { gap: 0; }
    .nav-link { font-size: 14px; }
    .nav-cta { padding: 8px 14px; }
    .hero {
      padding: 30px 0 64px;
      min-height: auto;
      justify-content: flex-start;
      gap: 18px;
    }
    .hero-headline { font-size: clamp(30px, 9vw, 44px); }
    .hero-content { padding: 64px 18px; text-align: center; }
    .hero-badges { justify-content: center; }
    .hero-badges span { background: rgba(0,0,0,0.36); }
    .hero-loop { inset: auto 0 18% 0; }
    .hero-track { --item-size: clamp(140px, 58vw, 180px); }
    .hero-script { right: 6%; bottom: 14%; max-width: 180px; font-size: 18px; }
    .container,
    .section.shop > .container,
    #brands > .container {
      width: 100%;
      padding-inline: 12px;
    }
    .marquee { margin: 6px 0 24px; }
    .marquee-track { gap: 18px; }
    .logo-chip {
      min-width: 120px;
      min-height: 44px;
      padding: 6px 12px;
    }
    .logo-chip img { max-height: 40px; }
    .bounce-stage { min-height: 280px; }
    .work-card { width: 170px; }
    .scroll-down { font-size: 12px; bottom: 12px; }
    .product-card { grid-template-rows: 200px auto; }
    .product-gallery { padding: 22px; }
    .gallery-nav { width: 34px; height: 34px; }
    .gallery-nav.prev { left: 10px; }
    .gallery-nav.next { right: 10px; }
    .product-cta-row { --cta-height: 46px; }
    .product-cta span {
      padding: 0 16px;
      font-size: 0.98em;
      letter-spacing: 1.2px;
    }
    .shop-grid,
    .portal-grid,
    .curation-grid,
    .perks-grid,
    .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .catalog-carousel__track { --carousel-columns: 2; }
    .utility-item { grid-template-columns: 56px 1fr; grid-template-rows: auto auto; }
    .utility-item .utility-thumb { width: 56px; height: 56px; }
    .utility-actions { grid-column: 1 / -1; justify-items: start; }
    .utility-panel[data-panel="wishlist"] .utility-actions { justify-content: flex-end; }
    .utility-panel[data-panel="wishlist"] .wishlist-card {
      grid-template-columns: 84px 1fr;
      grid-template-rows: none;
      gap: 10px;
      height: 84px;
      padding: 0 12px 0 0;
    }
    .utility-panel[data-panel="wishlist"] .wishlist-card .utility-thumb {
      width: 84px;
      height: 100%;
    }
    .utility-panel[data-panel="wishlist"] .wishlist-actions { grid-column: auto; }
    .utility-panel[data-panel="wishlist"] .wishlist-like--float {
      top: 6px;
      right: 6px;
      width: 30px;
      height: 30px;
    }
    .utility-panel[data-panel="wishlist"] .wishlist-cart-btn {
      width: 8em;
      height: 2.2em;
      font-size: 12px;
    }
    .cart-item { grid-template-columns: 64px 1fr; grid-template-rows: auto auto; }
    .cart-price { justify-self: end; }
    .cart-remove { justify-self: end; }
    .curation-card { grid-template-rows: 160px auto; }
    body { font-size: 15px; }
    .btn { padding: 10px 22px; font-size: 14px; }
    .animated-button { padding: 12px 28px; font-size: 14px; }
    .hero h1 { font-size: clamp(32px, 9vw, 48px); }
    .hero p { font-size: 15px; }
    .hero-badges span { padding: 6px 12px; font-size: 12px; }
    .section-title { font-size: clamp(24px, 5vw, 30px); }
    .section-sub { margin-bottom: 24px; }
    .about,
    .works,
    .consult { grid-template-columns: 1fr; }
    .consult { gap: 20px; }
    .filters-grid { grid-template-columns: 1fr; gap: 16px; }
    .filters-grid .filter-group { grid-template-columns: 1fr; }
    .filter-chip { padding: 8px 12px; font-size: 13px; }
    .product-gallery { min-height: 340px; }
    .gallery-slide img { max-height: 320px; }
    .product-tabs { flex-wrap: wrap; gap: 12px; }
    .product-tab { letter-spacing: 1.4px; }
    .product-page .product-price { font-size: 24px; }
    .product-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .shop-footer { justify-content: center; text-align: center; }
    .shop-actions { width: 100%; justify-content: center; }
    .portal-card { padding: 16px; }
    .site-footer { padding: 36px 0 44px; }
    .footer-utility { grid-template-columns: 1fr; gap: 16px; }
    .footer-feature {
      padding: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
    }
    .footer-feature__icon { width: 30px; height: 30px; }
    .footer-feature__body h4 { font-size: 12px; letter-spacing: 2px; }
    .footer-feature__body p { font-size: 13px; }
    .footer-divider { margin: 22px 0 26px; }
    .footer-main { gap: 22px; }
    .footer-newsletter h4,
    .footer-column h4 {
      margin-bottom: 12px;
      font-size: 13px;
      letter-spacing: 2px;
    }
    .footer-newsletter-card { max-width: min(300px, 100%); }
    .footer-column { gap: 6px; }
    .footer-newsletter__form { border-radius: 10px; }
    .footer-newsletter__form input { padding: 12px; font-size: 13px; }
    .footer-newsletter__form button { letter-spacing: 1.6px; }
    .footer-newsletter__consent { font-size: 11px; padding: 10px; }
    .footer-contact { flex-wrap: wrap; gap: 8px; }
    .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-contacts {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-areas:
        "dm-title cs-title"
        "dm-address cs-phone"
        "dm-address cs-email";
      column-gap: 18px;
      row-gap: 6px;
      align-items: start;
    }
    .footer-contacts h4 { grid-area: dm-title; }
    .footer-contacts p { grid-area: dm-address; }
    .footer-contacts .footer-contact-title {
      grid-area: cs-title;
      margin-top: 0;
    }
    .footer-contacts a.footer-contact:nth-of-type(1) {
      grid-area: cs-phone;
      margin-top: 6px;
    }
    .footer-contacts a.footer-contact:nth-of-type(2) {
      grid-area: cs-email;
      margin-top: 6px;
    }
    .footer-newsletter { grid-column: 1 / -1; }
    .footer-newsletter__form { grid-template-columns: 1fr; }
    .footer-newsletter__form button { width: 100%; padding: 12px 0; }
  }
  @media (max-width: 520px) {
    .nav { gap: 8px; }
    .logo-name { font-size: 17px; }
    .hero {
      padding: 26px 0 56px;
      gap: 16px;
    }
    .hero-track { --item-size: clamp(120px, 55vw, 160px); }
    .loop-shell .carousel-item img,
    .loop-images .carousel-item img { transform: none; }
    .scroll-down { font-size: 11px; }
    .section { padding: 60px 0; }
    .brand-compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .brand-card { --brand-card-height: 210px; }
    .brand-title { font-size: 20px; }
    .brand-subtitle { font-size: 13px; }
    .brand-cta { width: min(220px, 78vw); }
    .product-card { grid-template-rows: 180px auto; }
    .nav-icon { min-width: 40px; height: 40px; }
    .nav-icon svg { width: 20px; height: 20px; }
    .nav-toggle { width: 40px; height: 40px; gap: 7px; }
    .nav-toggle .bars { width: 18px; }
    .hero-headline { line-height: 1.1; }
    .hero-script { font-size: 16px; max-width: 160px; }
    .product-gallery { min-height: 320px; padding: 20px; }
    .gallery-slide img { max-height: 280px; }
  }
  @media (max-width: 420px) {
    body { font-size: 14px; }
    .logo img { height: 36px; }
    .nav-icon { min-width: 40px; height: 40px; }
    .nav-icon svg { width: 20px; height: 20px; }
    .nav-toggle { width: 40px; height: 40px; gap: 7px; }
    .nav-toggle .bars { width: 18px; }
    .hero {
      padding: 22px 0 48px;
      min-height: auto;
      gap: 14px;
    }
    .hero-headline { font-size: clamp(26px, 9vw, 36px); line-height: 1.1; }
    .hero-track { --item-size: clamp(110px, 58vw, 150px); }
    .hero-script {
      left: 50%;
      right: auto;
      bottom: 10%;
      top: auto;
      transform: translateX(-50%);
      text-align: center;
      max-width: 200px;
      font-size: 15px;
    }
    .hero-script::after { margin: 12px auto 0; }
    .scroll-down { font-size: 10px; bottom: 8px; }
    .section { padding: 52px 0; }
    .brand-card { --brand-card-height: 190px; }
    .brand-title { font-size: 18px; }
    .brand-subtitle { font-size: 12px; }
    .work-card { width: 150px; }
    .bounce-stage { min-height: 240px; }
    .product-card { grid-template-rows: 160px auto; }
    .product-gallery { min-height: 300px; padding: 18px; }
    .gallery-slide img { max-height: 260px; }
    .gallery-nav { width: 30px; height: 30px; }
    .product-page .product-price { font-size: 22px; }
    .product-tab { font-size: 10px; letter-spacing: 1.1px; }
    .product-cta-row { --cta-height: 44px; }
    .product-cta span {
      padding: 0 12px;
      font-size: 0.95em;
      letter-spacing: 1px;
    }
    .cart-item { grid-template-columns: 1fr; }
    .cart-thumb { width: 100%; height: 140px; }
    .cart-price,
    .cart-remove { justify-self: start; }
    .utility-item { grid-template-columns: 1fr; }
    .utility-item .utility-thumb { width: 100%; height: 160px; }
    .utility-actions { justify-items: start; }
    .utility-panel[data-panel="wishlist"] .utility-actions { justify-content: flex-end; }
    .utility-panel[data-panel="wishlist"] .wishlist-card {
      grid-template-columns: 80px 1fr;
      grid-template-rows: none;
      gap: 10px;
      height: 80px;
      padding: 0 12px 0 0;
    }
    .utility-panel[data-panel="wishlist"] .wishlist-card .utility-thumb {
      width: 80px;
      height: 100%;
    }
.utility-panel[data-panel="wishlist"] .wishlist-actions { grid-column: auto; }
.utility-panel[data-panel="wishlist"] .wishlist-like--float {
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
}
.utility-panel[data-panel="wishlist"] .wishlist-cart-btn {
  width: 7.5em;
  height: 2.1em;
  font-size: 11px;
}
}

/* Vetrina index: solo carosello orizzontale, niente scrollbar interna */
.section.shop .vetrina-index,
.section.shop .vetrina-index .category-block,
.section.shop .vetrina-index .catalog-carousel,
.section.shop .vetrina-index .catalog-carousel__track {
  overflow-y: hidden !important;
  max-height: none !important;
}
.section.shop .vetrina-index .catalog-carousel__viewport {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  overscroll-behavior: contain !important;
  touch-action: pan-x !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  max-height: none !important;
}
.section.shop .vetrina-index .catalog-carousel__track {
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}
#shop,
#shop > .container {
  overflow-y: visible;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.section.shop .vetrina-index .catalog-carousel__viewport::-webkit-scrollbar,
.section.shop .vetrina-index .catalog-carousel::-webkit-scrollbar,
.section.shop .vetrina-index::-webkit-scrollbar,
.section.shop::-webkit-scrollbar,
#shop::-webkit-scrollbar,
#shop > .container::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Vetrina (from scratch) */
.vetrina-zero {
  padding: 30px 0 58px;
  background: linear-gradient(180deg, #f4eddc 0%, #f7f2e8 45%, #faf6ee 100%);
}
.vetrina-zero::before,
.vetrina-zero::after { display: none; }
.vetrina-zero > .container {
  width: min(1600px, 100%);
}
.vetrina-zero__brand-strip {
  width: min(1600px, 100%);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  min-height: 82px;
  overflow: hidden;
  border-top: 1px solid rgba(118, 97, 62, 0.22);
  border-bottom: 1px solid rgba(118, 97, 62, 0.22);
  background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.42), rgba(255,255,255,0.15));
}
.vetrina-zero__brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: vetrinaBrandLoop var(--vetrina-brand-speed, 36s) linear infinite;
}
.vetrina-zero__brand-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 2.2vw, 42px);
  list-style: none;
  margin: 0;
  padding: 14px 0;
  flex-shrink: 0;
}
.vetrina-zero__brand-item {
  width: clamp(108px, 9.4vw, 160px);
  height: clamp(44px, 4.4vw, 62px);
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: 0.86;
  filter: grayscale(1) contrast(1.08);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.vetrina-zero__brand-item img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
.vetrina-zero__brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.vetrina-zero__brand-link:focus-visible {
  outline: 2px solid rgba(118, 97, 62, 0.5);
  outline-offset: 2px;
  border-radius: 6px;
}
.vetrina-zero__brand-item:hover {
  opacity: 1;
  filter: grayscale(0) contrast(1);
}
.vetrina-zero__head {
  margin-bottom: 10px;
}
.vetrina-zero__title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 2.9vw, 44px);
  letter-spacing: 0.3px;
}
.vetrina-zero__sub {
  margin: 6px 0 0;
  color: rgba(31, 27, 20, 0.74);
  font-size: 15px;
}
.vetrina-zero__carousel {
  position: relative;
  padding: 6px 28px 6px;
}
.vetrina-zero__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 2px 14px;
}
.vetrina-zero__viewport::-webkit-scrollbar { display: none; }
.vetrina-zero__track {
  display: flex;
  align-items: stretch;
  --carousel-gap: 8px;
  --carousel-columns: 5;
  gap: var(--carousel-gap);
  width: auto;
}
.vetrina-zero__card {
  position: relative;
  flex: 0 0 calc((100% - ((var(--carousel-columns) - 1) * var(--carousel-gap))) / var(--carousel-columns));
  width: calc((100% - ((var(--carousel-columns) - 1) * var(--carousel-gap))) / var(--carousel-columns));
  min-height: 260px;
  aspect-ratio: 200 / 260;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: all 0.4s;
  transform-origin: center;
  overflow: hidden;
  scroll-snap-align: start;
}
.vetrina-zero__card:hover,
.vetrina-zero__card:focus-within {
  border-radius: 10px;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  z-index: 2;
}
.vetrina-zero__card-link {
  position: relative;
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.vetrina-zero__media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 1;
  transform: scale(1);
  background: #fff;
  transition: all 0.4s;
}
.vetrina-zero__media img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transform: none;
}
.vetrina-zero__meta {
  position: absolute;
  inset: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  opacity: 0;
  transform: rotate(90deg) scale(-1);
  background: rgba(255,255,255,0.95);
  transition: all 0.4s;
}
.vetrina-zero__card:hover .vetrina-zero__media,
.vetrina-zero__card:focus-within .vetrina-zero__media {
  opacity: 0;
  transform: scaleY(0);
}
.vetrina-zero__card:hover .vetrina-zero__meta,
.vetrina-zero__card:focus-within .vetrina-zero__meta {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.vetrina-zero__vendor {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: rgba(10, 18, 32, 0.7);
  font-weight: 600;
}
.vetrina-zero__name {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: #0c1626;
}
.vetrina-zero__price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}
.vetrina-zero__price {
  font-size: 15px;
  font-weight: 700;
  color: #0c1626;
}
.vetrina-zero__old-price {
  font-size: 14px;
  color: rgba(10, 18, 32, 0.7);
  text-decoration: line-through;
}
.vetrina-zero__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  z-index: 3;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 12px;
  transition: transform 0.2s ease;
  padding: 0;
}
.vetrina-zero__wish:hover { transform: scale(1.03); }
.vetrina-zero__wish:focus-visible { outline: none; }
.vetrina-zero__wish .heart-container { --heart-color: var(--heart-red); }
.vetrina-zero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: #3f3526;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}
.vetrina-zero__nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vetrina-zero__nav:hover { background: #fff; }
.vetrina-zero__nav:disabled {
  opacity: 0.4;
  cursor: default;
}
.vetrina-zero__nav--prev { left: -2px; }
.vetrina-zero__nav--next { right: -2px; }
.vetrina-zero__progress {
  height: 3px;
  margin: 2px 10px 0;
  background: rgba(31, 27, 20, 0.1);
  border-radius: 999px;
  overflow: hidden;
}
.vetrina-zero__progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, #c5a25d, #e6c77e);
}
@keyframes vetrinaBrandLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .vetrina-zero__brand-track { animation: none; }
  .vetrina-zero__media,
  .vetrina-zero__meta,
  .vetrina-zero__wish { transition: none; }
  .carousel-item {
    animation: none !important;
  }
  .carousel-item img {
    transform: none !important;
  }
  .scroll-down .arrow,
  .scroll-indicator span {
    animation: none !important;
  }
  .bounce-stage .work-card {
    transition: opacity 0.2s ease !important;
  }
  .brand-card {
    transition: opacity 0.2s ease !important;
  }
  .brand-card:active {
    transform: none !important;
  }
  .reveal,
  .reveal.revealed {
    transition: opacity 0.3s ease !important;
    transform: none !important;
  }
  .maison-gallery__item:hover img {
    transform: none !important;
  }
}
@media (max-width: 1200px) {
  .vetrina-zero__track { --carousel-columns: 4; }
}
@media (max-width: 1024px) {
  .vetrina-zero__carousel { padding-inline: 20px; }
}
@media (max-width: 980px) {
  .vetrina-zero__track { --carousel-columns: 3; }
}
@media (max-width: 768px) {
  .vetrina-zero { padding: 24px 0 50px; }
  .vetrina-zero__brand-list { gap: 22px; }
  .vetrina-zero__carousel { padding-inline: 4px; }
  .vetrina-zero__track { --carousel-columns: 2; }
  .vetrina-zero__nav { display: none; }
}
@media (max-width: 480px) {
  .vetrina-zero__track { --carousel-columns: 1; }
}
