/* ============================================================
   FLUFFEE.COMPANY — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --blue-deep: #0a2540;
  --blue-mid:  #1a4a8a;
  --blue-light: #2d72d2;
  --blue-pale: #e8f0fc;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --black: #0d0d0d;
  --grey-light: #e4e8ef;
  --grey-mid: #8a9ab5;
  --accent: #2d72d2;
  --text-body: #1e2d40;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(10,37,64,0.10);
  --shadow-lg: 0 12px 48px rgba(10,37,64,0.18);
  --max-width: 1200px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-light); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- TYPOGRAPHY ---- */
h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; color: var(--blue-deep); }
h3 { font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 600; line-height: 1.35; color: var(--blue-deep); }
h4 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--blue-mid); }
p { margin-bottom: 1em; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.section-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 12px; }
.section-intro { max-width: 680px; color: var(--grey-mid); font-size: 1rem; margin-top: 12px; }

/* ---- NAV ---- */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 0;
}
#site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,37,64,0.10);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 20px 24px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--white); letter-spacing: -0.02em; transition: color 0.3s;
}
#site-nav.scrolled .nav-logo { color: var(--blue-deep); }
.nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
#site-nav.scrolled .nav-links a { color: var(--text-body); }
.nav-links a:hover { color: var(--white); text-decoration: none; }
#site-nav.scrolled .nav-links a:hover { color: var(--blue-light); }
.nav-cta {
  background: var(--blue-light); color: var(--white) !important;
  padding: 10px 22px; border-radius: 6px; font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-deep) !important; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
#site-nav.scrolled .hamburger span { background: var(--blue-deep); }

/* Mobile overlay nav */
#mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--blue-deep);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 700;
  color: var(--white); padding: 16px 0; text-align: center; width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
#mobile-nav a:hover { color: var(--blue-light); text-decoration: none; }
.mobile-close {
  position: absolute; top: 24px; right: 24px; background: none; border: none;
  color: var(--white); font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  overflow: hidden; background: var(--blue-deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,0.92) 0%, rgba(26,74,138,0.70) 50%, rgba(10,37,64,0.40) 100%);
  z-index: 1;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
  filter: brightness(0.9);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto; padding: 120px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px; border-radius: 40px; font-size: 0.8rem; font-weight: 500;
  color: rgba(255,255,255,0.9); margin-bottom: 28px; backdrop-filter: blur(8px);
}
.hero-heading {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: 1.12; margin-bottom: 20px; color: var(--white);
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: var(--white); color: var(--blue-deep);
  padding: 15px 32px; border-radius: 8px; font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.03em; transition: transform 0.2s, box-shadow 0.2s;
  min-height: 52px; display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); text-decoration: none; color: var(--blue-deep); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.5); color: var(--white);
  padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  min-height: 52px; transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); text-decoration: none; color: var(--white); }
.hero-image-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  border: 4px solid rgba(255,255,255,0.15);
  width: 100%; max-width: 420px;
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { }
.hero-stat strong { display: block; font-size: 1.8rem; font-weight: 700; color: var(--white); font-family: var(--font-display); }
.hero-stat span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }

/* ---- STICKY CTA ---- */
#sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  background: var(--blue-light); color: var(--white);
  padding: 14px 24px; border-radius: 40px; font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(45,114,210,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  display: none;
}
#sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(45,114,210,0.55); text-decoration: none; color: var(--white); }
#sticky-cta.visible { display: block; }

