/** Shopify CDN: Minification failed

Line 6216:20 Expected "}" to go with "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:1) */
.announcement-bar {
    overflow: hidden;
    padding: 0.65rem 0;
    font-family: 'CircularStd', sans-serif;
  }

  .announcement-bar__track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: announcement-marquee 25s linear infinite;
    will-change: transform;
  }

  .announcement-bar__item {
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
  }

  .announcement-bar__item svg {
    flex-shrink: 0;
    opacity: 0.9;
  }

  @keyframes announcement-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @media (prefers-reduced-motion: reduce) {
    .announcement-bar__track {
      animation: none;
    }
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:article (INDEX:2) */
.article-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.5rem 5rem;
    color: #fff;
  }

  .article-page__hero {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2.5rem;
  }

  .article-page__hero-img {
    display: block;
    width: 100%;
    height: auto;
  }

  .article-page__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
  }

  .article-page__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .article-page__tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(167,139,250,0.15);
    border: 1px solid rgba(167,139,250,0.35);
    color: #c4b5fd;
  }

  .article-page__date,
  .article-page__author {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
  }

  .article-page__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 2rem;
  }

  .article-page__content.rte {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
  }

  .article-page__content.rte h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 2.5rem 0 1rem;
  }

  .article-page__content.rte h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 2rem 0 0.75rem;
  }

  .article-page__content.rte p {
    margin: 0 0 1.25rem;
  }

  .article-page__content.rte a {
    color: #a78bfa;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .article-page__content.rte img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
  }

  .article-page__content.rte ul,
  .article-page__content.rte ol {
    padding-left: 1.5rem;
    margin: 0 0 1.25rem;
  }

  .article-page__content.rte li {
    margin-bottom: 0.4rem;
  }

  .article-page__content.rte blockquote {
    border-left: 3px solid #7c3aed;
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    color: rgba(255,255,255,0.6);
    font-style: italic;
  }

  .article-page__back {
    display: inline-flex;
    align-items: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }

  .article-page__back:hover {
    color: #fff;
  }
/* END_SECTION:article */

/* START_SECTION:collection-showcase (INDEX:5) */
.cshowcase {
    padding: 3rem 0 4rem;
    background: #242427;
    overflow: hidden;
  }

  .cshowcase__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 3rem 1.5rem;
  }

  .cshowcase__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a78bfa;
    margin: 0 0 0.5rem;
  }

  .cshowcase__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0;
    line-height: 1;
  }

  .cshowcase__nav {
    display: flex;
    gap: 0.5rem;
  }

  .cshowcase__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
  }

  .cshowcase__arrow:hover {
    background: rgba(167,139,250,0.15);
    border-color: rgba(167,139,250,0.5);
    color: #fff;
  }

  .cshowcase__progress {
    height: 2px;
    background: rgba(255,255,255,0.07);
    margin: 0 3rem 1.5rem;
    border-radius: 999px;
    overflow: hidden;
  }

  .cshowcase__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #a78bfa, #7c3aed);
    border-radius: 999px;
    transition: width 0.2s ease;
    width: 0%;
  }

  .cshowcase__track-wrap {
    overflow: hidden;
  }

  .cshowcase__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 0 3rem 4px 0;
    box-sizing: border-box;
  }

  .cshowcase__track::-webkit-scrollbar { display: none; }

  .cshowcase__card {
    flex: 0 0 calc((100% - 7rem) / 5.6);
    scroll-snap-align: start;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease;
  }

  .cshowcase__card:first-child {
    margin-left: 3rem;
  }

  .cshowcase__card:hover {
    transform: translateY(-4px);
  }

  .cshowcase__image-wrap {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #111;
  }

  .cshowcase__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.5s ease;
  }

  .cshowcase__img--primary { opacity: 1; }
  .cshowcase__img--secondary { opacity: 0; }

  .cshowcase__card.has-second-image:hover .cshowcase__img--primary { opacity: 0; }
  .cshowcase__card.has-second-image:hover .cshowcase__img--secondary { opacity: 1; }
  .cshowcase__card.has-second-image:hover .cshowcase__img--primary { transform: scale(1.04); }

  .cshowcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 30%,
      rgba(0,0,0,0.4) 60%,
      rgba(0,0,0,0.85) 100%
    );
    transition: opacity 0.35s ease;
  }

  .cshowcase__card:hover .cshowcase__overlay {
    opacity: 1.3;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.1) 0%,
      rgba(0,0,0,0.5) 50%,
      rgba(0,0,0,0.92) 100%
    );
  }

  .cshowcase__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #f4a4b0;
    color: #111;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    z-index: 2;
  }

  .cshowcase__badge--new {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
  }

  .cshowcase__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .cshowcase__meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .cshowcase__collection {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a78bfa;
    margin: 0;
  }

  .cshowcase__name {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cshowcase__price {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
  }

  .cshowcase__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 10px;
    font-family: 'CircularStd', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 0.7rem 1rem;
    cursor: pointer;
    width: 100%;
    transform: translateY(calc(100% + 1.25rem));
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, background 0.2s;
  }

  .cshowcase__card:hover .cshowcase__cta {
    transform: translateY(0);
    opacity: 1;
  }

  .cshowcase__cta:hover {
    background: #f0f0f0;
  }

  .cshowcase__cta.is-added {
    background: #22c55e;
    color: #fff;
  }

  .cshowcase__footer {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
  }

  .cshowcase__footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color 0.2s, gap 0.2s;
  }

  .cshowcase__footer-link:hover {
    color: #fff;
    gap: 0.75rem;
  }

  @media (max-width: 1024px) {
    .cshowcase__card { flex: 0 0 calc(33.33% - 0.75rem); }
  }

  @media (max-width: 768px) {
    .cshowcase__header { padding: 0 1.25rem 1.25rem; }
    .cshowcase__progress { margin: 0 1.25rem 1.25rem; }
    .cshowcase__track { padding: 0 1.25rem 4px 0; }
    .cshowcase__card { flex: 0 0 52%; }
    .cshowcase__card:first-child { margin-left: 1.25rem; }
    .cshowcase__cta {
      transform: translateY(0);
      opacity: 1;
      font-size: 0.75rem;
      padding: 0.6rem;
    }
  }
/* END_SECTION:collection-showcase */

/* START_SECTION:collection-slider (INDEX:6) */
.col-slider {
    padding: 3rem 0;
    font-family: 'CircularStd', sans-serif;
  }

  .col-slider__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0 3rem;
  }

  .col-slider__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .col-slider__title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
  }

  .col-slider__title-line {
    height: 1px;
    background: linear-gradient(90deg, #D9D9D9, #242427);
    position: relative;
    overflow: hidden;
    margin: 0 3rem 1.5rem;
  }

  .col-slider__title-line-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #D9D9D9;
    transition: width 0.2s ease;
  }

  .col-slider__arrows {
    display: flex;
    gap: 0.75rem;
    align-items: center;
  }

  .col-slider__arrow {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.2s;
  }

  .col-slider__arrow:hover {
    opacity: 1;
  }

  .col-slider__track-wrap {
    overflow: hidden;
    padding-bottom: 52px;
    margin-bottom: -52px;
  }

  .col-slider__track-wrap.is-dragging {
    cursor: grabbing;
  }

  .col-slider__track-wrap.is-dragging .col-slider__wrap {
    pointer-events: none;
  }

  .col-slider__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 0 3rem 52px 0;
    margin-bottom: -52px;
    align-items: stretch;
  }

  .col-slider__track::-webkit-scrollbar {
    display: none;
  }

  .col-slider__wrap {
    flex: 0 0 calc(20% - 0.75rem);
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    border-radius: 25px;
  }

  .col-slider__track-spacer {
    flex: 0 0 calc(3rem - 1rem);
    min-width: calc(3rem - 1rem);
    scroll-snap-align: start;
  }

  .col-slider__card {
    cursor: pointer;
    border-radius: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  }

  .col-slider__image-wrap {
    display: block;
    overflow: hidden;
    background: transparent;
    border-radius: 0;
    position: relative;
  }

  .col-slider__img--primary {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 0.4s ease;
  }

  .col-slider__img--secondary {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .col-slider__wrap.has-second-image:hover .col-slider__img--primary {
    opacity: 0;
  }

  .col-slider__wrap.has-second-image:hover .col-slider__img--secondary {
    opacity: 1;
  }

  .col-slider__badge {
    background: #f4a4b0;
    color: #111;
    font-size: 0.78rem;
    font-weight: 500;
    text-align: center;
    padding: 0.4rem 1rem;
    letter-spacing: 0.01em;
  }

  .col-slider__info {
    padding: 0.9rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
    background: #FBFBFB;
    text-align: center;
    align-items: center;
  }

  .col-slider__collection-label {
    font-size: 0.7rem;
    font-weight: 500;
    margin: 0;
    color: #CA94F9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .col-slider__name {
    font-size: 0.85rem;
    font-weight: 400;
    margin: 0;
    color: #111;
    line-height: 1.35;
  }

  .col-slider__col-logo {
    display: block;
    max-height: 28px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin: 0.35rem 0;
  }

  .col-slider__price {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.03em;
    color: #111;
  }

  .col-slider__cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 77px;
    padding: 25px 1rem 0;
    background: #a855f7;
    color: #fff;
    border: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform : uppercase; font-style : italic;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: transform 0.4s ease-out, background 0.2s;
    text-align: center;
    border-radius: 0 0 25px 25px;
    transform: translateY(0);
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .col-slider__wrap:hover .col-slider__cta {
    transform: translateY(52px);
  }

  .col-slider__cta:hover {
    background: #9333ea;
  }

  .col-slider__cta-mobile {
    display: none;
  }

  .col-slider__footer {
    margin-top: 5rem;
    display: flex;
    justify-content: center;
    padding: 0 var(--page-margin, 2rem);
  }

  .col-slider__footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-style: italic;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s;
  }

  .col-slider__footer-cta .holo-layer {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    mix-blend-mode: multiply;
    background: conic-gradient(
      from var(--holo-angle, 0deg) at var(--holo-x, 50%) var(--holo-y, 50%),
      rgba(255,0,128,0.12), rgba(255,165,0,0.10), rgba(255,255,0,0.08),
      rgba(0,255,128,0.10), rgba(0,180,255,0.12), rgba(160,0,255,0.10),
      rgba(255,0,128,0.12)
    );
  }

  .col-slider__footer-cta:hover .holo-layer { opacity: 1; }

  .col-slider__footer-cta:hover {
    transform: translateY(-1px);
    background: #e0e0e0;
    border-color: #e0e0e0;
  }

  .col-slider__cta-mobile-btn {
    display: none;
  }

  @media (max-width: 768px) {
    .col-slider__wrap {
      flex: 0 0 60%;
    }

    .col-slider__footer {
      margin-top: 2rem;
    }

    .col-slider__header {
      padding: 0 1rem;
    }

    .col-slider__title-line {
      margin: 1rem 1rem 1.5rem;
    }

    .col-slider__title {
      font-size: 1.5rem;
    }

    .col-slider__collection-label {
      font-size: 0.5rem;
      font-weight: 700;
      margin: 0;
      color: #ca94f9;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      line-height: 1.2;
      font-style: italic;
    }

    .col-slider__name {
      font-size: 0.75rem;
    }

    .col-slider__price {
      font-size: 1rem;
      margin-top: auto;
    }

    .col-slider__cta {
      display: none;
    }

    .col-slider__cta-mobile-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      padding: 0.6rem 1.5rem;
      background: #e9d5ff;
      color: #7c3aed;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      text-decoration: none;
      margin-top: auto;
      padding-top: 0.6rem;
    }

    .col-slider {
      padding: 4rem 0;
    }
  }
