/* ═══════════════════════════════════════════════════════════
   KojaCards – kojacards.css
   Saubere, semantische Neustrukturierung (Webflow-frei)
═══════════════════════════════════════════════════════════ */

/* ─── Fonts ──────────────────────────────────────────────── */
@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Satoshi Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2');
  font-weight: 300 900; font-style: normal; font-display: swap;
}

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  --color-bg:        #efefef;
  --color-text:      #151515;
  --color-black:     #000;
  --color-white:     #fff;
  --color-primary:   #e28e2a;
  --color-stroke:    #9b8f7e;
  --font-main:       Satoshi, sans-serif;
  --font-var:        'Satoshi Variable', sans-serif;
  --size-tiny:       .75rem;
  --size-small:      .875rem;
  --size-regular:    1rem;
  --size-medium:     1.125rem;
  --size-large:      1.5rem;
  --size-huge:       2rem;
  --h1:  7.75rem;
  --h2:  5rem;
  --h3:  4.875rem;
  --h4:  4rem;
  --h5:  3.5rem;
  --h6:  2.5rem;
}

/* ─── Base Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; }

body {
  margin: 0;
  min-height: 100%;
  background-color: var(--color-bg);
  font-family: var(--font-main);
  color: var(--color-text);
  font-size: var(--size-regular);
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 { margin: 0; }
h1 { font-size: 38px; line-height: 44px; }
h2 { font-size: 32px; line-height: 36px; }
h3 { font-size: 24px; line-height: 30px; }
h4 { font-size: 18px; line-height: 24px; }
h5 { font-size: 14px; line-height: 20px; }
h6 { font-size: 12px; line-height: 18px; }
p  { margin-bottom: 0; }

a {
  color: var(--color-text);
  text-decoration: none;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
}

/* ─── Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
}
.container.small  { max-width: 90rem; }
.container.medium { max-width: 100rem; }

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.padding-global.small {
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-box        { max-width: 27rem; }
.text-box.large  { max-width: 60rem; }

/* ─── Typography Classes ─────────────────────────────────── */
.heading-1 { font-size: var(--h1); line-height: .95; }
.heading-2 { font-size: var(--h2); line-height: .95; }
.heading-3 { font-size: var(--h3); line-height: 1; }
.heading-4 { font-size: var(--h4); line-height: 1.3; }
.heading-5 { font-size: var(--h5); line-height: 1.15; }
.heading-6 { font-size: var(--h6); line-height: 1.15; }

.text-size-tiny    { font-size: var(--size-tiny); }
.text-size-small   { font-size: var(--size-small); }
.text-size-regular { font-size: var(--size-regular); line-height: 1.5; }
.text-size-medium  { font-size: var(--size-medium); }
.text-size-large   { font-size: var(--size-large); line-height: 1.3; }
.text-size-huge    { font-size: var(--size-huge); font-weight: 300; line-height: 1.3; }

.text-weight-light   { font-weight: 300; }
.text-weight-regular { font-weight: 400; }
.text-weight-medium  { font-weight: 500; }
.text-weight-bold    { font-weight: 700; }

.caps { text-transform: uppercase; }

.opacity-50 { opacity: .5; }
.opacity-60 { opacity: .6; }
.opacity-80 { opacity: .8; }
.opacity-85 { opacity: .8; }

.max-width-40ch  { max-width: 40ch; }
.max-width-45ch  { max-width: 45ch; }
.max-width-50ch  { max-width: 50ch; }
.max-width-60ch  { max-width: 60ch; }
.max-width-70ch  { max-width: 70ch; }
.max-width-80ch  { max-width: 80ch; }
.max-width-85ch  { max-width: 85ch; }

.flex-horizontal {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.relative { position: relative; z-index: 5; }

/* ─── Navigation ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background-color: transparent;
  /* entrance animation */
  opacity: 0;
  transform: translateY(-1rem);
  transition: opacity .5s ease, transform .5s ease;
}
.navbar.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

.navbar-component {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem 2.2rem 1rem 2.25rem;
  background-color: #ffffff38;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 1.375rem;
  transition: background-color .35s ease, box-shadow .35s ease;
}
/* Navbar tightens when user scrolls down */
.navbar.is-scrolled .navbar-component {
  background-color: #ffffffcc;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  margin-top: .5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  transition: transform .25s, opacity .25s;
}
.nav-brand:hover { opacity: .8; transform: translateY(1px); }

