/* ===========================
   GLOBAL RESET & VARIABLES
   =========================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #d4af37;
  --gold-soft: #c9a86a;
  --bg: #ffffff;
  --bg-soft: #f7f7f9;
  --border: #e5e7eb;
  --text-main: #111111;
  --text-muted: #6b7280;

  /* Top bar height (promo bar) */
  --promo-h: 38px;

  /* Anchor scroll offset (fixed header covers content) */
  --scroll-offset: 170px;
}

html {
  scroll-behavior: smooth;
}

/* When you click menu links, headings won't hide under fixed header */
section[id] {
  scroll-margin-top: var(--scroll-offset);
}

/* ===========================
   BODY & BASE
   =========================== */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

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

.section {
  padding: 3rem 5vw;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===========================
   PROMO BAR (STUCK ON TOP)
   =========================== */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;

  min-height: var(--promo-h);
  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--gold);
  color: var(--text-main);
  text-align: center;
  font-size: 0.9rem;

  padding: 0.2rem 1rem;
}

/* ===========================
   HEADER & NAV (STUCK + TRANSPARENT LIKE YOU WANT)
   =========================== */
.site-header {
  position: fixed;                 /* STAYS STUCK ALWAYS */
  top: var(--promo-h);             /* sits below promo bar */
  left: 0;
  width: 100%;
  z-index: 1500;

  background: transparent;         /* stays transparent */
  border-bottom: none;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0.8rem 5vw;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 150px;
  width: auto;
  filter: brightness(1.1);
}

/* This wrapper is needed for the mobile hamburger dropdown */
.nav-area {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  position: relative;
  white-space: nowrap;
}

/* underline */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.18s ease-out;
}

.main-nav a:hover {
  color: var(--gold-soft); /* works on video AND on white sections */
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===========================
   MOBILE HAMBURGER (3 LINES)
   Requires the HTML change below
   =========================== */
.nav-toggle {
  display: none; /* hidden checkbox */
}

.nav-hamburger {
  display: none; /* only visible on mobile */
}

/* ===========================
   BUTTONS & LINKS
   =========================== */
.btn-primary,
.btn-outline,
.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: 0.18s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--text-main);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--text-main);
}

.btn-secondary {
  background: #ffffff;
  border-color: var(--border);
  color: var(--text-main);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.full-width {
  width: 100%;
}

.link-underline {
  font-size: 0.9rem;
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.35);
  padding-bottom: 0.05rem;
}

.link-underline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ===========================
   FULLSCREEN VIDEO HERO
   =========================== */
.hero-fullscreen {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-top: 0;
  color: #ffffff;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: none;
}

/* YouTube background video (fills hero like a background) */
.hero-bg-yt{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
  filter: none;
}


/* If zooming out reveals any edges, this keeps them clean */
.hero-fullscreen{
  background: #000;
}




.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;  /* ✅ removes the translucent/dark look */
  z-index: 1;
}



.hero-content {
  z-index: 2;
  text-align: center;
  max-width: 800px;

  /* push text away from promo+header */
  padding-top: 30rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #f3f3f3;
  margin-bottom: 2rem;
}

/* ===========================
   SHOP BY COLOR
   =========================== */
/* ===========================
   SHOP BY COLOR – FULL IMAGE (SOLOTICA STYLE)
   =========================== */

.section-colors-full {
  padding: 4rem 5vw;
  background: #ffffff;
}

.color-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  font-family: serif;
}

.color-title em {
  font-style: italic;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.color-tile {
  position: relative;
  display: block;
  overflow: hidden;
}

.color-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Centered color text */
.color-tile span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.5); /* 50% translucent */
  font-size: 0.7rem;              /* ~50% smaller */
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}


/* Hover zoom effect (optional but premium) */
.color-tile img {
  transition: transform 0.4s ease;
}

.color-tile:hover img {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 900px) {
  .color-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===========================
   PRODUCT STRIP (Color Pages)
   =========================== */

.lens-strip {
  background: #ffffff;
}

.lens-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.25rem 0 0.75rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.lens-track::-webkit-scrollbar {
  height: 8px;
}

.lens-track::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
}

.lens-card {
  flex: 0 0 320px;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 0;              /* sharp corners (no rounding) */
  overflow: hidden;
  scroll-snap-align: start;
}

.lens-card__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.lens-card__body {
  padding: 0.9rem;
}

.lens-card__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.lens-chip {
  border: 1px solid var(--border);
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
  background: #ffffff;
}

.lens-wish {
  margin-left: auto;
  border: 1px solid var(--border);
  background: #ffffff;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lens-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.lens-meta {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.lens-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
}

