/* =========================================================
   Coolers & Cleats — Main Stylesheet
   Bright, modern, Pinterest-friendly aesthetic
   ========================================================= */

:root {
  --coral: #FF6B6B;
  --coral-dark: #ED5757;
  --teal: #14B8A6;
  --teal-dark: #0F9488;
  --sunny: #FFC94A;
  --sunny-dark: #F5B733;
  --navy: #1F2937;
  --navy-soft: #364152;
  --ink: #22262B;
  --cream: #FFFBF5;
  --cream-2: #FFF3E6;
  --sky: #EAF7F6;
  --white: #FFFFFF;
  --border: #EDE6DA;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(31, 41, 55, 0.06);
  --shadow-md: 0 12px 30px rgba(31, 41, 55, 0.10);
  --shadow-lg: 0 20px 50px rgba(31, 41, 55, 0.16);
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

p { line-height: 1.65; color: var(--navy-soft); margin: 0; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  background: #FFECEC;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.eyebrow-light { background: rgba(255,255,255,0.18); color: #fff; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 14px; }
.section-head p { font-size: 1.05rem; }

/* ============= Buttons ============= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 107, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255, 107, 107, 0.45); }
.btn-outline {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: #fff; color: var(--coral-dark); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-amazon {
  background: linear-gradient(135deg, #FF9900, #FF7A00);
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 153, 0, 0.35);
  width: 100%;
  justify-content: center;
}
.btn-amazon:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(255, 153, 0, 0.45); }

/* ============= Header ============= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(222, 241, 246, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(31,41,55,0.08);
  border-color: var(--border);
  background: rgba(222, 241, 246, 0.97);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo-icon {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sunny), var(--coral));
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-text { display: inline-flex; align-items: baseline; gap: 6px; }
.logo-amp { color: var(--teal-dark); font-weight: 600; }
.logo-accent { color: var(--coral); }

.main-nav {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 0.96rem;
  margin: 0 auto;
}
.main-nav a { color: var(--navy-soft); position: relative; padding: 6px 0; }
.main-nav a:hover { color: var(--coral); }

.nav-cta { flex-shrink: 0; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
}

/* ============= Hero ============= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31,41,55,0.82) 10%, rgba(20,184,166,0.55) 55%, rgba(255,107,107,0.45) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 8px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-badge i { color: var(--sunny); }
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero-title .highlight { color: var(--sunny); }
.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; color: #fff; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.8); font-weight: 600; }

.hero-scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.3rem;
  z-index: 2;
  animation: bounce 2s infinite;
  opacity: 0.85;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ============= Trust Strip ============= */
.trust-strip {
  background: var(--navy);
  padding: 20px 0;
}
.trust-strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item i { color: var(--sunny); }

/* ============= Filter bar ============= */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.filter-btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--navy-soft);
  padding: 10px 22px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-btn span {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--cream-2);
  color: var(--coral-dark);
  padding: 2px 8px;
  border-radius: 20px;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.filter-btn.active span, .filter-btn:hover span { background: rgba(255,255,255,0.2); color: #fff; }

/* ============= Product Grid (Pinterest-style masonry-ish) ============= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-media {
  position: relative;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  background: var(--sky);
}
.product-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.07); }
.badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 30px;
  color: #fff;
  text-transform: uppercase;
}
.badge.small-ticket { background: var(--teal); }
.badge.big-ticket { background: var(--coral); }
.badge-trending {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--sunny);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 30px;
  display: flex; align-items: center; gap: 4px;
}
.product-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.product-card-body h3 { font-size: 1.12rem; }
.product-card-body .desc { font-size: 0.9rem; flex: 1; }
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.price { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--navy); }
.rating { color: var(--sunny-dark); font-size: 0.85rem; font-weight: 700; }
.rating i { color: var(--sunny-dark); }
.card-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #FF9900, #FF7A00);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 18px;
  border-radius: 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,153,0,0.35); }

/* ============= Guide / Email Capture Section ============= */
.guide-section {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal) 55%, #0d7f75);
  position: relative;
  overflow: hidden;
}
.guide-section::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  top: -150px; right: -100px;
  border-radius: 50%;
}
.guide-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.guide-content h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 18px; }
.guide-content > p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 26px; }
.guide-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
.guide-list li { color: #fff; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.guide-list i {
  background: rgba(255,255,255,0.2);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.guide-form { background: #fff; padding: 26px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.form-row { display: flex; flex-direction: column; gap: 14px; }
.form-row select, .form-row input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s ease;
}
.form-row select:focus, .form-row input:focus { border-color: var(--teal); }
.form-row button { width: 100%; justify-content: center; padding: 15px 18px; font-size: 1rem; }
.form-note { text-align: center; font-size: 0.82rem; margin-top: 12px; color: var(--navy-soft); }
.form-success { color: var(--teal-dark); font-weight: 700; }
.form-error { color: var(--coral-dark); font-weight: 700; }

.guide-visual { display: flex; justify-content: center; }
.guide-card-mock {
  width: 260px;
  background: #fff;
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
  position: relative;
}
.guide-card-mock-header {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--coral), var(--sunny));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  margin-bottom: 18px;
}
.guide-card-mock-title { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 20px; }
.guide-card-mock-lines span { display: block; height: 10px; background: var(--border); border-radius: 6px; margin-bottom: 10px; }
.guide-card-mock-lines .short { width: 60%; }
.guide-card-mock-stamp {
  position: absolute;
  bottom: -14px; right: -14px;
  background: var(--sunny);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 10px 16px;
  border-radius: 50px;
  transform: rotate(8deg);
  box-shadow: var(--shadow-md);
}

