    :root {
      --matte-black: #121212;
      --soft-black: #090909;
      --ivory: #fcf9f0;
      --gold: #d4af37;
      --gold-soft: rgba(212, 175, 55, 0.18);
      --border-light: rgba(18, 18, 18, 0.08);
      --border-dark: rgba(255, 255, 255, 0.08);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      min-height: 100%;
      scroll-behavior: smooth;
    }

    body {
      min-height: 100%;
      margin: 0;
      overflow-x: hidden;
      color: var(--matte-black);
      background: var(--ivory);
      font-family: "Inter", sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.mobile-menu-open {
      overflow: hidden;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    button:disabled {
      cursor: not-allowed;
    }

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

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

    ::selection {
      color: #000;
      background: var(--gold);
    }

    .brand-font {
      font-family: "Playfair Display", serif;
    }

    .page-hidden {
      display: none !important;
    }

    .upper {
      text-transform: uppercase;
    }

    .btn-base {
      transition:
        transform 180ms ease,
        opacity 180ms ease,
        color 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
    }

    .btn-base:hover:not(:disabled) {
      transform: translateY(-1px);
    }

    .btn-base:active:not(:disabled) {
      transform: translateY(1px);
    }

    .gold-glow:hover:not(:disabled) {
      box-shadow: 0 0 28px rgba(212, 175, 55, 0.34);
    }

    .option-selected {
      color: #fff !important;
      border-color: #000 !important;
      background: #000 !important;
    }

    /* Screen-reader text */

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

    /* Loading screen */

    #loader {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      background:
        radial-gradient(
          circle at center,
          rgba(212, 175, 55, 0.08),
          transparent 36%
        ),
        #000;
      transition:
        opacity 500ms ease,
        visibility 500ms ease;
    }

    #loader.loader-hidden {
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .loader-text {
      font-family: "Playfair Display", serif;
      font-size: clamp(1.6rem, 5vw, 3rem);
      letter-spacing: 0.42em;
      animation: loaderPulse 1.8s ease-in-out infinite;
    }

    @keyframes loaderPulse {
      0%,
      100% {
        opacity: 0.35;
        transform: scale(0.985);
      }

      50% {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Aureli Vera logo */

    .av-logo-mark {
      position: relative;
      display: flex;
      width: 96px;
      height: 96px;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--gold);
      border-radius: 9999px;
      color: var(--gold);
      background:
        radial-gradient(
          circle at 35% 25%,
          rgba(212, 175, 55, 0.12),
          transparent 42%
        ),
        #050505;
      box-shadow: 0 0 28px rgba(212, 175, 55, 0.18);
      font-family: "Playfair Display", serif;
      font-size: 2.2rem;
      font-style: italic;
      font-weight: 700;
      user-select: none;
    }

    .av-logo-mark::after {
      position: absolute;
      bottom: 17px;
      left: 50%;
      width: 42px;
      height: 5px;
      border-radius: 9999px;
      background: linear-gradient(
        90deg,
        #008c45 0 33%,
        #f4f4f4 33% 66%,
        #cd212a 66% 100%
      );
      content: "";
      transform: translateX(-50%);
    }

    .av-logo-small {
      width: 76px;
      height: 76px;
      font-size: 1.75rem;
    }

    .av-logo-small::after {
      bottom: 13px;
      width: 34px;
      height: 4px;
    }

    /* Authentication */

    #login-modal {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      overflow-y: auto;
      background:
        radial-gradient(
          circle at top,
          rgba(212, 175, 55, 0.1),
          transparent 38%
        ),
        rgba(0, 0, 0, 0.97);
      backdrop-filter: blur(16px);
    }

    .auth-card {
      width: min(100%, 540px);
      max-height: calc(100vh - 48px);
      padding: 40px;
      overflow-y: auto;
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 28px;
      background: #0a0a0a;
      box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
    }

    #site-shell,
    #sidebar,
    #mobile-menu-button {
      transition:
        opacity 350ms ease,
        filter 350ms ease;
    }

    body.auth-locked #site-shell,
    body.auth-locked #sidebar,
    body.auth-locked #mobile-menu-button {
      opacity: 0;
      filter: blur(10px);
      pointer-events: none;
      user-select: none;
    }

    /* Sidebar */

    #sidebar {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      z-index: 60;
      display: flex;
      width: 18rem;
      flex-direction: column;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(
          180deg,
          rgba(212, 175, 55, 0.035),
          transparent 32%
        ),
        var(--soft-black);
      box-shadow: 20px 0 60px rgba(0, 0, 0, 0.12);
    }

    .sidebar-nav-link {
      transition:
        color 180ms ease,
        transform 180ms ease;
    }

    .sidebar-nav-link:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .sidebar-nav-link.active {
      color: var(--gold);
    }

    /* Mobile navigation */

    #mobile-menu-button {
      position: fixed;
      top: 16px;
      left: 16px;
      z-index: 75;
      display: none;
      width: 48px;
      height: 48px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(212, 175, 55, 0.35);
      border-radius: 9999px;
      color: var(--gold);
      background: var(--matte-black);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      font-size: 22px;
    }

    #mobile-sidebar-overlay {
      position: fixed;
      inset: 0;
      z-index: 55;
      display: none;
      background: rgba(0, 0, 0, 0.68);
      backdrop-filter: blur(4px);
    }

    #mobile-sidebar-overlay.open {
      display: block;
    }

    /* Website shell */

    #site-shell {
      min-height: 100vh;
      margin-left: 18rem;
      padding: 64px;
    }

    .section-content {
      animation: pageFadeIn 300ms ease;
    }

    @keyframes pageFadeIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

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

    /* Product cards */

    .product-card {
      overflow: hidden;
      border: 1px solid var(--border-light);
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.035);
      transition:
        transform 280ms ease,
        box-shadow 280ms ease,
        border-color 280ms ease;
    }

    .product-card:hover {
      border-color: rgba(212, 175, 55, 0.35);
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.11);
      transform: translateY(-5px);
    }

    .product-card img {
      transition: transform 700ms ease;
    }

    .product-card:hover img {
      transform: scale(1.045);
    }

    /* Product page */

    .thumb-active {
      border-color: var(--gold) !important;
      opacity: 1 !important;
    }

    .color-dot {
      width: 42px;
      height: 42px;
      border: 2px solid #ddd;
      border-radius: 9999px;
      cursor: pointer;
      transition:
        transform 180ms ease,
        outline 180ms ease,
        border-color 180ms ease;
    }

    .color-dot:hover {
      transform: scale(1.06);
    }

    .color-dot-active {
      border-color: #000;
      outline: 3px solid var(--gold);
      outline-offset: 4px;
    }

    /* Legal pages */

    .legal-box h3 {
      margin-top: 2rem;
      margin-bottom: 0.65rem;
      padding-bottom: 8px;
      border-bottom: 1px solid #eee;
      color: #000;
      font-size: 1.05rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .legal-box h3:first-child {
      margin-top: 0;
    }

    .legal-box p {
      margin-bottom: 1.25rem;
      color: #333;
      line-height: 1.8;
    }

    /* Review editor */

    .star-rating {
      color: #d1d5db;
      cursor: pointer;
      transition:
        color 180ms ease,
        transform 180ms ease;
    }

    .star-rating:hover {
      transform: scale(1.08);
    }

    .star-active {
      color: var(--gold);
    }

    .review-toolbar {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      padding: 10px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 14px;
      background: #fafafa;
    }

    .review-toolbar button,
    .review-toolbar select,
    .review-toolbar input[type="color"] {
      min-height: 36px;
      padding: 7px 10px;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 9px;
      background: #fff;
      font-size: 12px;
      font-weight: 800;
      cursor: pointer;
    }

    .review-editor {
      min-height: 150px;
      padding: 16px;
      overflow-wrap: anywhere;
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 14px;
      outline: none;
      background: #fff;
      line-height: 1.7;
    }

    .review-editor:empty::before {
      color: #9ca3af;
      content: attr(data-placeholder);
      pointer-events: none;
    }

    .emoji-panel {
      display: none;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 8px;
      padding: 12px;
      border: 1px solid rgba(0, 0, 0, 0.08);
      border-radius: 14px;
      background: #fff;
    }

    .emoji-panel.open {
      display: grid;
    }

    .emoji-panel button {
      padding: 7px;
      border-radius: 9px;
      font-size: 20px;
    }



    .review-photo-preview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
      gap: 12px;
    }

    .review-photo-preview {
      position: relative;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border: 1px solid rgba(18, 18, 18, 0.1);
      border-radius: 14px;
      background: #f5f5f5;
    }

    .review-photo-preview img,
    .review-photo-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .review-photo-remove {
      position: absolute;
      top: 7px;
      right: 7px;
      display: flex;
      width: 28px;
      height: 28px;
      align-items: center;
      justify-content: center;
      border-radius: 9999px;
      color: #fff;
      background: rgba(0, 0, 0, 0.8);
      font-weight: 900;
    }

    .review-photo-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(130px, 210px));
      gap: 12px;
      margin-top: 18px;
    }

    .review-photo-gallery button {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      border-radius: 14px;
      background: #f3f3f3;
    }

    /* Stripe */

    #checkout-card-container {
      min-height: 120px;
      padding: 18px;
      border: 1px solid var(--border-light);
      border-radius: 18px;
      background: #fff;
    }

    /* Trust cards, product lightbox, and mobile purchase bar */

    .trust-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      overflow: hidden;
      border: 1px solid rgba(18, 18, 18, 0.08);
      border-radius: 4px;
      background: #fffdf8;
      box-shadow: 0 14px 45px rgba(0, 0, 0, 0.055);
    }

    .trust-card {
      position: relative;
      display: grid;
      grid-template-columns: 48px 1fr 20px;
      gap: 16px;
      align-items: center;
      min-height: 126px;
      padding: 24px 26px;
      text-align: left;
      background: transparent;
      transition: background-color 180ms ease, transform 180ms ease;
    }

    .trust-card:not(:last-child)::after {
      position: absolute;
      top: 22px;
      right: 0;
      bottom: 22px;
      width: 1px;
      background: rgba(18, 18, 18, 0.10);
      content: "";
    }

    .trust-card:hover {
      z-index: 1;
      background: rgba(212, 175, 55, 0.07);
      transform: translateY(-2px);
    }

    .trust-card:focus-visible {
      outline: 3px solid rgba(212, 175, 55, 0.35);
      outline-offset: -3px;
    }

    .trust-icon {
      display: flex;
      width: 46px;
      height: 46px;
      align-items: center;
      justify-content: center;
      color: #1b1b1b;
    }

    .trust-icon svg {
      width: 34px;
      height: 34px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.45;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .trust-title {
      display: block;
      margin-bottom: 7px;
      color: #121212;
      font-family: "Playfair Display", serif;
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .trust-description {
      display: block;
      color: #5e5e5e;
      font-size: 0.68rem;
      line-height: 1.55;
    }

    .trust-arrow {
      color: #121212;
      font-size: 1.15rem;
      transition: color 180ms ease, transform 180ms ease;
    }

    .trust-card:hover .trust-arrow {
      color: var(--gold);
      transform: translateX(3px);
    }

    #information-modal,
    #product-lightbox {
      position: fixed;
      inset: 0;
      z-index: 120;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(0, 0, 0, 0.88);
      backdrop-filter: blur(12px);
    }

    .information-card {
      width: min(100%, 620px);
      max-height: calc(100vh - 40px);
      overflow-y: auto;
      border: 1px solid rgba(212, 175, 55, 0.25);
      border-radius: 28px;
      padding: 34px;
      background: #fff;
      box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
    }

    .lightbox-image {
      max-width: min(94vw, 1400px);
      max-height: 88vh;
      object-fit: contain;
      border-radius: 18px;
      box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
    }

    .mobile-purchase-bar {
      display: none;
    }

    .rating-bar-track {
      height: 7px;
      overflow: hidden;
      border-radius: 9999px;
      background: #ececec;
    }

    .rating-bar-fill {
      height: 100%;
      border-radius: inherit;
      background: var(--gold);
    }

    /* Launch-ready homepage additions */

    .campaign-hero {
      position: relative;
      min-height: clamp(440px, 48vw, 650px);
      overflow: hidden;
      border-radius: 24px;
      background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 47%, rgba(5, 5, 5, 0.15) 100%),
        radial-gradient(circle at 75% 32%, rgba(212, 175, 55, 0.26), transparent 34%),
        #090909;
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
    }

    .campaign-hero-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 42%;
      opacity: 0;
      transition: opacity 500ms ease;
    }

    .campaign-hero-image.ready {
      opacity: 1;
    }

    .campaign-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 34%, rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.06) 82%, rgba(0, 0, 0, 0.01) 100%);
    }

    .newsletter-card {
      background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.14), transparent 32%),
        #0a0a0a;
    }

    .policy-highlight {
      border-left: 3px solid var(--gold);
      background: rgba(212, 175, 55, 0.07);
    }

    #cookie-banner {
      position: fixed;
      right: 18px;
      bottom: 18px;
      left: auto;
      z-index: 130;
      width: min(430px, calc(100vw - 36px));
      border: 1px solid rgba(212, 175, 55, 0.25);
      border-radius: 22px;
      padding: 20px;
      color: #fff;
      background: rgba(8, 8, 8, 0.97);
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.42);
      backdrop-filter: blur(16px);
    }


    /* Header account shortcut */

    .header-right-tools {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 16px;
    }

    .header-milan-time {
      color: #9ca3af;
      font-size: 9px;
      font-style: italic;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .header-account-pill {
      display: inline-flex;
      min-width: 164px;
      align-items: center;
      gap: 10px;
      padding: 8px 11px 8px 8px;
      border: 1px solid rgba(18, 18, 18, 0.08);
      border-radius: 9999px;
      color: var(--matte-black);
      background: rgba(255, 255, 255, 0.82);
      box-shadow: 0 8px 28px rgba(18, 18, 18, 0.06);
      backdrop-filter: blur(14px);
      transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
    }

    .header-account-pill:hover {
      border-color: rgba(212, 175, 55, 0.48);
      background: #fff;
      box-shadow: 0 12px 36px rgba(18, 18, 18, 0.1), 0 0 0 3px rgba(212, 175, 55, 0.06);
      transform: translateY(-1px);
    }

    .header-account-icon {
      position: relative;
      display: inline-flex;
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(212, 175, 55, 0.28);
      border-radius: 9999px;
      color: #9b7b16;
      background: linear-gradient(145deg, #fffdf6, #f6edcf);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .header-account-icon svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 1.55;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .header-account-status-dot {
      position: absolute;
      right: -1px;
      bottom: 1px;
      width: 8px;
      height: 8px;
      border: 2px solid #fff;
      border-radius: 9999px;
      background: #cbd5e1;
      transition: background-color 180ms ease, box-shadow 180ms ease;
    }

    .header-account-status-dot.active {
      background: #22a559;
      box-shadow: 0 0 0 2px rgba(34, 165, 89, 0.12);
    }

    .header-account-copy {
      display: flex;
      min-width: 0;
      flex: 1;
      flex-direction: column;
      align-items: flex-start;
      line-height: 1.05;
    }

    .header-account-eyebrow {
      margin-bottom: 3px;
      color: #a3a3a3;
      font-size: 7px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .header-account-label {
      overflow: hidden;
      max-width: 105px;
      color: #181818;
      font-family: "Playfair Display", serif;
      font-size: 12px;
      font-style: italic;
      font-weight: 700;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .header-account-arrow {
      color: #b18b20;
      font-size: 14px;
      transition: transform 180ms ease;
    }

    .header-account-pill:hover .header-account-arrow {
      transform: translateX(2px);
    }

    .header-account-pill.signed-in {
      border-color: rgba(212, 175, 55, 0.3);
      background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(252,249,240,0.94));
    }

    /* Responsive */

    @media (max-width: 1100px) {
      #site-shell {
        padding: 48px 36px;
      }
    }

    @media (max-width: 768px) {
      #mobile-menu-button {
        display: flex;
      }

      #sidebar {
        width: min(18rem, 88vw);
        transform: translateX(-100%);
        transition: transform 350ms ease;
      }

      #sidebar.sidebar-open {
        transform: translateX(0);
      }

      #site-shell {
        margin-left: 0;
        padding: 88px 18px 38px;
      }

      .auth-card {
        max-height: none;
        padding: 28px 22px;
      }

      .review-toolbar {
        align-items: stretch;
      }

      .review-toolbar button,
      .review-toolbar select {
        flex: 1 1 auto;
      }

      .emoji-panel {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }

      .campaign-hero-image {
        width: 100%;
        object-position: 58% center;
        opacity: 1;
      }

      .campaign-hero-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42));
      }

      .header-right-tools {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
      }

      .header-account-pill {
        min-width: 0;
        padding-right: 10px;
      }

      .header-account-eyebrow {
        display: none;
      }

      .mobile-purchase-bar {
        position: fixed;
        right: 12px;
        bottom: 12px;
        left: 12px;
        z-index: 80;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        align-items: center;
        padding: 12px;
        border: 1px solid rgba(212, 175, 55, 0.28);
        border-radius: 18px;
        background: rgba(9, 9, 9, 0.96);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
        backdrop-filter: blur(12px);
      }
    }

    @media (max-width: 1050px) {
      .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .trust-card:nth-child(2)::after {
        display: none;
      }

      .trust-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(18, 18, 18, 0.08);
      }
    }

    @media (max-width: 480px) {
      .trust-strip {
        grid-template-columns: 1fr;
      }

      .trust-card {
        min-height: 112px;
        padding: 20px;
      }

      .trust-card:not(:last-child)::after {
        top: auto;
        right: 20px;
        bottom: 0;
        left: 20px;
        width: auto;
        height: 1px;
      }

      .trust-card:nth-child(-n+2) {
        border-bottom: 0;
      }

      #site-shell {
        padding-right: 14px;
        padding-left: 14px;
      }

      .emoji-panel {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }

      .header-milan-time {
        font-size: 8px;
        letter-spacing: 0.1em;
      }

      .header-account-label {
        max-width: 78px;
        font-size: 11px;
      }

      .header-account-arrow {
        display: none;
      }
    }

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

