/* ══════════════════════════════════════════
   INIYE — Shared Stylesheet
   ══════════════════════════════════════════ */

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

/* ── TOKENS ── */
:root {
  --plum:          #3B1050;
  --plum-mid:      #6B2D8B;
  --plum-light:    #9B59BA;
  --lavender:      #D4B0E8;
  --lavender-soft: #EAD9F5;
  --blush:         #F5E6F8;
  --cream:         #FDF8FF;
  --rose-accent:   #E8B4CC;
  --dark:          #1A0A22;
  --text-muted:    #7A5A8A;
  --white:         #ffffff;
  --radius-lg:     2rem;
  --radius-xl:     3rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(253,248,255,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(180,120,210,0.15);
}
.nav-logo img { height: 42px; width: auto; object-fit: contain; display: block; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 400; letter-spacing: 0.06em;
  color: var(--plum-mid); text-decoration: none; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--plum); }
.nav-links a.active { border-bottom: 2px solid var(--plum-light); padding-bottom: 2px; }
.nav-cta {
  background: var(--plum); color: var(--white);
  padding: 0.6rem 1.5rem; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--plum-mid); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--plum); border-radius: 2px; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu img { height: 50px; width: auto; object-fit: contain; margin-bottom: 0.5rem; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 300;
  color: var(--plum); text-decoration: none;
}
.mobile-menu .close-btn {
  position: absolute; top: 1.5rem; right: 5%;
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; color: var(--plum-mid);
}

/* ── SECTION BASE ── */
section { padding: 6rem 5%; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--plum-light);
  margin-bottom: 0.8rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2; color: var(--dark);
}
.section-title em { font-style: italic; color: var(--plum-mid); }
.section-sub {
  font-size: 1rem; font-weight: 300; color: var(--text-muted);
  line-height: 1.75; max-width: 500px; margin-top: 1rem;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--plum); color: var(--white);
  padding: 0.9rem 2.2rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--plum-mid); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--plum-light); color: var(--plum);
  padding: 0.9rem 2.2rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: var(--lavender-soft); transform: translateY(-2px); }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--plum); padding: 1rem 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-item {
  flex-shrink: 0; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--lavender); padding: 0 2.5rem;
}
.marquee-dot { color: var(--plum-light); font-size: 0.5rem; align-self: center; display: inline-block; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(107,45,139,0.18); }
.product-img {
  height: 280px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img-1 { background: linear-gradient(160deg,#E8D0F5,#C090DC); }
.product-img-2 { background: linear-gradient(160deg,#D8B8EE,#9B59BA); }
.product-img-3 { background: linear-gradient(160deg,#F0E0FA,#D4A0E0); }
.product-img-4 { background: linear-gradient(160deg,#E0C8F0,#B070C8); }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.9); color: var(--plum);
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 100px;
}
.product-body { padding: 1.5rem; }
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--dark); margin-bottom: 0.4rem;
}
.product-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--plum);
}
.product-add {
  background: var(--plum); color: var(--white);
  border: none; padding: 0.55rem 1.2rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s, transform 0.15s; font-family: 'DM Sans', sans-serif;
}
.product-add:hover { background: var(--plum-mid); transform: scale(1.03); }

/* ── CTA BAND ── */
.cta-section {
  background: linear-gradient(135deg,#5A1875,#8B4FB5);
  text-align: center; padding: 6rem 5%; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%); width: 600px; height: 600px;
  border-radius: 50%; background: rgba(255,255,255,0.04);
}
.cta-section .section-eyebrow { color: var(--rose-accent); }
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem,4vw,3.5rem); font-weight: 300; color: var(--white);
  margin-bottom: 1.2rem; position: relative; z-index: 1;
}
.cta-section h2 em { font-style: italic; }
.cta-sub { font-size: 1rem; color: var(--lavender); margin-bottom: 2.5rem; position: relative; z-index: 1; }
.cta-form {
  display: flex; gap: 0.8rem; max-width: 440px;
  margin: 0 auto; position: relative; z-index: 1;
  flex-wrap: wrap; justify-content: center;
}
.cta-input {
  flex: 1; min-width: 220px; padding: 0.85rem 1.4rem; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.25); outline: none;
  background: rgba(255,255,255,0.15); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; backdrop-filter: blur(8px);
}
.cta-input::placeholder { color: rgba(255,255,255,0.55); }
.cta-input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.2); }
.cta-btn {
  background: var(--white); color: var(--plum); padding: 0.85rem 1.8rem;
  border-radius: 100px; font-size: 0.88rem; font-weight: 500; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: transform 0.15s, opacity 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); opacity: 0.92; }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 4rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 44px; width: auto; object-fit: contain; margin-bottom: 1rem; filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(240deg) brightness(1.8); }
.footer-brand p { font-size: 0.85rem; color: rgba(212,176,232,0.55); line-height: 1.75; max-width: 260px; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--lavender); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(212,176,232,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--lavender); }
.footer-bottom {
  border-top: 1px solid rgba(212,176,232,0.1); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(212,176,232,0.35); }
.footer-socials { display: flex; gap: 1rem; }
.social-link {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(212,176,232,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(212,176,232,0.5); font-size: 0.8rem; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--lavender); color: var(--lavender); }

/* ── PAGE HERO BANNER (inner pages) ── */
.page-banner {
  min-height: 42vh; display: flex; align-items: center;
  padding: 10rem 5% 5rem;
  background: linear-gradient(135deg, var(--blush) 0%, var(--lavender-soft) 100%);
  position: relative; overflow: hidden;
}
.page-banner::after {
  content: ''; position: absolute; right: -5%; top: -20%;
  width: 50vw; height: 100%;
  background: radial-gradient(ellipse,rgba(180,100,220,0.18),transparent 70%);
  border-radius: 50%;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.15; color: var(--dark);
}
.page-banner h1 em { font-style: italic; color: var(--plum-mid); }
.page-banner p { font-size: 1rem; color: var(--text-muted); max-width: 480px; margin-top: 1rem; line-height: 1.75; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 580px) {
  section { padding: 4rem 5%; }
  .footer-grid { grid-template-columns: 1fr; }
}
