/* ===========================
   XULUPATHY — SHARED STYLES v7
   Palette: Sky Blue / Deep Navy / White
   Matches product image backgrounds exactly
   =========================== */

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

/* ---- TOKENS ---- */
:root {
  /* Blues — sampled directly from product images */
  --sky:         #B7E8FF;   /* product image bg corner */
  --sky-light:   #E0F5FF;   /* lighter wash */
  --sky-pale:    #F0FAFF;   /* almost white blue — page bg */
  --sky-mid:     #CCEDFF;   /* product image top-center */
  --sky-deep:    #7DCFEF;   /* richer accent */

  /* Navy — primary UI colour */
  --navy:        #0E3A5C;   /* dark navy for headers, CTAs */
  --navy-mid:    #1A5C8A;   /* hover state */
  --navy-light:  #E8F4FB;   /* tinted backgrounds */

  /* Teal — secondary accent */
  --teal:        #1A7F9E;
  --teal-light:  #D4EFF7;

  /* Coral — kept for eyebrows & small accents only */
  --coral:       #C8473A;
  --coral-light: #FAEAE9;

  /* Rose — CTA buttons (warmer contrast on blue) */
  --rose:        #A0455B;
  --rose-hover:  #8a3a4d;

  /* Neutrals */
  --white:       #FFFFFF;
  --surface:     #FFFFFF;
  --bg:          #F5FBFF;   /* page background — barely blue */
  --bg-alt:      #EBF6FF;   /* alternate sections */
  --border:      #D4EEFA;   /* subtle blue-tinted border */
  --charcoal:    #0D1B2A;   /* deep navy-black text */
  --mid:         #3A5A72;   /* body text */
  --soft:        #6B8FAA;   /* muted text */
  --dark-section:#0E3A5C;   /* replaces green on dark sections */

  --font:        'Plus Jakarta Sans', sans-serif;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-pill: 50px;
  --shadow-sm:   0 2px 12px rgba(14,58,92,0.07);
  --shadow-md:   0 8px 32px rgba(14,58,92,0.11);
  --shadow-lg:   0 20px 60px rgba(14,58,92,0.15);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-tall:    96px;
  --nav-short:   64px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-short); font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ---- TYPOGRAPHY ---- */
.xp-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.xp-h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.xp-h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
.xp-h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
.xp-lead { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 400; line-height: 1.75; color: var(--mid); }
.xp-small { font-size: 0.85rem; color: var(--soft); }

/* ---- LAYOUT ---- */
.xp-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.xp-section { padding: 80px 0; }
.xp-section-sm { padding: 48px 0; }

/* =========================================
   NAV v2 — Aura-style (logo left, ham right)
   ========================================= */
