/* ============================================
   FOTOVOLTAICKÉ BATÉRIE — style.css
   Exact replica of fotovoltaickebaterie.sk
   Color scheme: Deep Navy Blue / Azure
   ============================================ */

:root {
  --primary: #003B73;
  --primary-dark: #00264D;
  --primary-light: #e0ecf5;
  --secondary: #00264D;
  --accent: #0066CC;
  --highlight: #357df9;
  --dark: #001a33;
  --light: #f2f5f8;
  --text: #1d1e20;
  --text-light: #5a6270;
  --azure: #357df9;
  --azure-light: #e3ebf9;
  --gray-border: #dadce0;
  --gray-dark: #2c3e50;
  --white: #fff;
  --danger: #fc5185;
  --success: #00b090;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 64px;
  --section-padding: 80px 0;
  --container-width: 1100px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--primary); }
ul { list-style: none; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }

/* --- Focus / Accessibility --- */
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
button:focus:not(:focus-visible) { outline: none; }
.skip-link {
  position: fixed; top: -200px; left: 16px; padding: 8px 16px;
  background: var(--primary); color: var(--white); z-index: 10000;
  border-radius: 4px; font-weight: 600; font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; color: var(--white); }

/* --- Page Loader --- */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease;
}
.loader-spinner {
  width: 48px; height: 48px; border: 4px solid rgba(255,255,255,0.2);
  border-top-color: var(--highlight); border-radius: 50%; animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 6px; font-family: var(--font-body);
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,59,115,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* --- Pill Badge --- */
.pill-badge {
  display: inline-block; padding: 8px 24px; background: var(--primary);
  color: var(--white); border-radius: 50px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}

/* ============================================
   NAVIGATION — Matching original centered nav
   ============================================ */
nav#nav_1 {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); height: var(--nav-height);
  box-shadow: 0 1px 0 var(--gray-border);
  transition: box-shadow 0.35s ease;
  overflow: hidden;
}
nav#nav_1.scrolled {
  box-shadow: 0 1px 0 var(--gray-border), 0 4px 20px rgba(0,0,0,0.06);
}

.nav-wave {
  position: absolute; top: 0; right: 0; height: 100%; width: 60%;
  pointer-events: none; z-index: 0;
  opacity: 1; transition: opacity 0.35s ease;
}

.nav-container {
  position: relative; z-index: 1;
  max-width: var(--container-width); margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}

.logo {
  font-size: 16px; font-weight: 800; color: var(--primary);
  white-space: nowrap; text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.logo:hover { color: var(--azure); }
.logo-img { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }
.logo-text { font-size: 15px; font-weight: 800; letter-spacing: 0.02em; line-height: 1; }
.logo-sep { color: var(--azure); font-weight: 400; }

#nav-links { display: flex; align-items: stretch; gap: 0; margin-left: auto; list-style: none; padding: 0; margin-top: 0; margin-bottom: 0; height: 100%; }
#nav-links li { display: flex; height: 100%; }
#nav-links a {
  display: flex; align-items: center; height: 100%;
  padding: 0 24px; font-size: 16px; font-weight: 600; color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s ease, border-color 0.2s ease; text-decoration: none;
  border-bottom: 3px solid transparent; letter-spacing: 0.01em;
}
#nav-links a:hover { color: var(--azure); border-bottom-color: var(--azure); }
#nav-links a.active { color: var(--azure); font-weight: 600; border-bottom-color: var(--azure); }

.nav-cta { display: none; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav#nav_1 { overflow: visible; }

  #nav-links {
    position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 8px 0; gap: 0; height: auto;
    transform: translateX(100%); transition: transform 0.3s ease;
    z-index: 999; overflow-y: auto;
  }
  #nav-links.open { transform: translateX(0); }

  #nav-links li { display: flex; height: auto; width: 100%; }

  #nav-links a {
    width: 100%; height: auto;
    padding: 15px 24px; font-size: 15px; font-weight: 600;
    border-bottom: none; border-left: 3px solid transparent;
    color: #1a1a1a;
  }
  #nav-links a:hover {
    color: var(--azure); border-bottom-color: transparent;
    border-left-color: var(--azure); background: var(--azure-light);
  }
  #nav-links a.active {
    color: var(--azure); border-bottom-color: transparent;
    border-left-color: var(--azure); background: var(--azure-light);
  }

  /* Divider between items */
  #nav-links li + li { border-top: 1px solid var(--gray-border); }
}