.logo-navbar {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand-name {
  font-size: var(--size-medium);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.nav-brand-name span {
  color: var(--color-primary);
}

.right-navbar-content {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.nav-link {
  padding: .25rem .5rem;
  transition: opacity .25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: .5rem;
  right: .5rem;
  height: 1.5px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-link:hover { opacity: .75; }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { opacity: 1; }

.button-border {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 2rem;
  overflow: hidden;
}

.button-navbar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.25rem;
  background-color: var(--color-text);
  color: var(--color-white);
  border-radius: 2rem;
  transition: all .25s;
  position: relative;
  font-size: var(--size-small);
  font-weight: 500;
}
.button-navbar:hover { background-color: var(--color-primary); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(226,142,42,.35); color: var(--color-white); }
.button-navbar.margin-left { margin-left: 1rem; }

/* Hamburger toggle (mobile) */
.nav-menu-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: 4px;
  color: var(--color-text);
  width: 2rem;
  height: 2rem;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.nav-toggle.is-open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.overlay-navbar {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #040404;
  opacity: 0;
  width: 100%;
  height: 100vh;
}

/* ─── Hero Section ───────────────────────────────────────── */
.hero-wrapper {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-heading {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 1.125rem;
  max-width: 63ch;
  margin-bottom: 3rem;
  margin-left: 3.5rem;
  position: relative;
  z-index: 5;
}

.read-more-tag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  background-color: #efefef;
  border-radius: 2.3125rem;
  color: var(--color-black);
  text-decoration: none;
}

.vertical-line-tag {
  background-color: var(--color-black);
  opacity: .5;
  width: 1px;
  height: 1rem;
}

.read-more-button {
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
}
.read-more-button:hover { gap: .8rem; }

/* Hero circular scroll button */
.button-hero {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-image { position: relative; inset: 0; }
.circular-text { position: absolute; padding: .5rem; }
.button-arrow  { position: absolute; }

.hero-arrow-wrapper {
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  width: 1.5rem;
  height: 2rem;
  overflow: hidden;
}

/* Hero hover dots (product indicators) */
.hero-grid {
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  place-items: center;
  position: absolute;
  inset: 0;
  width: 100%;
  margin-left: 4.375rem;
  margin-right: 4.375rem;
  z-index: 3;
}

.hero-dot { position: relative; }

/* Grid placements for the 4 hero dots */
#hero-dot-1 { grid-area: 4 / 4 / 5 / 5;  place-self: center; }
#hero-dot-2 { grid-area: 2 / 5 / 4 / 7;  place-self: center; }
#hero-dot-3 { grid-area: 5 / 6 / 6 / 7;  place-self: center end; }
#hero-dot-4 { grid-area: 4 / 9 / 5 / 10; place-self: end center; }

.circle-hover {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #ffffff1a;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
.circle-hero {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #105edd;
}

/* Hero hover popup card – hidden by default, shown on dot:hover */
.hero-hover {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  padding: .75rem 1rem;
  position: absolute;
  left: .5rem;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-primary);
  border-radius: .0625rem .3125rem .3125rem;
  white-space: nowrap;
  overflow: hidden;
  /* ─ hidden state ─ */
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(.97);
  transition: opacity .22s ease, transform .22s ease;
  will-change: opacity, transform;
}

/* Reveal card when hovering the dot anchor */
.hero-dot:hover .hero-hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.hover-content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: .25rem;
}

/* Diagonal-arrow slide: two arrows stacked, second starts below;
   on hover both slide up → second arrow becomes visible            */
.arrow-hero {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: .5rem;
  width: 1rem;
  height: .9rem;
  margin-top: .4rem;
  overflow: hidden;
}
.arrow-hero .arrow {
  transition: transform .22s ease;
}
.hero-dot:hover .arrow-hero .arrow {
  transform: translateY(-1rem);
}

.overlay-mobile { display: none; }

/* ─── Arrow / Icon Utilities ─────────────────────────────── */
.arrow { width: auto; height: auto; }
.arrow.second { position: relative; top: 1rem; }
.arrow-wrapper { display: flex; }

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── Bento Section ──────────────────────────────────────── */
.bento-wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 6rem;
  margin-top: 7.5rem;
}

.bento-header {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: .5rem;
}

.tag-marquee {
  display: flex;
  align-items: center;
  gap: .6rem;
  max-width: 15rem;
  white-space: nowrap;
  overflow: hidden;
}
.tag {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.elipse {
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.heading-component {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.bento-component {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  width: 100%;
}
.bento-row {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.card-small {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 52vh;
  border: .5px solid #9b8f7e44;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  background: #f5f3f0;
}
.card-small img {
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.card-small:hover img { transform: scale(1.06); }

.card-big {
  display: flex;
  align-items: flex-end;
  width: 65%;
  height: 52vh;
  padding: 2.2rem 2.5rem;
  border: .5px solid #9b8f7e44;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white);
}
.card-big .card-image img {
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.card-big:hover .card-image img { transform: scale(1.06); }

.card-image { position: absolute; inset: 0; }

/* Gradient overlay – replaces solid dark overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(15,15,15,.88) 0%,
    rgba(15,15,15,.45) 45%,
    rgba(15,15,15,.12) 100%
  );
}

.card-big-content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
  width: 100%;
}
.card-big-content .heading-6 {
  color: var(--color-white);
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 600;
}
.card-big-content .secondary-button {
  color: rgba(255,255,255,.75);
  font-size: var(--size-small);
  transition: color .25s, gap .25s;
}
.card-big:hover .card-big-content .secondary-button { color: var(--color-white); gap: 1.4rem; }

/* Tag pill inside bento card */
.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .7rem;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.max-width-60ch { max-width: 60ch; }

/* ─── Buttons ────────────────────────────────────────────── */
.primary-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-primary);
  border-radius: .25rem;
  transition: all .25s;
  position: relative;
}
.primary-button:hover { border-bottom-width: 4px; }

.black-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: .25rem;
  transition: all .25s;
}
.black-button:hover { transform: translateY(3px); }

.secondary-button {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button-wrapper {
  position: relative;
  z-index: 4;
  align-self: center;
}

.button-hover {
  position: absolute;
  background-color: var(--color-black);
  border-radius: 50%;
  width: 10rem;
  height: 10rem;
}
.button-submit-hover {
  position: absolute;
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 35rem;
  height: 35rem;
}
.button-submit-hover.small { width: 16rem; height: 16rem; }

/* ─── Sticky Scroll Section ──────────────────────────────── */
.sticky-wrapper {
  display: flex;
  gap: 2rem;
  margin-top: 10rem;
  position: relative;
  padding: 0 2.5rem;
}
.sticky-component {
  width: 46%;
  height: 90vh;
  position: sticky;
  top: 5vh;
  overflow: hidden;
  border-radius: 1.25rem;
  flex-shrink: 0;
}
.sticky-component img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  width: 54%;
  padding-top: 5vh;
  padding-bottom: 20vh;
  position: relative;
}

/* Chapter blocks */
.sticky-chapter {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  padding: 3.5rem 3rem 3.5rem 3.5rem;
  position: relative;
}
.sticky-chapter + .sticky-chapter {
  border-top: 1px solid #dfddda;
}

.chapter-number {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
  opacity: .06;
  letter-spacing: -.04em;
  position: absolute;
  top: 2rem;
  right: 3rem;
  pointer-events: none;
  user-select: none;
}

.chapter-eyebrow {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-primary);
}
.chapter-eyebrow::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.chapter-heading {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  max-width: 22ch;
}

.chapter-body {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  max-width: 48ch;
}
.chapter-body p {
  font-size: clamp(.875rem, 1vw, 1rem);
  line-height: 1.75;
  color: var(--color-text);
  opacity: .65;
}

/* Small accent image inside chapter */
.chapter-image {
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 4 / 3;
  border-radius: .75rem;
  overflow: hidden;
  align-self: flex-end;
  margin-top: .5rem;
}
.chapter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.sticky-chapter:hover .chapter-image img { transform: scale(1.04); }

/* Keep old classes for compat but hide the old structure */
.sticky-big-image  { display: none; }
.sticky-small-image { display: none; }
.sticky-medium-image { display: none; }
.sticky-text { display: none; }
.content { display: none; }
.sticky-paragraph { display: none; }
.image-parallax { height: 110%; }

.heading-vw   { font-size: 4.8vw; line-height: 1; }
.regular-vw   { font-size: 1.1vw; }
.text-weight-medium.caps.regular-vw-small { font-size: .8vw; }

/* ─── Products Section ───────────────────────────────────── */
.products-wrapper {
  display: flex;
  flex-flow: column;
  gap: 2.8rem;
  margin-top: 10rem;
}
.products-header {
  display: flex;
  justify-content: space-between;
}
.products-heading {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: .7rem;
}
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  background-color: var(--color-white);
  text-decoration: none;
  position: relative;
  border-radius: .25rem;
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateY(-3px);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }

.mask-frame {
  position: absolute;
  inset: auto 0 0;
  background-color: #e5e5e5;
}

.product-card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  margin-left: 1rem;
  margin-right: 1.5rem;
}
.info {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: .25rem;
}
.product-badge {
  display: inline-block;
  font-size: var(--size-tiny);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .2rem .6rem;
  border-radius: 2rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  margin-bottom: .4rem;
}

/* Product "Neu" & "Beliebt" trust badges */
.product-tag {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  padding: .25rem .7rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--size-tiny);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2rem;
  letter-spacing: .05em;
}
.product-tag.is-sold-out {
  background-color: #666;
}

/* ─── FAQ Section ────────────────────────────────────────── */
.faq-wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3.25rem;
  margin-top: 15vh;
}
.faq-heading {
  text-align: center;
  max-width: 50ch;
}