/* END_SECTION:collection-slider */

/* START_SECTION:collection (INDEX:7) */
.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;
  }

  .coll {
    font-family: 'CircularStd', sans-serif;
    background: #fff;
    min-height: 60vh;
  }

  /* Hero */
  .coll__hero {
    position: relative; padding: 5rem 3rem 3rem;
    background: #111; overflow: hidden;
    display: flex; align-items: flex-end; min-height: 260px;
  }
  .coll__hero--has-image { min-height: 340px; }
  .coll__hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
  .coll__hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%); z-index: 1; }
  .coll__hero-content { position: relative; z-index: 2; max-width: var(--page-width, 1200px); width: 100%; margin: 0 auto; }
  .coll__hero-title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.04em; color: #fff; margin: 0 0 0.75rem; }
  .coll__hero-logo { display: block; max-height: 60px; width: auto; max-width: 260px; object-fit: contain; margin-top: 0.5rem; }

  /* Toolbar */
  .coll__toolbar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 3rem; border-bottom: 1px solid #eee;
    max-width: var(--page-width, 1200px); margin: 0 auto;
    width: 100%; box-sizing: border-box;
  }
  .coll__toolbar-left { display: flex; align-items: center; gap: 1rem; }
  .coll__filter-toggle {
    display: flex; align-items: center; gap: 0.45rem;
    font-family: 'CircularStd', sans-serif; font-size: 0.875rem; font-weight: 500;
    color: #555; background: none; border: 1px solid #ddd; border-radius: 999px;
    padding: 0.35rem 0.85rem 0.35rem 0.7rem; cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .coll__filter-toggle:hover,
  .coll__filter-toggle[aria-expanded="true"],
  .coll__filter-toggle.has-filters { border-color: #7c3aed; color: #7c3aed; }
  .coll__filter-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 18px; height: 18px; background: #7c3aed; color: #fff;
    font-size: 0.7rem; font-weight: 700; border-radius: 999px; padding: 0 4px;
  }
  .coll__count { font-size: 0.875rem; color: #888; margin: 0; }
  .coll__sort-wrap { display: flex; align-items: center; gap: 0.6rem; }
  .coll__sort-label { font-size: 0.875rem; color: #888; }
  .coll__sort-select {
    font-family: 'CircularStd', sans-serif; font-size: 0.875rem; color: #111;
    border: 1px solid #ddd; border-radius: 999px;
    padding: 0.35rem 2rem 0.35rem 0.85rem;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23111' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0.7rem center;
    -webkit-appearance: none; appearance: none; cursor: pointer; outline: none;
  }

  /* Overlay mobile */
  .coll__overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 295; opacity: 0; transition: opacity 0.3s; }
  .coll__overlay.is-visible { display: block; opacity: 1; }

  /* Body layout */
  .coll__body {
    display: flex; align-items: flex-start;
    max-width: var(--page-width, 1200px); margin: 0 auto;
    width: 100%; box-sizing: border-box;
  }

  /* Sidebar */
  .coll__sidebar {
    width: 0; flex-shrink: 0; overflow: hidden;
    transition: width 0.3s ease;
    border-right: 1px solid transparent;
    position: sticky; top: 70px;
    max-height: calc(100vh - 70px);
  }
  .coll__body.sidebar-open .coll__sidebar {
    width: 260px; border-right-color: #eee; overflow: visible;
  }
  .coll__sidebar-scroll {
    width: 260px; padding: 1.25rem 1.25rem 2rem;
    overflow-y: auto; max-height: calc(100vh - 70px);
  }
  .coll__sidebar-close { display: none; }

  /* Filter groups */
  .coll__sf { padding: 1rem 0; border-bottom: 1px solid #f0f0f0; }
  .coll__sf:last-child { border-bottom: none; }
  .coll__sf-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin: 0 0 0.75rem; }

  /* Radios (boolean) */
  .coll__sf-radios { display: flex; flex-direction: column; gap: 0.1rem; }
  .coll__sf-radio {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.35rem 0.5rem; border-radius: 8px;
    font-size: 0.875rem; color: #444; cursor: pointer;
    transition: background 0.15s;
  }
  .coll__sf-radio:hover { background: #f9f9f9; }
  .coll__sf-radio.is-active { color: #111; font-weight: 500; }
  .coll__sf-radio-box {
    width: 16px; height: 16px; border-radius: 50%;
    border: 2px solid #ddd; flex-shrink: 0; transition: border-color 0.15s, background 0.15s;
  }
  .coll__sf-radio.is-active .coll__sf-radio-box { border-color: #7c3aed; background: #7c3aed; box-shadow: inset 0 0 0 2px #fff; }
  .coll__avail-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
  .coll__avail-dot--on  { background: #22c55e; }
  .coll__avail-dot--off { background: #f43f5e; }

  /* Price slider */
  .coll__price-slider { margin: 0.5rem 0 0.75rem; }
  .coll__price-track { position: relative; height: 4px; background: #e5e7eb; border-radius: 2px; margin: 0.75rem 9px; }
  .coll__price-fill { position: absolute; top: 0; height: 100%; background: linear-gradient(90deg, #a78bfa, #7c3aed); border-radius: 2px; }
  .coll__price-thumb {
    position: absolute; top: 50%; transform: translate(-50%, -50%);
    width: 18px; height: 18px; border-radius: 50%;
    background: #fff; border: 2px solid #7c3aed;
    cursor: grab; box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    z-index: 2; transition: transform 0.1s, box-shadow 0.1s;
  }
  .coll__price-thumb:hover,
  .coll__price-thumb.is-dragging { cursor: grabbing; transform: translate(-50%, -50%) scale(1.2); box-shadow: 0 0 0 4px rgba(124,58,237,0.15); }
  .coll__price-inputs { display: flex; align-items: center; gap: 0.5rem; }
  .coll__price-input-wrap { display: flex; align-items: center; gap: 0.2rem; flex: 1; border: 1px solid #ddd; border-radius: 8px; padding: 0.35rem 0.5rem; transition: border-color 0.15s; }
  .coll__price-input-wrap:focus-within { border-color: #7c3aed; }
  .coll__price-currency { font-size: 0.8rem; color: #aaa; flex-shrink: 0; }
  .coll__price-num { width: 100%; border: none; outline: none; font-family: 'CircularStd', sans-serif; font-size: 0.875rem; color: #111; background: transparent; -moz-appearance: textfield; appearance: textfield; min-width: 0; }
  .coll__price-num::-webkit-inner-spin-button, .coll__price-num::-webkit-outer-spin-button { -webkit-appearance: none; }
  .coll__price-sep { font-size: 0.875rem; color: #aaa; flex-shrink: 0; }

  /* List pills */
  .coll__sf-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .coll__sf-pill {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.3rem 0.75rem; border-radius: 999px; border: 1px solid #ddd;
    font-size: 0.8rem; color: #555; cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    user-select: none;
  }
  .coll__sf-pill:hover { border-color: #a78bfa; color: #7c3aed; }
  .coll__sf-pill.is-active { background: #f5f0ff; border-color: #7c3aed; color: #7c3aed; font-weight: 500; }
  .coll__sf-pill-count { font-size: 0.7rem; color: inherit; opacity: 0.6; }

  /* Filter actions */
  .coll__sf-actions { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; }
  .coll__sf-apply {
    width: 100%; padding: 0.7rem 1rem;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff; border: none; border-radius: 10px;
    font-family: 'CircularStd', sans-serif; font-size: 0.875rem; font-weight: 500;
    cursor: pointer; transition: opacity 0.2s;
  }
  .coll__sf-apply:hover { opacity: 0.85; }
  .coll__sf-reset {
    display: block; text-align: center; text-decoration: none;
    background: none; border: none; font-family: 'CircularStd', sans-serif;
    font-size: 0.8rem; color: #aaa; cursor: pointer; padding: 0.25rem;
    transition: color 0.15s;
  }
  .coll__sf-reset:hover { color: #555; }
  .coll__sf-reset--disabled { cursor: default; }

  /* Main */
  .coll__main { flex: 1; min-width: 0; }

  /* Grid */
  .coll__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem; padding: 1.5rem 3rem 4rem; box-sizing: border-box;
  }
  .coll__body.sidebar-open .coll__main .coll__grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 1.5rem 1.5rem 4rem;
  }

  .coll__card { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; background: #f7f7f7; transition: box-shadow 0.2s; }
  .coll__card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
  .coll__image-wrap { position: relative; aspect-ratio: 1; overflow: hidden; display: block; background: transparent; }
  .coll__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.35s ease, transform 0.5s ease; }
  .coll__img--secondary { opacity: 0; }
  .coll__image-wrap.has-second-image:hover .coll__img--primary  { opacity: 0; transform: scale(1.03); }
  .coll__image-wrap.has-second-image:hover .coll__img--secondary { opacity: 1; }
  .coll__badge { position: absolute; top: 0.75rem; left: 0.75rem; background: #111; color: #fff; font-size: 0.75rem; font-weight: 500; padding: 0.25rem 0.65rem; border-radius: 999px; z-index: 2; }
  .coll__badge--sold { background: #888; }
  .coll__info { padding: 0.85rem 1rem 0.5rem; flex: 1; }
  .coll__label { font-size: 0.72rem; color: #aaa; margin: 0 0 0.2rem; letter-spacing: 0.02em; text-transform: uppercase; }
  .coll__name { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; color: #111; margin: 0 0 0.4rem; letter-spacing: -0.01em; line-height: 1.3; }
  .coll__name a { color: inherit; text-decoration: none; }
  .coll__card-logo { display: block; max-height: 28px; width: auto; max-width: 120px; object-fit: contain; margin: 0.3rem 0; }
  .coll__price { font-size: 0.95rem; font-weight: 500; color: #111; margin: 0; display: flex; gap: 0.4rem; align-items: baseline; }
  .coll__price-compare { font-size: 0.8rem; color: #aaa; text-decoration: line-through; font-weight: 400; }

  .coll__atc {
    margin: 0.75rem; padding: 0.65rem 1rem;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff; border: none; border-radius: 12px;
    font-family: 'CircularStd', sans-serif; font-size: 0.85rem; font-weight: 400;
    cursor: pointer; transition: background 0.2s, opacity 0.2s;
    letter-spacing: -0.01em; position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  }
  .coll__atc:hover { background: #b87ef0; }
  .coll__atc .holo-layer { position: absolute; inset: 0; border-radius: inherit; opacity: 0; pointer-events: none; transition: opacity 0.3s; background: conic-gradient(from var(--holo-angle, 0deg) at var(--holo-x, 50%) var(--holo-y, 50%), rgba(255,0,128,0.2), rgba(255,165,0,0.16), rgba(255,255,0,0.14), rgba(0,255,128,0.16), rgba(0,180,255,0.2), rgba(160,0,255,0.16), rgba(255,0,128,0.2)); mix-blend-mode: overlay; }
  .coll__atc:hover .holo-layer { opacity: 1; }
  .coll__atc--disabled { background: #ddd; color: #999; cursor: default; }
  .coll__atc.is-loading { opacity: 0.6; pointer-events: none; }
  .coll__atc.is-done    { background: #2d7d46; }

  /* Pagination */
  .coll__pagination { display: flex; gap: 0.5rem; justify-content: center; padding: 0 3rem 4rem; }
  .coll__page-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 2.2rem; height: 2.2rem; padding: 0 0.6rem; border-radius: 999px; border: 1px solid #ddd; color: #111; text-decoration: none; font-size: 0.875rem; transition: background 0.15s; }
  .coll__page-btn:hover      { background: #f0f0f0; }
  .coll__page-btn--active    { background: #111; color: #fff; border-color: #111; }
  .coll__page-ellipsis       { display: inline-flex; align-items: center; font-size: 0.875rem; color: #aaa; padding: 0 0.25rem; }

  /* Responsive */
  @media (max-width: 1024px) {
    .coll__grid { grid-template-columns: repeat(3, 1fr); }
    .coll__body.sidebar-open .coll__main .coll__grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    .coll__hero   { padding: 4rem 1.25rem 2rem; }
    .coll__toolbar { padding: 1rem 1.25rem; }
    .coll__sort-label { display: none; }
    .coll__pagination { padding-bottom: 3rem; }

    .coll__sidebar {
      position: fixed; top: 0; left: 0; bottom: 0; z-index: 300;
      background: #fff; box-shadow: 4px 0 24px rgba(0,0,0,0.12);
      border-right: none !important; padding: 0; max-height: none;
    }
    .coll__body.sidebar-open .coll__sidebar { width: min(290px, 88vw); }
    .coll__sidebar-scroll { width: 100%; height: 100%; max-height: none; padding-top: 3.5rem; overflow-y: auto; }
    .coll__sidebar-close {
      display: flex; align-items: center; justify-content: center;
      position: absolute; top: 1rem; right: 1rem;
      width: 32px; height: 32px; background: #f5f5f5;
      border: none; border-radius: 50%; cursor: pointer; color: #333; z-index: 1;
    }
    .coll__body { flex-direction: column; }
    .coll__grid,
    .coll__body.sidebar-open .coll__main .coll__grid {
      grid-template-columns: repeat(2, 1fr) !important;
      padding: 1rem 1rem 3rem !important;
      gap: 0.75rem;
    }
  }

  /* ── Collection Info Block ── */
  .ci { background: #2b2b38; background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 28px 28px; font-family: 'CircularStd', sans-serif; padding: 4rem 0 4.5rem; }
  .ci__inner { max-width: var(--page-width, 1200px); margin: 0 auto; padding: 0 var(--page-margin, 3rem); display: flex; flex-direction: column; gap: 2.5rem; }
  .ci__breadcrumb { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #888; margin: 0 0 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
  .ci__breadcrumb-dot { color: #a78bfa; }
  .ci__title { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 700; text-transform: uppercase; color: #fff; letter-spacing: -0.03em; margin: 0 0 1rem; line-height: 1.1; max-width: 800px; }
  .ci__desc { font-size: 0.95rem; color: #aaa; line-height: 1.65; margin: 0; max-width: 820px; }
  .ci__desc--clamped { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .ci__desc--clamped.is-expanded { display: block; overflow: visible; }
  .ci__read-more { background: none; border: none; color: #a78bfa; font-size: 0.88rem; font-family: 'CircularStd', sans-serif; cursor: pointer; padding: 0.3rem 0; margin-top: 0.25rem; transition: opacity 0.15s; }
  .ci__read-more:hover { opacity: 0.7; }
  .ci__stats { display: flex; flex-wrap: wrap; gap: 0; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; }
  .ci__stat { flex: 1; min-width: 120px; padding: 1.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 0.35rem; }
  .ci__stat:last-child { border-right: none; }
  .ci__stat-num { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: #a78bfa; letter-spacing: -0.04em; line-height: 1; }
  .ci__stat-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: #666; }
  .ci__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
  .ci__col-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #888; margin: 0 0 1rem; display: flex; align-items: center; gap: 0.5rem; }
  .ci__col-desc { font-size: 0.9rem; color: #999; margin: 0 0 1.25rem; line-height: 1.55; }
  .ci__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .ci__pill { display: inline-flex; align-items: center; padding: 0.35rem 0.9rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); color: #ccc; font-size: 0.8rem; font-weight: 400; text-decoration: none; transition: border-color 0.2s, color 0.2s; background: rgba(255,255,255,0.04); }
  a.ci__pill:hover { border-color: #a78bfa; color: #fff; }
  .ci__card-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
  .ci__card-item { font-size: 0.9rem; color: #bbb; line-height: 1.4; }
  .ci__card-item::before { content: '•'; color: #555; margin-right: 0.5rem; }
  .ci__card-name--hi { color: #a78bfa; font-weight: 500; }
  .ci__card-desc { color: #777; }

  @media (max-width: 768px) {
    .ci__inner { padding: 0 1.25rem; }
    .ci__stat  { padding: 1rem 1.25rem; }
    .ci__cols  { grid-template-columns: 1fr; gap: 2rem; }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:8) */
.coll-list {
    padding: 4rem 3rem 5rem;
    background: #0a0a10;
    min-height: 60vh;
  }
  .coll-list__header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .coll-list__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1;
  }
  .coll-list__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
  }
  .coll-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
  }
  .coll-list__card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .coll-list__card:hover {
    transform: translateY(-4px);
    border-color: rgba(167,139,250,0.35);
    box-shadow: 0 12px 40px rgba(124,58,237,0.2);
  }
  .coll-list__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #111;
  }
  .coll-list__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  .coll-list__card:hover .coll-list__image {
    transform: scale(1.05);
  }
  .coll-list__image-placeholder {
    width: 100%;
    height: 100%;
    background: #111;
  }
  .coll-list__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
  }
  .coll-list__info {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  .coll-list__name {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
  }
  .coll-list__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
    line-height: 1.5;
  }
  .coll-list__count {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-top: 0.25rem;
  }
  .coll-list__cta {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a78bfa;
    transition: color 0.2s;
  }
  .coll-list__card:hover .coll-list__cta { color: #c4b5fd; }
  @media (max-width: 768px) {
    .coll-list { padding: 3rem 1rem 4rem; }
    .coll-list__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .coll-list__info { padding: 1rem; }
    .coll-list__name { font-size: 1rem; }
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:9) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:faq (INDEX:10) */
.faq {
    background: #242427;
    font-family: 'CircularStd', sans-serif;
    padding: 4rem 0;
  }

  .faq__header {
    padding: 0 3rem;
  }

  .faq__title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
  }

  .faq__title-line {
    height: 1px;
    background: linear-gradient(90deg, #D9D9D9, #242427);
    margin: 1rem 3rem 2rem;
  }

  .faq__inner {
    padding: 0 3rem;
    max-width: 720px;
  }

  .faq__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .faq__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-family: 'CircularStd', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    text-align: left;
    transition: color 0.2s;
  }

  .faq__question:hover {
    color: #ccc;
  }

  .faq__icon {
    flex-shrink: 0;
    color: #666;
    transition: transform 0.3s ease;
  }

  .faq__item--open .faq__icon {
    transform: rotate(180deg);
  }

  .faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .faq__item--open .faq__answer {
    max-height: 400px;
  }

  .faq__answer p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.65;
    margin: 0 0 1.25rem;
  }

  @media (max-width: 768px) {
    .faq__header {
      padding: 0 1.25rem;
    }

    .faq__title-line {
      margin-left: 1.25rem;
      margin-right: 1.25rem;
    }

    .faq__inner {
      padding: 0 1.25rem;
    }

    .faq__title {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:faq */

/* START_SECTION:footer (INDEX:11) */
.site-footer {
    background: #0a0a10;
    font-family: 'CircularStd', sans-serif;
    color: #fff;
  }

  /* ── Voggt live band ──────────────────────────────── */
  .site-footer__voggt {
    border-bottom: 1px solid rgba(167,139,250,0.2);
    background: rgba(124,58,237,0.08);
  }

  .site-footer__voggt-inner {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 1.1rem var(--page-margin, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .site-footer__voggt-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
  }

  .site-footer__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(239,68,68,0.8);
    animation: live-pulse 1.8s ease-in-out infinite;
  }

  @keyframes live-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(239,68,68,0.8); }
    50%       { opacity: 0.6; box-shadow: 0 0 12px rgba(239,68,68,0.4); }
  }

  .site-footer__live-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
  }

  .site-footer__live-sep {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
  }

  .site-footer__live-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
  }

  .site-footer__voggt-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }

  .site-footer__voggt-btn:hover { opacity: 0.85; }

  /* ── Inner ────────────────────────────────────────── */
  .site-footer__inner {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--page-margin, 3rem);
  }

  /* ── Main grid ────────────────────────────────────── */
  .site-footer__main {
    display: flex;
    gap: 4rem;
    padding: 4rem 0 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  /* ── Brand col ────────────────────────────────────── */
  .site-footer__brand {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 200px;
  }

  .site-footer__wordmark {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    line-height: 1;
    display: block;
  }

  .site-footer__tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
    letter-spacing: -0.01em;
  }

  .site-footer__social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }

  .site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .site-footer__social-link:hover {
    background: rgba(167,139,250,0.15);
    border-color: rgba(167,139,250,0.4);
    color: #a78bfa;
  }

  /* ── Nav cols ─────────────────────────────────────── */
  .site-footer__cols {
    display: flex;
    gap: 3.5rem;
    flex: 1;
    justify-content: flex-end;
  }

  .site-footer__col-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin: 0 0 1rem;
  }

  .site-footer__col-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .site-footer__col-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.15s;
  }

  .site-footer__col-links a:hover {
    color: #fff;
  }

  /* ── Bar ──────────────────────────────────────────── */
  .site-footer__bar {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
  }

  /* ── Mobile ───────────────────────────────────────── */
  @media (max-width: 768px) {
    .site-footer__voggt-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .site-footer__main {
      flex-direction: column;
      gap: 2.5rem;
      padding: 3rem 0 2.5rem;
    }

    .site-footer__wordmark {
      font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .site-footer__cols {
      flex-direction: column;
      gap: 2rem;
      justify-content: flex-start;
    }

    .site-footer__bar {
      flex-direction: column;
      gap: 0.25rem;
      text-align: center;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:12) */
/* ---- Header ---- */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1rem 1.5rem;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .site-header.is-scrolled {
    background: rgba(36,36,39,0.82);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
  }

  .site-header__logo,
  .site-header__actions,
  .site-header__burger {
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-header.is-hidden .site-header__logo {
    opacity: 0;
    pointer-events: none;
  }

  .site-header.is-hidden .site-header__actions,
  .site-header.is-hidden .site-header__burger {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
  }

  .site-header.is-scrolled.is-hidden {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  @media (max-width: 768px) {
    .site-header.is-hidden .site-header__logo {
      transform: translateX(-50%);
    }
    .site-header.is-hidden .site-header__actions {
      transform: none;
    }
    .site-header.is-hidden {
      transform: translateY(-100%);
    }
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
  }

  .site-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    text-decoration: none;
    pointer-events: auto;
  }

  .site-header__right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .site-header__logo-img {
    height: 36px;
    width: auto;
  }

/* Actions */
  .site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .site-header__search-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    padding: 4px;
  }

  .site-header__burger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
  }

  .site-header__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
  }

  .site-header__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .site-header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ---- Search overlay ---- */
  .search-overlay {
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(8,8,12,0);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, background 0.25s ease;
    overflow-y: auto;
  }

  .search-overlay.is-open {
    background: rgba(8,8,12,0.97);
    pointer-events: all;
    opacity: 1;
    visibility: visible;
  }

  .search-overlay__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 120px 2rem 3rem !important;
  }

  /* Mobile bar (hidden on desktop) */
  .search-overlay__mobile-bar {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 2.5rem;
  }

  .search-overlay__mobile-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: 'CircularStd', sans-serif;
    color: #fff;
    min-width: 0;
  }

  .search-overlay__mobile-input::placeholder {
    color: rgba(255,255,255,0.35);
  }

  .search-overlay__mobile-input::-webkit-search-cancel-button,
  .search-overlay__mobile-input::-webkit-search-decoration {
    -webkit-appearance: none;
    display: none;
  }

  .search-overlay__close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.15s, background 0.15s;
    z-index: 10;
  }

  .search-overlay__close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.14);
  }

  .search-overlay__clear {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    font-size: 1.3rem;
    line-height: 1;
    padding: 0 0.1rem;
    flex-shrink: 0;
    transition: color 0.15s;
  }

  .search-overlay__clear:hover { color: #fff; }

  /* Results */
  .search-overlay__empty {
    font-size: 0.95rem;
    padding: 1rem 0;
    color: rgba(255,255,255,0.35);
  }

  .search-overlay__empty p { margin: 0; }

  .search-overlay__group {
    margin-bottom: 2.5rem;
  }

  .search-overlay__group-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin: 0 0 0.9rem;
  }

  /* Collection results */
  .search-overlay__collections {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .sr-col {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
  }

  .sr-col:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
  }

  .sr-col__img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sr-col__img--placeholder {
    background: rgba(255,255,255,0.1);
  }

  .sr-col__title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
  }

  /* Product results */
  .search-overlay__products {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .sr-prod {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.15s;
  }

  .sr-prod:hover { background: rgba(255,255,255,0.06); }

  .sr-prod__img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255,255,255,0.05);
  }

  .sr-prod__img--placeholder {
    background: rgba(255,255,255,0.08);
  }

  .sr-prod__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .sr-prod__title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }

  .sr-prod__price {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
  }

  /* Categories suggestions */
  .search-overlay__cats {
    margin-bottom: 2rem;
  }

  .search-overlay__cats-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
  }

  .search-overlay__cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-family: 'CircularStd', sans-serif;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
  }

  .search-overlay__cat-pill:hover {
    background: rgba(167,139,250,0.15);
    border-color: rgba(167,139,250,0.4);
    color: #a78bfa;
  }

  .search-overlay__cat-pill--sub {
    font-size: 0.78rem;
    opacity: 0.65;
    padding: 0.35rem 0.9rem;
  }

  .search-overlay__cat-pill--sub:hover {
    opacity: 1;
  }

  /* See all */
  .search-overlay__see-all {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #a78bfa;
    text-decoration: none;
    letter-spacing: -0.01em;
  }

  .search-overlay__see-all:hover { color: #c4b5fd; }

  /* ---- Account button ---- */
  .site-header__account-btn {
    display: flex;
    align-items: center;
    padding: 4px;
    position: relative;
    opacity: 0.85;
    transition: opacity 0.15s;
  }

  .site-header__account-btn:hover { opacity: 1; }

  /* ---- Cart button ---- */
  .site-header__cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px;
    position: relative;
  }

  .site-header__cart-count {
    position: absolute;
    top: -2px;
    right: -4px;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'CircularStd', sans-serif;
    line-height: 1;
  }

  /* ---- Cart drawer ---- */
  .cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(420px, 92vw);
    background: rgba(10,10,16,0.98);
    backdrop-filter: blur(24px);
    z-index: 210;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    font-family: 'CircularStd', sans-serif;
    border-left: 1px solid rgba(255,255,255,0.07);
  }

  .cart-drawer.is-open { transform: translateX(0); }

  .cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5.5rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
  }

  .cart-drawer__title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0;
  }

  .cart-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    opacity: 0.5;
    transition: opacity 0.15s;
  }

  .cart-drawer__close:hover { opacity: 1; }

  .cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
    scrollbar-width: none;
  }

  .cart-drawer__body::-webkit-scrollbar { display: none; }

  .cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    height: 100%;
    text-align: center;
  }

  .cart-drawer__empty p {
    color: rgba(255,255,255,0.35);
    font-size: 0.95rem;
    margin: 0;
  }

  .cart-drawer__browse {
    color: #a78bfa;
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
  }

  .cart-drawer__browse:hover { color: #c4b5fd; }

  .cart-drawer__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .cart-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
  }

  .cart-item__img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255,255,255,0.07);
  }

  .cart-item__img--placeholder {
    background: rgba(255,255,255,0.07);
  }

  .cart-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
  }

  .cart-item__title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.3;
    display: block;
  }

  .cart-item__variant {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    display: block;
  }

  .cart-item__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.4rem;
  }

  .cart-item__qty {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 0.85rem;
    color: #fff;
  }

  .cart-item__qty-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    line-height: 1;
    transition: color 0.15s;
  }

  .cart-item__qty-btn:hover { color: #fff; }

  .cart-item__price {
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
  }

  .cart-item__remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.25);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 4px;
    transition: color 0.15s;
    flex-shrink: 0;
    align-self: flex-start;
  }

  .cart-item__remove:hover { color: rgba(255,255,255,0.7); }

  .cart-drawer__footer {
    flex-shrink: 0;
    padding: 1.25rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
  }

  .cart-drawer__shipping {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
  }

  @keyframes cart-checkout-glow {
    0%   { box-shadow: 0 0 0 0 rgba(167,139,250,0), 0 0 0 0 rgba(124,58,237,0); }
    50%  { box-shadow: 0 0 20px 5px rgba(167,139,250,0.45), 0 0 45px 12px rgba(124,58,237,0.15); }
    100% { box-shadow: 0 0 0 0 rgba(167,139,250,0), 0 0 0 0 rgba(124,58,237,0); }
  }

  .cart-drawer__checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    animation: cart-checkout-glow 2.4s ease-in-out infinite;
    transition: background 0.2s;
  }

  .cart-drawer__checkout:hover { background: linear-gradient(135deg, #b87ef0, #8b4cf7); }

  .cart-drawer__view-cart {
    display: block;
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.15s;
  }

  .cart-drawer__view-cart:hover { color: rgba(255,255,255,0.7); }

  /* ---- Mobile nav ---- */
  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0,0,0,0);
    pointer-events: none;
    transition: background 0.3s ease;
  }

  .mobile-nav-backdrop.is-open {
    background: rgba(0,0,0,0.4);
    pointer-events: all;
  }

  .mobile-nav-glow { display: none; }

  /* Nav mobile : slide depuis la gauche */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(320px, 85vw);
    display: flex;
    flex-direction: column;
    background: rgba(15,15,15,0.95);
    backdrop-filter: blur(20px);
    z-index: 160;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding: 6rem 2rem 2rem;
    box-sizing: border-box;
    overflow-y: auto;
    scrollbar-width: none;
  }

  .mobile-nav::-webkit-scrollbar { display: none; }

  .mobile-nav.is-open {
    transform: translateX(0);
    box-shadow: 2px 0 0 rgba(167,139,250,0.5), 12px 0 35px rgba(124,58,237,0.5), 30px 0 60px rgba(109,40,217,0.2);
  }

  .mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;
  }

  .mobile-nav__item {
    border-radius: 12px;
    transition: background 0.2s;
  }

  .mobile-nav__item.is-open {
    background: rgba(167,139,250,0.06);
  }

  .mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'CircularStd', sans-serif;
    transition: color 0.15s, background 0.15s;
  }

  .mobile-nav__link:hover { background: rgba(255,255,255,0.05); }

  .mobile-nav__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: default;
    background: none;
    padding: 0.85rem 1rem 0.85rem 1rem;
    border-radius: 12px;
  }

  .mobile-nav__row-link {
    flex: 1;
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .mobile-nav__row-link:hover { color: #c4b5fd; }

  .mobile-nav__toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
    transition: color 0.2s;
  }

  .mobile-nav__toggle:hover {
    color: #a78bfa;
  }

  .mobile-nav__item.is-open .mobile-nav__toggle {
    color: #a78bfa;
    filter: drop-shadow(0 0 6px rgba(167,139,250,0.8));
  }

  .mobile-nav__chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }

  .mobile-nav__item.is-open > .mobile-nav__row > .mobile-nav__toggle .mobile-nav__chevron,
  .mobile-nav__item.is-open > .mobile-nav__link .mobile-nav__chevron {
    transform: rotate(180deg);
  }

  .mobile-nav__sub {
    list-style: none;
    margin: 0 0.5rem 0.5rem 1rem;
    padding: 0 0 0 0.75rem;
    border-left: 2px solid rgba(167,139,250,0.25);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }

  .mobile-nav__item.is-open .mobile-nav__sub {
    max-height: 800px;
  }

  .mobile-nav__sub-link {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
  }

  .mobile-nav__sub-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
  }

  .mobile-nav__sub-item { list-style: none; }

  .mobile-nav__sub-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-nav__sub-row .mobile-nav__sub-link {
    flex: 1;
  }

  .mobile-nav__subtoggle {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.2s;
  }

  .mobile-nav__subtoggle:hover {
    color: #a78bfa;
  }

  .mobile-nav__sub-item.is-open .mobile-nav__subtoggle {
    color: #a78bfa;
    filter: drop-shadow(0 0 5px rgba(167,139,250,0.8));
  }

  .mobile-nav__sub-item .mobile-nav__chevron {
    transition: transform 0.25s ease;
  }

  .mobile-nav__sub-item.is-open .mobile-nav__chevron {
    transform: rotate(180deg);
  }

  .mobile-nav__subsub {
    list-style: none;
    margin: 0.25rem 0 0.25rem 0.75rem;
    padding: 0 0 0 0.75rem;
    border-left: 2px solid rgba(167,139,250,0.12);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .mobile-nav__sub-item.is-open .mobile-nav__subsub {
    max-height: 400px;
  }

  .mobile-nav__subsub-link {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 400;
    padding: 0.45rem 0.6rem;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
  }

  .mobile-nav__subsub-link:hover {
    color: #c4b5fd;
    background: rgba(167,139,250,0.08);
  }

  .mobile-nav__footer {
    margin-top: auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.25rem;
    flex-shrink: 0;
  }

  .mobile-nav__account {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.15s;
  }

  .mobile-nav__account:hover { color: #fff; }

  /* body lock when search open */
  body.search-open { overflow: hidden; }

  /* Quand overlay ouvert : cacher logo, actions, burger ET le pill de recherche */
  body.search-open .site-header__logo,
  body.search-open .site-header__actions,
  body.search-open .site-header__burger,
  body.search-open .site-header__search {
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.2s ease;
  }

  .site-header__logo,
  .site-header__actions {
    transition: opacity 0.2s ease;
  }

  /* On mobile: hide whole header */
  @media (max-width: 768px) {
    body.search-open .site-header {
      opacity: 0;
      pointer-events: none;
    }
    body.search-open .site-header__logo,
    body.search-open .site-header__actions {
      opacity: 1;
      pointer-events: auto;
    }
  }

  /* Glow aura on search input in overlay */
  @keyframes search-glow {
    0%   { box-shadow: 0 0 0 0 rgba(167,139,250,0), 0 0 0 0 rgba(202,148,249,0); }
    50%  { box-shadow: 0 0 18px 4px rgba(167,139,250,0.55), 0 0 40px 10px rgba(124,58,237,0.2); }
    100% { box-shadow: 0 0 0 0 rgba(167,139,250,0), 0 0 0 0 rgba(202,148,249,0); }
  }

  .search-overlay.is-open .search-overlay__mobile-bar,
  body.search-open .site-header__search {
    animation: search-glow 2.2s ease-in-out infinite;
    border-color: rgba(167,139,250,0.6) !important;
  }

  /* ---- Responsive ---- */
  /* Desktop search bar : centré, caché par défaut, visible quand nav cachée */
  .site-header__search {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    gap: 0.5rem;
    width: 360px;
    backdrop-filter: blur(10px);
    cursor: text;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .site-header.is-hidden .site-header__search {
    opacity: 1;
    pointer-events: auto;
  }

  .site-header__search-icon-svg { flex-shrink: 0; }

  .site-header__search-input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'CircularStd', sans-serif;
    width: 100%;
  }

  .site-header__search-input::placeholder {
    color: rgba(255,255,255,0.6);
  }

  @media (max-width: 768px) {
    .site-header__search { display: none !important; }
  }

  .site-header__search-btn {
    display: flex;
  }

  .search-overlay__mobile-bar {
    display: flex;
  }

  @media (max-width: 768px) {
    .site-header__account-btn {
      display: none !important;
    }

    .site-header__search {
      display: none !important;
    }

    .site-header__search-btn {
      display: flex;
    }

    .search-overlay__mobile-bar {
      display: flex;
    }

    .search-overlay__inner {
      padding: 80px 1.25rem 3rem !important;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:13) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

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

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-banner (INDEX:14) */
.hero-banner {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 6rem 3rem 3rem;
  }


  .hero-banner__bg {
    position: absolute;
    inset: -20% 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
  }

  .hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-banner__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: auto;
  }

  .hero-banner__subtitle {
    font-size: 24px;
    font-weight: 200;
    letter-spacing: -0.05em;
    margin-bottom: 0.75rem;
    opacity: 0.9;
  }

  .hero-banner__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
  }

  .hero-banner__btn-subtext {
    margin: 0.6rem 0 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.01em;
    text-align: center;
  }

  .hero-banner__buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }

  .hero-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.05em;
    text-decoration: none;
    transition: transform 0.2s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
  }

  .hero-banner__btn:hover {
    transform: translateY(-1px);
  }

  .hero-banner__btn .holo-layer,
  .hero-banner__pill .holo-layer {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    background: conic-gradient(
      from var(--holo-angle, 0deg) at var(--holo-x, 50%) var(--holo-y, 50%),
      rgba(255,0,128,0.12),
      rgba(255,165,0,0.10),
      rgba(255,255,0,0.08),
      rgba(0,255,128,0.10),
      rgba(0,180,255,0.12),
      rgba(160,0,255,0.10),
      rgba(255,0,128,0.12)
    );
    mix-blend-mode: overlay;
  }

  .hero-banner__btn:hover .holo-layer,
  .hero-banner__pill:hover .holo-layer {
    opacity: 1;
  }

  .hero-banner__btn--primary {
    background: #fff;
    color: #111;
  }

  .hero-banner__btn--secondary {
    position: relative;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.35),
      inset 0 -1px 0 rgba(0,0,0,0.1),
      0 4px 24px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  }

  .hero-banner__btn--secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.18) 0%,
      rgba(255,255,255,0.04) 50%,
      rgba(255,255,255,0.0) 100%
    );
    pointer-events: none;
  }

  .hero-banner__btn--secondary:hover {
    background: rgba(255,255,255,0.92);
    color: #111;
    border-color: rgba(255,255,255,0.9);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.9),
      inset 0 -1px 0 rgba(0,0,0,0.05),
      0 8px 32px rgba(0,0,0,0.2);
  }

  .hero-banner__pills {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: auto;
    padding-top: 3rem;
  }

  @media (max-width: 768px) {
    .hero-banner__pills {
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 400px;
      width: 100%;
    }
  }

  .hero-banner__pill--image {
    padding: 0.45rem 0.75rem;
  }

  .hero-banner__pill-img {
    height: var(--pill-img-h, 40px);
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }

  .hero-banner__pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 15px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.28),
      inset 0 -1px 0 rgba(0,0,0,0.08),
      0 2px 12px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  }

  .hero-banner__pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.14) 0%,
      rgba(255,255,255,0.02) 60%,
      transparent 100%
    );
    pointer-events: none;
  }

  .hero-banner__pill:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.38),
      inset 0 -1px 0 rgba(0,0,0,0.08),
      0 4px 20px rgba(0,0,0,0.25);
  }
  @media (max-width: 768px) {
    .hero-banner__buttons {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      max-width: 320px;
      margin: 0 auto;
    }
    .hero-banner__title {
      font-size: 2rem;
    }
    .hero-banner__subtitle {
      font-size: 14px;
    }
    .hero-banner__btn {
      font-size: 14px;
    }
    .hero-banner__pill {
      font-size: 14px;
    }
  }
