/*
 * ATV Centrum — components.css — Sdílené komponenty
 * Závisí na: base.css, components.css
 */


/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--teal);
  border-bottom: none;
  transition: box-shadow var(--transition-base);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Logo — uploaded image, larger */
.logo { display: flex; align-items: center; flex-shrink: 1; min-width: 0; }
.logo img {
  height: 48px;
  width: auto;
  max-width: 100%;
}

/* Google rating badge */
.google-rating-badge {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 13px; line-height: 1;
  background: rgba(255,255,255,0.08);
  padding: 7px 12px; border-radius: 5px;
  margin-top: 12px; white-space: nowrap;
  transition: background var(--transition-base);
}
.google-rating-badge:hover { background: rgba(255,255,255,0.16); color: #fff; }
.google-rating-badge strong { font-size: 15px; font-weight: 700; color: #fff; }
.google-rating-badge span { opacity: 0.75; font-size: 12px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav ul { list-style: none; margin: 0; padding: 0; display: contents; }
.nav li { display: contents; }
.nav a {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition-base);
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.nav a.active { color: var(--white); }
.nav-cta {
  margin-left: 8px;
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--navy-light) !important; color: var(--white) !important; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 12px; background: none; border: none;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: all var(--transition-base);
}

/* ============================================
   CONTACT STRIP
   ============================================ */
.contact-strip { background: var(--teal); padding: 60px 0; position: relative; }
.contact-strip-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.contact-strip h3 {
  font-family: var(--font-primary); font-weight: 700;
  font-size: 34px; color: var(--white); text-transform: uppercase;
}
.contact-strip p { color: rgba(255,255,255,0.75); font-size: 16px; margin-top: 4px; }
.btn-dark { background: var(--navy); color: var(--white); white-space: nowrap; }
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy); color: rgba(255,255,255,0.65);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo { height: 48px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer h4 {
  font-family: var(--font-primary); font-weight: 700;
  font-size: 16px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--white); margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color var(--transition-base); }
.footer-links a:hover { color: var(--teal-hover); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; font-size: 14px;
}
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-disclaimer {
  padding: 16px 0 15px;
  font-size: 12px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
  text-align: center;
}
.footer-disclaimer a { color: rgba(255,255,255,0.55); }
.footer-disclaimer a:hover { color: rgba(255,255,255,0.4); }
.footer-social {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: var(--teal);
  color: #fff;
}
.footer-bottom {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center;
  justify-content: space-between; font-size: 13px;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #0a2a30 0%, #112832 50%, #0d1f2d 100%);
  text-align: center;
  border-top: 1px solid rgba(30,154,171,0.15);
  border-bottom: 1px solid rgba(30,154,171,0.15);
}
.social-section h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.social-links {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.35s ease;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}
.social-link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.social-link span {
  white-space: nowrap;
}
.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.social-link:hover svg {
  transform: scale(1.1);
}

/* Barvy jednotlivých sítí */
.social-link--facebook:hover {
  border-color: #1877F2; background: rgba(24,119,242,0.15); color: #1877F2;
}
.social-link--instagram:hover {
  border-color: #E4405F; background: rgba(228,64,95,0.15); color: #E4405F;
}
.social-link--youtube:hover {
  border-color: #FF0000; background: rgba(255,0,0,0.12); color: #FF0000;
}
.social-link--threads:hover {
  border-color: #fff; background: rgba(255,255,255,0.15); color: #fff;
}
.social-link--whatsapp:hover {
  border-color: #25D366; background: rgba(37,211,102,0.15); color: #25D366;
}

@media (max-width: 640px) {
  .social-section { padding: 36px 0; }
  .social-link { padding: 12px 16px; font-size: 13px; gap: 8px; }
  .social-link svg { width: 20px; height: 20px; }
}
@media (max-width: 420px) {
  .social-link { padding: 12px; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  .social-link span { display: none; }
  .social-links { gap: 12px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }





/* ============================================
   PAGE HERO — inner page banner
   ============================================ */
.page-hero {
  margin-top: 80px;
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, #132d3f 50%, var(--navy-light) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -60%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,154,171,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0.02;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.15) 40px, rgba(255,255,255,0.15) 42px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-base);
}
.page-hero-breadcrumb a:hover { color: var(--teal-hover); }
.page-hero-breadcrumb svg { width: 14px; height: 14px; opacity: 0.4; }
.page-hero h1 {
  font-family: var(--font-primary); font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1; color: var(--white);
  text-transform: uppercase; margin-bottom: 16px;
  animation: fadeInUp 0.6s var(--ease-out) both;
}
.page-hero h1 .accent { color: var(--teal); }
.page-hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.75);
  max-width: 520px; line-height: 1.7;
  animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}
.page-hero-inner {
  position: relative; z-index: 2;
}
.page-hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
  animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}