.faq-list-wrapper { width: 100%; }
.faq-list {
  display: flex;
  flex-flow: column;
  gap: .5rem;
  width: 100%;
  position: relative;
}

.faq-item-wrapper {
  border-radius: .5rem;
  transition: background-color .45s;
}
.faq-item-wrapper:hover { background-color: var(--color-white); }

.faq-item {
  cursor: pointer;
  display: flex;
  flex-flow: column;
  padding: 1.5rem;
  border-radius: .5rem;
  position: relative;
}

.faq-top {
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.faq-title-wrapper {
  position: relative;
  z-index: 10;
  height: 100%;
  padding-right: 5rem;
}
.faq-action-wrapper {
  position: absolute;
  inset: 0 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 25;
  width: 1.5rem;
  height: 100%;
}

.faq-arrow { transition: transform .3s ease; }
.faq-item.is-open .faq-arrow { transform: rotate(180deg); }

.faq-bottom {
  position: relative;
  z-index: 10;
  margin-right: 12rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
}
.faq-bottom-content {
  opacity: .8;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}
.faq-bottom-content p { margin: 0; }

/* ─── Contact Form ───────────────────────────────────────── */
.contact-wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 6rem;
  margin-top: 15vh;
}
.hero-component {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1.875rem;
  text-align: center;
}
.max-width-60ch-2 { max-width: 60ch; }

.form-container { width: 50%; margin-bottom: 0; }
.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.form-content { width: 100%; }
.name-wrapper-contact { width: 100%; }

.text-field-contact {
  color: var(--color-black);
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom-color: #15151526;
  border-radius: 0;
  width: 100%;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding: 1.6rem 1rem;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all .4s;
  display: block;
}
.text-field-contact:hover {
  border-color: transparent transparent var(--color-primary);
  padding-left: 1.2rem;
}
.text-field-contact:focus {
  border-color: var(--color-primary);
  border-radius: .5rem;
  color: var(--color-black);
  outline: none;
}

.contact-button.align-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: transparent;
  border-radius: .3rem;
  transition: all .25s;
}

.text-size-medium-vw { font-size: 1vw; font-weight: 400; }

