:root {
  --bg: #020203;
  --surface: #080809;
  --surface-2: #101014;
  --border: rgba(255,255,255,.14);
  --text: #f6f6f7;
  --muted: rgba(255,255,255,.58);
  --soft: rgba(255,255,255,.08);
  --holo: linear-gradient(115deg, #ffffff 0%, #eff7ff 18%, #f9e8ff 36%, #ffffff 52%, #e2fff7 70%, #edf2ff 88%, #ffffff 100%);
  --holo-strong: linear-gradient(115deg, #ffffff 0%, #dcecff 18%, #ffe1fb 38%, #ffffff 56%, #d6fff5 76%, #ffffff 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;

  background:
    linear-gradient(
      rgba(0,0,0,0.82),
      rgba(0,0,0,0.88)
    ),
    url("../assets/backgrounds/roses-wallpaper.png")

  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;

  opacity: 0.35;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(255,255,255,0.025),
      transparent 35%
    );
}
h1,h2,h3,h4,.display { font-family: 'Inter', system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }

.site-nav {
  background: rgba(3,3,4,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
}
.nav-logo {
  width: 56px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.13));
  transition: transform .2s ease, filter .2s ease;
}
a:hover .nav-logo { transform: translateY(-1px); filter: drop-shadow(0 0 24px rgba(220,233,255,0.22)); }
.nav-link { position: relative; color: rgba(255,255,255,.70); transition: color .15s ease; }
.nav-link:hover { color: #fff; }
.nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--holo);
  transition: width .2s ease;
}
.nav-link:hover:after { width: 100%; }
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  transition: all .16s ease;
}
.cart-button:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.25); }
.mobile-nav { background: rgba(3,3,4,0.98); transform: translateX(100%); transition: transform .25s ease; }
.mobile-nav.open { transform: translateX(0); }

.hero { position: relative; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.08), transparent 34%), #030304; }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 50%, black 0, transparent 74%);
}
.hero-shine {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 120deg, transparent, rgba(191,231,255,.10), transparent, rgba(247,220,255,.10), transparent);
  animation: slowSpin 22s linear infinite;
  opacity: .55;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.hero-logo-wrap { position: relative; display: flex; justify-content: center; }
.hero-logo-wrap:before {
  content: '';
  position: absolute;
  inset: 11% 0 4% 0;
  background: var(--holo-strong);
  filter: blur(64px);
  opacity: .16;
  border-radius: 50%;
}
.hero-logo {
  position: relative;
  width: min(720px, 100%);
  filter: drop-shadow(0 0 16px rgba(255,255,255,.15)) drop-shadow(0 0 50px rgba(210,235,255,.09));
}
.eyebrow, .section-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255,255,255,.52);
}
.eyebrow:before, .section-header:before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--holo);
}
.holo-text {
  color: transparent;
  background: var(--holo);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: holoMove 7s ease-in-out infinite;
  text-shadow: 0 0 28px rgba(255,255,255,.04);
}
@keyframes holoMove { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.trust-bar { border-block: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.025); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: #fff; color: #000; border-color: #fff; box-shadow: 0 16px 40px rgba(255,255,255,.12); }
.btn-primary:hover { box-shadow: 0 18px 50px rgba(255,255,255,.20); }
.btn-secondary { background: rgba(255,255,255,.03); color: #fff; border-color: rgba(255,255,255,.20); }
.btn-secondary:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.36); }
.btn-holo { color: #fff; border: 1px solid transparent; background: linear-gradient(#060607,#060607) padding-box, var(--holo-strong) border-box; box-shadow: 0 0 24px rgba(210,235,255,.08); }
.btn-holo:hover { box-shadow: 0 0 36px rgba(210,235,255,.18); }
.btn-ghost { background: transparent; color: var(--muted); border: none; }
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,.06); }