.lens-rating .star {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
}

.lens-rating .sold {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.lens-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.lens-price .mrp {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.92rem;
}

.lens-price .sale {
  font-weight: 700;
  font-size: 1.1rem;
}

.lens-price .off {
  margin-left: auto;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .lens-card {
    flex: 0 0 84vw;   /* big swipe cards on mobile */
    max-width: 360px;
  }
}

/* ===========================
   FEATURED PRODUCTS
   =========================== */
.section-products {
  background: var(--bg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}

.product-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-image-wrap img {
  border-radius: 0.9rem;
}

.product-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
}

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

.product-price {
  color: var(--gold);
  font-weight: 600;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* ===========================
   ABOUT
   =========================== */
.section-about {
  background: var(--bg);
}

.about-card-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
}

.about-card {
  min-width: 240px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1rem;
}

.about-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

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

/* ===========================
   CONTACT
   =========================== */
.section-contact {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 0.5rem;
}

.contact-block {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid var(--border);
  padding: 1rem;
}

.contact-block h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

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

.contact-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}
/* ===========================
   COLOR PAGE HERO – iPhone/Instagram clipping fix
   =========================== */

.color-hero{
  position: relative;
  width: 100%;
  overflow: hidden;

  /* safe heights so text doesn't get cut on small phones */
  height: clamp(420px, 72vh, 720px);
}

/* Prefer "large viewport height" on iOS/Instagram when available */
@supports (height: 1lvh){
  .color-hero{
    height: clamp(420px, 72lvh, 720px);
  }
}

.color-hero img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 25%;
}

.color-hero-overlay{
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;

  /* IMPORTANT: padding keeps subtitle visible even before scrolling */
  padding: calc(var(--promo-h) + 2.5rem) 5vw clamp(1.5rem, 5vh, 3rem);

  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.25);
}

.color-hero-overlay h1{
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.color-hero-overlay p{
  font-size: clamp(0.75rem, 3.2vw, 0.9rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* Extra safety for very small phones */
@media (max-width: 420px){
  .color-hero-overlay{
    padding: calc(var(--promo-h) + 5.3rem) 5vw 3.2rem;
  }
  .color-hero-overlay p{
    letter-spacing: 0.10em;
  }
}



/* ===========================
   FOOTER
   =========================== */
.site-footer {
  text-align: center;
  padding: 1.5rem 5vw 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: #ffffff;
}

/* ===========================
   RESPONSIVE (MOBILE MENU)
   =========================== */
@media (max-width: 840px) {
  :root {
    --scroll-offset: 140px;
  }

  /* Smaller logo on smaller screens */
  .logo img {
    height: 120px;
  }

  /* hide desktop horizontal nav; show hamburger */
  .nav-hamburger {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    cursor: pointer;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
  }

  .nav-hamburger span {
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  /* Dropdown menu (hidden by default) */
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;

    min-width: 240px;
    padding: 0.75rem;

    background: rgba(0,0,0,0.78);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    backdrop-filter: blur(12px);

    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;

    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .main-nav a {
    font-size: 0.85rem;
    letter-spacing: 0.10em;
    color: var(--gold);
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
  }

  /* When checkbox is checked -> show menu */
  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Animate hamburger into X */
  .nav-toggle:checked + .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}






/* ===========================
   INFLUENCERS (Instagram embeds) – responsive + no cropping
   =========================== */

.section-influencers .influencer-row{
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.75rem max(16px, 5vw);
  scroll-snap-type: x mandatory;
  scroll-padding: 0 max(16px, 5vw);
  -webkit-overflow-scrolling: touch;
}

.section-influencers .influencer-card{
  flex: 0 0 auto;
  width: clamp(260px, 82vw, 360px);
  scroll-snap-align: center;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;

  overflow: visible; /* ✅ don’t clip Instagram UI */
}
.section-influencers .ig-reel{
  border-radius: 18px;
  overflow: hidden; /* ✅ rounded reel area only */
  background: #fff;
}




/* Let Instagram decide the correct height */
.section-influencers .ig-reel blockquote.instagram-media{
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.section-influencers .ig-reel iframe{
  width: 100% !important;
  border: 0 !important;
  display: block;
}

.section-influencers .influencer-caption{
  padding: 0.75rem 0.9rem;
  border-top: 1px solid var(--border);
}

.section-influencers .influencer-name{
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}
/* YouTube Shorts embed (9:16 like reels) */
.section-influencers .yt-reel{
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}

.section-influencers .yt-reel iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


.footer-legal{
  max-width: 900px;
  margin: 0.35rem auto 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.site-footer a{ color: inherit; text-decoration: underline; }