.submit-wrapper { position: relative; }
.submit-btn {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.form-success {
  display: none;
  text-align: center;
  background-color: #f4f4f4;
  border-radius: .6rem;
  padding: 2rem;
  color: #000;
  font-size: 1.375rem;
}
.form-error {
  display: none;
  text-align: center;
  background-color: #e54e4e;
  border-radius: .5rem;
  padding: 1rem;
  font-size: var(--size-medium);
}
.form-success.is-visible,
.form-error.is-visible   { display: block; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,.55);
  margin-top: 6rem;
}

.footer-inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 4rem 2.5rem 0;
}

/* Top row */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
}

/* Brand column */
.footer-brand-col {
  display: flex;
  flex-flow: column;
  gap: 1.25rem;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
}
.footer-brand-logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer-brand-name {
  font-size: var(--size-medium);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
}
.footer-brand-name span { color: var(--color-primary); }

.footer-tagline {
  font-size: var(--size-small);
  line-height: 1.7;
  max-width: 32ch;
  color: rgba(255,255,255,.45);
}

.footer-socials {
  display: flex;
  gap: .6rem;
  margin-top: .25rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  transition: background .25s, border-color .25s, color .25s, transform .25s;
}
.footer-social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Nav columns */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-nav-col {
  display: flex;
  flex-flow: column;
  gap: .75rem;
}
.footer-nav-title {
  font-size: var(--size-tiny);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.3);
  margin-bottom: .25rem;
}
.footer-nav-link {
  font-size: var(--size-small);
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s, transform .2s;
  width: fit-content;
}
.footer-nav-link:hover {
  color: #fff;
  transform: translateX(3px);
}

/* Payment chips in footer */
.footer-pay-grid {
  display: flex;
  flex-flow: column;
  gap: .5rem;
}
.footer-pay-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: var(--size-tiny);
  color: rgba(255,255,255,.4);
  padding: .3rem .7rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .35rem;
  width: fit-content;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0 1.5rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: var(--size-tiny);
  color: rgba(255,255,255,.25);
}
.footer-trust-pills {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: var(--size-tiny);
  color: rgba(255,255,255,.35);
}
.footer-trust-pill .bi { color: var(--color-primary); font-size: .75rem; }
.footer-credits {
  font-size: var(--size-tiny);
  color: rgba(255,255,255,.25);
  text-decoration: none;
  transition: color .2s;
}
.footer-credits:hover { color: rgba(255,255,255,.6); }
.footer-credits strong { color: rgba(255,255,255,.45); font-weight: 600; }