.xp-nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.xp-nav.scrolled { box-shadow: 0 2px 20px rgba(14,58,92,0.08); }
.xp-nav-in {
  height: var(--nav-tall);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height var(--transition);
}
.xp-nav.scrolled .xp-nav-in { height: var(--nav-short); }
/* Logo */
.xp-nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.xp-nav-logo-mark svg { width: 36px; height: 36px; transition: all var(--transition); }
.xp-nav.scrolled .xp-nav-logo-mark svg { width: 28px; height: 28px; }
.xp-nav-logo-text {
  display: flex; flex-direction: column;
  justify-content: center; gap: 2px; line-height: 1;
}
.xp-nav-logo-name {
  font-size: 1.25rem; font-weight: 800;
  color: var(--navy); letter-spacing: -0.01em;
  transition: font-size var(--transition);
}
.xp-nav.scrolled .xp-nav-logo-name { font-size: 1.1rem; }
.xp-nav-logo-sub {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--soft); white-space: nowrap;
}
/* Right group */
.xp-nav-r { display: flex; align-items: center; gap: 8px; }
.xp-nav-links {
  display: flex; align-items: center;
  gap: 28px; list-style: none; margin-right: 16px;
}
.xp-nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--mid); transition: color var(--transition);
  position: relative; text-decoration: none;
}
.xp-nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--teal); border-radius: 2px;
  transition: width var(--transition);
}
.xp-nav-links a:hover,
.xp-nav-links a.active { color: var(--navy); }
.xp-nav-links a:hover::after,
.xp-nav-links a.active::after { width: 100%; }
.xp-nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.xp-nav-cta:hover { background: var(--navy-mid); transform: translateY(-1px); }
/* Hamburger */
.xp-nav-ham {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--charcoal);
  padding: 6px; line-height: 0;
}
/* Mobile nav panel */
.xp-mnav {
  position: fixed; inset: 0; z-index: 400;
  pointer-events: none;
}
.xp-mnav-bg {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0; transition: opacity 0.3s;
}
.xp-mnav-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 280px; background: #fff;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.32,0.72,0,1);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: -8px 0 40px rgba(14,58,92,0.12);
}
.xp-mnav.open { pointer-events: all; }
.xp-mnav.open .xp-mnav-bg { opacity: 1; }
.xp-mnav.open .xp-mnav-panel { transform: none; }
.xp-mnav-x {
  align-self: flex-end; background: var(--bg-alt);
  border: none; width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer;
  font-size: 15px; color: var(--mid);
  margin-bottom: 20px; line-height: 1;
}
.xp-mnav-lnk {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 600;
  color: var(--charcoal); display: block;
  text-decoration: none;
  transition: color var(--transition);
}
.xp-mnav-lnk:hover,
.xp-mnav-lnk--active { color: var(--navy); }
.xp-mnav-cta {
  margin-top: 20px;
  display: block; text-align: center;
  background: var(--navy); color: #fff;
  padding: 14px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--transition);
}
.xp-mnav-cta:hover { background: var(--navy-mid); }
@media (max-width: 768px) {
  :root { --nav-tall: 68px; --nav-short: 60px; }
  .xp-nav-links { display: none; }
  .xp-nav-cta { display: none; }
  .xp-nav-ham { display: block; }
}

/* ---- BUTTONS ---- */
.xp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition);
  cursor: pointer;
}
.xp-btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14,58,92,0.25);
}
.xp-btn--primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.xp-btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.xp-btn--outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.xp-btn--rose {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(160,69,91,0.25);
}
.xp-btn--rose:hover { background: var(--rose-hover); transform: translateY(-2px); }
.xp-btn--coral { background: var(--rose); color: var(--white); }
.xp-btn--coral:hover { background: var(--rose-hover); transform: translateY(-2px); }
.xp-btn--white { background: var(--white); color: var(--navy); font-weight: 700; }
.xp-btn--white:hover { background: var(--sky-light); transform: translateY(-2px); }
.xp-btn--outline-white { border: 2px solid rgba(255,255,255,0.55); color: var(--white); }
.xp-btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }

/* ---- TRUST STRIP ---- */
.xp-trust {
  background: var(--navy);
  padding: 13px 0;
  overflow: hidden;
}
.xp-trust__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: xpMarquee 32s linear infinite;
}
.xp-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.xp-trust__dot { width: 5px; height: 5px; background: var(--sky-deep); border-radius: 50%; flex-shrink: 0; }
@keyframes xpMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- CTA STRIP (shared across all pages) ---- */
.xp-cta-strip {
  background: linear-gradient(135deg, #081e30 0%, var(--navy) 55%, #1A5C8A 100%);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.xp-cta-strip::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 160px;
  border-radius: 50%;
  background: rgba(183,232,255,0.08);
}
.xp-cta-strip__eyebrow { color: rgba(255,255,255,0.55) !important; margin-bottom: 16px; }
.xp-cta-strip h2 { color: var(--white); margin-bottom: 16px; }
.xp-cta-strip p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ---- COLLECTION SECTION HEADING ---- */
.xp-section-heading {
  margin: 56px 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.xp-section-heading:first-of-type { margin-top: 0; }
.xp-section-heading__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.xp-section-heading__text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.xp-section-heading__count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--soft);
  font-weight: 500;
}

/* ---- FOOTER ---- */
.xp-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.xp-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.xp-footer__brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.xp-footer__brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.xp-footer__desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.xp-footer__socials { display: flex; gap: 12px; }
.xp-footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}
.xp-footer__social:hover { border-color: var(--sky); color: var(--sky); }
.xp-footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.xp-footer__links { display: flex; flex-direction: column; gap: 10px; }
.xp-footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.xp-footer__links a:hover { color: var(--sky); }
.xp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.xp-footer__bottom a { color: rgba(255,255,255,0.3); text-decoration: underline; transition: color var(--transition); }
.xp-footer__bottom a:hover { color: rgba(255,255,255,0.65); }

