/* ============================================================
   NYANGA CONCEPT — Online Fashion Store
   Clean · Bright · E-Commerce Standard
   ============================================================ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

:root {
  --black:  #0A0A0A;
  --white:  #FFFFFF;
  --cream:  #FFF8F0;
  --light:  #F5F1EB;
  --green:  #1B4332;
  --green2: #2D6A4F;
  --gold:   #C4943A;
  --text:   #1A1A1A;
  --muted:  #6B6B6B;
  --border: #E5E5E5;
  --serif:  'Cormorant Garamond', serif;
  --sans:   'Poppins', sans-serif;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
#nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  height: 68px; display: flex; align-items: center;
  padding: 0 40px;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.nav-inner {
  width: 100%; display: flex;
  align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7); font-weight: 500;
  transition: color .25s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.nav-btn {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; padding: 9px 20px;
  transition: all .25s; border: none; font-family: var(--sans);
}
.nav-btn--shop { background: var(--gold); color: var(--black); }
.nav-btn--shop:hover { background: #DDB060; }
.nav-btn--wa { background: #25D366; color: white; }
.nav-btn--wa:hover { background: #1eb85a; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: white; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; background: var(--black); z-index: 200;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--serif); font-size: 36px; color: white;
  opacity: 0; transform: translateY(12px);
  transition: all .35s;
}
.mobile-nav.open a { opacity: 1; transform: none; }
.mobile-nav.open a:nth-child(2){transition-delay:.05s}
.mobile-nav.open a:nth-child(3){transition-delay:.1s}
.mobile-nav.open a:nth-child(4){transition-delay:.15s}
.mobile-nav.open a:nth-child(5){transition-delay:.2s}
.mobile-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: rgba(255,255,255,.6); font-size: 24px; }

/* ── HERO ── */
.hero {
  position: relative; height: 88vh; min-height: 580px;
  display: flex; align-items: center; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.72) 0%, rgba(10,10,10,.2) 60%, rgba(10,10,10,0) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 60px; max-width: 640px;
}
.hero__logo { height: 90px; width: auto; margin-bottom: 16px; }
.hero__tag {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 12px;
}
.hero__title {
  font-family: var(--serif); font-size: clamp(40px,6vw,72px);
  font-weight: 600; line-height: 1.05; color: white; margin-bottom: 16px;
}
.hero__title em { font-style: italic; color: var(--gold); }
.hero__sub { font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 32px; line-height: 1.7; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  font-family: var(--sans); border: none; transition: all .3s;
}
.btn--green { background: var(--green); color: white; }
.btn--green:hover { background: var(--green2); }
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: #DDB060; }
.btn--outline-dark { border: 2px solid var(--black); color: var(--black); background: transparent; }
.btn--outline-dark:hover { background: var(--black); color: white; }
.btn--outline-white { border: 2px solid white; color: white; background: transparent; }
.btn--outline-white:hover { background: white; color: var(--black); }
.btn--wa { background: #25D366; color: white; }
.btn--wa:hover { background: #1eb85a; }

/* ── MARQUEE ── */
.marquee {
  background: var(--green); overflow: hidden; padding: 12px 0;
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__item {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.85); padding: 0 28px; font-weight: 500; white-space: nowrap;
}
.marquee__dot { color: var(--gold); padding: 0 6px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── LAYOUT ── */
.section { padding: 80px 40px; }
.section--cream { background: var(--cream); }
.section--light { background: var(--light); }
.section--black { background: var(--black); color: white; }
.container { max-width: 1360px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 8px; display: block;
}
.section-title {
  font-family: var(--serif); font-size: clamp(28px,4vw,48px);
  font-weight: 500; line-height: 1.15; color: var(--text);
}
.section-title--white { color: white; }
.section-sub { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--light); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 20px 40px;
}
.trust-strip__inner {
  max-width: 1360px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500; color: var(--text);
}
.trust-item span { font-size: 20px; }

/* ── CATEGORY CARDS ── */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.cat-card { position: relative; overflow: hidden; border-radius: 4px; }
.cat-card__img { aspect-ratio: 2/3; overflow: hidden; }
.cat-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.cat-card:hover .cat-card__img img { transform: scale(1.05); }
.cat-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(transparent, rgba(10,10,10,.75));
  text-align: center;
}
.cat-card__label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.cat-card__name { font-family: var(--serif); font-size: 22px; color: white; font-weight: 500; line-height: 1.2; }
.cat-card__count { font-size: 11px; color: rgba(255,255,255,.65); margin-top: 4px; }

/* ── PRODUCT GRID ── */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-grid--4 { grid-template-columns: repeat(4,1fr); }

.product-card { background: white; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.product-card__img { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: white;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; padding: 4px 10px;
}
.product-card__badge--new { background: var(--gold); color: var(--black); }
.product-card__badge--bridal { background: #8B1A4A; }
.product-card__quick {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--green); color: white;
  text-align: center; padding: 12px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  transform: translateY(100%); transition: transform .35s var(--ease);
}
.product-card:hover .product-card__quick { transform: translateY(0); }
.product-card__body { padding: 14px 16px 18px; }
.product-card__cat { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.product-card__name { font-family: var(--serif); font-size: 18px; color: var(--text); margin: 4px 0 6px; font-weight: 500; }
.product-card__price { font-size: 14px; font-weight: 600; color: var(--green); }
.product-card__price-note { font-size: 11px; color: var(--muted); margin-top: 2px; }
.product-card__buy {
  display: block; width: 100%; margin-top: 12px;
  background: #25D366; color: white; text-align: center;
  padding: 10px; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600;
  transition: background .25s; border: none; font-family: var(--sans);
}
.product-card__buy:hover { background: #1eb85a; }

/* ── PROMO SPLIT ── */
.promo-split { display: grid; grid-template-columns: 1fr 1fr; }
.promo-split__img { overflow: hidden; min-height: 500px; }
.promo-split__img img { width: 100%; height: 100%; object-fit: cover; }
.promo-split__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 70px 64px; background: var(--cream);
}
.promo-split__text .section-tag { text-align: left; }
.promo-split__text h2 {
  font-family: var(--serif); font-size: clamp(28px,3.5vw,48px);
  font-weight: 500; line-height: 1.1; margin: 8px 0 16px;
}
.promo-split__text p { color: var(--muted); font-size: 14px; line-height: 1.9; margin-bottom: 12px; }
.promo-split__text strong { color: var(--text); }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 40px; overflow-x: auto; }
.filter-btn {
  padding: 12px 24px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); background: none; border: none; font-family: var(--sans);
  font-weight: 600; white-space: nowrap; position: relative; transition: color .25s;
}
.filter-btn::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--green); transform: scaleX(0); transition: transform .25s;
}
.filter-btn.active { color: var(--green); }
.filter-btn.active::after, .filter-btn:hover::after { transform: scaleX(1); }
.filter-btn:hover { color: var(--green); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--black); padding: 80px 40px 60px;
  text-align: center; margin-top: 0;
}
.page-hero__title { font-family: var(--serif); font-size: clamp(36px,6vw,72px); font-weight: 500; color: white; }
.page-hero__sub { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: 12px; }

