

/* ══════ External font imports — preserved from source store <head> ══════ */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,400&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400&display=swap');


/* ══════ CSS custom properties — copied directly from live site ══════ */
:root {
  --cl-accent: #ffffff;
  --cl-accent-rgb: 255,255,255;
  --cl-background-primary: #0a0a0a;
  --cl-background-primary-rgb: 10,10,10;
  --cl-background-secondary: #141414;
  --cl-background-secondary-rgb: 20,20,20;
  --cl-border: #ffffff0d;
  --cl-border-rgb: 255,255,255,0.05;
  --bs-font-sans-serif: 'Poppins', sans-serif;
  --cl-snow: 255,255,255;
  --product-card-image-aspect-ratio: 16/9;
  --product-page-image-aspect-ratio: 16/9;
  --group-card-image-aspect-ratio: 16/9;
  --blog-card-image-aspect-ratio: 16/9;
  --product-image-fit: cover;
  --group-image-fit: cover;
}

/* ══════ custom.css — fetched from site ══════ */
.section-title,
.section-title h2 {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 auto 8px;
  text-align: center !important;
  text-wrap: balance;
}

.section-subtitle,
.section-subtitle p {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 auto 20px;
  max-width: 36rem;
  text-align: center !important;
}

/* ══════ shop page — inline style 1 ══════ */
nav[data-component-id="navbar"],
  .navbar[data-component-id="navbar"],
  [data-component-id="navbar"] {
    position: static !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: unset !important;
    height: auto !important;
  }

  .navbar.fixed-top,
  .navbar.sticky-top,
  .fixed-top,
  .sticky-top {
    position: static !important;
  }

  body {
    padding-top: 0 !important;
  }

  @keyframes nb-enter {
    0% {
      opacity: 0;
      transform: translateY(-28px);
    }
    100% {
      opacity: 1;
      transform: translateY(0px);
    }
  }

  @keyframes nb-brand-enter {
    0% {
      opacity: 0;
      transform: translateY(-16px);
    }
    100% {
      opacity: 1;
      transform: translateY(0px);
    }
  }

  @keyframes nb-links-enter {
    0% {
      opacity: 0;
      transform: translateY(-12px);
    }
    100% {
      opacity: 1;
      transform: translateY(0px);
    }
  }

  @keyframes nb-actions-enter {
    0% {
      opacity: 0;
      transform: translateY(-12px);
    }
    100% {
      opacity: 1;
      transform: translateY(0px);
    }
  }

  .nb-shell {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 20px 32px;
    pointer-events: none;
    transition: padding 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
    animation: nb-enter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
  }

  .nb-frame {
    width: 100%;
    max-width: 1200px;
    pointer-events: auto;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0px;
    transition:
      background 0.65s cubic-bezier(0.25, 0.1, 0.25, 1),
      border-color 0.65s cubic-bezier(0.25, 0.1, 0.25, 1),
      border-radius 0.65s cubic-bezier(0.25, 0.1, 0.25, 1),
      box-shadow 0.65s cubic-bezier(0.25, 0.1, 0.25, 1),
      max-width 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .nb-shell.is-island {
    padding: 16px 32px;
  }

  .nb-shell.is-island .nb-frame {
    border-radius: 9999px;
    max-width: 860px;
  }

  .nb-shell.is-island.has-bg .nb-frame {
    background: #080808;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .nb-inner {
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 72px !important;
    padding: 0 32px !important;
    box-sizing: border-box !important;
    transition: min-height 0.65s cubic-bezier(0.25, 0.1, 0.25, 1), padding 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .nb-shell.is-island .nb-inner {
    min-height: 64px !important;
    padding: 0 28px !important;
  }

  .nb-col {
    display: flex;
    align-items: center;
    flex: 1;
  }

  .nb-col--left {
    justify-content: flex-start;
  }

  .nb-col--center {
    justify-content: center;
    flex: 0 1 auto;
    padding: 0 24px;
  }

  .nb-col--right {
    justify-content: flex-end;
  }

  .nb-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    animation: nb-brand-enter 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
  }

  .nb-brand img {
    height: 28px;
    width: auto;
    display: block;
  }

  .nb-brand__name {
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1;
    white-space: nowrap;
  }

  .nb-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    animation: nb-links-enter 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
  }

  .nb-links .nb-link {
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 9999px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
    letter-spacing: -0.01em;
    line-height: 1;
  }

  .nb-links .nb-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
  }

  .nb-links .nb-link--btn {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-weight: 500;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .nb-links .nb-link--btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .nb-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    animation: nb-actions-enter 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
  }

  .nb-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    transition: color 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
  }

  .nb-cart:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
  }

  .nb-cart .icon {
    width: 18px;
    height: 18px;
  }

  .nb-cart .count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 14px;
    height: 14px;
    background: #ffffff;
    color: #000000;
    font-size: 9px;
    font-weight: 700;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
  }

  .nb-auth-btn {
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    background: #ffffff;
    border: none;
    padding: 9px 18px;
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
  }

  .nb-auth-btn:hover {
    opacity: 0.85;
  }

  .nb-hamburger {
    display: none;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    border-radius: 9999px;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: background 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
  }

  .nb-hamburger:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
  }

  .nb-hamburger .nb-icon-menu,
  .nb-hamburger .nb-icon-close {
    width: 18px;
    height: 18px;
    display: block;
    transition: opacity 0.2s ease, transform 0.2s ease;
    position: absolute;
  }

  .nb-hamburger {
    position: relative;
  }

  .nb-hamburger .nb-icon-close {
    opacity: 0;
    transform: rotate(-45deg);
  }

  .nb-hamburger.is-open .nb-icon-menu {
    opacity: 0;
    transform: rotate(45deg);
  }

  .nb-hamburger.is-open .nb-icon-close {
    opacity: 1;
    transform: rotate(0deg);
  }

  .nb-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .nb-drawer.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }

  .nb-drawer__panel {
    background: rgba(10, 10, 10, 0.97);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px 20px 0 0;
    padding: 12px 0 max(28px, env(safe-area-inset-bottom)) 0;
  }

  .nb-drawer__handle {
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    margin: 0 auto 20px;
  }

  .nb-drawer__links {
    list-style: none;
    margin: 0;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .nb-drawer__links li a,
  .nb-drawer__links li button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 13px 16px;
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease;
    letter-spacing: -0.01em;
    text-align: left;
    box-sizing: border-box;
  }

  .nb-drawer__links li a:hover,
  .nb-drawer__links li button:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
  }

  .nb-drawer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 8px 16px;
  }

  .nb-drawer__actions {
    padding: 8px 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .nb-drawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    font-family: 'Satoshi', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
    letter-spacing: -0.02em;
    box-sizing: border-box;
  }

  .nb-drawer__cta:hover {
    opacity: 0.88;
  }

  .nb-drawer__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    gap: 8px;
    box-sizing: border-box;
  }

  .nb-drawer__cart:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .nb-drawer__cart .icon {
    width: 16px;
    height: 16px;
  }

  .nb-scrim {
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }

  .nb-scrim.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  @media (max-width: 991px) {
    .nb-col--center {
      display: none;
    }

    .nb-auth-btn {
      display: none;
    }

    .nb-cart {
      display: none;
    }

    .nb-hamburger {
      display: flex;
    }

    .nb-inner {
      padding: 0 20px !important;
    }

    .nb-shell.is-island .nb-inner {
      padding: 0 16px !important;
    }
  }

  @media (min-width: 992px) {
    .nb-drawer {
      display: none;
    }

    .nb-scrim {
      display: none;
    }
  }

