/* 7YUG base styles + cinematic luxury foundation */

:root {
  --bg: #070707;
  --panel: rgba(255, 255, 255, 0.04);
  --text: #f2f2f2;
  --muted: rgba(244, 210, 122, 0.9);
  --gold: #f4d27a;
  --gold-2: #c69a2d;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-2: rgba(255, 255, 255, 0.035);
  --stroke: rgba(244, 210, 122, 0.18);
  --stroke-2: rgba(244, 210, 122, 0.12);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(244, 210, 122, 0.17), transparent 60%),
    radial-gradient(900px 450px at 20% 15%, rgba(244, 210, 122, 0.08), transparent 55%),
    linear-gradient(180deg, #050505, #0a0a0a 55%, #060606);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(244, 210, 122, 0.35);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus {
  left: 12px;
}

/* Ambient particles layer (created in HTML) */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

/* Optional cursor glow element. JS safely ignores if not present. */
#cursorLight {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  left: -9999px;
  top: -9999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(244, 210, 122, 0.28), transparent 60%);
  mix-blend-mode: screen;
  filter: blur(10px);
  z-index: 1;
  transform: translateZ(0);
}

/* Loading screen */
#loading {
  position: fixed;
  inset: 0;
  z-index: 999;
  background:
    radial-gradient(900px 500px at 50% 20%, rgba(244, 210, 122, 0.18), transparent 60%),
    linear-gradient(180deg, #050505, #0a0a0a);
  display: grid;
  place-items: center;
  transition: opacity 700ms ease, visibility 700ms ease;
}

#loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-wrap {
  width: min(720px, 92vw);
  padding: 34px 26px;
  border-radius: 30px;
  border: 1px solid rgba(244, 210, 122, 0.18);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: var(--shadow);
  text-align: center;
}

.loading-mark {
  font-family: Cinzel, serif;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-size: 2.2rem;
  text-transform: uppercase;
}

.loading-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.loading-bar {
  margin-top: 26px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  border: 1px solid rgba(244, 210, 122, 0.12);
}

.loading-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, rgba(244, 210, 122, 0), rgba(244, 210, 122, 1), rgba(198, 154, 45, 1));
  animation: sweep 1.2s ease-in-out infinite;
}

@keyframes sweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(220%);
  }
}

.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(244, 210, 122, 0.16);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  border-radius: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(244, 210, 122, 0.28);
  background: linear-gradient(145deg, rgba(244, 210, 122, 0.18), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  transition: transform 180ms ease, border-color 180ms ease;
}

.whatsapp-float__icon {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(244, 210, 122, 0.45);
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(244, 210, 122, 0.15);
}

.site-nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-nav .logo img {
  height: 38px;
  width: auto;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(244, 210, 122, 0.22);
  background: rgba(255, 255, 255, 0.04);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  transition: transform 220ms ease;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links a {
  font-weight: 650;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.86);
  transition: color 160ms ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cart {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 210, 122, 0.26);
  background: rgba(244, 210, 122, 0.06);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 14px;
    border-radius: 22px;
    border: 1px solid rgba(244, 210, 122, 0.18);
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    transform-origin: top;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .nav-links[data-visible="true"] {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
}

/* Home/collections product cards */
.inner-page {
  min-height: 100vh;
}

.product-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.product-grid.bigger-grid {
  padding-top: 90px;
}

.page-hero {
  padding: 120px 24px 40px;
  text-align: center;
}

.product-card {
  position: relative;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(244, 210, 122, 0.18);
  padding: 22px 18px 26px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 900px;
  transition: transform 120ms ease;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(244, 210, 122, 0.22), transparent 55%);
  opacity: 0;
  transition: opacity 150ms ease;
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  height: 170px;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  object-fit: cover;
  background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
}


.product-card h3 {
  margin: 16px 0 8px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.product-card span,
.product-card p {
  display: inline-block;
  color: rgba(244, 210, 122, 0.95);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.product-card.futuristic {
  background: linear-gradient(145deg, rgba(244, 210, 122, 0.09), rgba(255, 255, 255, 0.02));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
  min-width: 170px;
}

.btn:active {
  transform: translateY(1px);
}

.gold-btn {
  background: linear-gradient(135deg, rgba(244, 210, 122, 1), rgba(198, 154, 45, 1));
  color: #121212;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.outline-btn {
  background: transparent;
  border: 1px solid rgba(244, 210, 122, 0.6);
  color: var(--gold);
}

.btn:hover {
  transform: translateY(-2px);
}

/* Typography helpers */
.hero__title,
.display {
  font-family: Cinzel, serif;
}

.eyebrow {
  color: rgba(244, 210, 122, 0.92);
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
}

.h2 {
  font-family: Cinzel, serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 0;
}

.lead {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 14px 0 0;
}

/* Home hero */
.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 110px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__vignette {
  position: absolute;
  inset: -20px;
  background: radial-gradient(800px 500px at 50% 20%, rgba(244, 210, 122, 0.16), transparent 60%),
    radial-gradient(900px 600px at 30% 30%, rgba(244, 210, 122, 0.08), transparent 60%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(244, 210, 122, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 210, 122, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.55;
  transform: translateZ(0);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 65%);
}

.hero__orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(244, 210, 122, 0.18), transparent 60%);
  filter: blur(6px);
  opacity: 0.9;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero__kicker {
  margin: 0 auto;
}

.hero__title {
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 5.2vw, 4.9rem);
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 820px;
  margin: 18px auto 0;
}

.hero__cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  margin: 34px auto 0;
  width: max-content;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
}