/* =========================================================
   AURELI VERA — POLISHED STOREFRONT DETAILS
   ========================================================= */

.luxury-announcement {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: -24px 0 34px;
  padding: 10px 18px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 9999px;
  color: #77611c;
  background: linear-gradient(90deg, rgba(255,255,255,.72), rgba(252,249,240,.92), rgba(255,255,255,.72));
  box-shadow: 0 10px 34px rgba(80, 62, 13, 0.045);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
  text-align: center;
  text-transform: uppercase;
}

.announcement-star {
  color: var(--gold);
  font-size: 10px;
  line-height: 1;
}

.announcement-dot {
  width: 3px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 9999px;
  background: rgba(212, 175, 55, .75);
}

.collection-heading {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  gap: 28px;
  align-items: center;
  margin: 8px 0 38px;
  text-align: center;
}

.collection-heading-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18,18,18,.13));
}

.collection-heading-line:last-child {
  background: linear-gradient(90deg, rgba(18,18,18,.13), transparent);
}

.collection-heading-copy {
  max-width: 520px;
}

.collection-kicker {
  margin-bottom: 7px;
  color: #ae8a22;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .38em;
  text-transform: uppercase;
}

.collection-title {
  color: #171717;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  line-height: 1;
}

.collection-subtitle {
  margin-top: 10px;
  color: #8a8a8a;
  font-family: "Playfair Display", serif;
  font-size: 12px;
  font-style: italic;
}