/* ---- SHOP BY COUNTRY ---- */
#shop { background: var(--off-white); }
.search-wrap { margin: 32px 0 40px; position: relative; max-width: 500px; }
.search-wrap svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--grey-mid); width: 20px; height: 20px; }
#country-search {
  width: 100%; padding: 14px 16px 14px 48px; border: 2px solid var(--grey-light);
  border-radius: 8px; font-size: 1rem; font-family: var(--font-body);
  background: var(--white); outline: none; transition: border-color 0.2s;
}
#country-search:focus { border-color: var(--blue-light); }
.country-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.country-card {
  background: var(--white); border: 1.5px solid var(--grey-light);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; align-items: center; gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none; color: var(--text-body);
  min-height: 52px;
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); text-decoration: none; }
.country-flag {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.country-flag svg { width: 32px; height: 32px; }
.country-info strong { display: block; font-size: 1rem; font-weight: 600; color: var(--blue-deep); }
.country-info span { font-size: 0.85rem; color: var(--grey-mid); }
.country-arrow { margin-left: auto; color: var(--blue-light); flex-shrink: 0; }

/* ---- BENEFITS ---- */
#benefits { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 32px; margin-top: 48px; }
.benefit-card {
  padding: 32px 24px; border-radius: var(--radius); background: var(--off-white);
  border-top: 3px solid var(--blue-light);
}
.benefit-icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--blue-light); }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.9rem; color: var(--grey-mid); margin: 0; }

/* ---- REVIEWS ---- */
#reviews { background: var(--blue-deep); color: var(--white); }
#reviews h2 { color: var(--white); }
#reviews .section-intro { color: rgba(255,255,255,0.6); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.review-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 28px;
}
.review-stars { color: #f4c542; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-card blockquote { font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.85); margin-bottom: 20px; font-style: italic; }
.review-author { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.review-author strong { color: rgba(255,255,255,0.9); display: block; }

/* ---- PRODUCT SPECS ---- */
#specs { background: var(--off-white); }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; align-items: center; }
.spec-list { list-style: none; }
.spec-list li {
  display: flex; align-items: flex-start; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--grey-light);
}
.spec-list li:last-child { border-bottom: none; }
.spec-icon { color: var(--blue-light); flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px; }
.spec-list strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--blue-deep); }
.spec-list span { font-size: 0.85rem; color: var(--grey-mid); }
.specs-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ---- MASCOT ---- */
#mascot { background: var(--blue-pale); }
.mascot-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mascot-text h2 { margin-bottom: 16px; }
.mascot-badge {
  display: inline-block; background: var(--blue-light); color: var(--white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 40px; margin-bottom: 20px;
}
.mascot-visual {
  background: var(--white); border-radius: 24px; padding: 48px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.mascot-visual .paw { font-size: 6rem; line-height: 1; }
.mascot-visual h3 { margin-top: 16px; font-size: 1.6rem; }
.mascot-visual p { color: var(--grey-mid); font-size: 0.9rem; margin-top: 8px; }

/* ---- FAQ ---- */
#faq { background: var(--white); }
.faq-list { margin-top: 48px; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--grey-light); }
.faq-btn {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.faq-btn h3 {
  font-size: 1rem; font-weight: 600; color: var(--blue-deep); margin: 0;
  font-family: var(--font-body); line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue-pale); color: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s;
}
.faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--blue-light); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding-bottom: 20px; font-size: 0.95rem; color: var(--grey-mid); }

/* ---- BUYING GUIDE ---- */
#buying-guide { background: var(--off-white); }
.guide-content { max-width: 820px; }
.guide-content h2 { margin-bottom: 24px; }
.guide-content h3 { margin: 36px 0 12px; }
.guide-content h4 { margin: 24px 0 8px; color: var(--blue-mid); }
.guide-content p { color: var(--grey-mid); }

/* ---- COMPANY DETAILS ---- */
#company { background: var(--white); }
.company-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.company-info-block h3 { margin-bottom: 20px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--grey-light); }
.info-row:last-child { border-bottom: none; }
.info-icon { color: var(--blue-light); flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }
.info-row span { font-size: 0.9rem; }
.trust-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.trust-badge {
  background: var(--off-white); border: 1.5px solid var(--grey-light);
  border-radius: var(--radius); padding: 20px;
  display: flex; align-items: flex-start; gap: 14px;
}
.trust-badge svg { color: var(--blue-light); flex-shrink: 0; width: 24px; height: 24px; }
.trust-badge strong { display: block; font-size: 0.9rem; color: var(--blue-deep); }
.trust-badge span { font-size: 0.8rem; color: var(--grey-mid); }