/* Legacy classes – keep for icon-embed etc. */
.icon-embed {
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.credits { text-decoration: none; transition: opacity .2s; }
.paragraph { color: #00000080; }
.text-color-black { color: #151515; }
.vertical-line { background-color: #8e8c87; width: 1px; height: .8rem; }

/* ─── Trust Bar – Infinite Marquee ──────────────────────── */
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-bar {
  background-color: var(--color-white);
  border-top: 1px solid #dfddda;
  border-bottom: 1px solid #dfddda;
  margin-top: 6rem;
  overflow: hidden;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trust-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: trust-scroll 28s linear infinite;
}
.trust-track:hover { animation-play-state: paused; }
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: var(--size-small);
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  padding: 1.1rem 2.2rem;
  border-right: 1px solid #dfddda;
  flex-shrink: 0;
}
.trust-divider {
  width: .3rem;
  height: .3rem;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: .5;
  flex-shrink: 0;
  margin: 0 .2rem;
}
.trust-icon {
  font-size: 1rem;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ─── Scroll-Reveal Animation ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance (fires on load, staggered) */
.hero-animate {
  opacity: 0;
  transform: translate3d(0, 10vh, 0) scale3d(1, 1, 1);
  transition: opacity .7s ease, transform .7s ease;
}
.hero-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

/* Hero button scale-in */
.hero-btn-animate {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale3d(1.2, 1.2, 1);
  transition: opacity .7s ease, transform .7s ease;
}
.hero-btn-animate.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

/* Hero dot zoom-in */
.hero-dot-animate {
  opacity: 0;
  transform: scale3d(3, 3, 1);
  transition: opacity .6s ease, transform .6s ease;
}
.hero-dot-animate.is-visible {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* ─── FAQ Hover State ────────────────────────────────────── */
.faq-item-wrapper { border-radius: .5rem; transition: background-color .45s; }
.faq-item-wrapper:hover { background-color: var(--color-white); }

/* ─── Utility Pages (other/) ─────────────────────────────── */
.utility-page-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
}
.utility-page-content {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: center;
}
.button-home {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .6rem 3.5rem;
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  border-radius: 20rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all .25s;
}
.not-fount-text-size { font-size: 22rem; font-weight: 300; line-height: 1; }

.empty-state { text-align: center; background-color: transparent; }

/* Pricing / event buttons (used in style-guide) */
.pricing-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .8rem 1rem;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 20rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.event-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .7rem 1.4rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 20rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Style-guide page specific */
.hero-style-guide-wrapper {
  background-image: linear-gradient(0deg, #12121263, #12121200);
  border-radius: 1rem;
  width: 100%;
  margin-top: 1rem;
  padding: 13rem 2rem 2rem;
  overflow: hidden;
}
.style-guide-component { grid-template-rows: auto; grid-template-columns: .25fr 1fr; }
.sticky-menu {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 2rem;
  position: sticky;
  top: 4rem;
}
.style-guide-menu-links {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 1.5rem;
  opacity: .5;
  color: #121212;
  text-decoration: none;
  transition: opacity .3s;
}
.style-guide-menu-links:hover,
.style-guide-menu-links.is-active { opacity: 1; }
.color-palette { border-radius: 1rem; width: 100%; height: 10rem; }
.color-palette.black { background-color: #121212; }
.color-palette.white { background-color: #f3f3f3; border: 1px solid #bbb; }
.color-palette-card {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  border: 1px solid #dfddda;
  border-radius: 1rem;
  padding: .5rem .5rem 2rem;
}
.divider-line      { background-color: #dfddda; height: 1px; }
.style-tag {
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #0000001f;
  border-radius: 10rem;
  padding: .625rem 1.5rem;
  font-weight: 500;
}
.font-color      { background-color: var(--color-text); color: var(--color-text); }
.primary-color   { background-color: var(--color-primary); color: var(--color-primary); }
.background-color { background-color: var(--color-bg); }

/* Instruction / changelog page */
.instruction-content-wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 4rem;
  width: 80%;
  margin-top: 15vh;
}
.hero-changelog-wrapper {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  border-radius: 1rem;
  width: 100%;
  margin-top: 1rem;
  padding: 12rem 3rem 3rem;
  overflow: hidden;
}
.changelog-component {
  display: grid;
  grid-template-columns: 1fr minmax(auto, 82%);
  width: 100%;
}
.license-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5rem;
}
.license-component { display: grid; grid-template-rows: auto; grid-template-columns: 1fr; }
.double-button-component {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: .5rem;
}
.link { color: var(--color-black); text-decoration: none; }

/* Product detail page */
.product-wrapper  { width: 100%; margin-top: 15vh; }
.products-main-header { display: flex; flex-flow: column; align-items: center; gap: 1rem; }
.products-component   { display: flex; flex-flow: column; gap: 4.8rem; margin-top: 15vh; }
.product-component {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  justify-content: center;
  place-items: start center;
  margin-bottom: 4rem;
}
.product-image {
  display: flex;
  flex-flow: column;
  gap: .25rem;
  width: 40vw;
  max-width: 50rem;
  position: relative;
  overflow: hidden;
}
.product-info {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  margin-top: 6rem;
}
.product-description {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 1.75rem;
  max-width: 50ch;
}
.product-title { max-width: 70ch; }
.price-tag {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .625rem;
  background-color: var(--color-white);
  border: .5px solid #bebebe;
  border-radius: 2px;
}
.info-tag  { display: flex; align-items: center; gap: 1.75rem; }
.multi-images {
  display: flex;
  gap: .25rem;
  border-radius: .5rem;
  width: 100%;
  height: 15vh;
  overflow: hidden;
}
.lightbox-link { border-radius: .5rem; height: 38vh; overflow: hidden; }
.lightbox-wrapper { display: flex; gap: .25rem; }
.product-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 3.1rem 1.6rem 3.6rem;
  margin-top: 2.1rem;
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 20rem;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGE
═══════════════════════════════════════════════════════════ */

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 34vh;
  min-height: 16rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,.82) 0%,
    rgba(10,10,10,.45) 55%,
    rgba(10,10,10,.18) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
  display: flex;
  flex-flow: column;
  gap: .6rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: var(--size-tiny);
}
.breadcrumb-link {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb-link:hover { color: rgba(255,255,255,.9); }
.breadcrumb-sep {
  color: rgba(255,255,255,.25);
  font-size: .65rem;
}
.breadcrumb-current { color: rgba(255,255,255,.75); }
.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.page-hero-sub {
  font-size: var(--size-small);
  color: rgba(255,255,255,.45);
  letter-spacing: .03em;
}

/* ─── Category Strip ─────────────────────────────────────── */
.cat-strip {
  padding: 2rem 0 0;
}
.cat-strip-track {
  display: flex;
  gap: .75rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cat-strip-track::-webkit-scrollbar { display: none; }

.cat-card {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: .45rem;
  padding: 1rem 1.5rem;
  border-radius: .75rem;
  border: 1.5px solid #dfddda;
  background: var(--color-white);
  text-decoration: none;
  color: var(--color-text);
  cursor: pointer;
  transition: all .22s ease;
  flex-shrink: 0;
  min-width: 5.5rem;
}
.cat-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(226,142,42,.15);
}
.cat-card.is-active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-white);
}
.cat-card-icon { font-size: 1.3rem; line-height: 1; }
.cat-card-label {
  font-size: var(--size-tiny);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* ─── Filter / Sort Bar ──────────────────────────────────── */
.filter-bar {
  position: sticky;
  top: 4.5rem;
  z-index: 20;
  background: var(--color-bg);
  border-bottom: 1px solid #dfddda;
  padding: .85rem 0;
  margin-top: 1.5rem;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.products-result-count {
  font-size: var(--size-small);
  color: var(--color-text);
  opacity: .5;
  font-weight: 500;
}
.filter-bar-right { display: flex; align-items: center; gap: 1rem; }
.sort-wrapper {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.sort-label {
  font-size: var(--size-tiny);
  font-weight: 600;
  color: var(--color-text);
  opacity: .5;
  display: flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}
.sort-select {
  font-family: var(--font-main);
  font-size: var(--size-tiny);
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-white);
  border: 1.5px solid #dfddda;
  border-radius: .4rem;
  padding: .35rem .7rem;
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 1.8rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23151515' opacity='.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .6rem center;
}
.sort-select:focus { border-color: var(--color-primary); }

/* ─── Shop Product Grid ──────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 6rem;
}

/* ─── Shop Card ──────────────────────────────────────────── */
.shop-card {
  background: var(--color-white);
  border-radius: .75rem;
  overflow: hidden;
  border: .5px solid #e8e5e0;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.shop-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
  border-color: transparent;
}
.shop-card.is-hidden { display: none; }

.shop-card-link {
  display: flex;
  flex-flow: column;
  height: 100%;
  text-decoration: none;
  color: var(--color-text);
}

.shop-card-image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--color-bg);
}
.shop-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.shop-card:hover .shop-card-img { transform: scale(1.07); }

/* Hover overlay */
.shop-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  opacity: 0;
  transition: opacity .28s ease;
}
.shop-card:hover .shop-card-overlay { opacity: 1; }
.shop-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.25rem;
  background: #fff;
  color: var(--color-text);
  font-size: var(--size-tiny);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  border-radius: 2rem;
  transform: translateY(8px);
  transition: transform .28s ease;
}
.shop-card:hover .shop-overlay-btn { transform: translateY(0); }

/* Tags */
.shop-tag {
  position: absolute;
  top: .65rem;
  left: .65rem;
  z-index: 3;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .2rem .6rem;
  border-radius: 2rem;
  color: #fff;
  line-height: 1.4;
}
.shop-tag--new     { background: #2563eb; }
.shop-tag--popular { background: var(--color-primary); }
.shop-tag--premium { background: #7c3aed; }
.shop-tag--deal    { background: #e63946; }

/* Info block */
.shop-card-info {
  display: flex;
  flex-flow: column;
  gap: .5rem;
  padding: .9rem 1rem 1rem;
  flex: 1;
}
.shop-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.shop-card-category {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text);
  opacity: .35;
}
.shop-card-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .15rem .5rem;
  border-radius: 2rem;
}
.shop-card-badge--sealed {
  background: rgba(37,99,235,.08);
  color: #2563eb;
}
.shop-card-badge--rare {
  background: rgba(124,58,237,.08);
  color: #7c3aed;
}
.shop-card-title {
  font-size: var(--size-regular);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0;
}
.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .65rem;
  border-top: 1px solid #f0ede9;
}
.shop-card-price {
  font-size: var(--size-medium);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -.02em;
}
.shop-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1rem;
  transition: background .22s, color .22s, transform .22s;
}
.shop-card:hover .shop-card-cta {
  background: var(--color-text);
  color: #fff;
  transform: rotate(-45deg);
}