.input {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 14px 16px;
  font-size: 14px;
  border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.input:focus { outline: none; border-color: rgba(255,255,255,.42); box-shadow: 0 0 0 4px rgba(217,232,255,.08); background: rgba(255,255,255,.07); }
.input::placeholder { color: rgba(255,255,255,.34); }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' opacity='.6' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }

.filter-pill {
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .75px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.58);
  border-radius: 9999px;
  transition: all .13s ease;
  cursor: pointer;
  white-space: nowrap;
}
.filter-pill:hover { color: #fff; border-color: rgba(255,255,255,.30); }
.filter-pill.active { color: #000; background: #fff; border-color: #fff; }

.product-card {
  background: linear-gradient(#080809,#080809) padding-box, linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.05)) border-box;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(220,233,255,.05), transparent);
  transform: translateX(-100%);
  transition: transform .5s ease;
  pointer-events: none;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(0,0,0,.42), 0 0 30px rgba(220,233,255,.08); }
.product-card:hover:before { transform: translateX(100%); }
.product-card .image-container { background: #050506; overflow: hidden; }
.product-card img { transition: transform .6s ease; }
.product-card:hover img { transform: scale(1.045); }

.panel-section { background: rgba(255,255,255,.035); border-block: 1px solid rgba(255,255,255,.10); }
.process-card, .why-card, .stat-card, .gallery-tile {
  background: linear-gradient(#080809,#080809) padding-box, linear-gradient(145deg, rgba(255,255,255,.19), rgba(255,255,255,.045)) border-box;
  border: 1px solid transparent;
  border-radius: 22px;
}
.process-card { padding: 28px; }
.step-num { color: transparent; background: var(--holo); -webkit-background-clip: text; background-clip: text; font-size: 12px; font-weight: 900; letter-spacing: 4px; margin-bottom: 18px; }
.card-title { font-weight: 900; font-size: 20px; margin-bottom: 10px; }
.process-card p { color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.65; }
.gallery-tile { min-height: 250px; display: flex; align-items: end; padding: 26px; position: relative; overflow: hidden; }
.gallery-tile:before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.14), transparent 35%), var(--holo); opacity:.11; }
.gallery-tile span { position: relative; font-weight: 900; font-size: 22px; letter-spacing: -1px; }
.why-card { padding: 40px; }
.stat-card { padding: 22px; }
.stat-card div { font-size: 42px; font-weight: 900; letter-spacing: -2px; }
.stat-card span { color: rgba(255,255,255,.48); font-size: 11px; font-weight: 900; letter-spacing: 1.7px; }

.option-btn {
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.62);
  border-radius: 999px;
  transition: all .1s ease;
  cursor: pointer;
}
.option-btn:hover { border-color: rgba(255,255,255,.33); color: #fff; }
.option-btn.active { background: #fff; color: #000; border-color: #fff; }

.modal { animation: modalEnter .18s ease; }
@keyframes modalEnter { from { opacity: 0; transform: translateY(15px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
.cart-drawer { box-shadow: -25px 0 50px -12px rgb(0 0 0 / .5); }
.toast { animation: slideUp .2s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: translateY(0); } }
.faq-question { cursor: pointer; transition: color .12s ease; }
.faq-question:hover { color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-answer.open { max-height: 220px; padding-top: 12px; }
.footer { border-top: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.48); font-size: 12px; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #070708; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.32); }

@media (max-width: 768px) {
  .hero-title { letter-spacing: -2.5px; }
  .hero-logo { width: min(520px, 112%); }
  .why-card { padding: 28px; }
}


/* ============================================
   V2 CLEANUP — transparent logo, lighter pearl holo,
   tighter/even section layout
   ============================================ */

.site-nav {
  background: rgba(2,2,3,0.92);
}

.nav-logo {
  width: 74px;
  height: 46px;
  object-fit: contain;
  background: transparent !important;
}

.hero {
  min-height: 920px;
  padding-top: 110px;
  padding-bottom: 86px;
}

.hero .grid {
  grid-template-columns: 1fr !important;
  align-items: center;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.hero .order-1,
.hero .order-2,
.hero .lg\:order-1,
.hero .lg\:order-2 {
  order: unset !important;
}

.hero-logo-wrap {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
}

.hero-logo-wrap:before {
  inset: 18% 12% 12% 12%;
  opacity: .065;
  filter: blur(48px);
}

.hero-logo {
  width: min(860px, 94vw);
  max-height: 455px;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 0 11px rgba(255,255,255,.18)) drop-shadow(0 0 34px rgba(255,255,255,.08));
}

.hero > .max-w-7xl > .grid > div:not(.hero-logo-wrap) {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.hero-title {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  max-width: 720px;
}

.hero-shine {
  opacity: .26;
}

.hero-grid {
  opacity: .13;
}

.holo-text {
  filter: brightness(1.35) saturate(0.95);
  text-shadow: none;
}

.btn-holo {
  background: linear-gradient(#050506,#050506) padding-box, var(--holo-strong) border-box;
  box-shadow: 0 0 16px rgba(255,255,255,.08);
}

.btn-holo:hover {
  box-shadow: 0 0 26px rgba(255,255,255,.14);
}

#shop,
#gallery,
#faq {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.panel-section > div {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.why-card {
  padding: clamp(28px, 4vw, 56px);
}

.process-card,
.stat-card,
.gallery-tile,
.product-card {
  height: 100%;
}

.process-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
}

.process-card p {
  margin-top: auto;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card .p-5 {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .p-5 > div:last-child {
  margin-top: auto;
}

.product-card .image-container {
  background: #030304;
}

.product-card img[src*="logo-transparent"] {
  object-fit: contain;
  padding: 34px;
}

.gallery-tile {
  min-height: 280px;
  aspect-ratio: 16 / 10;
}

.gallery-tile:before {
  opacity: .065;
  background: radial-gradient(circle at 68% 20%, rgba(255,255,255,.35), transparent 30%), var(--holo);
}

.trust-bar,
.panel-section,
.footer {
  border-color: rgba(255,255,255,.09);
}

@media (min-width: 1024px) {
  .hero .flex.flex-wrap.gap-4.mt-9,
  .hero .flex.flex-wrap.gap-x-8 {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-logo { width: 62px; height: 40px; }
  .hero { min-height: 820px; padding-top: 104px; padding-bottom: 64px; }
  .hero-logo { width: min(660px, 108vw); max-height: 360px; }
  .hero-title { letter-spacing: -2.2px; }
  #shop, #gallery, #faq { padding-top: 72px !important; padding-bottom: 72px !important; }
  .panel-section > div { padding-top: 72px !important; padding-bottom: 72px !important; }
}


/* ============================================
   V3 NAV FIX — full logo was too detailed/square for nav
   Keep the big logo in the hero; use a clean cuttable SH mark in header.
   ============================================ */
.brand-lockup { min-width: 0; }
.nav-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.035) 48%, rgba(255,255,255,.09)),
    #050506;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.65), 0 0 24px rgba(220,235,255,.06);
}
.nav-mark:before {
  content: '';
  position: absolute;
  inset: -80%;
  background: conic-gradient(from 115deg, transparent 0 20%, rgba(255,255,255,.55), rgba(230,246,255,.45), rgba(255,220,249,.38), transparent 62% 100%);
  opacity: .33;
  animation: slowSpin 13s linear infinite;
}
.nav-mark span {
  position: relative;
  z-index: 1;
  font-weight: 1000;
  letter-spacing: -2px;
  font-size: 17px;
  color: #fff;
  text-shadow: 0 0 12px rgba(255,255,255,.25);
}
.nav-logo { display: none !important; }

@media (max-width: 420px) {
  .brand-lockup .text-lg { font-size: 15px; }
  .brand-lockup .text-\[9px\] { font-size: 8px; letter-spacing: 2px; }
  .nav-mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 10px; }
}