/* ---- CONTACT ---- */
#contact { background: var(--blue-pale); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 40px; }
.contact-card { background: var(--white); border-radius: var(--radius); padding: 28px; }
.contact-card svg { color: var(--blue-light); width: 28px; height: 28px; margin-bottom: 16px; }
.contact-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.contact-card a { color: var(--blue-light); font-size: 0.9rem; }

/* ---- FINAL CTA ---- */
#final-cta { background: var(--blue-deep); color: var(--white); text-align: center; }
#final-cta h2 { color: var(--white); margin-bottom: 16px; }
#final-cta p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px; }
.btn-hero {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: var(--blue-deep);
  padding: 16px 40px; border-radius: 8px; font-weight: 700; font-size: 1rem;
  min-height: 52px; transition: transform 0.2s, box-shadow 0.2s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,255,255,0.2); text-decoration: none; color: var(--blue-deep); }

/* ---- FOOTER ---- */
footer {
  background: var(--black); color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h2 { color: var(--white); font-size: 1.4rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
footer h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.2s; }
footer ul a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.8rem;
}

/* ---- BLOG INDEX ---- */
.blog-hero { background: var(--blue-deep); color: var(--white); padding: 120px 0 60px; }
.blog-hero h2 { color: var(--white); }
.blog-search-bar { margin: 32px 0; max-width: 500px; position: relative; }
.blog-search-bar svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--grey-mid); width: 20px; height: 20px; }
#blog-search {
  width: 100%; padding: 14px 16px 14px 48px; border: 2px solid var(--grey-light);
  border-radius: 8px; font-size: 1rem; outline: none; transition: border-color 0.2s;
  font-family: var(--font-body);
}
#blog-search:focus { border-color: var(--blue-light); }
.blog-grid-wrap { padding: 60px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--white); border: 1.5px solid var(--grey-light);
  border-radius: var(--radius); padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-date { font-size: 0.78rem; color: var(--grey-mid); margin-bottom: 10px; }
.blog-card h2 { font-size: 1.1rem; margin-bottom: 12px; }
.blog-card a { color: var(--blue-deep); }
.blog-card a:hover { color: var(--blue-light); text-decoration: none; }
.blog-card p { font-size: 0.88rem; color: var(--grey-mid); margin: 0; }

/* ---- BLOG POST ---- */
.post-hero { background: var(--blue-deep); padding: 120px 0 60px; color: var(--white); }
.post-hero h2 { color: var(--white); max-width: 820px; }
.post-meta { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 16px; }
.post-body { padding: 60px 0; }
.post-content { max-width: 820px; }
.post-content h1, .post-content h2 { margin: 36px 0 14px; }
.post-content h1 { font-size: 1.6rem; }
.post-content h3 { margin: 28px 0 10px; }
.post-content p { color: var(--text-body); font-size: 1rem; }
.post-content ul, .post-content ol { margin: 16px 0 16px 24px; }
.post-content li { margin-bottom: 8px; font-size: 0.95rem; }
.post-content a { color: var(--blue-light); }
.post-back { margin-top: 48px; }
.post-back a { color: var(--blue-light); font-weight: 600; font-size: 0.9rem; }

/* ---- LEGAL PAGES ---- */
.legal-hero { background: var(--blue-deep); padding: 120px 0 60px; color: var(--white); }
.legal-hero h2 { color: var(--white); }
.legal-body { padding: 60px 0; max-width: 820px; }
.legal-body h2 { margin: 40px 0 14px; font-size: 1.3rem; }
.legal-body h3 { margin: 28px 0 10px; }
.legal-body p, .legal-body li { color: var(--grey-mid); }
.legal-body ul { margin: 12px 0 16px 24px; }
.legal-body li { margin-bottom: 6px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .specs-grid { grid-template-columns: 1fr; }
  .mascot-inner { grid-template-columns: 1fr; }
  .company-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  section { padding: 52px 0; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.4rem; }
  .trust-badges { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  html { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; }
}
