:root {
  --color-bg: #04060b;
  --color-bg-alt: #0c1019;
  --color-accent: #f0c15c;
  --color-accent-soft: #ffe2a3;
  --color-text: #f7f9fc;
  --color-text-muted: #c4ccdd;
  --color-border: #3a4457;
  --color-danger: #ff5a5f;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
  --shadow-lift: 0 20px 50px rgba(0, 0, 0, 0.55);

  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);

  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Playfair Display", "Fraunces", "Plus Jakarta Sans", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1120px;
}

/* Self-hosted fonts */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/Inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/Inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/Inter-600.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/PlayfairDisplay-600.ttf") format("truetype");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/PlayfairDisplay-700.ttf") format("truetype");
}

/* Global reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

button,
.btn,
.nav-link,
.nav-cart,
.nav-cart__count,
.filter-bar__btn,
.collection-card__link,
small {
  font-family: var(--font-body);
}

/* A11y helpers */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background-color: var(--color-accent);
  color: #000;
  z-index: 9999;
}

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

/* Layout utilities */
.section {
  padding: 4rem 1.5rem;
}

.section--light {
  background-color: var(--color-bg-alt);
}

.section--accent {
  background: radial-gradient(circle at top left, #2b2220, #05070a);
}

.section__heading {
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
  text-align: left;
}

.section__heading h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.section__heading p {
  margin: 0;
  color: var(--color-text-muted);
}

.section__note {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.section__flex {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.section__half {
  flex: 1 1 280px;
}

/* Reveal choreography */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(var(--reveal-translate, 24px));
  filter: blur(8px);
  transition:
    opacity 0.6s var(--ease-soft),
    transform 0.6s var(--ease-soft),
    filter 0.6s var(--ease-soft);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-on-scroll.is-leaving {
  opacity: 0;
  transform: translateY(var(--reveal-translate, 24px));
  filter: blur(8px);
}

/* HEADER / NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background-color: rgba(5, 7, 10, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.navbar__title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  padding: 0.5rem 0.6rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--color-accent-soft);
}

.nav-cart {
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  min-height: 44px;
}

.nav-cart__count {
  background-color: var(--color-accent);
  color: #000;
  border-radius: 999px;
  padding: 0 0.4rem;
  font-size: 0.8rem;
}

.navbar__toggle {
  display: none;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  padding: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

/* HERO */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero__content h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
}

.hero__subtitle {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero__image {
  display: flex;
  justify-content: center;
}

.hero__content,
.hero__image {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease-soft),
    transform 0.7s var(--ease-soft);
}

.hero__actions {
  transition:
    opacity 0.7s var(--ease-soft),
    transform 0.7s var(--ease-soft);
  opacity: 0;
  transform: translateY(12px);
}

body.is-page-loaded .hero__content,
body.is-page-loaded .hero__image,
body.is-page-loaded .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

body.is-page-loaded .hero__actions {
  transition-delay: 0.12s;
}

body.is-page-loaded .hero__image {
  transition-delay: 0.08s;
}

.hero__mock-card {
  width: 100%;
  max-width: 320px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__mock-figure {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.hero__mock-figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__mock-base {
  margin-top: 1.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), #f7f0d2);
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 0.6rem 0.8rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), #ffd37b);
  color: #1a1306;
  font-weight: 600;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  filter: brightness(1.06);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: #6a7592;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent-soft);
}

/* FEATURED COLLECTIONS */
.collections-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.collection-card {
  padding: 1.6rem 1.4rem;
  background: radial-gradient(circle at top left, #181c24, #05070a);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.collection-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.collection-card p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.collection-card__link {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--color-accent-soft);
}

/* SHOP / PRODUCT GRID */
.filter-bar {
  max-width: var(--max-width);
  margin: 0 auto 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-bar__btn {
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  padding: 0.35rem 0.9rem;
  font-size: 0.9rem;
  cursor: pointer;
  /* smoother active/hover cue */
  transition:
    background-color 0.3s var(--ease-soft),
    color 0.3s var(--ease-soft),
    border-color 0.3s var(--ease-soft),
    transform 0.3s var(--ease-soft),
    box-shadow 0.3s var(--ease-soft);
  min-height: 44px;
}

.filter-bar__btn--active {
  background-color: var(--color-accent);
  color: #000;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(224, 179, 90, 0.25);
}

.product-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  transition:
    opacity 0.35s var(--ease-soft),
    transform 0.35s var(--ease-soft);
}

.product-grid__footer {
  max-width: var(--max-width);
  margin: 1rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
}

.product-grid.is-transitioning-out {
  opacity: 0;
  transform: translateY(12px);
}

.product-grid.is-transitioning-in {
  opacity: 1;
  transform: translateY(0);
}

.product-card {
  position: relative;
  background: radial-gradient(circle at top left, #161421, #05070a);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s var(--ease-soft),
    box-shadow 0.35s var(--ease-soft),
    border-color 0.35s var(--ease-soft);
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.02) 20%, rgba(224, 179, 90, 0.15) 50%, rgba(255, 255, 255, 0.02) 80%);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    transform 0.7s var(--ease-soft),
    opacity 0.7s var(--ease-soft);
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lift);
  border-color: rgba(224, 179, 90, 0.45);
}

.product-card:hover::after,
.product-card:focus-within::after {
  opacity: 0.35;
  transform: translateX(110%);
}

.product-card__credit {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.product-card__image {
  position: relative;
  padding-top: 65%;
  background: #0a0d15;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.product-card__zoom {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  z-index: 2;
  border: 1px solid var(--color-border);
  background: rgba(5, 7, 10, 0.85);
  color: var(--color-text);
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease-soft), color 0.2s var(--ease-soft), transform 0.2s var(--ease-soft);
}

.product-card__zoom:hover,
.product-card__zoom:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent-soft);
  transform: translateY(-1px);
}