/* ============================================
   HERO — White bg with abstract blue wave lines
   Two columns: text left, product image right
   ============================================ */
.hero-section {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-height); overflow: hidden;
  background: var(--white); margin-bottom: 0;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--white);
}
.hero-bg::after { display: none; }

.hero-wave {
  position: absolute; right: -5%; top: -10%; bottom: -10%; width: 75%; z-index: 0;
  pointer-events: none;
}

.hero-container {
  position: relative; z-index: 1;
  max-width: var(--container-width); margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px;
}

.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 60px); font-weight: 800; color: var(--text);
  margin-bottom: 24px; line-height: 1.1;
}
.hero-sub {
  font-size: 18px; color: var(--text-light); line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
}
.hero-sub a { color: var(--accent); }
.hero-sub a:hover { color: var(--primary-dark); }
.hero-cta { font-size: 16px; padding: 16px 36px; }

.hero-image-wrap { display: flex; justify-content: center; align-items: center; }
.hero-image-wrap img {
  max-width: 110%; max-height: 600px; object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(0,59,115,0.15));
}

@media (max-width: 768px) {
  .hero-wave { width: 100%; opacity: 0.5; }

  /* 2-column grid: heading left, image right — desc + button span full width below */
  .hero-container {
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-rows: auto auto auto;
    align-items: center;
    padding: 28px 12px 40px;
    gap: 0;
  }

  .hero-content {
    display: contents;
  }

  .hero-content h1 {
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(28px, 8vw, 38px);
    max-width: 100%;
    min-height: auto;
    margin: 0;
    line-height: 1.1;
    font-weight: 800;
    align-self: center;
  }

  .hero-image-wrap {
    position: static;
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-image-wrap img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,59,115,0.15));
  }

  .hero-sub {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin: 16px 0 24px;
  }

  .hero-cta {
    grid-column: 1 / -1;
    grid-row: 3;
    display: block;
    width: 100%;
    max-width: 340px;
    font-size: 16px;
    padding: 16px 32px;
    text-align: center;
    margin: 0 auto;
    border-radius: 10px;
  }
}

/* ============================================
   FEATURES — Blue background, outline circle icons
   Matching the original 3-column layout
   ============================================ */
.features-section {
  padding: 60px 0; background: var(--primary); position: relative; z-index: 2;
  margin-top: 0; overflow-x: hidden;
}

.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 40px;
}

.feature-card { text-align: center; padding: 20px; }

.feature-icon {
  width: 90px; height: 90px; margin: 0 auto 20px;
  border: 3px solid rgba(255,255,255,0.6); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.feature-icon svg { width: 36px; height: 36px; stroke: var(--white); }

.feature-card h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ============================================
   BRANDS — "Spolupracujeme" section
   White bg, centered, pill badges, image grid
   ============================================ */
.brands-section {
  padding: 80px 0; background: var(--white); text-align: center; overflow-x: hidden;
}

.brands-section h2 {
  font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 12px; color: var(--primary); font-weight: 700;
}

.brands-section .section-sub {
  font-size: 13px; color: var(--text-light); max-width: 500px; margin: 0 auto 40px; line-height: 1.5;
}

.brands-grid {
  display: flex; flex-direction: column; gap: 36px; align-items: center;
  max-width: 620px; margin: 0 auto;
}

.brand-group { text-align: center; width: 100%; }

.brand-images {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
}

.brand-card {
  width: 280px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); transition: all var(--transition);
  cursor: pointer; text-decoration: none; color: inherit; display: block;
  border: 1px solid var(--gray-border);
}
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }

.brand-card-image { width: 100%; height: 220px; object-fit: cover; border-radius: 16px 16px 0 0; }
.brand-card-body { padding: 14px 16px; }
.brand-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin: 0; text-align: center; }

/* ============================================
   PRODUCTS — Grid of product cards
   ============================================ */
.products-section {
  padding: 48px 0 80px; background: var(--white); text-align: center;
}

.products-section h2 {
  font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 12px; color: var(--primary);
}

.section-sub {
  font-size: 15px; color: var(--text-light); max-width: 550px; margin: 0 auto 48px;
}

.products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 32px; text-align: left;
}

.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  display: flex; gap: 0; transition: all var(--transition);
  padding: 24px 0;
}
.product-card:hover { transform: translateY(-3px); }

.product-card-image { width: 180px; height: 180px; object-fit: contain; flex-shrink: 0; }