.page-hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}
.hero-stat {}
.hero-stat-value {
  font-family: var(--font-primary); font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px); color: var(--white);
  line-height: 1.1;
}
.hero-stat-value span { color: var(--teal); }
.hero-stat-label {
  font-size: 13px; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs-bar{padding-top:100px;padding-bottom:12px;background:var(--gray-50);border-bottom:1px solid var(--gray-100)}
.breadcrumbs{display:flex;align-items:center;gap:8px;font-size:13px;color:var(--gray-400);flex-wrap:wrap}
.breadcrumbs a{color:var(--gray-400)}.breadcrumbs a:hover{color:var(--teal)}
.breadcrumbs .sep{color:var(--gray-300);font-size:11px}.breadcrumbs .current{color:var(--navy);font-weight:600}


/* ============================================
   NAV — zmenšení na menších desktopech
   ============================================ */
@media (max-width: 1280px) {
  .nav a { font-size: 13px; padding: 7px 10px; letter-spacing: 0.3px; }
  .nav-cta { padding: 9px 16px !important; }
}

/* ============================================
   MOBILE NAV RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .nav {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(160deg, var(--navy) 0%, #0a1f30 60%, #071520 100%);
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 4px; z-index: 999;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .nav.open {
    display: flex; opacity: 1; visibility: visible;
  }
  .nav a {
    font-size: 22px; font-weight: 700; letter-spacing: 2px;
    color: rgba(255,255,255,0.7); padding: 14px 24px;
    border-radius: 12px;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease, background 0.2s ease;
  }
  .nav.open a {
    opacity: 1; transform: translateY(0);
  }
  .nav a:hover, .nav a:focus-visible {
    color: var(--white); background: rgba(30,154,171,0.2);
  }
  .nav a.active {
    color: var(--teal);
  }
  .nav .nav-cta {
    margin: 16px 0 0 0 !important;
    background: var(--teal) !important;
    color: var(--white) !important;
    padding: 14px 40px !important;
    border-radius: 12px !important;
    font-size: 18px !important;
  }
  .nav .nav-cta:hover { background: var(--teal-dark) !important; }

  /* Hamburger → X animace */
  .menu-toggle { display: flex; z-index: 1001; position: relative; }
  .menu-toggle.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .menu-toggle.is-active span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Zamezit scrollu pozadí */
  body.menu-open { overflow: hidden; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-strip-inner { flex-direction: column; text-align: center; gap: 20px; }
}
@media (max-width: 768px) {
  .header-inner { height: 70px; }
  .logo img { height: 48px; max-width: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-links a { display: block; padding: 8px 0; }
}
@media (max-width: 380px) {
  .logo img { height: 40px; max-width: 160px; }
}


/* ============================================
   PAGE HERO — sdíleno napříč stránkami
   ============================================ */
.hero-catalog {
  margin-top:80px; position:relative;
  min-height:40vh; display:flex; align-items:center; overflow:hidden;
  background:var(--navy);
}
.hero-catalog--compact, .hero-catalog--page { min-height:29vh; }
.hero-catalog--compact .hero-catalog-inner, .hero-catalog--page .hero-catalog-inner { padding:50px var(--container-padding); }
.hero-catalog--slim { min-height:19vh; }
.hero-catalog--slim .hero-catalog-inner { padding:32px var(--container-padding); }
.hero-catalog--slim .hero-catalog-bg::after { background:linear-gradient(90deg,rgba(15,30,46,0.88) 0%,rgba(15,30,46,0.7) 45%,rgba(15,30,46,0.35) 100%); }
@media (max-width: 768px) {
  .page-hero, .hero-catalog { margin-top: 70px; }
}
.hero-catalog-bg {
  position:absolute; top:-30%; bottom:-30%; left:0; right:0;
  background-size:cover; background-position:center center;
  will-change:transform;
}
.hero-catalog-bg::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg,rgba(15,30,46,0.92) 0%,rgba(15,30,46,0.6) 45%,rgba(15,30,46,0.15) 70%,rgba(15,30,46,0.02) 100%);
}
.hero-catalog-bg::before {
  content:''; position:absolute; inset:0; z-index:1;
  background:repeating-linear-gradient(-55deg,transparent,transparent 40px,rgba(30,154,171,0.04) 40px,rgba(30,154,171,0.04) 41px);
}
.hero-catalog-inner {
  position:relative; z-index:2;
  max-width:var(--container-max); margin:0 auto;
  padding:60px var(--container-padding); width:100%;
}
.hero-catalog-content { animation:fadeInUp 0.7s var(--ease-out) both; }
.hero-catalog-breadcrumb {
  display:flex; align-items:center; gap:8px; font-size:13px; font-weight:500;
  color:rgba(255,255,255,0.7); margin-bottom:20px;
  text-transform:uppercase; letter-spacing:0.5px;
}
.hero-catalog-breadcrumb a { color:rgba(255,255,255,0.7); transition:color var(--transition-base); }
.hero-catalog-breadcrumb a:hover { color:var(--teal); }
.hero-catalog-breadcrumb span { color:var(--teal); }
.hero-catalog-breadcrumb svg { opacity:0.4; }
.hero-catalog-title {
  font-family:var(--font-primary); font-weight:700;
  font-size:clamp(34px,4vw,56px); line-height:0.95;
  color:var(--white); text-transform:uppercase; letter-spacing:0.5px;
  margin-bottom:16px;
}
.hero-catalog-title .accent {
  color:var(--teal);
  -webkit-text-stroke: 3px var(--teal);
  paint-order: stroke fill;
}
.hero-catalog-subtitle {
  font-size:16px; line-height:1.6;
  color:rgba(255,255,255,0.65);
}