/* ─── Shop Empty State ───────────────────────────────────── */
.shop-empty {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  padding: 5rem 2rem;
}
.shop-empty-icon { font-size: 2.5rem; opacity: .2; }
.shop-empty-title { font-size: var(--size-large); font-weight: 700; }
.shop-empty-sub   { font-size: var(--size-small); opacity: .45; max-width: 32ch; }

/* ─── Responsive – Products Page ────────────────────────── */
@media screen and (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media screen and (max-width: 991px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .page-hero { height: 28vh; min-height: 14rem; }
  .filter-bar { top: 3.5rem; }
}
@media screen and (max-width: 600px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .shop-card-title { font-size: var(--size-small); }
  .shop-card-price { font-size: var(--size-regular); }
  .cat-card { padding: .75rem 1rem; min-width: 4.5rem; }
}
@media screen and (max-width: 400px) {
  .shop-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */

.contact-section {
  padding: 5rem 0 7rem;
}

/* Two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

/* ─── Left: Info column ──────────────────────────────────── */
.contact-info {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  position: sticky;
  top: 7rem;
}
.contact-info-title {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--color-text);
}
.contact-info-sub {
  font-size: var(--size-small);
  line-height: 1.75;
  color: var(--color-text);
  opacity: .55;
  margin-top: .5rem;
  max-width: 34ch;
}

/* Contact cards */
.contact-cards {
  display: flex;
  flex-flow: column;
  gap: .6rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--color-white);
  border: 1px solid #e8e5e0;
  border-radius: .75rem;
  text-decoration: none;
  color: var(--color-text);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.contact-card--link:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 18px rgba(226,142,42,.12);
  transform: translateX(3px);
}
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .6rem;
  background: var(--color-bg);
  font-size: 1.1rem;
  color: var(--color-text);
  flex-shrink: 0;
}
.contact-card-icon--insta  { background: #fce4f0; color: #c13584; }
.contact-card-icon--whatnot{ background: #fff0e0; color: var(--color-primary); }
.contact-card-body {
  display: flex;
  flex-flow: column;
  gap: .1rem;
  flex: 1;
  min-width: 0;
}
.contact-card-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--color-text);
  opacity: .35;
}
.contact-card-value {
  font-size: var(--size-small);
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-card-note {
  font-size: .7rem;
  color: var(--color-text);
  opacity: .45;
}
.contact-card-arrow {
  font-size: 1rem;
  opacity: .25;
  flex-shrink: 0;
  transition: opacity .2s, transform .2s;
}
.contact-card--link:hover .contact-card-arrow {
  opacity: .7;
  transform: translate(2px, -2px);
}

/* Trust row */
.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  padding-top: .5rem;
}
.contact-trust-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: var(--size-tiny);
  font-weight: 600;
  color: var(--color-text);
  opacity: .4;
}
.contact-trust-item .bi { color: var(--color-primary); opacity: 1; }