/* END_SECTION:hero-banner */

/* START_SECTION:hero-video (INDEX:15) */
.hero-video {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 6rem 3rem 3rem;
    font-family: 'CircularStd', sans-serif;
  }

  .hero-video__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-video__video--mobile { display: none; }

  .hero-video__fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: none;
  }

  .hero-video__fallback--mobile { display: none; }

  @media (max-width: 768px) {
    .hero-video__video--desktop { display: none; }
    .hero-video__video--mobile  { display: block; }
    .hero-video__fallback--desktop { display: none !important; }
  }

  .hero-video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-video__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: auto;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .hero-video__content.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-video__subtitle {
    font-size: 24px;
    font-weight: 200;
    letter-spacing: -0.05em;
    margin-bottom: 0.75rem;
    opacity: 0.9;
  }

  .hero-video__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    text-transform : uppercase;
    text-shadow:
      0 0 10px rgba(167,139,250,0.6),
      0 0 20px rgba(124,58,237,0.35),
      0 2px 10px rgba(109,40,217,0.4);
  }

  .hero-video__bottom {
    position: relative;
    z-index: 2;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-video__btn-subtext {
    margin: 0 0 0.75rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.01em;
    text-align: center;
    width: 60%;
    font-weight: 100;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .hero-video__btn-subtext.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-video__buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }

  .hero-video__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.05em;
    text-decoration: none;
    transition: transform 0.2s;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
  }

  .hero-video__btn:hover { transform: translateY(-1px); }

  .hero-video__btn--primary {
    background: #fff;
    color: #111;
    isolation: isolate;
  }

  .hero-video__btn--secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 4px 24px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
  }

  .hero-video__btn--secondary:hover {
    transform: translateY(-1px);
  }

  .hero-video__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 1.5rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  }

  .hero-video__pills.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-video__pill--image {
    padding: 0.45rem 0.75rem;
  }

  .hero-video__pill-img {
    height: var(--pill-img-h, 40px);
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .hero-video__pill-img {
      height: var(--pill-img-h-mobile, 30px);
    }
  }

  .hero-video__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.4rem;
    border-radius: 15px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 2px 12px rgba(0,0,0,0.2);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }

  .hero-video__pill:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-1px);
  }

  .hero-video__btn .holo-layer {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    background: conic-gradient(
      from var(--holo-angle, 0deg) at var(--holo-x, 50%) var(--holo-y, 50%),
      rgba(124,58,237,0.0), rgba(167,139,250,0.35), rgba(202,148,249,0.45),
      rgba(232,121,249,0.3), rgba(167,139,250,0.4), rgba(109,40,217,0.2),
      rgba(167,139,250,0.35), rgba(124,58,237,0.0)
    );
    mix-blend-mode: screen;
  }

  .hero-video__pill .holo-layer {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    background: conic-gradient(
      from var(--holo-angle, 0deg) at var(--holo-x, 50%) var(--holo-y, 50%),
      rgba(124,58,237,0.0), rgba(167,139,250,0.35), rgba(202,148,249,0.45),
      rgba(232,121,249,0.3), rgba(167,139,250,0.4), rgba(109,40,217,0.2),
      rgba(167,139,250,0.35), rgba(124,58,237,0.0)
    );
    mix-blend-mode: screen;
  }

  .hero-video__btn:hover .holo-layer,
  .hero-video__pill:hover .holo-layer { opacity: 1; }

  .hero-video__btn--primary .holo-layer {
    mix-blend-mode: multiply;
  }

  .hero-video__btn--secondary .holo-layer {
    mix-blend-mode: overlay;
  }

  @media (max-width: 768px) {
    .hero-video__pills {
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 400px;
      width: 100%;
    }
    .hero-video__buttons {
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      max-width: 320px;
      margin: 0 auto;
    }
    .hero-video__title { font-size: 2rem; }
    .hero-video__subtitle { font-size: 14px; }
    .hero-video__btn { font-size: 14px; }
    .hero-video__pill { font-size: 14px; }
    .hero-video__btn-subtext {
      width: 100%;
      line-height: 1.2;
    }
    .hero-video {
      padding: 6rem 1rem 3rem;
    }
  }