/* ============================================
   PAGE HERO — parallax background overlay
   ============================================ */
.page-hero-parallax-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,30,46,0.92) 0%,
    rgba(15,30,46,0.70) 50%,
    rgba(15,30,46,0.45) 100%
  );
}

/* ============================================
   DOWNLOAD STRIP — ceník PDF
   Sdílený komponent: detail + katalog
   ============================================ */
.download-strip{padding:40px 0;background:var(--teal-light);border-top:1px solid rgba(30,154,171,.15);border-bottom:1px solid rgba(30,154,171,.15)}
.download-strip-inner{display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap}
.download-strip-text{display:inline-flex;align-items:center;gap:10px;font-size:16px;font-weight:600;color:var(--navy)}
.download-strip-text svg{flex-shrink:0;color:var(--teal)}
.btn-download{display:inline-flex;align-items:center;gap:8px;background:var(--teal);color:var(--white);padding:12px 24px;border-radius:10px;font-weight:700;font-size:14px;text-transform:uppercase;letter-spacing:.5px;transition:all var(--transition-base)}
.btn-download:hover{background:var(--teal-dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(30,154,171,.25)}

/* ============================================
   BTN-PDF — tlačítko ceníku v hero katalogu
   ============================================ */
.btn-pdf{display:inline-flex;align-items:center;gap:10px;background:rgba(255,255,255,.15);color:var(--white);border:2px solid rgba(255,255,255,.4);padding:12px 24px;border-radius:10px;font-family:var(--font-primary);font-weight:700;font-size:14px;text-transform:uppercase;letter-spacing:.5px;transition:all var(--transition-base);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}
.btn-pdf:hover{background:rgba(255,255,255,.25);border-color:rgba(255,255,255,.7);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.15)}
.btn-pdf svg{flex-shrink:0;color:var(--white)}