/* ── CONTACT ── */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; }
.contact-split__img { overflow: hidden; min-height: 600px; }
.contact-split__img img { width: 100%; height: 100%; object-fit: cover; }
.contact-split__form { display: flex; flex-direction: column; justify-content: center; padding: 64px 56px; background: var(--light); }
.contact-split__form h2 { font-family: var(--serif); font-size: clamp(28px,3vw,44px); font-weight: 500; margin: 8px 0 6px; }
.contact-split__form > p { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--green); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: white; border: 1px solid var(--border);
  color: var(--text); padding: 11px 14px;
  font-size: 14px; font-family: var(--sans); outline: none;
  transition: border-color .25s; border-radius: 2px;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: none; height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #AAAAAA; }
.form-group select { color: var(--muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── ABOUT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }
.about-split__img { overflow: hidden; min-height: 520px; }
.about-split__img img { width: 100%; height: 100%; object-fit: cover; }
.about-split__text { display: flex; flex-direction: column; justify-content: center; padding: 72px 64px; background: var(--white); }
.about-split__text h1 { font-family: var(--serif); font-size: clamp(32px,4vw,56px); font-weight: 500; line-height: 1.1; margin: 8px 0 20px; }
.about-split__text p { color: var(--muted); font-size: 14px; line-height: 1.9; margin-bottom: 14px; }
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); background: var(--green); }
.stat-box { padding: 40px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,.15); }
.stat-box:last-child { border-right: none; }
.stat-box__n { font-family: var(--serif); font-size: 52px; font-weight: 400; color: var(--gold); line-height: 1; }
.stat-box__l { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 500; margin-top: 6px; }