/* END_SECTION:hero-video */

/* START_SECTION:live-banner (INDEX:16) */
.live-banner {
    background: #242427;
    font-family: 'CircularStd', sans-serif;
    padding: 4rem 0 3rem;
  }

  .live-banner__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .live-banner__text {
    margin-bottom: 2rem;
  }

  .live-banner__title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0;
  }

  .live-banner__subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    color: #a78bfa;
    margin: 0 0 0.5rem;
    letter-spacing: 0.12em;
    text-transform : uppercase;
  }

  .live-banner__embed-wrap {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #d4d4d4;
    aspect-ratio: 16 / 9;
  }

  .live-banner__embed {
    width: 100%;
    height: 100%;
  }

  .live-banner__embed iframe,
  .live-banner__embed video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  .live-banner__embed-placeholder {
    width: 100%;
    height: 100%;
    background: #d4d4d4;
  }

  @media (max-width: 768px) {
    .live-banner {
      padding: 4rem 0 2rem;
    }

    .live-banner__inner {
      padding: 0 1.25rem;
    }

    .live-banner__title {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:live-banner */

/* START_SECTION:newsletter-blog (INDEX:17) */
.nb {
    border-radius: 50px 50px 0px 0px;
    background: #2b2b38;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    box-shadow: 0 -20px 60px rgba(0,0,0,0.4), 0 -4px 20px rgba(0,0,0,0.3);
    background-size: 28px 28px;
    font-family: 'CircularStd', sans-serif;
    padding: 4rem 0;
  }

  .nb__inner {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
  }

  .nb__title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
  }

  .nb__line {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.4), transparent);
    margin: 1rem 0 2.5rem;
  }

  /* --- Newsletter --- */
  .nb__newsletter {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
  }

  .nb__newsletter-text {
    flex: 1;
  }

  .nb__newsletter-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    line-height: 1.2;
  }

  .nb__newsletter-desc {
    font-size: 0.875rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
  }

  .nb__newsletter-form {
    flex: 1;
  }

  .nb__form-row {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 4px 4px 4px 1.2rem;
    gap: 0.5rem;
  }

  .nb__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'CircularStd', sans-serif;
    min-width: 0;
  }

  .nb__input::placeholder {
    color: #777;
  }

  .nb__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'CircularStd', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
  }

  .nb__submit:hover {
    opacity: 0.85;
  }

  .nb__success {
    margin: 0.6rem 0 0;
    font-size: 0.85rem;
    color: #7eca9c;
  }

  /* --- Article --- */
  .nb__article {
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }

  .nb__article-img-wrap {
    flex-shrink: 0;
    width: 42%;
    border-radius: 16px;
    overflow: hidden;
    display: block;
  }

  .nb__article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .nb__article-img-wrap:hover .nb__article-img {
    transform: scale(1.03);
  }

  .nb__article-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .nb__article-title {
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.25;
  }

  .nb__article-desc {
    font-size: 0.875rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
  }

  .nb__article-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  .nb__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s;
  }

  .nb__btn .holo-layer {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    background: conic-gradient(
      from var(--holo-angle, 0deg) at var(--holo-x, 50%) var(--holo-y, 50%),
      rgba(255,0,128,0.12), rgba(255,165,0,0.10), rgba(255,255,0,0.08),
      rgba(0,255,128,0.10), rgba(0,180,255,0.12), rgba(160,0,255,0.10),
      rgba(255,0,128,0.12)
    );
  }

  .nb__btn--primary .holo-layer { mix-blend-mode: overlay; }
  .nb__btn--outline .holo-layer { mix-blend-mode: overlay; }
  .nb__btn:hover .holo-layer { opacity: 1; }

  .nb__btn--primary {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
  }

  .nb__btn--outline {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 4px 24px rgba(0,0,0,0.15);
  }

  .nb__btn:hover {
    transform: translateY(-1px);
  }

  @media (max-width: 768px) {
    .nb__inner {
      padding: 0 1.25rem;
    }

    .nb__newsletter {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.5rem;
    }

    .nb__newsletter-form {
      width: 100%;
    }

    .nb__article {
      flex-direction: column;
      gap: 3rem;
    }

    .nb__article-img-wrap {
      width: 100%;
    }

    .nb__article-btns {
      flex-direction: column;
    }

    .nb__btn {
      width: 100%;
      text-align: center;
    }

    .nb__title {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:newsletter-blog */

/* START_SECTION:page-header (INDEX:18) */
.page-header {
    background: #0a0a10;
    font-family: 'CircularStd', sans-serif;
    padding: 5rem 3rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .page-header__inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .page-header__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a78bfa;
    margin: 0;
  }

  .page-header__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
  }

  .page-header__subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.5;
    max-width: 480px;
  }

  @media (max-width: 768px) {
    .page-header {
      padding: 4rem 1.5rem 3rem;
    }
  }