.product-card-body { padding: 8px 0 8px 16px; flex: 1; display: flex; flex-direction: column; }
.product-card-brand { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--primary); }
.product-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; flex: 1; }

.product-card-footer { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.product-link {
  padding: 7px 12px; background: var(--primary); color: var(--white); border-radius: 6px;
  font-size: 12px; font-weight: 600; transition: all var(--transition); text-decoration: none;
  white-space: nowrap;
}
.product-link:hover { background: var(--primary-dark); color: var(--white); }

.product-link-outline {
  padding: 7px 12px; background: transparent; color: var(--primary); border: 1.5px solid var(--primary);
  border-radius: 6px; font-size: 12px; font-weight: 600; transition: all var(--transition); text-decoration: none;
  white-space: nowrap;
}
.product-link-outline:hover { background: var(--primary); color: var(--white); }

.product-price { font-size: 15px; font-weight: 700; color: var(--primary); }

@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card { flex-direction: column; }
  .product-card-image { width: 100%; height: 200px; object-fit: contain; }
}

/* ============================================
   ABOUT — Image LEFT, text RIGHT
   ============================================ */
.about-section {
  padding: var(--section-padding); background: var(--white); overflow-x: hidden;
}

.about-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}

.about-image-wrap img {
  border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover;
}

.about-content h2 {
  font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; color: var(--primary); font-weight: 700;
}

.about-content p {
  font-size: 14px; color: var(--text-light); line-height: 1.8;
}