/* ══════ shop page — inline style 2 ══════ */
:root {
    --aurora-black: #0a0a0a;
    --aurora-transparent: transparent;
  }

  .hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 80px 0 0;
    background: #0a0a0a;
  }

  .aurora-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    background-color: #0a0a0a;
    mask-image: radial-gradient(ellipse 140% 100% at 50% 0%, black 0%, black 18%, rgba(0,0,0,0.7) 38%, rgba(0,0,0,0.3) 56%, rgba(0,0,0,0.1) 70%, transparent 82%);
    -webkit-mask-image: radial-gradient(ellipse 140% 100% at 50% 0%, black 0%, black 18%, rgba(0,0,0,0.7) 38%, rgba(0,0,0,0.3) 56%, rgba(0,0,0,0.1) 70%, transparent 82%);
    animation: auroraContainerFadeIn 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0s backwards;
  }

  @keyframes auroraContainerFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .aurora-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.45;
    will-change: background-position;
    transform: translateZ(0);
    backface-visibility: hidden;
    filter: blur(14px);
    background-image:
      repeating-linear-gradient(
        100deg,
        var(--aurora-black) 0%,
        var(--aurora-black) 7%,
        var(--aurora-transparent) 10%,
        var(--aurora-transparent) 12%,
        var(--aurora-black) 16%
      ),
      repeating-linear-gradient(
        100deg,
        #5CA9F6 10%,
        #8ec8fa 15%,
        #a8a8b8 20%,
        #7ab8f0 25%,
        #b0bfd0 30%,
        #3a8ef5 36%,
        #c5d0dc 42%
      );
    background-size: 200% 100%, 100% 100%;
    background-position: 0% 0%, 0% 0%;
    animation: aurora 28s linear infinite, auroraFadeIn 2s cubic-bezier(0.16, 1, 0.3, 1) 0s backwards;
    contain: layout style paint;
  }

  .aurora-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        100deg,
        var(--aurora-black) 0%,
        var(--aurora-black) 7%,
        var(--aurora-transparent) 10%,
        var(--aurora-transparent) 12%,
        var(--aurora-black) 16%
      ),
      repeating-linear-gradient(
        100deg,
        #5CA9F6 10%,
        #8ec8fa 15%,
        #a8a8b8 20%,
        #7ab8f0 25%,
        #b0bfd0 30%,
        #3a8ef5 36%,
        #c5d0dc 42%
      );
    background-size: 100% 100%, 50% 100%;
    mix-blend-mode: difference;
    animation: aurora-after 28s linear infinite;
    will-change: background-position;
    transform: translateZ(0);
    backface-visibility: hidden;
  }

  @keyframes aurora {
    from { background-position: 0% 0%, 0% 0%; }
    to   { background-position: -100% 0%, -50% 0%; }
  }

  @keyframes aurora-after {
    from { background-position: 0% 0%, 0% 0%; }
    to   { background-position: -50% 0%, -25% 0%; }
  }

  @keyframes auroraFadeIn {
    from {
      opacity: 0;
      filter: blur(32px);
    }
    to {
      opacity: 0.45;
      filter: blur(14px);
    }
  }

  .hero.aurora-paused .aurora-bg,
  .hero.aurora-paused .aurora-bg::after {
    animation-play-state: paused;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      linear-gradient(to right, #0a0a0a 0%, #0a0a0a 15%, rgba(10, 10, 10, 0.85) 25%, rgba(10, 10, 10, 0.5) 40%, transparent 55%, rgba(10, 10, 10, 0.4) 65%, rgba(10, 10, 10, 0.8) 80%, #0a0a0a 90%, #0a0a0a 100%),
      linear-gradient(to top, #0a0a0a 0%, rgba(10, 10, 10, 0.6) 30%, transparent 60%);
  }

  .hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .hero__text {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
  }

  .hero__badge {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 28px;
    opacity: 0;
  }

  .hero__badge-glass {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 10px;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.11);
    box-shadow:
      0 1px 0 0 rgba(255,255,255,0.08) inset,
      0 -1px 0 0 rgba(0,0,0,0.25) inset,
      0 4px 24px rgba(0,0,0,0.35),
      0 1px 4px rgba(0,0,0,0.2);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    position: relative;
    overflow: hidden;
  }

  .hero__badge-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
    border-radius: 9999px;
  }

  .hero__badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .hero__badge-text {
    font-family: 'Satoshi', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(255,255,255,0.55);
    line-height: 1;
    white-space: nowrap;
  }

  .hero__badge-text strong {
    font-weight: 600;
    color: rgba(255,255,255,0.88);
  }

  .hero__title {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0 0 18px 0;
  }

  .hero__subtitle {
    font-family: inherit;
    font-size: clamp(0.9rem, 1.2vw, 1.15rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto 32px;
    max-width: 720px;
  }

  .hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
  }

  .hero__btn {
    font-family: 'Satoshi', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1;
    white-space: nowrap;
    border-radius: 9999px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .hero__btn--solid {
    color: #000000;
    background: #ffffff;
    border: none;
  }

  .hero__btn--solid:hover {
    opacity: 0.85;
  }

  .hero__btn--outline {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .hero__word {
    display: inline-block;
    white-space: pre;
  }

  @media (max-width: 640px) {
    .aurora-container {
      mask-image: radial-gradient(ellipse 180% 90% at 50% 0%, black 0%, black 12%, rgba(0,0,0,0.65) 34%, rgba(0,0,0,0.2) 54%, transparent 70%);
      -webkit-mask-image: radial-gradient(ellipse 180% 90% at 50% 0%, black 0%, black 12%, rgba(0,0,0,0.65) 34%, rgba(0,0,0,0.2) 54%, transparent 70%);
    }
  }

  @media (max-width: 1280px) {
    .hero__title {
      font-size: clamp(2.5rem, 4.5vw, 4rem);
    }

    .hero__text {
      max-width: 780px;
    }
  }

  @media (max-width: 1024px) {
    .hero {
      min-height: 78vh;
      padding: 72px 0 0;
    }

    .hero__title {
      font-size: clamp(2.25rem, 5vw, 3.25rem);
    }

    .hero__subtitle {
      max-width: 580px;
    }
  }

  @media (max-width: 768px) {
    .hero {
      min-height: 70vh;
      padding: 60px 0 0;
    }

    .hero__content {
      padding: 0 20px;
    }

    .hero__title {
      font-size: clamp(2rem, 6.5vw, 2.75rem);
    }

    .hero__text {
      max-width: 100%;
    }

    .hero__subtitle {
      max-width: 100%;
    }

    .hero__badge {
      margin-bottom: 22px;
    }

    .hero__badge-text {
      font-size: 11.5px;
    }
  }

  @media (max-width: 480px) {
    .hero {
      min-height: 65vh;
      padding: 48px 0 0;
    }

    .hero__content {
      padding: 0 16px;
    }

    .hero__title {
      font-size: clamp(1.75rem, 8vw, 2.25rem);
      letter-spacing: -0.03em;
    }

    .hero__actions {
      flex-direction: column;
      width: 100%;
    }

    .hero__btn {
      width: 100%;
      justify-content: center;
      padding: 13px 20px;
      font-size: 15px;
    }

    .hero__badge-text {
      font-size: 11px;
    }

    .hero__badge-glass {
      padding: 6px 12px 6px 8px;
      gap: 7px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .aurora-bg,
    .aurora-bg::after {
      animation: none;
      opacity: 0.45;
      filter: blur(14px);
    }
    .aurora-container {
      animation: none;
    }
  }

/* ══════ shop page — inline style 3 ══════ */
.cf-section {
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cf-container {
      position: relative;
      z-index: 1;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .cf-grid {
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      grid-template-rows: 300px 360px;
      gap: 10px;
    }

    .cf-card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: #0d0d0d;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px;
      overflow: hidden;
      transition: background 0.25s cubic-bezier(0.16,1,0.3,1);
    }

    .cf-card:hover { background: #161616; }

    .cf-showcase {
      flex: 1;
      position: relative;
      overflow: hidden;
      min-height: 0;
      z-index: 1;
    }

    .cf-caption {
      flex-shrink: 0;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      background: rgba(10,10,10,0.7);
      border-top: 1px solid rgba(255,255,255,0.07);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      position: relative;
      z-index: 2;
    }

    .cf-caption__line {
      font-size: 0.78rem;
      margin: 0;
      color: rgba(255,255,255,0.35);
      line-height: 1.4;
    }

    .cf-caption__line strong {
      font-weight: 700;
      color: #fff;
      margin-right: 4px;
    }

    .cf-card-0 { grid-column: 1 / span 3; grid-row: 1; }
    .cf-card-1 { grid-column: 4 / span 3; grid-row: 1; }
    .cf-card-2 { grid-column: 7 / span 4; grid-row: 1; }
    .cf-card-3 { grid-column: 1 / span 6; grid-row: 2; }
    .cf-card-4 { grid-column: 7 / span 4; grid-row: 2; }

    .cf-chat {
      display: flex;
      flex-direction: column;
      padding: 22px 18px;
      gap: 14px;
      height: 100%;
      box-sizing: border-box;
      justify-content: center;
    }

    .cf-chat__msg { display: flex; align-items: flex-end; gap: 9px; }
    .cf-chat__msg--user { flex-direction: row-reverse; }

    .cf-chat__avatar {
      width: 30px; height: 30px;
      border-radius: 50%;
      flex-shrink: 0;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
    }

    .cf-chat__avatar img { width: 100%; height: 100%; object-fit: cover; }

    .cf-chat__avatar--support {
      background: rgba(92,169,246,0.12);
      border-color: rgba(92,169,246,0.28);
      color: #5CA9F6;
      font-size: 0.72rem;
    }

    .cf-chat__bubble {
      max-width: 78%;
      padding: 9px 13px;
      border-radius: 13px;
      font-size: 0.77rem;
      line-height: 1.5;
    }

    .cf-chat__bubble--user {
      background: rgba(92,169,246,0.15);
      border: 1px solid rgba(92,169,246,0.25);
      color: #cce5fd;
      border-bottom-right-radius: 3px;
    }

    .cf-chat__bubble--support {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      color: rgba(255,255,255,0.55);
      border-bottom-left-radius: 3px;
    }

    .cf-nofees {
      position: relative;
      height: 100%;
      overflow: hidden;
    }

    .cf-nofees__corner {
      position: absolute;
      bottom: -2px;
      right: -2px;
      width: 90%;
      height: 70%;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 14px 0 0 0;
      background: rgba(10,10,10,0.6);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-sizing: border-box;
      display: flex;
      align-items: flex-end;
      padding: 18px 0 18px 20px;
      overflow: hidden;
    }

    .cf-nofees__corner-text {
      font-size: clamp(2.8rem, 7vw, 4.2rem);
      font-weight: 900;
      line-height: 0.92;
      letter-spacing: -0.04em;
      white-space: nowrap;
      color: rgba(255,255,255,0.07);
      position: relative;
      -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 85%);
      mask-image: linear-gradient(to right, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 85%);
    }

    @media (max-width: 900px) {
      .cf-nofees__corner-text { font-size: clamp(3.5rem, 14vw, 5.5rem); }
    }
    @media (max-width: 540px) {
      .cf-nofees__corner-text { font-size: clamp(3.2rem, 18vw, 5rem); }
    }

    .cf-shield-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      position: relative;
    }

    .cf-shield__rings {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .cf-shield__ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(92,169,246,0.38);
      width: 110px; height: 110px;
      opacity: 0;
      animation: cf-ring-out 5s ease-out infinite;
      animation-fill-mode: forwards;
    }

    .cf-shield__ring:nth-child(1) { animation-delay: 0s; }
    .cf-shield__ring:nth-child(2) { animation-delay: 1.65s; }
    .cf-shield__ring:nth-child(3) { animation-delay: 3.3s; }

    @keyframes cf-ring-out {
      0%   { width: 110px; height: 110px; opacity: 0.4; border-color: rgba(92,169,246,0.38); }
      100% { width: 360px; height: 360px; opacity: 0; border-color: rgba(92,169,246,0); }
    }

    .cf-shield__core {
      width: 110px; height: 110px;
      background: rgba(92,169,246,0.08);
      border: 1px solid rgba(92,169,246,0.28);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      z-index: 2;
      box-shadow: 0 0 40px rgba(92,169,246,0.1);
    }

    .cf-shield__core i { font-size: 2.6rem; color: #5CA9F6; }

    .cf-nitro-wrap {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      box-sizing: border-box;
    }

    .cf-nitro {
      width: 100%;
      background: #1e1f22;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      box-shadow: 0 4px 32px rgba(0,0,0,0.5);
    }

    .cf-nitro__left {
      flex: 1;
      padding: 18px 18px 16px;
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .cf-nitro__eyebrow {
      font-size: 0.95rem;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.01em;
      margin-bottom: 12px;
    }

    .cf-nitro__gifter {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
    }

    .cf-nitro__gifter strong {
      color: #7D7F83;
      font-weight: 700;
    }

    .cf-nitro__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 24px;
    }

    .cf-nitro__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #3d8b4e;
      color: #fff;
      font-size: 0.84rem;
      font-weight: 600;
      border: none;
      border-radius: 4px;
      padding: 10px 28px;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.15s ease;
      -webkit-tap-highlight-color: transparent;
    }

    .cf-nitro__btn:hover { background: #2d7a3e; }

    .cf-nitro__expires {
      font-size: 0.74rem;
      color: rgba(255,255,255,0.28);
      text-align: right;
      flex-shrink: 0;
    }

    .cf-nitro__right {
      width: 42%;
      flex-shrink: 0;
      overflow: hidden;
    }

    .cf-nitro__right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .cf-payments-wrap {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      gap: 10px;
      overflow: hidden;
      padding: 20px 0;
      box-sizing: border-box;
    }

    .cf-marquee-row { overflow: hidden; width: 100%; }

    .cf-marquee-track {
      display: flex;
      gap: 10px;
      width: max-content;
      will-change: transform;
    }

    .cf-marquee-track--rtl { animation: cf-scroll-rtl 22s linear infinite; }
    .cf-marquee-track--ltr { animation: cf-scroll-ltr 22s linear infinite; }

    @keyframes cf-scroll-rtl { from { transform: translateX(0); } to { transform: translateX(-50%); } }
    @keyframes cf-scroll-ltr { from { transform: translateX(-50%); } to { transform: translateX(0); } }

    .cf-payment-pill {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px;
      padding: 11px 18px;
      white-space: nowrap; flex-shrink: 0;
    }

    .cf-payment-pill img { height: 28px; width: auto; object-fit: contain; }
    .cf-payment-pill span { font-size: 0.82rem; color: rgba(255,255,255,0.3); font-weight: 500; }

    @media (max-width: 900px) {
      .cf-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .cf-card-0 { grid-column: 1; grid-row: auto; min-height: 260px; }
      .cf-card-1 { grid-column: 2; grid-row: auto; min-height: 320px; }
      .cf-card-2 { grid-column: 1 / -1; grid-row: auto; min-height: 260px; }
      .cf-card-3 { grid-column: 1 / -1; grid-row: auto; min-height: 420px; }
      .cf-card-4 { grid-column: 1 / -1; grid-row: auto; min-height: 260px; }
    }

    @media (max-width: 540px) {
      .cf-grid { grid-template-columns: 1fr; }
      .cf-card-0, .cf-card-1 { grid-column: 1; }
      .cf-card-1 { min-height: 340px; }
      .cf-nitro__right { width: 36%; }
    }

/* ══════ shop page — inline style 4 ══════ */
.ft,
.ft *,
.ft *::before,
.ft *::after {
  border-top: none !important;
  border-bottom: none !important;
}

.ft .section-title,
.ft .section-subtitle,
.ft .section-title h2,
.ft .section-subtitle p {
  border: none !important;
  box-shadow: none !important;
}

.ft .section-title::before,
.ft .section-title::after,
.ft .section-subtitle::before,
.ft .section-subtitle::after {
  display: none !important;
}

.ft__icon-wrap {
  border-top: none !important;
  border-bottom: none !important;
}

.ft {
  padding: 100px 0 80px;
  background: #0a0a0a;
}

.ft__grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

.ft__grid--1 { grid-template-columns: 1fr; }
.ft__grid--2 { grid-template-columns: repeat(2, 1fr); }
.ft__grid--3 { grid-template-columns: repeat(3, 1fr); }
.ft__grid--4 { grid-template-columns: repeat(4, 1fr); }

.ft__card {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

.ft__card:hover {
  background: #161616;
}

.ft__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(92,169,246,0.18) 0%, rgba(42,110,200,0.12) 100%);
  box-shadow:
    inset 0 1px 0 rgba(92,169,246,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    inset 1px 0 0 rgba(92,169,246,0.08),
    inset -1px 0 0 rgba(92,169,246,0.08),
    0 0 20px rgba(92,169,246,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 22px 0;
  flex-shrink: 0;
}

.ft__icon {
  font-size: 20px;
  color: #5CA9F6;
  line-height: 1;
  display: block;
  margin: 0;
}

.ft__glass-icon {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
}

.ft__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 8px 0;
}

.ft__desc {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 1024px) {
  .ft { padding: 80px 0 64px; }
  .ft__grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ft { padding: 64px 0 56px; }
  .ft__grid--3 { grid-template-columns: 1fr; }
  .ft__grid--2 { grid-template-columns: 1fr; }
  .ft__grid--4 { grid-template-columns: 1fr; }
  .ft__grid { gap: 12px; }
}

@media (max-width: 480px) {
  .ft { padding: 52px 0 44px; }
  .ft__card { padding: 24px 20px 28px; }
}

/* ══════ shop page — inline style 5 ══════ */
.pc {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.pc:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.pc__thumb-wrap {
  position: relative;
  margin: 10px 10px 0;
  border-radius: 14px;
  overflow: hidden;
  background: #141414;
}

.pc__thumb {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.pc:hover .pc__thumb {
  transform: scale(1.03);
}

.pc__thumb--empty {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.pc__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  z-index: 2;
}

.pc__badge {
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 9999px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pc__body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.pc__top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc__name {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}

.pc__stock-wrap {
  flex-shrink: 0;
}

.pc__stock {
  font-family: 'Satoshi', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 9999px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pc__stock--in {
  background: rgba(34, 197, 94, 0.1);
  color: rgba(34, 197, 94, 0.85);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.pc__stock--low {
  background: rgba(234, 179, 8, 0.1);
  color: rgba(234, 179, 8, 0.9);
  border: 1px solid rgba(234, 179, 8, 0.22);
}

.pc__stock--out {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.pc__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pc__buy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.01em;
  line-height: 1;
  flex: 1;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pc:hover .pc__buy {
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
}

.pc__buy-icon {
  opacity: 0.6;
  flex-shrink: 0;
}

.pc__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.pc__label {
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}

.pc__price {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pc__slash {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: line-through;
  letter-spacing: 0;
}

/* ══════ shop page — inline style 6 ══════ */
.products-view-all {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.products-view-all__btn {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.products-view-all__btn svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.products-view-all__btn:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.products-view-all__btn:hover svg {
  transform: translate(2px, -2px);
}

/* ══════ shop page — inline style 7 ══════ */
.stats {
  background: #0a0a0a;
  padding: 80px 0;
}

.stats__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats__header {
  text-align: center;
  margin-bottom: 56px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stats__card {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  gap: 12px;
  text-align: center;
  transition: background 0.2s ease;
}

.stats__card:hover {
  background: rgba(255, 255, 255, 0.02);
}

.stats__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.stats__icon svg {
  width: 36px;
  height: 36px;
}

.stats__value {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(2.75rem, 4.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #ffffff;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.stats__value.is-visible {
  opacity: 1;
}

.stats__label {
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
}

@media (max-width: 768px) {
  .stats {
    padding: 60px 0;
  }

  .stats__header {
    margin-bottom: 40px;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stats__card {
    padding: 36px 24px;
  }

  .stats__value {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
}

@media (max-width: 480px) {
  .stats__wrapper {
    padding: 0 16px;
  }

  .stats__card {
    padding: 28px 20px;
  }
}

/* ══════ shop page — inline style 8 ══════ */
.fc {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Satoshi', sans-serif;
  height: 160px;
  overflow: hidden;
}

.fc__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
}

.fc__product {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.fc__stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.fc__star {
  width: 14px;
  height: 14px;
}

.fc__message {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.fc__message p {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fc__date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 400;
  flex-shrink: 0;
}

/* ══════ shop page — inline style 9 ══════ */
.fb {
  padding: 100px 0 80px;
  background: #0a0a0a;
  overflow: hidden;
}

.fb__header {
  margin-bottom: 48px;
}

.fb__header .section-title,
.fb__header .section-subtitle,
.fb__header .section-title h2,
.fb__header .section-subtitle p {
  border: none !important;
  box-shadow: none !important;
}

.fb__header .section-title::before,
.fb__header .section-title::after,
.fb__header .section-subtitle::before,
.fb__header .section-subtitle::after {
  display: none !important;
}

.fb__stage {
  position: relative;
  height: 680px;
  overflow: hidden;
}

.fb__columns {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.fb__mask {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.fb__mask--top {
  top: 0;
  height: 160px;
  background: linear-gradient(to bottom, #0a0a0a 0%, transparent 100%);
}

.fb__mask--bottom {
  bottom: 0;
  height: 160px;
  background: linear-gradient(to top, #0a0a0a 0%, transparent 100%);
}

.fb__col {
  overflow: hidden;
  height: 100%;
}

.fb__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  will-change: transform;
}

.fb__item {
  flex-shrink: 0;
}

.fb__footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.fb__btn {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  border-radius: 9999px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.fb__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .fb {
    padding: 64px 0 56px;
  }

  .fb__stage {
    height: 520px;
  }

  .fb__columns {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
    max-width: 640px;
  }

  .fb__col:last-child {
    display: none;
  }
}

@media (max-width: 480px) {
  .fb__stage {
    height: 480px;
  }

  .fb__columns {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .fb__col:nth-child(2),
  .fb__col:last-child {
    display: none;
  }
}

/* ══════ shop page — inline style 10 ══════ */
.faq {
  padding: 7rem 0;
  position: relative;
}

.faq__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


.faq__list {
  display: flex;
  flex-direction: column;
}

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

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

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  cursor: pointer;
  text-align: left;
  color: #ffffff;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: rgba(255, 255, 255, 0.7);
}

.faq__question-text {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.faq__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.faq__icon-v {
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.faq__item--open .faq__icon {
  color: #ffffff;
}

.faq__item--open .faq__icon-v {
  transform: scaleY(0);
  opacity: 0;
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
  padding-bottom: 1.5rem;
}

.faq__answer-text {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
  white-space: pre-line;
}

/* ══════ shop page — inline style 11 ══════ */
.cta {
  padding: 0 0 80px;
  background: #0a0a0a;
}

.cta__inner {
  position: relative;
  max-width: calc(1200px - 48px);
  margin: 0 auto;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 320px;
}

.cta__body {
  position: relative;
  z-index: 2;
  padding: 64px 64px;
  flex: 0 0 auto;
  max-width: 560px;
}

.cta__overline {
  display: block;
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0 14px 0;
}

.cta__title {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin: 0 0 14px 0;
}

.cta__subtitle {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 32px 0;
  max-width: 380px;
}

.cta__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta__btn {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  border-radius: 9999px;
  padding: 11px 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cta__btn--primary {
  color: #000000;
  background: #ffffff;
  border: none;
}

.cta__btn--primary:hover {
  opacity: 0.82;
}

.cta__btn--ghost {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta__btn--ghost:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}

.cta__btn-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.cta__btn--ghost:hover .cta__btn-arrow {
  transform: translate(2px, -2px);
}

.cta__globe-wrap {
  position: absolute;
  right: -156px;
  bottom: -216px;
  width: 520px;
  height: 520px;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1024px) {
  .cta__inner {
    max-width: calc(100% - 48px);
  }
}

@media (max-width: 900px) {
  .cta__globe-wrap {
    right: -160px;
    bottom: -135px;
    opacity: 0.4;
  }

  .cta__body {
    padding: 52px 44px;
  }
}

@media (max-width: 640px) {
  .cta {
    padding: 0 0 48px;
  }

  .cta__inner {
    max-width: calc(100% - 32px);
    min-height: unset;
  }

  .cta__body {
    padding: 44px 32px;
    max-width: 100%;
  }

  .cta__globe-wrap {
    right: -180px;
    bottom: -135px;
    opacity: 0.15;
  }

  .cta__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .cta__subtitle {
    max-width: 100%;
  }
}

/* ══════ shop page — inline style 12 ══════ */
.ft {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  box-sizing: border-box;
}

.ft__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 56px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  box-sizing: border-box;
}

.ft__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 0 0 auto;
  max-width: 300px;
}

.ft__brand-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.ft__logo {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.ft__name {
  font-family: 'Satoshi', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.ft__tagline {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.01em;
}

.ft__cols {
  display: flex;
  flex-direction: row;
  gap: 56px;
  flex: 0 0 auto;
}

.ft__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 100px;
}

.ft__col-heading {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.ft__link {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  display: inline-block;
}

.ft__link:hover {
  color: #ffffff;
}

.ft__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
}

.ft__copy {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.01em;
}

.ft__bottom-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.ft__bottom-sep {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
}

.ft__bottom-link {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.ft__bottom-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .ft__main {
    flex-direction: column;
    gap: 40px;
    padding: 48px 20px 40px;
  }

  .ft__brand {
    max-width: 100%;
  }

  .ft__cols {
    gap: 32px;
    flex-wrap: wrap;
  }

  .ft__col {
    min-width: calc(50% - 16px);
  }

  .ft__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
  }
}

/* ══════ shop page — inline style 13 ══════ */
.clm-modal .modal-dialog {
  margin: 0 auto;
}

.clm-dialog {
  max-width: 420px !important;
  width: 100% !important;
}

.clm {
  background: #0d0d0d !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7) !important;
  overflow: hidden !important;
}

.clm__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 28px 0;
  gap: 16px;
}

.clm__header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.clm__overline {
  font-family: 'Satoshi', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}

.clm__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
}

.clm__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  padding: 0;
  margin-top: 2px;
}

.clm__close:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.clm__body {
  padding: 24px 28px 28px;
}

.clm__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.clm__label {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.clm__hint {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  margin: 0 0 4px;
}

.clm__hint strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.clm__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  font-family: 'Satoshi', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  letter-spacing: -0.01em !important;
  outline: none !important;
  transition: border-color 0.2s ease, background 0.2s ease !important;
  box-shadow: none !important;
}

.clm__input::placeholder {
  color: rgba(255, 255, 255, 0.2) !important;
}

.clm__input:focus {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: none !important;
}

.clm__otp {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.clm__otp-digit {
  flex: 1;
  min-width: 0;
  height: 56px;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  font-family: 'Satoshi', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  outline: none !important;
  transition: border-color 0.2s ease, background 0.2s ease !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.clm__otp-digit:focus {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: none !important;
}

.clm__error {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(239, 68, 68, 0.9);
  margin: 4px 0 0;
  line-height: 1.4;
}

.clm__altcha {
  margin-bottom: 16px;
}

.clm__btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  cursor: pointer;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.clm__btn:hover:not(:disabled) {
  opacity: 0.88;
}

.clm__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.clm-modal .modal-dialog {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease !important;
}

.clm-modal:not(.show) .modal-dialog {
  opacity: 0;
  transform: translateY(12px) scale(0.98) !important;
}

.clm-modal.show .modal-dialog {
  opacity: 1;
  transform: translateY(0) scale(1) !important;
}

/* ══════ /products page — inline style 1 ══════ */
body{margin:0}.loader-wrapper{width:100vw;height:100vh;position:fixed;top:0;left:0;z-index:9999;background:#0c0c0e;background-image:linear-gradient(hsla(0,0%,100%,.01) 1px,transparent 0),linear-gradient(90deg,hsla(0,0%,100%,.01) 1px,transparent 0);background-size:36px 36px;display:flex;align-items:center;justify-content:center}.loader-wrapper .fade{position:absolute;width:280px;height:280px;border-radius:50%;background:radial-gradient(circle,#0c0c0e 28%,rgba(12,12,14,.85) 52%,transparent 72%);pointer-events:none}.loader-wrapper .loader{margin:50px auto;text-indent:-9999em;width:48px;height:48px;border:4px solid #fff;border-bottom-color:transparent;border-radius:50%;display:inline-block;box-sizing:border-box;animation:loading 1s linear infinite}@keyframes loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}

/* ══════ Theme Cloner — animation reveal safety ══════ */
/* ── Ensure every captured component section and its content is visible ── */

/* 1. Component root elements — always visible */
[data-component-id] { opacity: 1 !important; visibility: visible !important; }

/* 2. Elements that the source store's JS already revealed (inline opacity:1) */
[data-component-id] *[style*="opacity: 1"] { opacity: 1 !important; }
[data-component-id] *[style*="opacity:1"]  { opacity: 1 !important; }

/* 3. Non-AOS scroll-reveal patterns — pin visible for custom JS reveals.
   NOTE: [data-aos] and [data-wow] are intentionally excluded here — those
   elements belong to the destination store's AOS/WOW library which handles
   their own opacity lifecycle. Pinning them here would prevent the fade
   animations from playing on first load. */
[data-component-id] [class*="reveal"]:not([data-aos]),
[data-component-id] [class*="animate"]:not([data-aos]):not([data-wow]) {
  opacity: 1 !important;
  transform: none !important;
}

/* 4. Pro-theme specific elements — only when NOT managed by AOS/WOW.
   AOS elements are excluded here so the library can run its fade-in
   from opacity:0. Non-AOS elements (revealed by custom JS) still need
   this rule so they don't get stuck invisible. */
[data-component-id] .section-title:not([data-aos]):not([data-wow]),
[data-component-id] .section-subtitle:not([data-aos]):not([data-wow]),
[data-component-id] .feature:not([data-aos]):not([data-wow]),
[data-component-id] .accordion-item:not([data-aos]):not([data-wow]),
[data-component-id] .hero .content > *:not([data-aos]):not([data-wow]),
[data-component-id] .nb-hero-heading:not([data-aos]):not([data-wow]),
[data-component-id] .nb-hero-subheading:not([data-aos]):not([data-wow]),
[data-component-id] .nb-hero-cta:not([data-aos]):not([data-wow]),
[data-component-id] .nb-hero-badge:not([data-aos]):not([data-wow]),
[data-component-id] .hero-badge:not([data-aos]):not([data-wow]),
[data-component-id] .stats-wrapper:not([data-aos]):not([data-wow]),
[data-component-id] .hero-badge-text:not([data-aos]):not([data-wow]) {
  opacity: 1 !important;
  transform: none !important;
}