/* ============================================
   PRODUCT CARD — sdílený styl (homepage + katalog)
   ============================================ */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; border: 1px solid var(--gray-100);
  transition: all var(--transition-base); position: relative;
  text-decoration: none; color: inherit; display: block;
}
.product-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(30,154,171,0.12);
  transform: translateY(-6px);
}
.product-card[data-brand="goes"]:hover {
  border-color: #ff671f;
  box-shadow: 0 12px 40px rgba(255,103,31,0.12);
}
.product-card-image {
  aspect-ratio: 4/3; background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; position: relative; overflow: hidden;
}
.product-card-image img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-card-brand-logo {
  position: absolute; bottom: 13px; right: 15px;
  height: 16px; width: auto;
  opacity: 0.12;
  filter: brightness(0);
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.product-card:hover .product-card-brand-logo { opacity: 0.35; }
.product-card-brand-logo--goes { height: 22px; }
.product-card-placeholder {
  color: var(--gray-200); font-size: 13px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
}
.product-tags {
  position: absolute; top: 16px; left: 16px;
  display: flex; gap: 8px; z-index: 2;
}
.tag {
  padding: 5px 12px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  font-family: var(--font-primary);
}
.tag-new { background: #FF6B00; color: var(--white); }
.tag-sale { background: var(--red); color: var(--white); }
.tag-clearance { background: var(--orange); color: var(--white); }
.tag-bestseller { background: var(--navy); color: var(--white); }
.tag-save { background: var(--red); color: var(--white); }
.tag-warranty { background: var(--teal-dark, #177D8B); color: var(--white); }
a.tag-warranty { text-decoration: none; transition: background .2s; }
a.tag-warranty:hover { background: var(--teal); color: var(--white); }

/* Štítek "Testovací jízda" — levý dolní roh obrázku */
.product-card-test-ride {
  position: absolute;
  bottom: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: var(--green, #38A169);
  color: var(--white);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font-primary);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  pointer-events: none;
}
.product-card-test-ride svg {
  flex-shrink: 0;
}

.product-card-body { padding: 24px; }
.product-card-brand {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 8px;
}
.product-card:hover .product-card-brand--cfmoto { color: var(--teal); }
.product-card:hover .product-card-brand--goes { color: #ff671f; }
.product-card-name {
  font-family: var(--font-primary); font-weight: 700;
  font-size: 24px; color: var(--navy);
  text-transform: uppercase; line-height: 1.15;
  margin-bottom: 6px;
}
.product-card-claim {
  font-size: 14px; color: var(--gray-400);
  margin-bottom: 20px; line-height: 1.5;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card-price { display: flex; flex-direction: column; }
.product-card-price-old {
  font-size: 13px; color: var(--gray-300);
  text-decoration: line-through;
}
.product-card-price-current {
  font-family: var(--font-primary); font-weight: 700;
  font-size: 28px; color: var(--navy); line-height: 1.1;
}
.product-card-price-current.sale { color: var(--red); }
.product-card-price-current small { font-size: 16px; font-weight: 600; }
.product-card-link {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gray-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: all var(--transition-base);
}
.product-card:hover .product-card-link {
  background: var(--teal); color: var(--white);
}
.product-card[data-brand="goes"]:hover .product-card-link {
  background: #ff671f;
}

.section-cta { text-align: center; margin-top: 48px; }

/* ── FAQ Section ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question { padding: 18px 0; font-weight: 600; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-question::-webkit-details-marker { display: none; }
summary.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--teal); transition: transform 0.2s; }
.faq-item[open] summary.faq-question::after { content: '\2212'; }
.faq-answer { padding: 0 0 18px; }
.faq-answer p { color: var(--gray-400); line-height: 1.7; margin: 0; }

/* ============================================
   NEWSLETTER STRIP
   ============================================ */
.newsletter-strip {
  padding: 48px 0;
  background: var(--teal);
}
.newsletter-strip-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.newsletter-strip-content { flex: 1; min-width: 0; }
.newsletter-strip-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin: 0 0 6px;
}
.newsletter-strip-text {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* Form */
.newsletter-strip-form { flex-shrink: 0; width: 380px; }
.newsletter-strip-field {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.newsletter-strip-input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  min-width: 0;
  border-radius: 10px 0 0 10px;
}
.newsletter-strip-input:focus { border-color: var(--teal-dark); }
.newsletter-strip-input::placeholder { color: var(--gray-300); }
.newsletter-strip-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  border-radius: 0 10px 10px 0;
}
.newsletter-strip-btn:hover { background: #1a2a3a; }

/* Consent */
.newsletter-strip-consent {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.newsletter-strip-consent a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* Success */
.newsletter-strip-success {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 16px 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

/* ── Blog Newsletter Card ── */
.nl-blog {
  margin-top: 56px;
  padding: 0 0 48px;
}
.nl-blog-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  position: relative;
}
.nl-blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  border-radius: 16px 16px 0 0;
}
.nl-blog-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(30,154,171,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin: 0 auto 20px;
}
.nl-blog-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin: 0 0 8px;
}
.nl-blog-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-400);
  margin: 0 0 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.nl-blog-form { margin: 0 auto; max-width: 400px; }
.nl-blog-field {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nl-blog-input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--navy);
  background: var(--white);
  outline: none;
  min-width: 0;
  border-radius: 10px 0 0 10px;
  border-right: none;
}
.nl-blog-input:focus { border-color: var(--teal); }
.nl-blog-input::placeholder { color: var(--gray-300); }
.nl-blog-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  border-radius: 0 10px 10px 0;
}
.nl-blog-btn:hover { background: var(--teal-dark); }
.nl-blog-consent {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--gray-300);
}
.nl-blog-consent a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.nl-blog-benefits {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.nl-blog-benefit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
}
.nl-blog-benefit svg { color: var(--teal); flex-shrink: 0; }

/* Thank you */
.nl-blog-thankyou { padding: 20px 0; }
.nl-blog-thankyou-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(30,154,171,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin: 0 auto 20px;
}
.nl-blog-thankyou-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin: 0 0 8px;
}
.nl-blog-thankyou-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-400);
  margin: 0;
}

