/* ============================================================
   THE EYELAND LASH BEAUTY STUDIO — Main Stylesheet
   Brand: Pink · Gold · White | Elegant & Feminine
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --pink-light:    #fce8ef;
  --pink-mid:      #f4a7c0;
  --pink-rose:     #e8728f;
  --pink-deep:     #c94b6e;
  --gold:          #c9a84c;
  --gold-light:    #e8cc80;
  --gold-pale:     #f5e9c8;
  --white:         #ffffff;
  --cream:         #fdf8f4;
  --text-dark:     #2a1a20;
  --text-mid:      #6b3d4e;
  --text-light:    #a07080;
  --grad-hero:     linear-gradient(135deg, #fff0f5 0%, #fce8ef 45%, #fdf3e3 100%);
  --grad-gold:     linear-gradient(90deg, #c9a84c, #e8cc80, #c9a84c);
  --grad-pink:     linear-gradient(135deg, #f4a7c0, #e8728f);
  --shadow-soft:   0 8px 40px rgba(201, 72, 110, 0.12);
  --shadow-gold:   0 4px 20px rgba(201, 168, 76, 0.25);
  --radius-card:   22px;
  --radius-btn:    40px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--pink-light); }
::-webkit-scrollbar-thumb { background: var(--grad-gold); border-radius: 3px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  transition: height 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  height: 62px;
  box-shadow: 0 4px 28px rgba(201, 72, 110, 0.08);
}
.nav-logo img {
  height: 56px;
  object-fit: contain;
  transition: height 0.3s;
}
.nav.scrolled .nav-logo img { height: 44px; }

.nav-links {
  display: flex; gap: 34px;
}
.nav-links a {
  font-size: 0.74rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--pink-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--grad-pink) !important;
  color: white !important;
  padding: 10px 26px !important;
  border-radius: var(--radius-btn) !important;
  font-weight: 400 !important;
  box-shadow: 0 4px 16px rgba(232, 114, 143, 0.35) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,114,143,.45) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 1.5px;
  background: var(--pink-deep);
  display: block; transition: all 0.3s;
}

/* mobile open */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    padding: 32px 36px;
    gap: 24px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container   { max-width: 1180px; margin: 0 auto; }
.section     { padding: 96px 48px; }
.section-sm  { padding: 72px 48px; }

.section-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 400; margin-bottom: 12px;
}
.section-label::before,
.section-label::after { content: '✦'; font-size: 0.5rem; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.18;
  color: var(--text-dark);
}
.section-title em {
  font-style: italic;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gold-bar {
  display: flex; align-items: center; gap: 14px;
  margin: 18px 0 32px;
}
.gold-bar .line { width: 80px; height: 1px; background: var(--grad-gold); }
.gold-bar .dot  { color: var(--gold); font-size: 0.42rem; }

/* centred header block */
.header-center { text-align: center; margin-bottom: 56px; }
.header-center .section-label,
.header-center .gold-bar { justify-content: center; }

/* buttons */
.btn-primary {
  display: inline-block;
  background: var(--grad-pink);
  color: white;
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(232,114,143,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(232,114,143,0.5); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-mid);
  padding: 13px 36px;
  border-radius: var(--radius-btn);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1.5px solid rgba(201,168,76,0.4);
  transition: all 0.2s; cursor: pointer;
}
.btn-secondary:hover { background: var(--gold-pale); border-color: var(--gold); color: var(--gold); }

.btn-gold {
  display: inline-block;
  background: var(--grad-gold);
  color: var(--text-dark);
  padding: 13px 34px;
  border-radius: var(--radius-btn);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none; cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(201,168,76,0.4); }

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* page hero band (inner pages) */
.page-hero {
  padding: 160px 48px 80px;
  background: var(--grad-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(244,167,192,0.35), transparent 60%),
              radial-gradient(ellipse at 10% 100%, rgba(232,204,128,0.25), transparent 50%);
}
.page-hero .page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 0.95rem; color: var(--text-light);
  font-weight: 300; max-width: 520px; margin: 0 auto;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 26px rgba(37,211,102,0.42);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wapulse 2.5s ease-in-out infinite;
}
.wa-float img {
  width: 30px; height: 30px;
  filter: brightness(0) invert(1);
  object-fit: contain;
  display: block;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 34px rgba(37,211,102,0.55);
  animation: none;
}
.wa-tip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--text-dark); color: white;
  padding: 5px 14px; border-radius: 8px;
  font-size: 0.72rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-float:hover .wa-tip { opacity: 1; }
@keyframes wapulse {
  0%, 100% { box-shadow: 0 8px 26px rgba(37,211,102,0.42); }
  50%       { box-shadow: 0 8px 26px rgba(37,211,102,0.42), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.65);
  padding: 60px 48px 30px;
  text-align: center;
}
.foot-logo {
  margin-bottom: 20px;
}
.foot-logo img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(201,168,76,0.35);
  background: white;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.foot-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: rgba(201,168,76,0.65); margin-bottom: 28px;
}
.foot-social {
  display: flex; justify-content: center; gap: 14px; margin-bottom: 28px;
}
.soc {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  overflow: hidden;
}
.soc img {
  width: 20px; height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(0.7);
  transition: filter 0.25s;
}
.soc:hover { border-color: transparent; }
.soc.soc-ig:hover  { background: radial-gradient(circle at 30% 107%, #fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%); }
.soc.soc-fb:hover  { background: #1877F2; }
.soc.soc-wa:hover  { background: #25D366; }
.soc:hover img     { filter: brightness(0) invert(1); }
.foot-links {
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap; margin-bottom: 28px;
}
.foot-links a {
  color: rgba(255,255,255,0.4); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.2s;
}
.foot-links a:hover { color: var(--gold-light); }
.foot-divider { width: 55px; height: 1px; background: var(--grad-gold); margin: 0 auto 20px; }
.foot-copy   { font-size: 0.7rem; color: rgba(255,255,255,0.28); letter-spacing: 0.08em; }
.foot-bahamas{ margin-top: 6px; font-size: 0.65rem; color: rgba(201,168,76,0.45); letter-spacing: 0.14em; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center; justify-content: center;
}
.lb.open { display: flex; }
.lb img  { max-width: 90vw; max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lb-close {
  position: absolute; top: 22px; right: 28px;
  color: white; font-size: 2rem; cursor: pointer;
  opacity: 0.7; transition: opacity 0.2s;
  background: none; border: none;
}
.lb-close:hover { opacity: 1; }

/* ============================================================
   PRODUCT CARD (shared shop)
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.prod-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.prod-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-soft); }
.prod-img {
  height: 230px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: white; position: relative;
}
.prod-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.prod-card:hover .prod-img img { transform: scale(1.06); }
.prod-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--grad-gold); color: var(--text-dark);
  font-size: 0.6rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 20px;
}
.prod-body { padding: 20px 22px 26px; }
.prod-name  { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; color: var(--text-dark); margin-bottom: 5px; }
.prod-shade { font-size: 0.7rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.prod-desc  { font-size: 0.8rem; color: var(--text-light); line-height: 1.65; font-weight: 300; margin-bottom: 16px; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; }
.prod-price {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  background: var(--grad-gold); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.btn-buy {
  background: var(--grad-pink); color: white; border: none; cursor: pointer;
  padding: 9px 18px; border-radius: 28px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(232,114,143,0.38); }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 900px) {
  .section, .section-sm { padding: 72px 24px; }
  .page-hero { padding: 130px 24px 64px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .section, .section-sm { padding: 60px 20px; }
  .page-hero { padding: 110px 20px 56px; }
  .products-grid { grid-template-columns: 1fr; }
}