.product-card-luxury {
  animation: productCardReveal .55s ease both;
}

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

.product-card-image-wrap {
  isolation: isolate;
}

.product-card-primary-image,
.product-card-alt-image {
  transition: opacity .55s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}

.product-card-alt-image {
  z-index: 2;
  opacity: 0;
}

.product-card-luxury:hover .product-card-primary-image {
  transform: scale(1.04);
}

.product-card-luxury:hover .product-card-alt-image {
  opacity: 1;
  transform: scale(1.025);
}

.product-card-badge {
  z-index: 10;
  padding: 8px 12px;
  border: 1px solid rgba(212, 175, 55, .32);
  border-radius: 9999px;
  color: #d4af37;
  background: rgba(9, 9, 9, .91);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
  backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.product-card-view-cue {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 9999px;
  color: #fff;
  background: rgba(0,0,0,.45);
  opacity: 0;
  backdrop-filter: blur(10px);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateY(7px);
  transition: opacity .25s ease, transform .25s ease;
}

.product-card-luxury:hover .product-card-view-cue {
  opacity: 1;
  transform: translateY(0);
}

.product-card-body {
  position: relative;
}

.product-card-swatches {
  display: flex;
  min-height: 18px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: -2px 0 12px;
}

.product-card-swatch {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(18,18,18,.16);
  border-radius: 9999px;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(18,18,18,.06);
}

.swatch-navy { background: #17223e; }
.swatch-black { background: #151515; }
.swatch-white { background: #f7f4ed; }

.product-card-swatch:first-child {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(212,175,55,.42);
}

@media (max-width: 768px) {
  .luxury-announcement {
    margin-top: -48px;
    margin-bottom: 24px;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 16px;
    font-size: 7px;
    letter-spacing: .11em;
  }

  .announcement-dot-secondary,
  .announcement-optional {
    display: none;
  }

  .collection-heading {
    grid-template-columns: 30px 1fr 30px;
    gap: 14px;
    margin-bottom: 28px;
  }

  .collection-subtitle {
    font-size: 11px;
    line-height: 1.5;
  }

  .product-card-view-cue {
    display: none;
  }
}

@media (max-width: 480px) {
  .luxury-announcement .announcement-dot,
  .luxury-announcement > span:nth-of-type(4) {
    display: none;
  }

  .luxury-announcement {
    justify-content: center;
  }
}


/* =========================================================
   FINAL LUXURY POLISH — July 2026
   ========================================================= */

/* Brighter secondary navigation for comfortable contrast on black. */
#sidebar .sidebar-nav-link.text-gray-400,
#sidebar .sidebar-nav-link.text-gray-300 {
  color: #c9c4bb !important;
}

#sidebar .sidebar-nav-link:hover {
  color: #fcf9f0 !important;
}

.sidebar-signout {
  color: #d8b4b4;
  text-decoration: none;
}

.sidebar-signout:hover {
  color: #f1d0d0;
  transform: translateX(3px);
}

.sidebar-copyright {
  color: #a9a49b;
}

.sidebar-customer-care {
  color: #d7d1c7;
  transition: color 180ms ease, transform 180ms ease;
}

.sidebar-customer-care:hover {
  color: #d4af37;
  transform: translateX(3px);
}

/* More deliberate product-card hierarchy and breathing room. */
.product-card-body {
  padding: 28px 24px 26px !important;
}

.product-card-body .product-card-swatches {
  margin-bottom: 16px;
}

.product-card-body h3 {
  margin-bottom: 9px !important;
  line-height: 1.2;
}

.product-card-body > p.text-sm {
  margin-bottom: 0;
  letter-spacing: .02em;
}

.product-card-rating {
  margin-top: 14px;
}

.product-card-rating + p,
.product-card-body > p.mt-3 {
  margin-top: 14px;
}

@media (max-width: 640px) {
  .product-card-body {
    padding: 24px 20px 23px !important;
  }
}

/* =========================================================
   LUXURY DESIGN UPDATE — Editorial CTA + Signature Footer
   ========================================================= */
.editorial-cta {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 30px;
  background: #0a0a0a;
  box-shadow: 0 30px 90px rgba(0,0,0,.16);
}
.editorial-cta-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
}
.editorial-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,4,4,.82) 0%, rgba(4,4,4,.58) 42%, rgba(4,4,4,.12) 76%, rgba(4,4,4,.2) 100%);
}
.editorial-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 420px;
  max-width: 620px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 64px;
  color: #fff;
}
.editorial-cta-kicker {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .36em;
  text-transform: uppercase;
}
.editorial-cta-title {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-style: italic;
  line-height: .95;
  letter-spacing: -.035em;
}
.editorial-cta-copy {
  max-width: 430px;
  margin-top: 22px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  line-height: 1.8;
}
.editorial-cta-button {
  margin-top: 30px;
  padding: 15px 24px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #070707;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.luxury-footer {
  margin-right: -64px;
  margin-bottom: -64px;
  margin-left: -64px;
  padding: 62px 64px 24px;
  color: #f7f2e8;
  background:
    radial-gradient(circle at 12% 15%, rgba(212,175,55,.08), transparent 24%),
    #070707;
  border-top: 1px solid rgba(212,175,55,.2);
}
.luxury-footer-inner {
  display: grid;
  grid-template-columns: 1.25fr .8fr 1fr 1.55fr;
  gap: 48px;
  max-width: 1500px;
  margin: 0 auto;
}
.luxury-footer-brand .av-logo-mark {
  margin-left: 0;
}
.luxury-footer-name {
  color: #fff;
  font-size: 1.45rem;
  font-style: italic;
}
.luxury-footer-tagline,
.luxury-footer-newsletter-copy {
  margin-top: 14px;
  color: #8f8a82;
  font-size: 11px;
  line-height: 1.9;
}
.luxury-footer-heading {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.luxury-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.luxury-footer-column button,
.luxury-footer-legal button,
.luxury-footer-legal a {
  color: #aaa59d;
  font-size: 11px;
  transition: color 180ms ease, transform 180ms ease;
}
.luxury-footer-column button:hover,
.luxury-footer-legal button:hover,
.luxury-footer-legal a:hover {
  color: #fff;
}
.luxury-footer-column button:hover {
  transform: translateX(3px);
}
.luxury-newsletter-form {
  display: grid;
  grid-template-columns: 1fr 48px;
  margin-top: 20px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.025);
}
.luxury-newsletter-form input {
  min-width: 0;
  padding: 14px 16px;
  outline: none;
  color: #fff;
  background: transparent;
  font-size: 11px;
}
.luxury-newsletter-form input::placeholder { color: #69655f; }
.luxury-newsletter-form button {
  color: #080808;
  background: var(--gold);
  font-size: 18px;
  transition: filter 180ms ease;
}
.luxury-newsletter-form button:hover { filter: brightness(1.08); }
.luxury-newsletter-form button:disabled { opacity: .55; }
.luxury-newsletter-status {
  min-height: 18px;
  margin-top: 10px;
  color: #99948c;
  font-size: 10px;
}
.luxury-footer-bottom {
  display: flex;
  max-width: 1500px;
  margin: 52px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #68645e;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.luxury-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.luxury-footer-legal button,
.luxury-footer-legal a {
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .luxury-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .editorial-cta { min-height: 390px; }
  .editorial-cta-content { min-height: 390px; padding: 36px 28px; }
  .editorial-cta-overlay { background: linear-gradient(90deg, rgba(4,4,4,.8), rgba(4,4,4,.44)); }
  .luxury-footer {
    margin-right: -24px;
    margin-bottom: -24px;
    margin-left: -24px;
    padding: 48px 24px 22px;
  }
  .luxury-footer-inner { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .luxury-footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .luxury-footer-inner { grid-template-columns: 1fr; }
  .editorial-cta-title { font-size: 3.2rem; }
}


    /* Sleeve collections */

    .sleeve-collection-block {
      margin-top: 3.5rem;
    }

    .sleeve-collection-block-secondary {
      margin-top: 5.5rem;
      padding-top: 3.5rem;
      border-top: 1px solid rgba(18, 18, 18, 0.08);
    }

    .sleeve-section-heading {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .sleeve-section-kicker {
      margin-bottom: 8px;
      color: #9b7b16;
      font-size: 8px;
      font-weight: 800;
      letter-spacing: 0.28em;
      text-transform: uppercase;
    }

    .sleeve-section-title {
      margin: 0;
      font-family: "Playfair Display", serif;
      font-size: clamp(2rem, 4vw, 3.25rem);
      font-style: italic;
      font-weight: 500;
      letter-spacing: -0.035em;
    }

    .sleeve-section-count {
      padding-bottom: 7px;
      color: #8b8b8b;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .sleeve-empty-state {
      padding: 42px;
      border: 1px dashed rgba(18, 18, 18, 0.12);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.58);
      text-align: center;
    }

    @media (max-width: 640px) {
      .sleeve-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
      }

      .sleeve-section-count {
        padding-bottom: 0;
      }

      .sleeve-collection-block-secondary {
        margin-top: 4rem;
        padding-top: 3rem;
      }
    }


/* Checkout result */
.checkout-result-shell {
  min-height: calc(100vh - 190px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0 72px;
}

.checkout-result-card {
  width: min(100%, 720px);
  padding: clamp(38px, 7vw, 72px);
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 32px;
  background: linear-gradient(145deg, #0a0a0a, #151515);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
}

.checkout-result-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 9999px;
  color: var(--gold);
  font-size: 28px;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.12);
}

.checkout-result-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.checkout-result-title {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-style: italic;
  line-height: 1;
}

.checkout-result-message {
  max-width: 540px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.9;
}

.checkout-result-note {
  max-width: 520px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.7;
}

.checkout-result-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.checkout-result-primary,
.checkout-result-secondary {
  min-width: 190px;
  padding: 16px 22px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.checkout-result-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #000;
}

.checkout-result-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
}

.checkout-result-primary:hover,
.checkout-result-secondary:hover { transform: translateY(-2px); }
.checkout-result-secondary:hover { border-color: var(--gold); color: var(--gold); }

.checkout-result-brand {
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Playfair Display", serif;
  font-size: 11px;
  letter-spacing: 0.28em;
}
.checkout-result-brand span { color: var(--gold); }
.checkout-result-cancelled .checkout-result-icon { color: #fff; border-color: rgba(255,255,255,.3); }
.checkout-result-cancelled .checkout-result-kicker { color: rgba(255,255,255,.55); }

@media (max-width: 640px) {
  .checkout-result-shell { padding: 18px 0 48px; }
  .checkout-result-card { padding: 38px 22px; border-radius: 24px; }
  .checkout-result-actions { flex-direction: column; }
  .checkout-result-primary, .checkout-result-secondary { width: 100%; }
}
\n\n/* Email confirmation result */\n.auth-confirmation-shell {\n  display: flex;\n  min-height: 62vh;\n  align-items: center;\n  justify-content: center;\n  padding: 40px 0 64px;\n}\n\n.auth-confirmation-card {\n  width: min(100%, 720px);\n  padding: clamp(36px, 7vw, 72px);\n  border: 1px solid rgba(18, 18, 18, 0.08);\n  border-radius: 30px;\n  background: #fff;\n  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.08);\n  text-align: center;\n}\n\n.auth-confirmation-icon {\n  display: flex;\n  width: 64px;\n  height: 64px;\n  margin: 0 auto 22px;\n  align-items: center;\n  justify-content: center;\n  border: 1px solid rgba(212, 175, 55, 0.55);\n  border-radius: 999px;\n  color: #121212;\n  background: rgba(212, 175, 55, 0.12);\n  font-size: 28px;\n  font-weight: 800;\n}\n\n.auth-confirmation-kicker {\n  margin: 0 0 10px;\n  color: #9b8652;\n  font-size: 10px;\n  font-weight: 800;\n  letter-spacing: 0.28em;\n  text-transform: uppercase;\n}\n\n.auth-confirmation-title {\n  margin: 0;\n  font-size: clamp(2.3rem, 6vw, 4.6rem);\n  font-style: italic;\n  font-weight: 500;\n  line-height: 1;\n}\n\n.auth-confirmation-message {\n  max-width: 560px;\n  margin: 24px auto 0;\n  color: #666;\n  font-size: 14px;\n  line-height: 1.9;\n}\n\n.auth-confirmation-actions {\n  display: flex;\n  flex-wrap: wrap;\n  gap: 12px;\n  justify-content: center;\n  margin-top: 32px;\n}\n\n.auth-confirmation-primary,\n.auth-confirmation-secondary {\n  min-width: 180px;\n  padding: 15px 24px;\n  border-radius: 12px;\n  font-size: 10px;\n  font-weight: 900;\n  letter-spacing: 0.16em;\n  text-transform: uppercase;\n  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;\n}\n\n.auth-confirmation-primary {\n  border: 1px solid #121212;\n  color: #d4af37;\n  background: #121212;\n}\n\n.auth-confirmation-secondary {\n  border: 1px solid rgba(18, 18, 18, 0.14);\n  color: #121212;\n  background: #fff;\n}\n\n.auth-confirmation-primary:hover,\n.auth-confirmation-secondary:hover {\n  transform: translateY(-1px);\n  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);\n}\n\n.auth-confirmation-brand {\n  margin-top: 34px;\n  color: #aaa;\n  font-size: 9px;\n  font-weight: 800;\n  letter-spacing: 0.3em;\n}\n

/* ===== Aureli Vera launch polish ===== */

.product-purchase-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, .62);
}

.product-purchase-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-purchase-assurance span:not(:last-child)::after {
  content: "·";
  margin-left: 8px;
  opacity: .55;
}

#newsletter-status {
  min-height: 20px;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .02em;
  transition: opacity .2s ease, transform .2s ease;
}

.newsletter-status-success {
  color: #D4AF37 !important;
}

.newsletter-status-error {
  color: #dc2626 !important;
}

.newsletter-status-neutral {
  color: #9ca3af !important;
}

button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .58;
}

@media (max-width: 640px) {
  .product-purchase-assurance {
    gap: 6px 10px;
    font-size: 10px;
  }

  .product-purchase-assurance span:not(:last-child)::after {
    margin-left: 5px;
  }
}
