/* =========================
   AKIRAH BEAUTY — GLOBAL
========================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

:root {
  --cream: #FAF6F1;
  --blush: #F2E8DF;
  --nude: #E8D5C4;
  --rose: #C89080;
  --deep-rose: #8B4E40;
  --charcoal: #2A2320;
  --warm-gray: #9A8880;
  --gold: #B8956A;
  --white: #FFFFFF;
  --border: rgba(200, 144, 128, 0.15);
  --max-w: 1260px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(92%, var(--max-w));
  margin: 0 auto;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover { background: var(--deep-rose); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(42, 35, 32, 0.3);
}
.btn-outline:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 241, 0.4);
}
.btn-outline-light:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

.btn-light {
  background: var(--cream);
  color: var(--charcoal);
}
.btn-light:hover { background: var(--white); }

/* =========================
   ANNOUNCEMENT BAR
========================= */

.announcement-bar {
  background: var(--charcoal);
  color: var(--nude);
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 400;
}

/* =========================
   HEADER
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 24px;
}

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--warm-gray);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { padding: 10px 22px; font-size: 10px; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 80vw);
  height: 100vh;
  background: var(--cream);
  z-index: 200;
  padding: 80px 36px 40px;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid var(--border);
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--charcoal); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42, 35, 32, 0.4);
  z-index: 199;
}
.mobile-overlay.open { display: block; }

/* =========================
   HERO (INDEX)
========================= */

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-text-col {
  padding: 80px 6% 80px 8%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--rose);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 380px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-img-col {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--nude);
}
.hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9);
  transition: transform 7s ease;
}
.hero-img-col:hover img { transform: scale(1.04); }

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 18%);
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 48%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--warm-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: var(--rose);
  opacity: 0.5;
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================
   MARQUEE
========================= */

.marquee-section {
  background: var(--charcoal);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nude);
  white-space: nowrap;
  font-weight: 400;
}
.marquee-track .dot { color: var(--rose); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================
   SHARED SECTION STYLES
========================= */

.section-tag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}

/* =========================
   CATEGORIES
========================= */

.categories {
  background: var(--white);
  padding: 100px 10%;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--blush);
  display: block;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.6s ease;
}
.cat-card:hover img { transform: scale(1.07); }

.cat-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 35, 32, 0.78) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 22px;
}
.cat-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}
.cat-link {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nude);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }

/* =========================
   BEST SELLERS
========================= */

.bestsellers {
  padding: 100px 10%;
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.product-card { cursor: pointer; }

.product-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--blush);
  margin-bottom: 16px;
  position: relative;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 10px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

.product-info { display: flex; flex-direction: column; gap: 4px; }
.product-name { font-size: 13px; letter-spacing: 0.5px; font-weight: 400; color: var(--charcoal); }
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--rose);
}

/* =========================
   ABOUT STRIP
========================= */

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  background: var(--charcoal);
}
.about-img { overflow: hidden; }
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.9);
}
.about-content {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.about-content .section-tag { color: var(--gold); }
.about-content .section-title { color: var(--cream); }
.about-content p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(232, 213, 196, 0.75);
  max-width: 420px;
}

/* =========================
   CUSTOM SECTION
========================= */

.custom-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: var(--blush);
}
.custom-content {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.custom-content .section-tag { color: var(--deep-rose); }
.custom-note {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.custom-img { overflow: hidden; }
.custom-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 7s ease;
}
.custom-img:hover img { transform: scale(1.04); }

/* =========================
   GALLERY
========================= */

.gallery {
  padding: 80px 10%;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85);
  transition: all 0.4s;
  cursor: pointer;
}
.gallery-grid img:hover { filter: saturate(1.1); }
.gallery-grid .g-tall { grid-row: 1 / 3; }

/* =========================
   FOOTER
========================= */

.footer {
  background: var(--charcoal);
  padding: 64px 10% 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--nude);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.8;
  max-width: 260px;
}
.footer-links h4 {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nude);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: var(--warm-gray);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--nude); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom span {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(154, 136, 128, 0.5);
}

/* =========================
   PAGE HERO (INNER PAGES)
========================= */

.page-hero {
  background: var(--charcoal);
  padding: 100px 10% 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,144,128,0.08) 0%, transparent 70%);
}
.page-hero-content { max-width: 600px; }
.page-hero .hero-label { color: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin: 16px 0 20px;
}
.page-hero h1 em { font-style: italic; color: var(--rose); }
.page-hero p {
  font-size: 15px;
  color: rgba(232, 213, 196, 0.7);
  line-height: 1.85;
  max-width: 460px;
}
/* =========================
   FILTER BAR (LASHES)
========================= */

/* =========================
   LASH CATALOG (single page)
========================= */

.lash-catalog {
  padding: 60px 10% 80px;
  background: var(--cream);
}

.filter-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.filter-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 14px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--warm-gray);
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover { color: var(--charcoal); }
.filter-btn.active {
  color: var(--charcoal);
  border-bottom-color: var(--rose);
}

.lash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.lash-card {
  background: var(--white);
  cursor: pointer;
  transition: transform 0.3s;
}
.lash-card:hover { transform: translateY(-4px); }

.lash-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--blush);
}
.lash-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 0.5s ease;
}
.lash-card:hover .lash-img img { transform: scale(1.05); }

.lash-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 35, 32, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.lash-card:hover .lash-overlay { opacity: 1; }

.lash-tier {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  background: rgba(250, 246, 241, 0.88);
  padding: 4px 9px;
  font-family: 'Jost', sans-serif;
}
.lash-tier--dark {
  color: var(--white);
  background: rgba(42, 35, 32, 0.72);
}

.lash-info {
  padding: 14px 15px 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.lash-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.lash-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
}
.lash-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--rose);
  white-space: nowrap;
}
.lash-info p {
  font-size: 12px;
  color: var(--warm-gray);
  line-height: 1.6;
}


/* =========================
   LASH CTA
========================= */

.lash-cta {
  padding: 80px 10%;
  background: var(--charcoal);
}
.cta-box {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cta-box .section-tag { color: var(--gold); }
.cta-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
}
.cta-box p {
  font-size: 14px;
  color: rgba(232, 213, 196, 0.7);
  line-height: 1.85;
}

/* =========================
   HERO ANIMATIONS
========================= */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text-col > * { animation: fadeUp 0.8s ease both; }
.hero-text-col > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text-col > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text-col > *:nth-child(3) { animation-delay: 0.35s; }
.hero-text-col > *:nth-child(4) { animation-delay: 0.5s; }

.page-hero-content > * { animation: fadeUp 0.7s ease both; }
.page-hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.page-hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.page-hero-content > *:nth-child(3) { animation-delay: 0.35s; }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .lash-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .navbar, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-img-col {
    height: 55vw;
    min-height: 280px;
  }
  .hero-text-col { padding: 60px 6% 50px; }
  .hero-img-overlay {
    background: linear-gradient(to bottom, var(--cream) 0%, transparent 25%);
  }
  .hero-scroll { display: none; }

  .categories, .bestsellers { padding: 72px 6%; }
  .lash-catalog { padding: 48px 6% 64px; }
  .lash-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .about-strip, .custom-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-img, .custom-img { height: 300px; }
  .about-content, .custom-content { padding: 60px 6%; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-tall { grid-row: auto; }

  .page-hero { padding: 72px 6% 60px; }
}

@media (max-width: 600px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .lash-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .filter-tabs { overflow-x: auto; }
  .filter-btn { padding: 14px 14px; white-space: nowrap; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
}