/* ============= Individual Product Detail Sections ============= */
.product-detail-list { display: flex; flex-direction: column; gap: 70px; }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  scroll-margin-top: 100px;
}
.product-detail:nth-child(even) .product-detail-media { order: 2; }
.product-detail-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5/4;
  position: relative;
}
.product-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-info .product-cat { display: block; margin-bottom: 10px; }
.product-detail-info h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 14px; }
.product-detail-info .desc { font-size: 1.02rem; margin-bottom: 18px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.feature-tags span {
  background: var(--sky);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 30px;
}
.product-detail-footer { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.product-detail-footer .price { font-size: 1.5rem; }
.product-detail-footer .btn-amazon { width: auto; padding: 14px 30px; }

/* ============= Testimonials ============= */
.testimonial-section { background: var(--cream-2); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  margin: 0;
  border-top: 4px solid var(--coral);
}
.testimonial-card p { font-style: italic; font-size: 1rem; margin-bottom: 18px; color: var(--navy); }
.testimonial-card cite { font-weight: 700; font-style: normal; color: var(--teal-dark); font-size: 0.9rem; }

/* ============= FAQ ============= */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.faq-item summary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--coral);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { margin-top: 14px; font-size: 0.96rem; }

/* ============= Bottom CTA ============= */
.bottom-cta {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  padding: 80px 0;
  text-align: center;
}
.bottom-cta h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.bottom-cta p { color: rgba(255,255,255,0.92); font-size: 1.05rem; margin-bottom: 30px; }
.bottom-cta .btn-primary { background: #fff; color: var(--coral-dark); box-shadow: var(--shadow-lg); }
.bottom-cta .btn-primary:hover { background: var(--navy); color: #fff; }

/* ============= Footer ============= */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer-col a { display: block; margin-bottom: 12px; color: rgba(255,255,255,0.7); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--sunny); }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin: 14px 0 20px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0;
}
.footer-social a:hover { background: var(--coral); color: #fff; }
.disclosure { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ============= Floating CTA (mobile) ============= */
.floating-cta {
  position: fixed;
  bottom: 22px; right: 22px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  gap: 8px;
  z-index: 900;
  animation: pulse-cta 2.4s infinite;
}
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 10px 24px rgba(255,107,107,0.35); }
  50% { box-shadow: 0 10px 34px rgba(255,107,107,0.6); }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .guide-inner { grid-template-columns: 1fr; }
  .guide-visual { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .product-detail, .product-detail:nth-child(even) .product-detail-media {
    grid-template-columns: 1fr;
    order: 0;
  }
  .product-detail { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero { min-height: 100vh; }
  .hero-inner { padding: 40px 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { gap: 24px; }
  .header-inner { height: 66px; }
  .floating-cta { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { gap: 12px; }
  .trust-strip-inner { justify-content: center; gap: 24px; }
}

/* Mobile nav drawer */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 66px; left: 0; right: 0;
  background: var(--cream);
  padding: 24px;
  gap: 20px;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border);
}