/* ── INSTAGRAM ── */
.insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 4px; }
.insta-item { position: relative; aspect-ratio: 1; overflow: hidden; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-item:hover img { transform: scale(1.06); }
.insta-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay span { font-size: 20px; }

/* ── NEWSLETTER ── */
.newsletter { text-align: center; padding: 80px 40px; background: var(--black); }
.newsletter h3 { font-family: var(--serif); font-size: clamp(24px,3vw,40px); color: white; font-weight: 400; margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,.55); font-size: 13px; margin-bottom: 32px; }
.nl-form { display: flex; max-width: 420px; margin: 0 auto; }
.nl-form input {
  flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-right: none; color: white; padding: 13px 18px;
  font-size: 13px; font-family: var(--sans); outline: none;
}
.nl-form input::placeholder { color: rgba(255,255,255,.35); }
.nl-form button {
  background: var(--gold); color: var(--black); border: none;
  padding: 13px 24px; font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; font-weight: 600; font-family: var(--sans);
  transition: background .25s;
}
.nl-form button:hover { background: #DDB060; }

/* ── INFO CARDS (contact page) ── */
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.info-card { background: var(--light); padding: 40px 32px; border-top: 3px solid var(--gold); }
.info-card h4 { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.info-card p, .info-card a { font-size: 14px; color: var(--muted); line-height: 1.8; display: block; transition: color .2s; }
.info-card a:hover { color: var(--green); }
.info-card strong { color: var(--text); font-weight: 600; }

/* ── FOOTER ── */
footer { background: var(--black); padding: 64px 40px 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo img { height: 48px; width: auto; margin-bottom: 10px; }
.footer-tagline { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.6); transition: all .25s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.footer-col a, .footer-col p { font-size: 13px; color: rgba(255,255,255,.5); display: block; margin-bottom: 8px; transition: color .2s; line-height: 1.6; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 11px; letter-spacing: .06em; color: rgba(255,255,255,.3); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 4px 18px rgba(37,211,102,.4); transition: transform .3s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid--4 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .insta-grid { grid-template-columns: repeat(3,1fr); }
  .info-cards { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .promo-split, .contact-split, .about-split { grid-template-columns: 1fr; }
  .promo-split__img, .contact-split__img, .about-split__img { min-height: 320px; }
  .promo-split__text, .contact-split__form, .about-split__text { padding: 48px 28px; }
  .stats-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 768px) {
  #nav { padding: 0 20px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero__content { padding: 0 24px; }
  .hero__logo { height: 64px; }
  .section { padding: 56px 20px; }
  .trust-strip { padding: 16px 20px; }
  .filter-bar { margin-bottom: 28px; }
  footer { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .newsletter { padding: 56px 20px; }
  .nl-form { flex-direction: column; }
  .nl-form input { border-right: 1px solid rgba(255,255,255,.2); }
  .nl-form button { padding: 13px; }
  .page-hero { padding: 64px 20px 44px; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (max-width: 480px) {
  .hero { height: 75vh; min-height: 520px; }
  .hero__title { font-size: 36px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card__body { padding: 10px 12px 14px; }
  .product-card__name { font-size: 15px; }
}