.hero__bottom {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hero__stat {
  padding: 22px 18px;
  text-align: left;
}

.stat__n {
  font-family: Cinzel, serif;
  color: var(--gold);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}

.stat__t {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.04em;
  font-weight: 600;
}

@media (max-width: 820px) {
  .hero {
    padding-top: 92px;
  }
  .hero__bottom {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section-wrap {
  padding: 0 24px 80px;
}

.section-head {
  max-width: 1100px;
  margin: 0 auto 24px;
}

.section-title {
  font-family: Cinzel, serif;
  color: var(--gold);
}

.about-preview {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 110px;
}

.about-text {
  border-radius: 28px;
  padding: 48px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(244, 210, 122, 0.16);
}

.about-text h2 {
  margin: 0;
  font-size: 2.2rem;
  color: var(--gold);
  font-family: 'Cinzel', serif;
}

.about-text p {
  margin: 18px 0 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.about-actions {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.editorial-row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.editorial-block {
  padding: 26px 22px;
}

.editorial-title {
  font-family: Cinzel, serif;
  color: var(--gold);
  margin: 0;
}

.editorial-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

@media (max-width: 820px) {
  .editorial-row {
    grid-template-columns: 1fr;
  }
}

/* Pages */
.lookbook,
.contact-page,
.product-page,
.cart-page {
  min-height: 100vh;
}

/* About / Lookbook / Contact existing selectors */
.about-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 70px;
}

.about-page p {
  max-width: 720px;
  margin-top: 22px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.lookbook-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 24px 90px;
}

.lookbook-box {
  height: 500px;
  background: linear-gradient(145deg, #111, #191919);
  border-radius: 30px;
}

.page-hero h1,
.about-page h1,
.lookbook h1,
.contact-page h1,
.product-page h1,
.cart-page h1 {
  font-size: 5rem;
  color: #f4d27a;
  font-family: 'Cinzel', serif;
  margin: 0;
  line-height: 1.02;
}

.display.small-display {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
}

@media(max-width: 768px) {
  .page-hero h1,
  .about-page h1,
  .lookbook h1,
  .contact-page h1 {
    font-size: 3rem;
  }
}

/* Footer */
.site-footer,
footer {
  padding: 34px 24px;
  border-top: 1px solid rgba(244, 210, 122, 0.14);
  background: rgba(0, 0, 0, 0.35);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-content img {
  height: 34px;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 650;
}

.footer-links a:hover {
  color: var(--gold);
}

footer p,
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Legacy footer selectors */
footer {
  padding: 34px 24px;
  border-top: 1px solid rgba(244, 210, 122, 0.14);
  background: rgba(0, 0, 0, 0.35);
}

/* Contact extras */
.contact-hero,
.about-hero {
  margin: 0 auto;
  max-width: 980px;
  padding: 50px 26px;
  text-align: center;
}

.contact-fine {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Parallax-friendly frames */
.product-hero {
  padding: 120px 24px 60px;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: center;
}

.product-hero__media {
  position: relative;
  min-height: 520px;
}

.product-hero__frame {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(244, 210, 122, 0.16);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-hero__art {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background:
    radial-gradient(500px 360px at 50% 30%, rgba(244, 210, 122, 0.22), transparent 60%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.35), rgba(255, 255, 255, 0.02));
}

.product-hero__glow {
  position: absolute;
  left: 50%;
  top: 26%;
  width: 460px;
  height: 460px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 210, 122, 0.2), transparent 62%);
  filter: blur(10px);
  opacity: 0.95;
}

.product-hero__tag {
  position: absolute;
  top: 26px;
  left: 26px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 210, 122, 0.26);
  background: rgba(244, 210, 122, 0.06);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.product-hero__content {
  padding: 18px 10px;
}

.product-meta {
  margin-top: 22px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 210, 122, 0.1);
}

.meta-row:last-child {
  border-bottom: none;
}

.meta-row .k {
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
  font-weight: 700;
}

.meta-row .v {
  color: rgba(244, 210, 122, 0.95);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.product-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fineprint {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .product-hero {
    grid-template-columns: 1fr;
  }
  .product-hero__media {
    min-height: 420px;
  }
}

.editorial-section {
  padding: 0 24px 90px;
  max-width: 1120px;
  margin: 0 auto;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.glass-card.reveal {
  padding: 26px 22px;
}

@media (max-width: 980px) {
  .editorial-grid {
    grid-template-columns: 1fr;
  }
}

.cart-hero {
  padding: 120px 24px 90px;
}

.cart-card {
  margin: 0 auto;
  max-width: 980px;
  padding: 44px 26px;
}

.empty-state {
  margin-top: 28px;
}

.empty-icon {
  font-size: 2.2rem;
  color: var(--gold);
}

.empty-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.empty-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.cart-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
  }
  .btn {
    transition: none;
  }
}