/* ---- PAGE HEADER ---- */
.xp-page-header {
  background: linear-gradient(135deg, #081e30 0%, var(--navy) 100%);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.xp-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='30' cy='30' r='20' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/g%3E%3C/svg%3E");
}
.xp-page-header__eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.xp-page-header h1 { color: var(--white); margin-bottom: 16px; }
.xp-page-header p { color: rgba(255,255,255,0.75); max-width: 560px; font-size: 1.05rem; line-height: 1.7; }

/* ---- REVEAL ---- */
.xp-reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.xp-reveal.xp-reveal--init { opacity: 0; transform: translateY(28px); }
.xp-reveal.visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ---- IMAGE PLACEHOLDERS ---- */
.xp-product-card__img,
.xp-shop-card__img {
  background: linear-gradient(145deg, var(--sky-mid) 0%, var(--sky-pale) 100%);
  position: relative;
}
.xp-product-card__img::after,
.xp-shop-card__img::after {
  content: '🌿';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 2rem;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.xp-product-card__img img,
.xp-shop-card__img img { position: relative; z-index: 1; }
.xp-img-bordered { border-bottom: 1px solid var(--border); }

/* ---- WHATSAPP FAB ---- */
.xp-wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
}
.xp-wa-fab__btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: transform var(--transition);
  position: relative;
}
.xp-wa-fab__btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,0.2);
  animation: xpWaPulse 2.2s ease-out infinite;
}
@keyframes xpWaPulse {
  0%   { transform: scale(0.9); opacity: 0.7; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}
.xp-wa-fab__btn:hover { transform: scale(1.08); }
.xp-wa-fab__btn svg { width: 30px; height: 30px; fill: white; position: relative; z-index: 1; }
.xp-wa-bubble {
  position: absolute;
  bottom: 74px; right: 0;
  background: var(--white);
  border-radius: 16px 16px 4px 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  width: 280px;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.xp-wa-bubble.open { display: flex; }
.xp-wa-bubble__head {
  background: #075E54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.xp-wa-bubble__head-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.xp-wa-bubble__head-name { font-size: 0.88rem; font-weight: 700; color: #fff; }
.xp-wa-bubble__head-status { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.xp-wa-close {
  margin-left: auto;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}
.xp-wa-bubble__body {
  padding: 12px;
  background: #ECE5DD;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.xp-wa-bubble__msg {
  background: var(--white);
  border-radius: 0 10px 10px 10px;
  padding: 10px 14px;
  font-size: 0.84rem;
  color: var(--charcoal);
  line-height: 1.55;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  max-width: 90%;
}
.xp-wa-bubble__options { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.xp-wa-bubble__option {
  display: block;
  padding: 9px 14px;
  border-radius: 20px;
  background: var(--white);
  color: #075E54;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid rgba(7,94,84,0.25);
  transition: all var(--transition);
  cursor: pointer;
  text-align: left;
}
.xp-wa-bubble__option:hover { background: #075E54; color: var(--white); border-color: #075E54; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  :root { --nav-tall: 72px; --nav-short: 60px; }
  .xp-nav__links { display: none; }
  .xp-nav__hamburger { display: flex; }
  /* Mobile nav: logo far-left, hamburger far-right */
  .xp-nav__inner { justify-content: space-between; width: 100%; display: flex; align-items: center; }
  .xp-nav__logo { flex: 0 0 auto; margin-right: 0; }
  .xp-nav__hamburger { flex: 0 0 auto; margin-left: auto; }
  /* Hamburger → X animation */
  .xp-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .xp-nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .xp-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .xp-section { padding: 56px 0; }
  .xp-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .cf-turnstile { transform-origin: left center; transform: scale(0.78); margin-bottom: -12px; }
}
@media (max-width: 480px) {
  .xp-footer__grid { grid-template-columns: 1fr; }
  .xp-footer__bottom { flex-direction: column; text-align: center; }
}