@media (max-width: 768px) {
  .nl-blog { margin-top: 40px; }
  .nl-blog-card { padding: 28px 20px; }
  .nl-blog-title { font-size: 19px; }
  .nl-blog-field { flex-direction: column; }
  .nl-blog-input { border-radius: 10px; border-right: 2px solid var(--gray-200); }
  .nl-blog-input:focus { border-right-color: var(--teal); }
  .nl-blog-btn { border-radius: 10px; justify-content: center; margin-top: 8px; padding: 14px; }
  .nl-blog-benefits { flex-direction: column; gap: 8px; align-items: center; }
}

/* ── Footer Newsletter (compact) ── */
.footer-newsletter {
  margin-top: 32px;
  padding: 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}
.footer-newsletter-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-newsletter-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(30,154,171,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.footer-newsletter-text {
  flex: 1;
  min-width: 0;
}
.footer-newsletter-text h4 {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin: 0 0 2px;
}
.footer-newsletter-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.footer-newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.footer-newsletter-input {
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  outline: none;
  width: 200px;
  border-radius: 8px 0 0 8px;
  transition: border-color 0.2s, background 0.2s;
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-input:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--teal);
}
.footer-newsletter-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  border-radius: 0 8px 8px 0;
}
.footer-newsletter-btn svg { flex-shrink: 0; }
.footer-newsletter-btn:hover { background: var(--teal-dark); }
.footer-newsletter-consent {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  margin: 12px 0 0;
  text-align: center;
}
.footer-newsletter-consent a { color: rgba(255,255,255,0.35); text-decoration: underline; text-underline-offset: 2px; }
.footer-newsletter-consent a:hover { color: var(--teal); }
}