/* ─── Right: Form card ───────────────────────────────────── */
.contact-form-col { width: 100%; }

.contact-form-card {
  background: var(--color-white);
  border: 1px solid #e8e5e0;
  border-radius: 1.25rem;
  padding: 2.5rem;
}

/* Fields */
.cf-field {
  display: flex;
  flex-flow: column;
  gap: .45rem;
  margin-bottom: 1.25rem;
}
.cf-label {
  font-size: var(--size-tiny);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text);
  opacity: .5;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.cf-input {
  font-family: var(--font-main);
  font-size: var(--size-small);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid transparent;
  border-radius: .6rem;
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color .22s, background .22s;
  outline: none;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}
.cf-input::placeholder { color: var(--color-text); opacity: .28; }
.cf-input:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
}
.cf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23151515' opacity='.35'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Submit button */
.cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-text);
  color: var(--color-white);
  border: none;
  border-radius: .6rem;
  font-family: var(--font-main);
  font-size: var(--size-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  cursor: pointer;
  margin-top: .5rem;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.cf-submit:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226,142,42,.3);
}

/* Success / Error */
.cf-success {
  display: none;
  flex-flow: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  padding: 2.5rem 2rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: .75rem;
  margin-top: 1.25rem;
}
.cf-success.is-visible { display: flex; }
.cf-success-icon {
  font-size: 2rem;
  color: #16a34a;
}
.cf-success strong { font-size: var(--size-medium); color: var(--color-text); }
.cf-success span   { font-size: var(--size-small); opacity: .6; }

.cf-error {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.1rem;
  background: #fff0f0;
  border: 1px solid #fecaca;
  border-radius: .6rem;
  font-size: var(--size-small);
  color: #dc2626;
  margin-top: 1rem;
}
.cf-error.is-visible { display: flex; }