/* END_SECTION:page-header */

/* START_SECTION:page (INDEX:19) */
.contact-page {
    padding: clamp(3.5rem, 6vw, 6rem) 0.8rem 5rem;
  }

  .contact-page__shell {
    max-width: 1180px;
    margin: 0 auto;
  }

  .contact-page__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-page__copy,
  .contact-page__details,
  .contact-page__form-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
      radial-gradient(circle at top right, rgba(167, 139, 250, 0.14), transparent 36%),
      rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border-radius: 28px;
  }

  .contact-page__copy {
    padding: clamp(2rem, 3.5vw, 3rem) clamp(1.15rem, 2vw, 1.75rem) clamp(1.6rem, 3vw, 2.4rem);
  }

  .contact-page__kicker {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b794ff;
    font-weight: 600;
  }

  .contact-page__title {
    margin: 0 0 1.25rem;
    color: #fff;
    font-size: clamp(2.3rem, 6vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  .contact-page__lead {
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .contact-page__lead p,
  .contact-page__lead li,
  .contact-page__lead span {
    color: rgba(255, 255, 255, 0.76);
  }

  .contact-page__lead strong,
  .contact-page__lead a {
    color: #fff;
  }

  .contact-page__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
  }

  .contact-page__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .contact-page__details {
    display: grid;
    gap: 1px;
    padding: 1px;
  }

  .contact-page__detail-card {
    padding: 1.35rem 1.15rem;
    background: rgba(17, 17, 17, 0.58);
  }

  .contact-page__detail-label {
    margin: 0 0 0.45rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .contact-page__detail-value {
    margin: 0;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.45;
    text-decoration: none;
  }

  .contact-page__form-card {
    padding: clamp(1.85rem, 3vw, 2.35rem) clamp(1.15rem, 2vw, 1.6rem) clamp(1.35rem, 2.5vw, 1.8rem);
  }

  .contact-page__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-page__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .contact-page__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .contact-page__field label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .contact-page__field input,
  .contact-page__field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border-radius: 18px;
    padding: 1rem 1.1rem;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  }

  .contact-page__field textarea {
    resize: vertical;
    min-height: 180px;
  }

  .contact-page__field input::placeholder,
  .contact-page__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
  }

  .contact-page__field input:focus,
  .contact-page__field textarea:focus {
    border-color: rgba(167, 139, 250, 0.8);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
  }

  .contact-page__notice {
    border-radius: 18px;
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .contact-page__notice p,
  .contact-page__notice ul {
    margin: 0;
  }

  .contact-page__notice ul {
    padding-left: 1rem;
  }

  .contact-page__notice--success {
    border: 1px solid rgba(78, 201, 140, 0.28);
    background: rgba(78, 201, 140, 0.12);
    color: #d8ffe9;
  }

  .contact-page__notice--error {
    border: 1px solid rgba(255, 117, 117, 0.28);
    background: rgba(255, 117, 117, 0.12);
    color: #ffd6d6;
  }

  .contact-page__form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .contact-page__legal {
    max-width: 42rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.44);
    font-size: 0.76rem;
    line-height: 1.6;
  }

  .contact-page__legal a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: underline;
    text-underline-offset: 0.18em;
  }

  .contact-page__legal a:hover {
    color: #fff;
  }

  .faq-page {
    padding: clamp(3.5rem, 6vw, 6rem) 0.8rem 5rem;
  }

  .faq-page__shell {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: start;
  }

  .faq-page__intro,
  .faq-page__item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
      radial-gradient(circle at top right, rgba(167, 139, 250, 0.14), transparent 36%),
      rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border-radius: 28px;
  }

  .faq-page__intro {
    position: sticky;
    top: 2rem;
    padding: clamp(1.9rem, 3vw, 2.5rem) clamp(1.15rem, 2vw, 1.6rem) clamp(1.45rem, 2.6vw, 1.9rem);
  }

  .faq-page__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b794ff;
    font-weight: 600;
  }

  .faq-page__title {
    margin: 0 0 1.1rem;
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
  }

  .faq-page__lead {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
    line-height: 1.8;
  }

  .faq-page__lead p,
  .faq-page__lead li,
  .faq-page__lead span {
    color: rgba(255, 255, 255, 0.76);
  }

  .faq-page__lead strong,
  .faq-page__lead a,
  .faq-page__answer-inner a {
    color: #fff;
  }

  .faq-page__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.5rem 0 0;
  }

  .faq-page__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .faq-page__support {
    margin-top: 1.6rem;
    padding: 1.25rem;
    border-radius: 24px;
    background: rgba(17, 17, 17, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .faq-page__support-label {
    margin: 0 0 0.45rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .faq-page__support-title {
    margin: 0 0 0.65rem;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .faq-page__support-text {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
  }

  .faq-page__list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .faq-page__item {
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }

  .faq-page__item--open {
    border-color: rgba(167, 139, 250, 0.26);
    background:
      radial-gradient(circle at top right, rgba(167, 139, 250, 0.18), transparent 38%),
      rgba(255, 255, 255, 0.05);
  }

  .faq-page__question {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.35rem;
    background: none;
    border: 0;
    color: #fff;
    cursor: pointer;
    text-align: left;
  }

  .faq-page__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .faq-page__question-text {
    font-size: 1.02rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
  }

  .faq-page__icon {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, color 0.2s ease;
  }

  .faq-page__item--open .faq-page__icon {
    transform: rotate(180deg);
    color: #fff;
  }

  .faq-page__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .faq-page__answer-inner {
    padding: 0 1.35rem 1.35rem 4.55rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
  }

  .faq-page__answer-inner p,
  .faq-page__answer-inner li,
  .faq-page__answer-inner span {
    color: rgba(255, 255, 255, 0.72);
  }

  .about-page {
    padding: clamp(3.5rem, 6vw, 6rem) 0.8rem 5rem;
  }

  .about-page__shell {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: 1.5rem;
    align-items: start;
  }

  .about-page__hero,
  .about-page__content-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
      radial-gradient(circle at top right, rgba(167, 139, 250, 0.14), transparent 36%),
      rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    border-radius: 28px;
  }

  .about-page__hero {
    position: sticky;
    top: 2rem;
    padding: clamp(1.9rem, 3vw, 2.5rem) clamp(1.15rem, 2vw, 1.6rem) clamp(1.45rem, 2.6vw, 1.9rem);
  }

  .about-page__eyebrow {
    margin: 0 0 0.85rem;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b794ff;
    font-weight: 600;
  }

  .about-page__title {
    margin: 0 0 1rem;
    color: #fff;
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
  }

  .about-page__subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-page__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 1.5rem 0 0;
  }

  .about-page__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .about-page__panel {
    margin-top: 1.6rem;
    padding: 1.25rem;
    border-radius: 24px;
    background: rgba(17, 17, 17, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-page__panel-label {
    margin: 0 0 0.45rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .about-page__panel-text {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
  }

  .about-page__cta,
  .faq-page__cta,
  .contact-page__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 1rem 1.5rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .about-page__cta-label,
  .faq-page__cta-label,
  .contact-page__submit-label {
    position: relative;
    z-index: 1;
  }

  .about-page__cta-holo,
  .faq-page__cta-holo,
  .contact-page__submit-holo {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    background: conic-gradient(
      from var(--holo-angle, 0deg) at var(--holo-x, 50%) var(--holo-y, 50%),
      rgba(255, 0, 128, 0.12),
      rgba(255, 165, 0, 0.1),
      rgba(255, 255, 0, 0.08),
      rgba(0, 255, 128, 0.1),
      rgba(0, 180, 255, 0.12),
      rgba(160, 0, 255, 0.1),
      rgba(255, 0, 128, 0.12)
    );
    mix-blend-mode: overlay;
  }

  .about-page__cta:hover,
  .faq-page__cta:hover,
  .contact-page__submit:hover {
    transform: translateY(-1px);
    opacity: 0.92;
  }

  .about-page__cta:hover .about-page__cta-holo,
  .faq-page__cta:hover .faq-page__cta-holo,
  .contact-page__submit:hover .contact-page__submit-holo {
    opacity: 1;
  }

  .about-page__content-card {
    padding: clamp(2rem, 3vw, 2.6rem) clamp(1.15rem, 2vw, 1.7rem) clamp(1.5rem, 2.6vw, 2rem);
  }

  .about-page__content {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-page__content > :first-child {
    margin-top: 0;
  }

  .about-page__content h2:first-child {
    display: none;
  }

  .about-page__content h2,
  .about-page__content h3,
  .about-page__content h4 {
    margin: 2rem 0 0.85rem;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .about-page__content h2 {
    font-size: clamp(1.6rem, 3vw, 2.15rem);
  }

  .about-page__content p,
  .about-page__content li,
  .about-page__content span {
    color: rgba(255, 255, 255, 0.8);
  }

  .about-page__content p,
  .about-page__content ul,
  .about-page__content ol {
    margin: 0 0 1.2rem;
  }

  .about-page__content ul,
  .about-page__content ol {
    padding-left: 1.35rem;
  }

  .about-page__content li + li {
    margin-top: 0.35rem;
  }

  .about-page__content strong,
  .about-page__content a {
    color: #fff;
  }

  .static-page {
    padding: clamp(3.75rem, 6vw, 6rem) 0.8rem 5rem;
  }

  .static-page__inner {
    max-width: 840px;
    margin: 0 auto;
  }

  .static-page__title {
    margin: 0 0 1.75rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
  }

  .static-page__content {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.8;
  }

  .static-page__content p,
  .static-page__content li,
  .static-page__content span,
  .static-page__content td,
  .static-page__content th {
    color: rgba(255, 255, 255, 0.82);
  }

  .static-page__content > :first-child {
    margin-top: 0;
  }

  .static-page__content h1,
  .static-page__content h2,
  .static-page__content h3,
  .static-page__content h4,
  .static-page__content h5,
  .static-page__content h6 {
    margin: 2.25rem 0 0.9rem;
    color: #fff;
    line-height: 1.15;
  }

  .static-page__content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .static-page__content h3 {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  }

  .static-page__content p,
  .static-page__content ul,
  .static-page__content ol,
  .static-page__content table,
  .static-page__content blockquote {
    margin: 0 0 1.25rem;
  }

  .static-page__content ul,
  .static-page__content ol {
    padding-left: 1.35rem;
  }

  .static-page__content li + li {
    margin-top: 0.4rem;
  }

  .static-page__content a {
    color: #fff;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 0.2em;
  }

  .static-page__content strong,
  .static-page__content b {
    color: #fff;
  }

  .static-page__content hr {
    margin: 1.75rem 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .static-page__content table {
    width: 100%;
    border-collapse: collapse;
  }

  .static-page__content th,
  .static-page__content td {
    padding: 0.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: left;
  }

  .static-page__content blockquote {
    padding-left: 1rem;
    border-left: 3px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.68);
  }

  @media (max-width: 768px) {
    .contact-page {
      padding: 3.5rem 0.35rem 4rem;
    }

    .contact-page__hero,
    .contact-page__form-grid,
    .faq-page__shell,
    .about-page__shell {
      grid-template-columns: 1fr;
    }

    .contact-page__copy,
    .contact-page__form-card,
    .faq-page__intro,
    .about-page__hero,
    .about-page__content-card {
      padding: 1.55rem 0.9rem 1.15rem;
      border-radius: 22px;
    }

    .contact-page__details {
      border-radius: 22px;
    }

    .contact-page__detail-card {
      padding: 1.1rem 0.9rem;
    }

    .contact-page__lead {
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .contact-page__chips {
      gap: 0.5rem;
    }

    .contact-page__chips span {
      font-size: 0.76rem;
      min-height: 2rem;
    }

    .contact-page__form-footer {
      flex-direction: column;
      align-items: stretch;
    }

    .contact-page__submit {
      width: 100%;
      min-width: 0;
    }

    .faq-page {
      padding: 3.5rem 0.35rem 4rem;
    }

    .faq-page__intro {
      position: static;
    }

    .faq-page__lead {
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .faq-page__chips {
      gap: 0.5rem;
    }

    .faq-page__chips span {
      font-size: 0.76rem;
      min-height: 2rem;
    }

    .faq-page__cta {
      width: 100%;
      min-width: 0;
    }

    .faq-page__question {
      grid-template-columns: 1fr auto;
      padding: 1rem 1rem 0.95rem;
    }

    .faq-page__index {
      display: none;
    }

    .faq-page__question-text {
      font-size: 0.98rem;
    }

    .faq-page__answer-inner {
      padding: 0 1rem 1rem;
    }

    .about-page {
      padding: 3.5rem 0.35rem 4rem;
    }

    .about-page__hero {
      position: static;
    }

    .about-page__subtitle,
    .about-page__content {
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .about-page__chips {
      gap: 0.5rem;
    }

    .about-page__chips span {
      font-size: 0.76rem;
      min-height: 2rem;
    }

    .about-page__cta {
      width: 100%;
      min-width: 0;
    }

    .static-page {
      padding: 3.75rem 0.45rem 4rem;
    }

    .static-page__content {
      font-size: 0.98rem;
      line-height: 1.7;
    }
  }
/* END_SECTION:page */

/* START_SECTION:product-highlight (INDEX:21) */
.prod-hl {
    background: #F5F4F2;
    font-family: 'CircularStd', sans-serif;
    height: var(--section-height, 100vh);
    position: relative;
    overflow: hidden;
  }

  /* Video centred in section */
  .prod-hl__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 80%;
    object-fit: contain;
    display: block;
  }

  /* Overlay : text on top of video */
  .prod-hl__overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem 4rem;
    text-align: center;
  }

  .prod-hl__text-top {
    flex-shrink: 0;
  }

  .prod-hl__title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #111 !important;
    margin: 0 0 0.35rem;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .prod-hl__subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, #7EE958, #00A33E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.01em;
  }

  .prod-hl__text-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .prod-hl__desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.2;
    margin: 0;
    max-width: 600px;
  }

  .prod-hl__price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
  }

  .prod-hl__price-prefix {
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
  }

  .prod-hl__price {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #111;
  }

  .prod-hl__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    background: #242427;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.2s;
  }

  .prod-hl__cta .holo-layer {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    mix-blend-mode: multiply;
    background: conic-gradient(
      from var(--holo-angle, 0deg) at var(--holo-x, 50%) var(--holo-y, 50%),
      rgba(255,0,128,0.12), rgba(255,165,0,0.10), rgba(255,255,0,0.08),
      rgba(0,255,128,0.10), rgba(0,180,255,0.12), rgba(160,0,255,0.10),
      rgba(255,0,128,0.12)
    );
  }

  .prod-hl__cta:hover .holo-layer { opacity: 1; }

  .prod-hl__cta:hover {
    transform: translateY(-1px);
  }

  /* Image mode layout */
  .prod-hl--image-mode {
    height: auto;
    min-height: var(--section-height, 100vh);
  }

  .prod-hl--image-mode .prod-hl__overlay {
    height: auto;
    min-height: var(--section-height, 100vh);
  }

  .prod-hl__image-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    min-height: 0;
  }

  .prod-hl__image {
    width: var(--img-w, 60%);
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }

  @media (max-width: 768px) {
    .prod-hl__image {
      width: var(--img-w-mobile, 80%);
    }
  }

  @media (max-width: 768px) {
    .prod-hl {
      height: var(--section-height-mobile, 80vh);
    }

    .prod-hl--image-mode {
      min-height: var(--section-height-mobile, 80vh);
    }

    .prod-hl--image-mode .prod-hl__overlay {
      min-height: var(--section-height-mobile, 80vh);
    }

    .prod-hl__video {
      width: 92%;
      height: 70%;
    }

    .prod-hl__overlay {
      padding: 4rem 1.5rem 4rem;
    }

    .prod-hl__title {
      font-size: 1.5rem;
    }

    .prod-hl__price {
      font-size: 1.5rem;
    }

    .prod-hl__subtitle {
      font-size: 1.3rem;
    }
  }
/* END_SECTION:product-highlight */

/* START_SECTION:product (INDEX:22) */
.pdp {
    font-family: 'CircularStd', sans-serif;
    background: #242427;
  }

  .pdp__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 8rem 4rem 6rem;
    box-sizing: border-box;
  }

  /* Gallery */
  .pdp__main-wrap {
    position: relative;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    background: transparent;
  }

  .pdp__main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .pdp__main-img.is-active {
    opacity: 1;
  }

  .pdp__main-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
  }

  .pdp__thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
  }

  .pdp__thumb {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: #1e1e24;
    transition: border-color 0.15s;
    flex-shrink: 0;
  }

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

  .pdp__thumb.is-active {
    border-color: #CA94F9;
  }

  /* Info */
  .pdp__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.5rem;
  }

  .pdp__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #666;
    flex-wrap: wrap;
  }

  .pdp__breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.15s;
  }

  .pdp__breadcrumb a:hover { color: #fff; }

  .pdp__breadcrumb span:last-child {
    color: #aaa;
  }

  .pdp__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .pdp__low-stock {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 80, 80, 0.15);
    border: 1px solid rgba(255, 80, 80, 0.4);
    color: #ff6b6b;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .pdp__price {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
  }

  .pdp__price-current {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
  }

  .pdp__price-compare {
    font-size: 1rem;
    color: #666;
    text-decoration: line-through;
  }

  .pdp__price-compare--hidden,
  .pdp__price-save--hidden { display: none; }

  .pdp__price-save {
    font-size: 0.8rem;
    background: rgba(202,148,249,0.15);
    color: #CA94F9;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-weight: 500;
  }

  /* Options */
  .pdp__option {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .pdp__option-label {
    font-size: 0.875rem;
    color: #888;
    margin: 0;
    display: flex;
    gap: 0.4rem;
    align-items: center;
  }

  .pdp__option-selected {
    font-weight: 500;
    color: #fff;
  }

  .pdp__option-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .pdp__option-pill {
    cursor: pointer;
  }

  .pdp__option-pill input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .pdp__option-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.875rem;
    color: #aaa;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    user-select: none;
  }

  .pdp__option-pill input:checked + span {
    border-color: #CA94F9;
    background: rgba(202,148,249,0.15);
    color: #CA94F9;
  }

  .pdp__option-pill:hover span {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
  }

  /* Form layout */
  .pdp__info > form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Buy row */
  .pdp__buy-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
  }

  .pdp__qty {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .pdp__qty-btn {
    background: none;
    border: none;
    width: 2.5rem;
    height: 2.75rem;
    font-size: 1.1rem;
    cursor: pointer;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
  }

  .pdp__qty-btn:hover { background: rgba(255,255,255,0.06); color: #fff; }

  .pdp__qty-input {
    width: 2.5rem;
    text-align: center;
    border: none;
    font-family: 'CircularStd', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    -moz-appearance: textfield;
    outline: none;
    background: transparent;
    padding: 0;
  }

  .pdp__qty-input::-webkit-inner-spin-button,
  .pdp__qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

  .pdp__atc {
    flex: 1;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: 'CircularStd', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    position: relative;
    overflow: hidden;
  }

  @keyframes atc-glow {
    0%   { box-shadow: 0 0 0 0 rgba(167,139,250,0), 0 0 0 0 rgba(124,58,237,0); }
    50%  { box-shadow: 0 0 22px 6px rgba(167,139,250,0.5), 0 0 50px 14px rgba(124,58,237,0.18); }
    100% { box-shadow: 0 0 0 0 rgba(167,139,250,0), 0 0 0 0 rgba(124,58,237,0); }
  }

  .pdp__atc:not(.pdp__atc--disabled):not(.is-done) {
    animation: atc-glow 2.4s ease-in-out infinite;
  }

  .pdp__atc:hover { background: #b87ef0; }

  .pdp__atc .holo-layer {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    background: conic-gradient(
      from var(--holo-angle, 0deg) at var(--holo-x, 50%) var(--holo-y, 50%),
      rgba(255,0,128,0.2), rgba(255,165,0,0.16), rgba(255,255,0,0.14),
      rgba(0,255,128,0.16), rgba(0,180,255,0.2), rgba(160,0,255,0.16),
      rgba(255,0,128,0.2)
    );
    mix-blend-mode: overlay;
  }

  .pdp__atc:hover .holo-layer { opacity: 1; }

  .pdp__atc--disabled {
    background: #e0e0e0;
    color: #999;
    cursor: default;
  }

  .pdp__atc.is-loading { opacity: 0.6; pointer-events: none; }
  .pdp__atc.is-done { background: #2d7d46; }

  .pdp__buy-now {
    margin-top: 0;
  }

  .pdp__payment-trust {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }

  .pdp__payment-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
  }

  .pdp__payment-icons {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .pdp__payment-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 3px 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
  }

  .pdp__payment-icon-wrap svg {
    height: 18px;
    width: auto;
  }

  .pdp__buy-now .shopify-payment-button {
    margin: 0;
  }

  .pdp__buy-now .shopify-payment-button__button {
    border-radius: 14px !important;
    font-family: 'CircularStd', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.03em !important;
  }

  /* Notify me */
  .pdp__notify.is-out-of-stock {
    border-color: rgba(167,139,250,0.5);
    background: rgba(124,58,237,0.08);
    box-shadow: 0 0 20px rgba(124,58,237,0.2), inset 0 1px 0 rgba(167,139,250,0.15);
  }

  .pdp__notify.is-out-of-stock .pdp__notify-title {
    color: #c4b5fd;
  }

  .pdp__notify {
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
  }

  .pdp__notify-title {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 0.85rem;
  }

  .pdp__notify-row {
    display: flex;
    gap: 0.6rem;
  }

  .pdp__notify-input {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    color: #fff;
    font-family: 'CircularStd', sans-serif;
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    outline: none;
    transition: border-color 0.2s;
  }

  .pdp__notify-input::placeholder { color: rgba(255,255,255,0.3); }
  .pdp__notify-input:focus { border-color: #a78bfa; }

  .pdp__notify-btn {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'CircularStd', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    padding: 0.65rem 1.2rem;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
  }

  .pdp__notify-btn:hover { opacity: 0.85; }
  .pdp__notify-btn:disabled { opacity: 0.5; cursor: default; }

  .pdp__notify-fine {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    margin: 0.6rem 0 0;
    line-height: 1.4;
  }

  .pdp__notify-success {
    font-size: 0.85rem;
    color: #22c55e;
    margin: 0.75rem 0 0;
  }

  .pdp__divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0.25rem 0;
  }

  /* Description */
  .pdp__description {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
  }

  .pdp__description h1, .pdp__description h2, .pdp__description h3 {
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .pdp__description strong { color: #ccc; }
  .pdp__description a { color: #CA94F9; }

  @media (max-width: 900px) {
    .pdp__inner {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 5rem 1.25rem 4rem;
    }
  }

  /* ── Product Info Block ── */
  .pi {
    background: #2b2b38;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    font-family: 'CircularStd', sans-serif;
    padding: 4rem 0 4.5rem;
  }

  .pi__inner {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    padding: 0 var(--page-margin, 3rem);
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .pi__dot { color: #a78bfa; }

  .pi__breadcrumb {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .pi__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform : uppercase;
    color: #fff;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
    line-height: 1.1;
  }

  .pi__col-logo {
    display: block;
    max-height: 50px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin: 0.5rem 0 0.25rem;
  }

  .pi__desc {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.65;
    margin: 0;
    max-width: 760px;
  }

  .pi__desc--clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pi__desc--clamped.is-expanded {
    display: block;
    overflow: visible;
  }

  .pi__read-more {
    background: none;
    border: none;
    color: #a78bfa;
    font-size: 0.88rem;
    font-family: 'CircularStd', sans-serif;
    cursor: pointer;
    padding: 0.3rem 0;
    margin-top: 0.25rem;
    transition: opacity 0.15s;
  }

  .pi__read-more:hover { opacity: 0.7; }

  .pi__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
  }

  .pi__stat {
    flex: 1;
    min-width: 120px;
    padding: 1.25rem 1.75rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .pi__stat:last-child { border-right: none; }

  .pi__stat-num {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #a78bfa;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .pi__stat-num--text {
    font-size: 1.1rem;
    letter-spacing: -0.01em;
  }

  .pi__stat-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
  }

  .pi__related-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .pi__related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .pi__related-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .pi__related-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.05);
  }

  .pi__related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .pi__related-card:hover .pi__related-img-wrap img {
    transform: scale(1.04);
  }

  .pi__related-name {
    font-size: 0.85rem;
    color: #ccc;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pi__related-price {
    font-size: 0.85rem;
    color: #a78bfa;
    font-weight: 500;
    margin: 0;
  }

  .pi__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(167,139,250,0.4);
    color: #a78bfa;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
  }

  .pi__cta:hover {
    background: rgba(167,139,250,0.1);
    border-color: #a78bfa;
  }

  @media (max-width: 768px) {
    .pi__inner { padding: 0 1.25rem; }
    .pi__stat { padding: 1rem 1.25rem; }
    .pi__related-grid { grid-template-columns: repeat(2, 1fr); }
  }
/* END_SECTION:product */

/* START_SECTION:reviews-slider (INDEX:23) */
.reviews-slider {
    background: #242427;
    padding: 4rem 0 4rem;
    overflow: hidden;
    font-family: 'CircularStd', sans-serif;
  }

  .reviews-slider__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 3rem;
    margin-bottom: 0;
  }

  .reviews-slider__title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
  }

  .reviews-slider__subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a78bfa;
    margin: 0 0 0.5rem;
  }

  .reviews-slider__title-line {
    height: 1px;
    background: linear-gradient(90deg, #D9D9D9, #242427);
    margin: 1rem 3rem 1.5rem;
  }

  .reviews-slider__viewport {
    width: 100%;
    overflow: hidden;
  }

  .reviews-slider__track {
    display: flex;
    gap: 1rem;
    width: max-content;
    will-change: transform;
  }

  .reviews-slider__card {
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 16px;
    padding: 1.4rem 1.9rem;
    width: 350px;
    height: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }

  .reviews-slider__card:hover {
    border-color: rgba(255, 255, 255, 0.5);
  }

  .reviews-slider__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .reviews-slider__rating {
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.03em;
  }

  .reviews-slider__logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
  }

  .reviews-slider__logo-text {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
  }

  .reviews-slider__message {
    font-size: 1.3rem;
    color: #fff;
    line-height: 1;
    margin: 0;
  }

  @media (max-width: 768px) {
    .reviews-slider {
      padding: 4rem 0;
    }

    .reviews-slider__header {
      padding: 0 1rem;
    }

    .reviews-slider__title-line {
      margin-left: 1rem;
      margin-right: 1rem;
    }

    .reviews-slider__title {
      font-size: 1.5rem;
    }

    .reviews-slider__card {
      width: 200px;
      height: 200px;
      padding: 1.1rem 1.2rem;
    }

    .reviews-slider__message {
      font-size: 0.85rem;
    }

    .reviews-slider__logo {
      height: 20px;
    }
  }
/* END_SECTION:reviews-slider */

/* START_SECTION:search (INDEX:24) */
.search-page {
    padding: 4rem 3rem 5rem;
    background: #0a0a10;
    min-height: 70vh;
  }

  .search-page__header {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  .search-page__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 2rem;
    line-height: 1.1;
  }

  .search-page__form {
    width: 100%;
  }

  .search-page__input-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 0.4rem 0.4rem 0.4rem 1.25rem;
    transition: border-color 0.2s;
  }

  .search-page__input-wrap:focus-within {
    border-color: rgba(167,139,250,0.5);
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
  }

  .search-page__icon {
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
    margin-right: 0.75rem;
  }

  .search-page__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: 'CircularStd', sans-serif;
    font-size: 1rem;
    min-width: 0;
  }

  .search-page__input::placeholder { color: rgba(255,255,255,0.3); }

  .search-page__btn {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: 'CircularStd', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
  }

  .search-page__btn:hover { opacity: 0.85; }

  .search-page__empty {
    text-align: center;
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .search-page__empty-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin: 0;
  }

  .search-page__empty-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
  }

  .search-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .search-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .search-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167,139,250,0.35);
    box-shadow: 0 12px 40px rgba(124,58,237,0.2);
  }

  .search-card__image-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1;
  }

  .search-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .search-card__no-image {
    aspect-ratio: 1;
    background: #111;
  }

  .search-card__info {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    background: #FBFBFB;
  }

  .search-card__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ca94f9;
  }

  .search-card__title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #111;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  .search-card__price {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin: 0.25rem 0 0;
    letter-spacing: -0.02em;
  }

  .search-page__pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
  }

  .search-page__pagination .pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .search-page__pagination a,
  .search-page__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
  }

  .search-page__pagination a:hover {
    background: rgba(167,139,250,0.15);
    border-color: rgba(167,139,250,0.4);
    color: #fff;
  }

  .search-page__pagination .current {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
    border-color: transparent;
    color: #fff;
  }

  @media (max-width: 768px) {
    .search-page {
      padding: 3rem 1rem 4rem;
    }
    .search-page__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
    .search-page__btn {
      padding: 0.65rem 1rem;
      font-size: 0.82rem;
    }
  }