/* ── Newsletter shared UI (messages, spinner, disabled, inline success) ── */
.nl-message {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  animation: nlMsgIn 0.3s ease;
  margin-bottom: 8px;
}
.nl-message--error {
  background: rgba(229, 62, 62, 0.08);
  border: 1px solid rgba(229, 62, 62, 0.2);
  color: var(--red);
}
.nl-message--success {
  background: rgba(30, 154, 171, 0.08);
  border: 1px solid rgba(30, 154, 171, 0.2);
  color: var(--teal);
}
.nl-message svg { flex-shrink: 0; }

@keyframes nlMsgIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Loading spinner */
.nl-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: nlSpin 0.6s linear infinite;
  vertical-align: middle;
}
@keyframes nlSpin {
  to { transform: rotate(360deg); }
}

/* Disabled button states */
.newsletter-submit:disabled,
.newsletter-strip-btn:disabled,
.nl-blog-btn:disabled,
.footer-newsletter-btn:disabled,
.nl-popup-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Inline success (strip, footer, popup) */
.nl-inline-success {
  text-align: center;
  padding: 24px 16px;
  animation: nlMsgIn 0.4s ease;
}
.nl-inline-success svg {
  margin-bottom: 12px;
}
.nl-inline-success strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.nl-inline-success p {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
}

/* Footer inline success — light text */
.footer-newsletter-inner .nl-inline-success strong { color: var(--white); }
.footer-newsletter-inner .nl-inline-success p { color: rgba(255,255,255,0.65); }

/* ── Newsletter Popup ── */
.nl-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.nl-popup-overlay.active { opacity: 1; visibility: visible; }
.nl-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 400px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  padding: 32px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}
.nl-popup.active { transform: translateY(0); opacity: 1; visibility: visible; }
.nl-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--gray-50);
  color: var(--gray-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.nl-popup-close:hover { background: var(--gray-100); }
.nl-popup-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30,154,171,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 16px;
}
.nl-popup-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin: 0 0 6px;
}
.nl-popup-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-400);
  margin: 0 0 20px;
}
.nl-popup-field {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--gray-200);
}
.nl-popup-field:focus-within { border-color: var(--teal); }
.nl-popup-input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--navy);
  outline: none;
  min-width: 0;
}
.nl-popup-input::placeholder { color: var(--gray-300); }
.nl-popup-submit {
  padding: 12px 20px;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.nl-popup-submit:hover { background: var(--teal-dark); }
.nl-popup-consent {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--gray-300);
}
.nl-popup-consent a { color: var(--teal); text-decoration: underline; }
.nl-popup-success {
  text-align: center;
  padding: 12px 0;
  color: var(--teal);
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .newsletter-strip { padding: 36px 0; }
  .newsletter-strip-inner { flex-direction: column; gap: 20px; text-align: center; }
  .newsletter-strip-form { width: 100%; }
  .newsletter-strip-title { font-size: 20px; }
  .newsletter-strip-consent { text-align: center; }

  .footer-newsletter { padding: 24px 20px; }
  .footer-newsletter-inner { flex-wrap: wrap; gap: 16px; }
  .footer-newsletter-icon { display: none; }
  .footer-newsletter-text { flex: 1 1 100%; text-align: center; }
  .footer-newsletter-form { width: 100%; flex: 1 1 100%; }
  .footer-newsletter-input { flex: 1; width: auto; }
  .footer-newsletter-consent { text-align: center; }

  .nl-popup { bottom: 0; right: 0; left: 0; width: 100%; max-width: 100%; border-radius: 16px 16px 0 0; padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px)); max-height: 85vh; overflow-y: auto; }
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 48px 0 16px;
  flex-wrap: wrap;
}
.pagination-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--gray-200);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.pagination-page:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(30, 154, 171, 0.05);
}
.pagination-page.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  cursor: default;
  pointer-events: none;
}
.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.pagination-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(30, 154, 171, 0.05);
}
.pagination-btn.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 42px;
  color: var(--gray-400);
  font-size: 16px;
  letter-spacing: 2px;
}
@media (max-width: 480px) {
  .pagination { gap: 4px; }
  .pagination-page, .pagination-btn { min-width: 36px; height: 36px; font-size: 13px; border-radius: 8px; }
  .pagination-ellipsis { width: 24px; height: 36px; }
}