.product-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.04) 75%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card__image.is-loading::before {
  opacity: 1;
  animation: skeleton-shimmer 1.2s linear infinite;
}

.product-card__main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: blur(10px);
  transform: scale(1.01);
  transition:
    filter 0.45s var(--ease-soft),
    transform 0.45s var(--ease-soft);
}

.product-card__image.is-loaded .product-card__main-img {
  filter: blur(0);
  transform: scale(1);
}

.product-card__thumbs {
  margin: 0.6rem 0.75rem 0.75rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.product-card__thumb {
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 0.15rem;
  cursor: pointer;
  width: 60px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-card__thumb.is-active {
  border-color: var(--color-accent);
}

.product-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-sm) - 2px);
}

.product-card__body {
  padding: 1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1 1 auto;
}

.product-card__title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__title a:hover,
.product-card__title a:focus-visible {
  color: var(--color-accent-soft);
  text-decoration: underline;
}

.product-card__dex {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.product-card__price {
  margin: 0 0 0.25rem;
  font-weight: 600;
}

.product-card__meta {
  display: none;
}

.product-card__types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

.product-card__type {
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-card__type-icon {
  font-size: 1rem;
}

.product-card__type-label {
  line-height: 1;
}

.product-card__brand {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}

.product-card__ball {
  font-size: 0.85rem;
  color: var(--color-accent-soft);
  margin: 0 0 0.4rem;
}

.product-card__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  align-items: center;
}

.product-card__actions .btn {
  transition:
    transform 0.2s var(--ease-soft),
    box-shadow 0.2s var(--ease-soft);
  will-change: transform;
  flex: 1 1 150px;
}

.product-card__actions .btn:hover,
.product-card__actions .btn:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 20px rgba(224, 179, 90, 0.25);
}

.product-card__actions .btn:active {
  transform: translateY(0) scale(0.99);
}

.product-card__credit {
  margin-top: 0.35rem;
  padding-top: 0.1rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
}
.product-card__credit small {
  color: var(--color-text-muted);
}

/* IMAGE LIGHTBOX */
.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 1200;
}

.image-lightbox[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.image-lightbox__dialog {
  position: relative;
  background: #070a10;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.image-lightbox__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-text);
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.image-lightbox__frame {
  position: relative;
  width: 100%;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top left, #161421, #05070a);
}

.image-lightbox__frame img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.image-lightbox__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem 0.5rem;
  gap: 1rem;
}

.image-lightbox__meta p {
  margin: 0;
  font-weight: 600;
}

.image-lightbox__meta span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.image-lightbox__controls {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 1.25rem 1rem;
}

.image-lightbox__controls button {
  flex: 1 1 auto;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-soft), color 0.2s var(--ease-soft), background 0.2s var(--ease-soft);
}

.image-lightbox__controls button:hover,
.image-lightbox__controls button:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent-soft);
  background: rgba(255, 255, 255, 0.06);
}

.image-lightbox__controls button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.lore-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  padding: 1rem;
  z-index: 1000;
}