/* END_SECTION:search */

/* START_SECTION:social-links (INDEX:25) */
.social-links {
    background: #242427;
    font-family: 'CircularStd', sans-serif;
    padding: 2.5rem 0 3.5rem;
  }

  .social-links__inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .social-links__text {
    font-size: 0.875rem;
    font-weight: 400;
    background: linear-gradient(90deg, #767676 0%, #C1C1C1 50%, #767676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0;
    letter-spacing: 0.01em;
    display: inline-block;
  }

  .social-links__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
  }

  .social-links__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-decoration: none;
    color: #fff;
    padding: 0.5rem;
    transition: opacity 0.2s;
  }

  .social-links__item:hover {
    opacity: 0.7;
  }

  .social-links__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #fff;
  }

  .social-links__logo-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
  }

  .social-links__label {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    background: linear-gradient(180deg, #767676 0%, #C1C1C1 50%, #767676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }

  .social-links__divider {
    width: 2px;
    height: 3.5rem;
    background: linear-gradient(180deg, #242427 0%, #46464C 50%, #242427 100%);
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .social-links__inner {
      padding: 0 1.25rem;
    }

    .social-links__icon {
      width: 44px;
      height: 44px;
    }

    .social-links {
      padding: 2rem 0 4rem;
    }
  }
/* END_SECTION:social-links */

/* START_SECTION:stats-bar (INDEX:26) */
.stats-bar {
    padding: 3.5rem 2rem;
    font-family: 'CircularStd', sans-serif;
  }

  .stats-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
  }

  .stats-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
    padding: 0 2rem;
  }

  .stats-bar__value {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.04em;
    text-align: center;
  }

  .stats-bar__label {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
    background: linear-gradient(180deg, #767676 0%, #C1C1C1 50%, #767676 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }

  .stats-bar__divider {
    width: 2px;
    height: 3.5rem;
    background: linear-gradient(180deg, #242427 0%, #46464C 50%, #242427 100%);
    flex-shrink: 0;
  }

  @media (max-width: 640px) {

    .stats-bar {
      padding: 3.5rem 0rem;
    }
    .stats-bar__inner {
      flex-wrap: nowrap;
      justify-content: center;
      padding: 0;
      gap: 0;
      width: 100%;
    }
    .stats-bar__item {
      flex: 1 1 0;
      min-width: 0;
      padding: 0 0.5rem;
    }
    .stats-bar__divider {
      flex-shrink: 0;
      height: 2.5rem;
    }
    .stats-bar__value {
      font-size: 1.6rem;
    }
    .stats-bar__label {
      font-size: 0.78rem;
      white-space: nowrap;
    }
  }
/* END_SECTION:stats-bar */

/* START_SECTION:tagline (INDEX:27) */
.tagline {
    background: #242427;
    font-family: 'CircularStd', sans-serif;
    padding: 0 0 3.5rem 0;
  }

  .tagline__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2rem 3rem;
    gap: 1rem;
  }

  .tagline__sep {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .tagline__sep span {
    display: block;
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5));
  }

  .tagline__sep span:last-child {
    background: linear-gradient(270deg, transparent, rgba(124,58,237,0.5));
  }

  .tagline__text {
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.45;
    max-width: 620px;
    margin-top: 1.5rem;
  }

  .tagline__sub {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
    margin: 0;
    letter-spacing: 0.01em;
  }

  @media (max-width: 768px) {
    .tagline {
      padding: 0 0 2.5rem  0;
    }
    .tagline__text {
      font-size: 1rem;
      margin-top: 2.5rem;
    }

    .tagline__inner {
      padding: 0 2rem 0rem;
    }
/* END_SECTION:tagline */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:28) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:29) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */