:root {
  --bg: #030303;
  --panel: #0a0a0a;
  --surface: #121212;
  --text: #ffffff;
  --muted: #a5acb8;
  --accent: #F2E8C4;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);

  --font-main: "Montserrat", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===========================
   LOADER / INTRO SCREEN
   =========================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader__brand {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--accent);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader__bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader__fill {
  width: 0%;
  height: 100%;
  background: var(--accent);
  animation: loaderFill 1.5s var(--ease-out) forwards;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

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

@keyframes loaderFill {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #fff, var(--accent));
  z-index: 9998;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(242, 232, 196, 0.5);
}

/* ===========================
   CURSOR GLOW
   =========================== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 232, 196, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.cursor-glow.is-active {
  opacity: 1;
}

/* ===========================
   GLOBAL RESETS
   =========================== */
.price--old {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 0.85em;
  margin-right: 0.6rem;
  font-weight: 400;
}

.price--offer {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

/* ===========================
   GRAIN OVERLAY
   =========================== */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.07;
  mix-blend-mode: overlay;
}

/* ===========================
   PARTICLE CANVAS
   =========================== */
#particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ===========================
   HERO SECTION
   =========================== */
header {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0 clamp(2rem, 6vw, 5rem);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url("hero-bg.png") center/cover no-repeat;
  z-index: 0;
  transition: filter 0.3s ease;
  will-change: filter, transform;
}

/* Ambient floating orbs */
header::before,
header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  animation: floatOrb 12s ease-in-out infinite;
}

header::before {
  width: 500px;
  height: 500px;
  background: rgba(242, 232, 196, 0.07);
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}

header::after {
  width: 400px;
  height: 400px;
  background: rgba(100, 150, 255, 0.04);
  bottom: -100px;
  left: -100px;
  animation-delay: -6s;
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -40px) scale(1.1);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(40px, 30px) scale(1.08);
  }
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-inline: clamp(2rem, 6vw, 5rem);
  z-index: 100;
  backdrop-filter: none;
  transition: transform 0.6s var(--ease-out), background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.nav--scrolled {
  background: rgba(3, 3, 3, 0.85);
  backdrop-filter: blur(20px);
  padding-block: 1.2rem;
}

.nav.nav--hidden {
  transform: translateY(-100%);
}

.nav__brand {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 101;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 3.5rem;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.nav__links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  display: inline-block;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out);
}

.nav__links a:hover {
  opacity: 1;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__menu {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  color: white;
  z-index: 101;
  cursor: pointer;
}

/* ===========================
   HERO CONTENT
   =========================== */
.hero__content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding-block: 8rem 4rem;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero__copy {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2rem;
  max-width: 600px;
}

/* Animated gradient border badge */
.hero__badge {
  display: inline-flex;
  position: relative;
  padding: 0.6em 1.2em;
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  background: var(--glass);
  backdrop-filter: blur(10px);
  align-self: flex-start;
  overflow: hidden;
  border: none;
}

.hero__badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  padding: 1px;
  background: conic-gradient(from var(--badge-angle, 0deg), var(--accent), transparent 40%, var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotateBadge 4s linear infinite;
}

@keyframes rotateBadge {
  to {
    --badge-angle: 360deg;
  }
}

@property --badge-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.hero__title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
}

.hero__accent {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: initial;
  color: var(--accent);
}

/* Pulse glow on accent words */
[data-glow] {
  text-shadow: 0 0 40px rgba(242, 232, 196, 0.3), 0 0 80px rgba(242, 232, 196, 0.1);
  animation: accentGlow 3s ease-in-out infinite;
}

@keyframes accentGlow {

  0%,
  100% {
    text-shadow: 0 0 40px rgba(242, 232, 196, 0.3), 0 0 80px rgba(242, 232, 196, 0.1);
  }

  50% {
    text-shadow: 0 0 60px rgba(242, 232, 196, 0.5), 0 0 120px rgba(242, 232, 196, 0.2);
  }
}

.hero__accent--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}

.hero__text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  font-weight: 400;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1em 2.4em;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

/* Shimmer sweep effect */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--solid {
  background: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
}

.btn--solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(242, 232, 196, 0.35), 0 0 60px rgba(242, 232, 196, 0.15);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.08);
}

/* ===========================
   MARQUEE TICKER
   =========================== */
.marquee {
  background: var(--accent);
  color: #000;
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee__track {
  display: inline-flex;
  gap: 3rem;
  animation: marqueeScroll 20s linear infinite;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.marquee__sep {
  opacity: 0.4;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===========================
   SHOP SECTION
   =========================== */
.shop {
  background: #050505;
  padding: 8rem clamp(2rem, 6vw, 5rem);
  position: relative;
}

.shop__intro {
  margin-bottom: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.shop__intro h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
  font-weight: 400;
}

.shop__intro p {
  color: var(--muted);
  max-width: 500px;
}

.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* ===========================
   PRODUCT CARD
   =========================== */
.product-card {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.6s var(--ease-out);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card__media {
  background: radial-gradient(circle at 50% 50%, rgba(242, 232, 196, 0.05), transparent 70%);
  padding: 4rem 2rem 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  max-width: 280px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
  transition: transform 0.8s var(--ease-out), filter 0.8s ease;
}

.product-card:hover img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 40px 90px rgba(0, 0, 0, 0.9));
}

.product-card__body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}

.product-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  opacity: 0.7;
}

.product-card__price {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #000;
  font-weight: 900;
  z-index: 10;
}

/* ===========================
   STATS SECTION
   =========================== */
.stats {
  padding: 6rem clamp(2rem, 6vw, 5rem);
  background: #030303;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stats__number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stats__unit {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.6;
  margin-top: -0.5rem;
}

.stats__label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

.stats__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ===========================
   CRAFT SECTION
   =========================== */
.craft {
  padding: 8rem clamp(2rem, 6vw, 5rem);
  background: #080808;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.craft__card {
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  text-align: center;
  transition: background 0.4s ease, transform 0.6s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.craft__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(242, 232, 196, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.craft__card:hover::before {
  opacity: 1;
}

.craft__card:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  border-color: rgba(242, 232, 196, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.craft__icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.craft__card h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.craft__card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.love {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.love__image {
  background: #0a0a0a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.love__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.love:hover .love__photo {
  transform: scale(1.05);
}

.love__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem clamp(2rem, 5vw, 6rem);
  background: #000;
}

.love__copy h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 3rem;
}

blockquote {
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 300;
  margin: 0 0 3rem 0;
  letter-spacing: -0.02em;
}

.stars {
  color: var(--accent);
  letter-spacing: 0.5em;
  font-size: 1rem;
}

.stars span {
  display: inline-block;
  animation: starPop 0.6s var(--ease-out) both;
}

.stars span:nth-child(1) {
  animation-delay: 0.8s;
}

.stars span:nth-child(2) {
  animation-delay: 0.9s;
}

.stars span:nth-child(3) {
  animation-delay: 1.0s;
}

.stars span:nth-child(4) {
  animation-delay: 1.1s;
}

.stars span:nth-child(5) {
  animation-delay: 1.2s;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-30deg);
  }

  60% {
    transform: scale(1.3) rotate(10deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 6rem clamp(2rem, 6vw, 5rem);
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer__links a {
  transition: color 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
  position: relative;
}

.footer__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.footer__links a:hover {
  color: #fff;
  opacity: 1;
}

.footer__links a:hover::after {
  width: 100%;
}

.footer p {
  margin: 0;
  opacity: 0.5;
}

/* ===========================
   MODALS
   =========================== */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1000;
  padding: 1rem;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__content {
  background: #0e0e0e;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 500px;
  max-height: 92dvh;
  overflow-y: auto;
  padding: 3rem;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s var(--ease-out);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(242, 232, 196, 0.3) transparent;
}

.modal__content::-webkit-scrollbar {
  width: 4px;
}
.modal__content::-webkit-scrollbar-track {
  background: transparent;
}
.modal__content::-webkit-scrollbar-thumb {
  background: rgba(242, 232, 196, 0.3);
  border-radius: 4px;
}

.modal.is-open .modal__content {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: sticky;
  top: 0;
  float: right;
  margin-left: auto;
  display: flex;
  background: rgba(14, 14, 14, 0.9);
  border: 1px solid var(--glass-border);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
  backdrop-filter: blur(10px);
  margin-bottom: -44px;
  /* so it doesn't push content down */
}

.modal__close:hover {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  transform: rotate(90deg);
}

.modal__header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 0.5rem;
}

.modal__header h3 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
}

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

.form__group {
  margin-bottom: 1.5rem;
}

.form__group label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.form__group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: #fff;
  padding: 0.8rem 0;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
  /* Prevent iOS zoom on focus */
  font-size: max(1rem, 16px);
}

.form__group input:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.modal__submit {
  width: 100%;
  margin-top: 2rem;
}

.modal__message {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 1rem;
  min-height: 1.2em;
  color: var(--muted);
}

.modal__content--large {
  max-width: 900px;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
  max-height: 92dvh;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.product-detail__visual {
  background: radial-gradient(circle, #1a1a1a, #0e0e0e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 0;
  width: 100%;
  max-width: 400px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.gallery-wrapper:hover .gallery-nav {
  opacity: 1;
  pointer-events: auto;
}

.gallery-nav:hover {
  background: var(--accent);
  color: #000;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav--left {
  left: 0;
}

.gallery-nav--right {
  right: 0;
}

.product-gallery::-webkit-scrollbar {
  display: none;
}

.product-gallery img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  scroll-snap-align: center;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  padding: 1rem;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.gallery-dot.is-active {
  background: var(--accent);
  opacity: 1;
  transform: scale(1.5);
}

.product-detail__info {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-detail__info h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.product-detail__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.product-detail__desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.product-detail__features h4 {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 1rem;
}

.product-detail__features ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.product-detail__features li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.product-detail__features li::before {
  content: "→";
  color: var(--accent);
}

.detail__buy-now {
  margin-top: auto;
  width: 100%;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about.is-hidden {
  display: none;
}

.about {
  background: #fff;
  color: #000;
  padding: 8rem clamp(2rem, 6vw, 5rem);
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.about__intro h2 {
  font-size: 3rem;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
}

.about__desc {
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.8;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 4rem;
  gap: 4rem;
}

.about ul {
  list-style: none;
  padding: 0;
}

.about li {
  margin-bottom: 0.8rem;
}

.about a {
  font-size: 1.1rem;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.2);
}

/* ===========================
   LEGAL CONTENT
   =========================== */
.legal-page body {
  padding-top: 100px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 8vw, 6rem) clamp(1.5rem, 5vw, 2rem);
  color: #ccc;
}

.legal-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 2.5rem;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-content p,
.legal-content li {
  line-height: 1.8;
  margin-bottom: 1.2rem;
  opacity: 0.8;
  font-size: 1.05rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.legal-content strong {
  color: #fff;
}

/* ===========================
   SCROLL ANIMATION SYSTEM
   =========================== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

[data-animate="fade-up"] {
  transform: translateY(50px);
}

[data-animate="fade-down"] {
  transform: translateY(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(50px);
}

[data-animate="fade-right"] {
  transform: translateX(-50px);
}

[data-animate="tilt-up"] {
  transform: translateY(60px) rotateX(-5deg);
  perspective: 1000px;
}

[data-animate="scale-in"] {
  transform: scale(0.8);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) rotateX(0) scale(1);
}

/* ===========================
   TILT CARD EFFECT (3D)
   =========================== */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.4s var(--ease-out);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }

  .hero__copy {
    align-items: center;
  }

  .hero__badge {
    align-self: center;
  }

  .hero__actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav__links {
    display: none;
  }

  .nav__menu {
    display: flex;
  }

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

  .love__image {
    height: 400px;
  }

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

  .stats {
    flex-direction: column;
    gap: 2.5rem;
    padding: 4rem 2rem;
  }

  .stats__divider {
    width: 60px;
    height: 1px;
  }

  /* === MODAL / BOOKING SCREEN MOBILE FIXES === */

  /* Checkout modal: full-width bottom sheet feel on mobile */
  .modal {
    padding: 0;
    align-items: flex-end;
  }

  .modal__content {
    max-width: 100%;
    width: 100%;
    padding: 1.75rem 1.25rem 2rem;
    border-radius: 20px 20px 0 0;
    max-height: 92dvh;
    border-bottom: none;
  }

  /* Add a drag handle visual at top of bottom sheet */
  .modal__content::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin: 0 auto 1.5rem;
  }

  /* For large modal (product detail), keep centered but constrain height */
  .modal__content--large {
    max-width: 100%;
    width: 100%;
    padding: 0;
    border-radius: 20px 20px 0 0;
    max-height: 92dvh;
    overflow-y: auto;
  }

  .modal__content--large::before {
    display: none;
  }

  /* Product detail stacks: image on top, info below */
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail__visual {
    padding: 2rem 1.5rem 1rem;
    min-height: 260px;
  }

  .product-gallery {
    max-width: 220px;
  }

  .gallery-nav {
    opacity: 1;
    pointer-events: auto;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .product-detail__info {
    padding: 1.5rem 1.25rem 2rem;
    gap: 1rem;
  }

  .product-detail__info h2 {
    font-size: 1.5rem;
  }

  /* Stack city and postal code vertically on small screens */
  .form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Increase tap target for form inputs */
  .form__group input {
    padding: 1rem 0;
  }

  /* Make close button inside large modal visible and accessible */
  .modal__content--large .modal__close {
    position: fixed;
    top: calc(8dvh + 0.75rem);
    right: 1rem;
    background: rgba(14, 14, 14, 0.95);
  }

  /* Form submit button larger touch target */
  .modal__submit {
    padding: 1.3em 2rem;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  /* Checkout header compact */
  .modal__header {
    margin-bottom: 1.5rem;
    padding-top: 0;
  }

  .modal__header h3 {
    font-size: 1rem;
  }

  blockquote {
    font-size: 1.5rem;
  }

  .cursor-glow {
    display: none;
  }
}

/* Extra small screens (< 400px) */
@media (max-width: 400px) {
  .modal__content {
    padding: 1.5rem 1rem 1.75rem;
  }

  .product-detail__visual {
    min-height: 200px;
    padding: 1.5rem 1rem 0.5rem;
  }

  .product-gallery {
    max-width: 180px;
  }

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

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