@media (max-width: 768px) {
  .about-container { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   TESTIMONIALS — Blue background, quote card
   ============================================ */
.testimonials-section {
  padding: var(--section-padding); background: #1b3a6b; color: var(--white); text-align: center;
  border-top: 3px solid var(--white);
}
.testimonials-section h2 {
  font-size: clamp(24px, 3vw, 34px); color: var(--white); margin-bottom: 40px;
}

.testimonial-card {
  max-width: 600px; margin: 0 auto; padding: 36px 40px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); text-align: left; position: relative;
}

.testimonial-quote {
  font-size: 16px; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 16px;
}

.testimonial-quote-icon {
  position: absolute; bottom: 20px; right: 28px; font-size: 60px;
  color: var(--accent); font-family: Georgia, serif; line-height: 1; opacity: 0.7;
}

.testimonial-author { font-size: 14px; color: var(--text-light); font-style: normal; }

/* ============================================
   CONTACT — Text left + form right, map below
   ============================================ */
.contact-section {
  padding: var(--section-padding); background: var(--white); overflow-x: hidden;
}

.contact-container {
  display: grid; grid-template-columns: 5fr 6fr; gap: 56px; align-items: start;
}

.contact-text h2 {
  font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 18px; color: var(--primary); font-weight: 700; line-height: 1.2;
}
.contact-text > p {
  font-size: 14px; color: var(--text-light); line-height: 1.9;
}
.contact-text a { color: var(--accent); text-decoration: underline; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white); padding: 28px 32px 32px; border-radius: var(--radius);
  border: 1px solid var(--gray-border); box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea {
  padding: 10px 14px; border: 1px solid #ced4da; border-radius: 6px;
  font-family: var(--font-body); font-size: 14px; color: var(--text); background: var(--white);
  transition: border-color var(--transition);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(53,125,249,0.1); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #adb5bd; }

.contact-form .btn-primary { align-self: flex-end; min-width: 120px; }

.form-consent { flex-direction: row; align-items: flex-start; }
.consent-label { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-light); cursor: pointer; }
.consent-label input[type="checkbox"] { margin-top: 3px; accent-color: var(--accent); }
.consent-label a { color: var(--accent); text-decoration: underline; }

.form-success { padding: 10px 14px; background: #def4f0; color: var(--success); border-radius: 6px; font-weight: 600; font-size: 14px; }
.form-error { padding: 10px 14px; background: #ffe8ef; color: var(--danger); border-radius: 6px; font-weight: 600; font-size: 14px; }

/* Map + Contact Info Section */
.contact-map-section {
  padding: 0 0 80px; background: var(--white);
}

.contact-map-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}

.contact-map-embed {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.contact-map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

.contact-info-detailed h3 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.contact-info-detailed > p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }

.contact-info-row { display: flex; gap: 16px; margin-bottom: 14px; align-items: flex-start; }
.contact-info-row strong { font-size: 14px; font-weight: 700; color: var(--text); min-width: 90px; }
.contact-info-row span { font-size: 14px; color: var(--accent); }

@media (max-width: 768px) {
  .contact-container { grid-template-columns: 1fr; gap: 32px; }
  .contact-map-container { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   FOOTER — Blue background
   ============================================ */
.footer-section {
  background: var(--primary); color: rgba(255,255,255,0.7); padding: 48px 0 0;
}

.footer-container {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-logo {
  font-size: 18px; font-weight: 800; color: var(--white); display: block; margin-bottom: 16px;
}
.footer-logo-link {
  display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 16px;
}
.footer-logo-img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.footer-logo-text {
  font-size: 16px; font-weight: 800; color: var(--white); letter-spacing: 0.5px;
}
.footer-logo-link .logo-sep { color: rgba(255,255,255,0.5); }

.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-social a:hover { color: var(--white); }
.footer-social svg { width: 20px; height: 20px; }

.footer-links h4, .footer-contact h4 {
  color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 14px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); text-decoration: underline; }

.footer-contact p { font-size: 13px; margin-bottom: 6px; color: rgba(255,255,255,0.6); }
.footer-contact svg, .footer-contact i { width: 14px; height: 14px; color: rgba(255,255,255,0.4); }

.footer-bottom { padding: 16px 0; }
.footer-bottom-inner {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 12px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 12px; text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 24px; z-index: 997;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 997;
  width: 44px; height: 44px; background: var(--primary); color: var(--white);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,59,115,0.3); transition: all var(--transition);
}
.scroll-top-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--dark); color: var(--white); padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-content { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.cookie-content h3 { font-size: 16px; font-weight: 600; width: 100%; margin: 0; color: var(--white); }
.cookie-content p { flex: 1; font-size: 14px; margin: 0; opacity: 0.85; min-width: 200px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-btn-accept {
  padding: 10px 24px; border-radius: 6px; border: none; cursor: pointer;
  background: var(--accent); color: var(--white); font-weight: 600; font-size: 14px;
  transition: all var(--transition);
}
.cookie-btn-accept:hover { background: var(--highlight); }
.cookie-btn-decline {
  padding: 10px 24px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; background: transparent; color: var(--white); font-size: 14px;
}
.cookie-btn-decline:hover { border-color: var(--white); }
.cookie-link { color: rgba(255,255,255,0.6); font-size: 12px; text-decoration: underline; }
@media (max-width: 640px) {
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-section { padding: 40px 0 60px; background: var(--white); }

.product-detail-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}

.product-detail-gallery .pd-main-img { width: 100%; max-width: 420px; border-radius: var(--radius); margin-bottom: 16px; }
.pd-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 420px; }
.pd-gallery-grid img { width: 100%; height: 120px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: opacity 0.2s; }
.pd-gallery-grid img:hover { opacity: 0.8; }

.product-detail-info h1 { font-size: clamp(20px, 3vw, 28px); margin-bottom: 8px; color: var(--text); font-weight: 800; }
.product-detail-brand { font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.product-detail-price { font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.product-detail-desc { font-size: 13px; color: var(--text-light); line-height: 1.5; margin-bottom: 16px; }
.product-detail-cta { margin-top: 20px; margin-bottom: 20px; }

.pd-section-title { font-size: 13px; font-weight: 700; color: var(--text); margin: 14px 0 4px; }
.pd-specs { margin-bottom: 10px; }
.pd-spec-line { font-size: 12px; color: var(--text); line-height: 1.45; }
.pd-parts { margin-bottom: 10px; }
.pd-part-line { font-size: 12px; color: var(--text); line-height: 1.45; }
.pd-download { margin-bottom: 6px; font-size: 12px; color: var(--text); padding-top: 10px; border-top: 1px solid var(--gray-border); }
.pd-download strong { color: var(--text); font-size: 12px; font-weight: 700; }
.pd-download a { color: var(--azure); word-break: break-all; font-size: 11px; }
.pd-download a:hover { text-decoration: underline; }

@media (max-width: 768px) { .product-detail-container { grid-template-columns: 1fr; } }

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-section { padding: 100px 0 60px; background: var(--white); }
.privacy-section h1 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 28px; color: var(--primary); }
.privacy-section h2 { font-size: 20px; margin-top: 28px; margin-bottom: 10px; color: var(--primary); }
.privacy-section p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }

/* ============================================
   404
   ============================================ */
.error-page {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 24px; background: var(--light);
}
.error-page h1 { font-size: 100px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 12px; }
.error-page p { font-size: 18px; color: var(--text-light); margin-bottom: 28px; }

/* ============================================
   ANIMATIONS
   ============================================ */
/* opacity/transform initial state is set by GSAP inline — CSS only handles the fallback (no-GSAP) path */
.gs-reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.gs-reveal.revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

/* ============================================
   CTA BANNER — Motorcycle Cross-Promotion
   ============================================ */
.cta-banner-section {
  position: relative; padding: 80px 0; overflow: hidden; text-align: center;
}
.cta-banner-bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: var(--primary);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.cta-banner-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,59,115,0.88) 0%, rgba(0,30,80,0.88) 100%);
}
.cta-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(53,125,249,0.18) 0%, transparent 60%);
}
.cta-banner-container { position: relative; z-index: 1; }
.cta-banner-content { max-width: 600px; margin: 0 auto; }
.cta-banner-content h2 { font-size: clamp(24px, 3vw, 34px); color: var(--white); margin-bottom: 12px; }
.cta-banner-content p { font-size: 16px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; }
.cta-banner-content .btn-primary { background: var(--white); color: var(--primary); }
.cta-banner-content .btn-primary:hover { background: var(--light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ============================================
   SUBPAGE — Product listing page
   ============================================ */
.subpage-header {
  padding: 110px 0 40px; text-align: center; background: var(--white);
}
.subpage-header h1 {
  font-size: clamp(34px, 5vw, 54px); color: var(--primary); font-weight: 800;
}

/* ============================================
   RESPONSIVE — ≤ 480px (small phones)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Nav */
  .nav-container { padding: 0 16px; }
  .logo-text { font-size: 14px; }

  /* Hero */
  .hero-container { padding: 32px 14px 40px; grid-template-columns: 1fr 38%; }
  .hero-content h1 { font-size: clamp(24px, 7.5vw, 32px); }
  .hero-image-wrap img { max-height: 200px; }
  .hero-sub { font-size: 13px; margin: 18px 0 22px; }
  .hero-cta { max-width: 280px; font-size: 15px; padding: 14px 24px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Brands */
  .brand-card { width: 100%; max-width: 320px; }

  /* Products */
  .product-card-image { width: 100%; height: 180px; }

  /* About */
  .about-image-wrap img { max-height: 240px; object-fit: cover; }

  /* Testimonial */
  .testimonial-card { padding: 24px 20px; }

  /* Contact */
  .contact-form-wrap { padding: 20px 16px; }
  .contact-info-row span { word-break: break-all; }

  /* CTA banner */
  .cta-banner-content h2 { font-size: clamp(20px, 6vw, 28px); }
  .cta-banner-content p { font-size: 14px; }

  /* Footer */
  .footer-logo-text { font-size: 14px; }

  /* Floating buttons */
  .whatsapp-float { right: 12px; bottom: 72px; width: 48px; height: 48px; }
  .scroll-top-btn { right: 12px; bottom: 16px; }
}

/* ============================================
   RESPONSIVE — < 350px (very small phones)
   ============================================ */
@media (max-width: 349px) {
  :root { --nav-height: 56px; }
  .container { padding: 0 10px; }

  /* Nav */
  .logo-text { font-size: 12px; }
  .logo-img { width: 30px; height: 30px; }

  /* Hero */
  .hero-container { padding: 24px 10px 36px; grid-template-columns: 1fr 36%; }
  .hero-content h1 { font-size: 24px; }
  .hero-image-wrap img { max-height: 160px; }
  .hero-sub { font-size: 13px; }
  .hero-cta { padding: 14px 20px; font-size: 14px; max-width: 240px; }

  /* Features */
  .feature-icon { width: 72px; height: 72px; }
  .feature-card h3 { font-size: 18px; }

  /* About */
  .about-content h2 { font-size: 22px; }

  /* Contact */
  .contact-text h2 { font-size: 24px; }
  .contact-info-detailed h3 { font-size: 22px; }
  .contact-map-embed iframe { height: 220px; }

  /* Footer */
  .footer-container { gap: 20px; }
  .footer-bottom-inner { font-size: 11px; }

  /* Floating buttons */
  .whatsapp-float { right: 8px; width: 44px; height: 44px; }
  .scroll-top-btn { right: 8px; width: 38px; height: 38px; }
}

@media print {
  nav, footer, .whatsapp-float, .scroll-top-btn, #page-loader, .cookie-banner { display: none !important; }
  section { break-inside: avoid; }
  * { color: #000 !important; background: #fff !important; }
}