/* ─── Responsive ─────────────────────────────────────────── */
@media screen and (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-info { position: static; }
  .contact-section { padding: 3rem 0 5rem; }
}
@media screen and (max-width: 600px) {
  .contact-form-card { padding: 1.5rem; }
  .contact-cards { gap: .5rem; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

/* Tablet */
@media screen and (max-width: 991px) {
  .container { max-width: 90vw; }

  .heading-1 { font-size: 4rem; }
  .heading-2 { font-size: 3.5rem; }
  .heading-3 { font-size: 3rem; }
  .heading-4 { font-size: 2.7rem; }
  .heading-5 { font-size: 2.5rem; }
  .heading-6 { font-size: 2rem; }

  .text-weight-medium.caps.regular-vw-small { font-size: 1rem; }

  /* Mobile nav reveal */
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    position: absolute;
    top: 100%;
    left: 5vw;
    right: 5vw;
    width: 90vw;
    margin-top: 1rem;
    padding: 2rem;
    background-color: #fffc;
    border-radius: 1.375rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .nav-menu.is-open { display: flex; }

  .nav-link {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0;
  }

  .navbar-component {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-right: 1rem;
    position: relative;
  }
  .circular-text { height: 7rem; }

  .hero-heading  { max-width: 50ch; }
  .hero-grid     { display: none; }
  .hero-wrapper  { height: 100svh; }

  .bento-row       { flex-flow: column; }
  .card-small      { order: 1; width: 100%; }
  .card-big        { width: 100%; }

  .sticky-wrapper  { margin-top: 8rem; padding: 0 1rem; gap: 1rem; }
  .chapter-heading { font-size: 1.75rem; }
  .chapter-body p  { font-size: .9rem; }

  .products-wrapper { margin-top: 8rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }

  .faq-wrapper  { gap: 4rem; }
  .faq-title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-right: 3rem;
  }
  .faq-action-wrapper { height: 1.5rem; right: 0; }
  .faq-bottom { margin-right: 0; }

  .text-size-medium-vw { font-size: 1.125rem; }
  .max-width-60ch-2    { max-width: 70%; }
  .form-container      { width: 100%; }
  .form { justify-content: flex-start; align-items: center; }

  .product-info   { order: -1; justify-content: flex-start; align-items: center; margin-top: 0; }
  .product-component { display: flex; flex-flow: column; align-items: center; gap: 4rem; margin-bottom: 0; text-align: center; }
  .product-image  { width: 100%; max-width: none; }
  .product-description { justify-content: flex-start; align-items: center; }

  .changelog-component { display: flex; flex-flow: column; }
  .license-component   { gap: 1rem; grid-template-columns: 1fr; margin-top: 5.3rem; margin-bottom: 6rem; }
  .button-submit-hover { width: 52rem; height: 52rem; }

  .trust-item { padding: 1rem 1.6rem; }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .padding-global { padding-left: 1.25rem; padding-right: 1.25rem; }

  .heading-vw         { font-size: 9vw; }
  .regular-vw         { font-size: 3.5vw; }

  .sticky-wrapper {
    flex-flow: column;
    padding: 0 1.25rem;
  }
  .sticky-component {
    width: 100%;
    height: 60vw;
    position: relative;
    top: auto;
  }
  .sticky-content { width: 100%; padding-bottom: 5vh; }
  .sticky-chapter { padding: 2rem 1.5rem; }
  .chapter-number { font-size: 3.5rem; top: 1rem; right: 1.5rem; }
  .chapter-image  { max-width: 100%; }

  .products-grid { grid-template-columns: 1fr; }

  .hero-heading  { margin-left: 1.25rem; }

  .bento-wrapper { margin-top: 5rem; gap: 3rem; }

  .form-container { width: 100%; }
  .footer-top     { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav     { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom  { flex-flow: column; align-items: flex-start; gap: 1rem; }

  .trust-item { padding: .9rem 1.2rem; font-size: var(--size-tiny); }
}

/* Small mobile */
@media screen and (max-width: 479px) {
  .heading-2     { font-size: 2.5rem; }
  .heading-4     { font-size: 2rem; }
  .heading-5     { font-size: 2rem; }

  .hero-heading  { margin-bottom: 1.5rem; }
  .button-hero   { bottom: 1.5rem; right: 1.5rem; }
  .bento-wrapper { margin-top: 4rem; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-nav     { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-inner   { padding: 3rem 1.25rem 0; }
  .footer-trust-pills { display: none; }
  .faq-bottom    { margin-right: 0; }
  .form-container { width: 100%; }

  .trust-item { padding: .85rem 1rem; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM MAKEOVER ADDITIONS
═══════════════════════════════════════════════════════════ */

/* ─── Live Pulse Badge ───────────────────────────────────── */
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: var(--size-tiny);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-white);
  background: #e63946;
  padding: .25rem .65rem .25rem .45rem;
  border-radius: 2rem;
}
.live-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  animation: pulse-ring 1.8s ease infinite;
}

/* ─── Marquee Scroll ─────────────────────────────────────── */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tag-marquee {
  max-width: none;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: .6rem;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

/* ─── Stats Section ──────────────────────────────────────── */
.stats-section { padding: 3rem 0 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--color-white);
  border-radius: 1rem;
  border: .5px solid #dfddda;
  overflow: hidden;
}
.stat-item {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  padding: 2.2rem 1.5rem;
  border-right: 1px solid #dfddda;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-label {
  font-size: var(--size-tiny);
  color: var(--color-text);
  opacity: .5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ─── Products Category Filter ───────────────────────────── */
.products-filter {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-wrap: wrap;
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: var(--size-tiny);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .35rem .9rem;
  border-radius: 2rem;
  border: 1.5px solid #dfddda;
  color: var(--color-text);
  cursor: pointer;
  transition: all .22s ease;
  background: transparent;
  font-family: var(--font-main);
}
.filter-pill:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.filter-pill.is-active {
  background: var(--color-text);
  border-color: var(--color-text);
  color: var(--color-white);
}

/* Product cards hidden by filter */
.product-card[data-category] { transition: opacity .3s ease, transform .3s ease; }
.product-card.is-hidden { opacity: 0; pointer-events: none; transform: scale(.97); display: none; }

/* ─── Product Card Hover Overlay ─────────────────────────── */
.product-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.28);
  opacity: 0;
  transition: opacity .3s ease;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 1.3rem;
  background: var(--color-white);
  color: var(--color-text);
  font-size: var(--size-tiny);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  border-radius: 2rem;
  transform: translateY(10px);
  transition: transform .3s ease;
}
.product-card:hover .product-card-overlay-btn { transform: translateY(0); }

/* ─── Testimonials Section ───────────────────────────────── */
.testimonials-section { margin-top: 8rem; }

.testimonials-wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 3rem;
}
.testimonials-header { text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-white);
  border-radius: .75rem;
  border: .5px solid #dfddda;
  transition: box-shadow .3s ease, transform .3s ease;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex;
  gap: .2rem;
  color: var(--color-primary);
}
.testimonial-stars .bi { font-size: .9rem; }
.testimonial-text {
  font-size: var(--size-regular);
  line-height: 1.65;
  color: var(--color-text);
  opacity: .8;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid #f0ede9;
}
.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--size-tiny);
  color: var(--color-text);
  flex-shrink: 0;
  border: 1.5px solid #dfddda;
}
.testimonial-name {
  font-size: var(--size-small);
  font-weight: 600;
  line-height: 1.3;
}
.testimonial-meta {
  font-size: var(--size-tiny);
  opacity: .45;
}

/* ─── Whatnot CTA Banner ─────────────────────────────────── */
.whatnot-section { margin-top: 6rem; }

.whatnot-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  background: var(--color-text);
  color: var(--color-white);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
.whatnot-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 50%, rgba(226,142,42,.22) 0%, transparent 65%);
  pointer-events: none;
}
.whatnot-banner-content {
  display: flex;
  flex-flow: column;
  gap: .6rem;
  position: relative;
}
.whatnot-banner-title {
  font-size: var(--size-large);
  font-weight: 700;
  line-height: 1.2;
}
.whatnot-banner-sub {
  font-size: var(--size-small);
  opacity: .55;
  max-width: 55ch;
}
.whatnot-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 2rem;
  font-size: var(--size-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: all .25s;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}
.whatnot-btn:hover {
  background: #c47a1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226,142,42,.4);
  color: var(--color-white);
}


/* ─── Responsive additions ───────────────────────────────── */
@media screen and (max-width: 991px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item { border-bottom: 1px solid #dfddda; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  .whatnot-banner { flex-flow: column; text-align: center; padding: 2rem; }
  .whatnot-banner::before { background: radial-gradient(ellipse at 50% 0%, rgba(226,142,42,.2) 0%, transparent 60%); }
}

@media screen and (max-width: 767px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .products-filter { display: none; }
}

@media screen and (max-width: 479px) {
  .stat-item { border-right: none !important; border-bottom: 1px solid #dfddda !important; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none !important; }
  .whatnot-banner { padding: 1.5rem; }
}