.lore-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.lore-modal__dialog {
  background: #0a0f18;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.lore-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.lore-modal__header h3 {
  margin: 0.4rem 0 0.2rem;
}

.lore-modal__meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: 0.5rem 0 1rem;
}

.lore-modal__meta-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
}

.lore-modal__label {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.lore-modal__ball {
  margin: 0.1rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}

.lore-modal__types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
}

.lore-modal__type {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--color-text);
  font-weight: 600;
}

.lore-modal__type-icon {
  font-size: 1rem;
}

.lore-modal__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.lore-modal__meta-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lore-modal__meta-separator.is-hidden {
  display: none;
}

.lore-modal__list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
}

.lore-modal__refs ul {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.lore-modal__refs li + li {
  margin-top: 0.4rem;
}

.lore-modal__refs a {
  color: var(--color-accent-soft);
  text-decoration: none;
}

.lore-modal__refs a:hover,
.lore-modal__refs a:focus-visible {
  text-decoration: underline;
}

/* ABOUT */
.list {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
  color: var(--color-text-muted);
}

.about-highlight {
  background: radial-gradient(circle at top left, #272030, #05070a);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 1.6rem 1.4rem;
  height: 100%;
}

/* TESTIMONIALS */
.testimonials {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial {
  margin: 0;
  padding: 1.6rem 1.4rem;
  border-radius: var(--radius-md);
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.testimonial blockquote {
  margin: 0 0 0.8rem;
}

/* NEWSLETTER / CONTACT */
.newsletter-form {
  max-width: var(--max-width);
  margin: 0 auto;
}

.newsletter-form__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.newsletter-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--color-text);
}

.newsletter-form input[type="email"]::placeholder {
  color: #565a64;
}

.newsletter-form__note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 1.5rem 1.5rem;
  background-color: #040509;
}

.site-footer__top {
  max-width: var(--max-width);
  margin: 0 auto 1.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.45fr) minmax(0, 1.45fr);
}

.site-footer__col h3,
.site-footer__col h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.site-footer__col p {
  margin: 0;
  color: var(--color-text-muted);
}

.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col li {
  margin-bottom: 0.3rem;
}

.site-footer__col a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.site-footer__col a:hover,
.site-footer__col a:focus-visible {
  color: var(--color-accent-soft);
}

.site-footer__bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(5, 7, 10, 0.9);
  color: var(--color-text);
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: var(--color-accent);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  cursor: pointer;
  gap: 0.5rem;
}

.load-more:hover,
.load-more:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent-soft);
}

.about-highlight,
.collection-card,
.testimonial,
.newsletter-form,
.section__heading {
  will-change: opacity, transform, filter;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 3.5rem;
  }

  .hero__image {
    order: -1;
  }

  .navbar__toggle {
    display: inline-flex;
  }

  .no-js .navbar__toggle {
    display: none;
  }

  .navbar__links {
    position: fixed;
    top: 72px;
    right: 0;
    height: auto;
    max-height: calc(100vh - 88px);
    width: min(340px, 82vw);
    margin: 0;
    padding: 1.1rem 1.25rem 1.35rem;
    background: rgba(5, 7, 10, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    border-left: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    display: flex;
    z-index: 101;
    transform: translateX(100%);
    transition: transform 0.28s var(--ease-soft);
    box-shadow: -14px 22px 44px rgba(0, 0, 0, 0.55);
    overflow-y: auto;
  }

  .navbar__links .nav-link,
  .navbar__links .nav-cart {
    width: 100%;
    justify-content: flex-start;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.02);
  }

  .navbar__links .nav-link:hover,
  .navbar__links .nav-link:focus-visible,
  .navbar__links .nav-cart:hover,
  .navbar__links .nav-cart:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-accent-soft);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .js .navbar__links {
    display: flex;
    pointer-events: none;
    visibility: hidden;
  }

  .js .navbar__links.open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.navbar__backdrop {
  display: none;
}

.js .navbar__backdrop {
  position: fixed;
  inset: 0;
    background: rgba(0, 0, 0, 0.25);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.navbar__backdrop.is-open {
  display: block;
  opacity: 1;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .back-to-top {
  display: none;
}

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

@media (max-width: 600px) {
  .site-footer__top {
    grid-template-columns: minmax(0, 1fr);
  }
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .hero__content,
  .hero__image,
  .hero__actions,
  .product-grid,
  .product-card,
  .product-card__actions .btn,
  .product-card__main-img {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .product-card__image::before {
    animation: none;
  }

  .image-lightbox {
    transition: none !important;
  }
}
