/* ── FEEMINA SHARED NAV + FOOTER ── */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
  --pink: #ED7C9E; --pink-dark: #C85C80; --pink-light: #FDF0F4;
  --pink-mid: #F5C8D8; --cream: #FDF8F5; --dark: #1E2A32; --mid: #7A6872;
  --border: rgba(237,124,158,0.15); --shadow: 0 2px 8px rgba(0,0,0,0.04), 0 16px 48px rgba(0,0,0,0.08);
}

/* NAV */
#feemina-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(253,248,245,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  font-family: 'Manrope', system-ui, sans-serif;
}
.nav-logo img { height: 40px; display: block; }
.nav-logo-text { font-size: 1.5rem; font-weight: 900; color: var(--pink); display: none; }
.nav-center { display: flex; align-items: center; gap: 0.2rem; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0.5rem 0.9rem; border-radius: 10px;
  font-size: 0.84rem; font-weight: 600; color: var(--mid);
  transition: all 0.18s; white-space: nowrap; cursor: pointer;
  background: none; border: none; font-family: 'Manrope', sans-serif;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--dark); background: rgba(237,124,158,0.08); }
.nav-link.active { color: var(--pink); }
.nav-link svg { transition: transform 0.2s; flex-shrink: 0; }
.nav-item { position: relative; }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* DROPDOWN — top:100% + padding-top = no gap, mouse stays in hit area */
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  /* padding-top creates invisible bridge — gap between toggle and box is covered */
  padding-top: 12px;
  min-width: 260px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s;
  z-index: 300;
}
.nav-dropdown-inner {
  background: white; border: 1px solid var(--border);
  border-radius: 18px; padding: 0.6rem;
  box-shadow: 0 8px 40px rgba(30,42,50,0.12);
}
.nav-dropdown.open {
  opacity: 1; pointer-events: all;
}

.nav-dropdown a, .nav-dropdown-inner a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 0.85rem; border-radius: 12px;
  font-size: 0.85rem; color: var(--dark);
  text-decoration: none; transition: background 0.15s, color 0.15s;
  font-family: 'Manrope', sans-serif;
}
.nav-dropdown a:hover, .nav-dropdown-inner a:hover { background: var(--pink-light); color: var(--pink-dark); }
.nav-dropdown a:hover .d-sub, .nav-dropdown-inner a:hover .d-sub { color: var(--pink-dark); opacity: 0.7; }
.d-ico { font-size: 1.1rem; flex-shrink: 0; width: 28px; text-align: center; }
.d-label { font-weight: 700; font-size: 0.83rem; }
.d-sub { font-size: 0.72rem; color: var(--mid); margin-top: 1px; }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 0.4rem 0.5rem; }

/* NAV RIGHT */
.nav-right { display: flex; align-items: center; gap: 0.8rem; }
.nav-phone {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--pink); color: white;
  padding: 0.62rem 1.4rem; border-radius: 100px;
  font-weight: 700; font-size: 0.85rem;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(237,124,158,0.35);
  white-space: nowrap; text-decoration: none;
  font-family: 'Manrope', sans-serif;
}
.nav-phone:hover { background: var(--pink-dark); transform: translateY(-1px); }

/* BURGER */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
#feemina-mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(253,248,245,0.99); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 5% 1.5rem; z-index: 199;
  flex-direction: column; gap: 0.2rem;
  max-height: calc(100vh - 68px); overflow-y: auto;
  font-family: 'Manrope', sans-serif;
}
#feemina-mobile-nav.open { display: flex; }
.nav-mobile-link {
  padding: 0.75rem 1rem; border-radius: 12px;
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
  transition: background 0.15s; text-decoration: none; display: block;
}
.nav-mobile-link:hover { background: var(--pink-light); color: var(--pink-dark); }
.nav-mobile-section {
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--mid); padding: 1rem 1rem 0.3rem;
}

/* FOOTER */
#feemina-footer {
  background: #1A1218; color: rgba(255,255,255,0.3);
  padding: 2.5rem 5% 1.8rem;
  font-family: 'Manrope', system-ui, sans-serif;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.5rem;
}
.footer-brand img { height: 32px; opacity: 0.6; margin-bottom: 1rem; }
.footer-brand-text { font-size: 1.4rem; font-weight: 900; color: rgba(255,255,255,0.4); margin-bottom: 1rem; display: none; }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.25); max-width: 220px; }
.footer-col-title { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.3); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; font-size: 0.78rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-center { display: none; }
  .nav-burger { display: flex; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 0.62rem 1rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  #feemina-nav { padding: 0 4%; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 2rem); max-width: 780px;
  background: white; border-radius: 20px;
  border: 1px solid rgba(237,124,158,0.2);
  box-shadow: 0 12px 48px rgba(30,42,50,0.18);
  animation: cookieSlideUp 0.4s ease;
}
#cookie-banner.cookie-hide {
  animation: cookieSlideDown 0.4s ease forwards;
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes cookieSlideDown {
  from { opacity: 1; transform: translateX(-50%) translateY(0); }
  to   { opacity: 0; transform: translateX(-50%) translateY(24px); }
}
#cookie-inner {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.3rem 1.6rem; flex-wrap: wrap;
}
#cookie-text {
  font-size: 0.84rem; color: var(--mid); line-height: 1.6;
  flex: 1; min-width: 220px;
}
#cookie-text strong { color: var(--dark); font-weight: 800; }
#cookie-text a { color: var(--pink); text-decoration: underline; }
#cookie-btns { display: flex; gap: 0.7rem; flex-shrink: 0; }
#cookie-accept {
  background: var(--pink); color: white;
  border: none; border-radius: 100px;
  padding: 0.65rem 1.4rem; font-size: 0.84rem;
  font-weight: 700; cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: background 0.2s;
  white-space: nowrap;
}
#cookie-accept:hover { background: var(--pink-dark); }
#cookie-decline {
  background: transparent; color: var(--mid);
  border: 1px solid rgba(122,104,114,0.25);
  border-radius: 100px; padding: 0.65rem 1.4rem;
  font-size: 0.84rem; font-weight: 600; cursor: pointer;
  font-family: 'Manrope', sans-serif;
  transition: all 0.2s; white-space: nowrap;
}
#cookie-decline:hover { border-color: var(--pink); color: var(--pink); }
@media (max-width: 600px) {
  #cookie-inner { flex-direction: column; gap: 1rem; padding: 1.2rem; }
  #cookie-btns { width: 100%; }
  #cookie-accept, #cookie-decline { flex: 1; text-align: center; }
}
