/* ============================================================
   HF Inflatables – CSS Architecture Guide
   ============================================================
   STRUCTURE: Variables → Reset → Layout → Components → Pages → Responsive

   RULES:
   1. Base <button> has NO padding (reset in line 65)
   2. .btn class adds default padding for CTA buttons
   3. Non-CTA buttons (.thumb, .nav-toggle) must explicitly reset padding
   4. Use element+class selectors (button.thumb) for higher specificity
   5. Never add properties to base element selectors (button, a, div)
   6. Component sections marked with ═══ COMPONENT ═══ headers

   COMPONENTS: btn, badge, nav, hero, card, gallery, product,
               contact, footer, usp, breadcrumb, lang, legal, page
   ============================================================ */


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --blue:       #1B3A6B;
  --blue-dk:    #122a52;
  --blue-lt:    #2a52a0;
  --blue-faint: #eef2f8;
  --orange:     #FF6B00;
  --orange-dk:  #e55d00;
  --orange-lt:  #ff8c33;
  --orange-faint:#fff3e8;
  --green:      #18a558;
  --green-lt:   #d4f5e5;
  --yellow:     #f59e0b;
  --yellow-lt:  #fef3c7;
  --purple:     #7c3aed;
  --purple-lt:  #ede9fe;
  --gray-col:   #6b7280;
  --gray-lt:    #f3f4f6;
  --white:      #ffffff;
  --g50:  #f9fafb;
  --g100: #f3f4f6;
  --g200: #e5e7eb;
  --g300: #d1d5db;
  --g400: #9ca3af;
  --g500: #6b7280;
  --g600: #4b5563;
  --g700: #374151;
  --g800: #1f2937;
  --g900: #111827;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.08);
  --shadow-blue:0 4px 20px rgba(27,58,107,.25);
  --transition: .2s ease;
  --nav-h: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--g800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; color: var(--g900); }
p { margin-bottom: 0; }
address { font-style: normal; }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; border-radius: var(--r-md); transition: all var(--transition);
  border: 2px solid transparent; white-space: nowrap; text-decoration: none;
  cursor: pointer; padding: 10px 28px; font-size: 14px;
}
.btn-sm  { padding: 8px 18px; font-size: 13.5px; }
.btn-md  { padding: 11px 24px; font-size: 15px; }
.btn-lg  { padding: 14px 32px; font-size: 16px; font-weight: 700; }
.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(255,107,0,.35); }
.btn-outline {
  background: transparent; color: var(--blue); border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-outline.btn-light { color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline.btn-light:hover { background: rgba(255,255,255,.15); color: var(--white); border-color: var(--white); }

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.badge-green  { background: var(--green-lt);  color: #0f6b38; }
.badge-blue   { background: #dbeafe;           color: #1d4ed8; }
.badge-orange { background: var(--orange-faint);color: #c2540a; }
.badge-gray   { background: var(--g100);        color: var(--g600); }
.badge-purple { background: var(--purple-lt);   color: #5b21b6; }
.badge-lg     { font-size: 13px; padding: 6px 14px; margin-bottom: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border-bottom: 3px solid var(--orange);
  height: var(--nav-h);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-logo:hover { opacity: .85; }
.nav-menu {
  display: flex; align-items: center; gap: 24px; flex: 1;
  justify-content: space-between;
}
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.nav-links::-webkit-scrollbar { display: none; }
.nav-link {
  font-size: 15px; font-weight: 500; color: var(--g700);
  padding: 6px 14px; border-radius: var(--r-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue); background: var(--blue-faint);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; padding: 0; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: var(--r-sm); background: var(--g100);
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--g700); border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: var(--r-md);
  border: 1.5px solid var(--g200); font-size: 13.5px; font-weight: 500;
  color: var(--g700); background: var(--white);
  transition: all var(--transition);
  white-space: nowrap;
}
.lang-current:hover { border-color: var(--blue); color: var(--blue); }
.lang-dropdown {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 8px;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500; color: var(--g700);
  transition: all var(--transition);
}
.lang-item:hover { background: var(--blue-faint); color: var(--blue); }
.lang-item.active { background: var(--blue); color: var(--white); }

/* ===== HERO ===== */

/* ═══ HERO ANIMATIONS (B2B dezent) ═══ */
@keyframes hero-gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes hero-pattern-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 25%, var(--blue-lt) 50%, var(--blue) 75%, var(--blue-dk) 100%);
  background-size: 300% 300%;
  animation: hero-gradient-shift 20s ease infinite;
  color: var(--white);
  padding: 80px 0 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: hero-pattern-drift 25s linear infinite;
  pointer-events: none;
}
.hero-container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange-lt); margin-bottom: 20px;
  background: rgba(255,107,0,.15); padding: 6px 16px; border-radius: 20px;
  border: 1px solid rgba(255,107,0,.3);
}
.hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
  max-width: 700px;
}
.hero-h1 .hl { color: var(--orange); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.8); margin-bottom: 36px;
  max-width: 580px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 36px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--orange);
}
.stat-label {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .8px;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800; color: var(--g900); margin-bottom: 12px;
}
.section-sub { font-size: 1.05rem; color: var(--g500); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.section-more { text-align: center; margin-top: 40px; }

/* ===== CATEGORY SECTIONS ===== */
.products-section { padding: 72px 0; }
.products-section:nth-child(even) { background: var(--g50); }
.cat-green  { border-top: 4px solid var(--green); }
.cat-blue   { border-top: 4px solid #3b82f6; }
.cat-orange { border-top: 4px solid var(--orange); }
.cat-gray   { border-top: 4px solid var(--gray-col); }
.cat-purple { border-top: 4px solid var(--purple); }

/* ===== PRODUCT GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--g200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--g300); }
.card-link { text-decoration: none; color: inherit; flex: 1; display: flex; flex-direction: column; }
.card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--g100); }
.card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease, opacity 0.35s ease;
}
.product-card:hover .card-img { /* scale removed, using opacity swap */ }
.card-img-wrap .badge { position: absolute; top: 12px; left: 12px; }
.card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.card-title {
  font-size: 15px; font-weight: 700; color: var(--g900);
  line-height: 1.35; transition: color var(--transition);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-link:hover .card-title { color: var(--blue); }
.card-desc { font-size: 13px; color: var(--g500); line-height: 1.55; flex: 1; }
.card-variants { font-size: 12px; color: var(--g500); font-weight: 500; }
.card-price { font-size: 15px; margin-top: 4px; }
.price-from { font-size: 12px; color: var(--g500); }
.price-val { font-weight: 800; color: var(--blue); font-size: 18px; }
.price-on-request { color: var(--g500); font-style: italic; font-size: 14px; }
.card-cta { margin: 12px 18px 18px; }

/* ===== USP SECTION ===== */
.usp-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dk) 100%);
  padding: 72px 0;
}
.usp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.usp-item {
  text-align: center; padding: 40px 32px;
  background: rgba(255,255,255,.06);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.1);
  transition: all var(--transition);
}
.usp-item:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.usp-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900; color: var(--orange);
  line-height: 1; margin-bottom: 8px;
}
.usp-label { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.usp-text { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ===== SHIPPING PREVIEW ===== */
.shipping-preview { background: var(--g50); }
.ship-table-wrap { overflow-x: auto; margin-bottom: 24px; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.ship-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); font-size: 14px;
  border-radius: var(--r-lg); overflow: hidden;
}
.ship-table th {
  background: var(--blue); color: var(--white);
  padding: 14px 16px; text-align: left;
  font-size: 13px; font-weight: 600; letter-spacing: .3px;
  white-space: nowrap;
}
.ship-table td {
  padding: 13px 16px; border-bottom: 1px solid var(--g200);
  font-weight: 500;
}
.ship-table tr:last-child td { border-bottom: none; }
.ship-table tr:hover td { background: var(--blue-faint); }
.ship-note { font-size: 13px; color: var(--g500); padding: 12px 4px; }
.ship-cta { text-align: center; margin-top: 24px; }

/* ===== CONTACT CTA BANNER ===== */
.contact-cta-banner {
  background: var(--orange);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.contact-cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; margin-bottom: 12px; color: var(--white);
}
.contact-cta-banner p { font-size: 1.05rem; margin-bottom: 28px; color: rgba(255,255,255,.9); }
.contact-cta-banner .btn-primary {
  background: var(--white); color: var(--orange); border-color: var(--white);
}
.contact-cta-banner .btn-primary:hover { background: var(--g100); color: var(--orange-dk); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-lt) 100%);
  color: var(--white);
  padding: 48px 0 40px;
}
.page-hero-green  { background: linear-gradient(135deg, #0f6b38 0%, #18a558 100%); }
.page-hero-blue   { background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%); }
.page-hero-orange { background: linear-gradient(135deg, #c2540a 0%, var(--orange) 100%); }
.page-hero-gray   { background: linear-gradient(135deg, var(--g700) 0%, var(--g600) 100%); }
.page-hero-purple { background: linear-gradient(135deg, #5b21b6 0%, var(--purple) 100%); }
.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--white); margin-bottom: 12px;
}
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 600px; }
.product-count {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.7); margin-top: 8px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 16px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--g600); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--g800); }

/* ===== SEARCH / FILTER ===== */
.filter-bar { margin-bottom: 32px; }
.search-input {
  width: 100%; max-width: 440px;
  padding: 12px 18px; border: 2px solid var(--g200);
  border-radius: var(--r-md); font-size: 15px;
  transition: border-color var(--transition);
  background: var(--white);
}
.search-input:focus { outline: none; border-color: var(--blue); }
.no-results { text-align: center; padding: 60px 20px; color: var(--g500); font-size: 1rem; }

/* ===== PRODUCT DETAIL ===== */
.product-detail { padding: 48px 0 72px; }
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; margin-bottom: 64px;
}
.product-gallery {}
.gallery-main {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--g100); margin-bottom: 12px;
  aspect-ratio: 1/1;
}
.gallery-main-img {
  width: 100%; height: 100%; object-fit: cover;
  cursor: zoom-in;
}
.gallery-thumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
}
button.thumb {
  width: 72px; height: 60px;
  border-radius: var(--r-sm); overflow: hidden;
  border: 2px solid var(--g200);
  transition: border-color var(--transition);
  padding: 0; background: none;
  cursor: pointer; font-size: 0;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active, .thumb:hover { border-color: var(--orange); }

.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-title { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; color: var(--g900); }
.product-price { margin: 4px 0 0 0; }
.price-main { font-size: 2rem; font-weight: 900; color: var(--blue); }

.variant-select label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--g600); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px;
}
.variant-select select {
  width: 100%; padding: 11px 16px;
  border: 2px solid var(--g200); border-radius: var(--r-md);
  font-size: 15px; font-weight: 500;
  appearance: none; background: var(--white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 16px center;
  cursor: pointer; transition: border-color var(--transition);
}
.variant-select select:focus { outline: none; border-color: var(--blue); }

.product-meta {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--g50); padding: 20px; border-radius: var(--r-lg);
  border: 1px solid var(--g200);
}
.meta-item { font-size: 14px; color: var(--g600); }
.meta-item strong { color: var(--g800); }

.product-cta { width: 100%; justify-content: center; font-size: 17px; padding: 16px; }

.product-desc, .product-inquiry, .product-shipping {
  margin-bottom: 64px;
}
.product-desc h2, .product-inquiry h2, .product-shipping h2 {
  font-size: 1.4rem; font-weight: 700; color: var(--blue);
  margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 2px solid var(--g200);
}
.desc-content { font-size: 15px; color: var(--g700); line-height: 1.8; }
.desc-content p { margin-bottom: 14px; }
.desc-content ul { margin-left: 24px; list-style: disc; }
.desc-content li { margin-bottom: 8px; }

/* ===== CONTACT ===== */
.contact-page { padding: 64px 0; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 56px;
}
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px; font-weight: 600; color: var(--g700);
  text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px; border: 2px solid var(--g200);
  border-radius: var(--r-md); font-size: 15px;
  transition: border-color var(--transition);
  background: var(--white); color: var(--g800);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(27,58,107,.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-gdpr { flex-direction: row; align-items: flex-start; gap: 12px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer; font-size: 13.5px; color: var(--g600); line-height: 1.6;
}
.checkbox-label input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; }
.checkbox-label a { color: var(--blue); font-weight: 500; }

.contact-card {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--shadow-md);
}
.contact-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--blue); margin-bottom: 20px; }
.contact-card p, .contact-card address {
  font-size: 14.5px; color: var(--g600); margin-bottom: 14px; line-height: 1.7;
}
.contact-card a { color: var(--blue); font-weight: 500; }
.contact-card a:hover { color: var(--orange); }
.contact-card hr { border: none; border-top: 1px solid var(--g200); margin: 20px 0; }

/* ===== SHIPPING PAGE ===== */
.shipping-page { padding: 64px 0; }
.ship-info-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.info-box {
  background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-lg); padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.info-box h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue); margin-bottom: 16px; }
.info-box ul { display: flex; flex-direction: column; gap: 10px; }
.info-box li { font-size: 14px; color: var(--g600); padding-left: 4px; }
.info-box p { font-size: 14px; color: var(--g600); line-height: 1.7; }

/* ===== LEGAL PAGES ===== */
.legal-page { padding: 64px 0; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.35rem; font-weight: 700; color: var(--blue); margin: 36px 0 12px; }
.legal-content h3 { font-size: 1.05rem; font-weight: 600; color: var(--g800); margin: 22px 0 8px; }
.legal-content p, .legal-content li { font-size: 15px; color: var(--g600); line-height: 1.8; margin-bottom: 12px; }
.legal-content ul { margin-left: 24px; list-style: disc; }
.legal-content a { color: var(--blue); }
.legal-content hr { border: none; border-top: 1px solid var(--g200); margin: 28px 0; }

/* ===== FOOTER ===== */
.footer { background: var(--g900); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1) opacity(.85); }
.footer-desc { font-size: 14px; line-height: 1.75; margin-bottom: 20px; max-width: 280px; color: rgba(255,255,255,.6); }
.footer-contact-block { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-link { font-size: 14px; color: rgba(255,255,255,.7); transition: color var(--transition); }
.footer-contact-link:hover { color: var(--white); }
.footer-heading { font-size: 11px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-address { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; }
.footer-badges { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06); padding: 5px 12px;
  border-radius: 20px; border: 1px solid rgba(255,255,255,.1);
  width: fit-content;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; display: flex;
  justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.45);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-size: 20px; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; z-index: 500;
  transition: all .3s ease;
  display: flex; align-items: center; justify-content: center;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ===== BREADCRUMB DARK (in page body) ===== */
.breadcrumb-light {
  display: flex; gap: 8px; font-size: 13px;
  color: var(--g500); margin-bottom: 24px; flex-wrap: wrap;
}
.breadcrumb-light a { color: var(--g600); }
.breadcrumb-light a:hover { color: var(--blue); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:translateY(0); } }
.animate-fadeup { animation: fadeUp .5s ease both; }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-blue   { color: var(--blue); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.visually-hidden { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* ===== RESPONSIVE – TABLET ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; }
  .ship-info-boxes { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE – MOBILE ===== */
@media (max-width: 1200px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 16px; }
  section { padding: 52px 0; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--white); padding: 24px 20px;
    flex-direction: column; align-items: flex-start;
    overflow-y: auto; gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; width: 100%; gap: 4px; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 16px; border-radius: var(--r-md); }
  .nav-actions { width: 100%; flex-direction: column; align-items: flex-start; gap: 12px; }
  .lang-dropdown { width: 100%; position: static; box-shadow: none; border: 1px solid var(--g200); transform: none; opacity: 1; visibility: visible; }
  .lang-dropdown:not(.open) { display: none; }

  /* Hero */
  .hero { padding: 52px 0 48px; }
  .hero-h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 24px; }

  /* Grid */
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 1.65rem; }
  .products-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .usp-item { padding: 28px 16px; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ===== PRINT ===== */
@media print {
  .navbar, #back-to-top, .nav-toggle { display: none !important; }
  body { font-size: 12pt; }
  a { color: inherit; }
  .hero, .usp-section, .contact-cta-banner { background: #fff !important; color: #000 !important; }
}


/* Accessories Row in Product Cards */
.acc-row { padding: 10px 16px 6px; border-top: 1px solid var(--g200); }
.acc-label { font-size: 11px; font-weight: 600; color: var(--g600); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 8px; }
.acc-item { display: flex; align-items: center; gap: 10px; padding: 5px 0; border-bottom: 1px solid var(--g100); }
.acc-item:last-child { border-bottom: none; }
.acc-img { width: 40px; height: 40px; object-fit: cover; border-radius: var(--r-sm); flex-shrink: 0; background: var(--g100); }
.acc-title { font-size: 12px; color: var(--g700); flex: 1; line-height: 1.3; }
.acc-price { font-size: 12px; font-weight: 700; color: var(--blue); white-space: nowrap; }


/* Hover image swap on product cards */
.card-img-wrap { position: relative; overflow: hidden; }
.card-img-hover {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.card-link:hover .card-img-hover { opacity: 1; }
.card-link:hover .card-img { opacity: 0; transition: opacity 0.35s ease; }

/* Footer Bottom Responsive */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 4px;
    font-size: 14px;
}
.footer-bottom-links a {
    white-space: nowrap;
}
@media (max-width: 768px) {
    .footer-bottom-links {
        gap: 6px 4px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

/* VAT note */
.vat-note { font-size: 11px; color: var(--g500); margin: -16px 0 8px 0; display: block; }
.vat-note-listing { font-size: 11px; color: var(--g500); margin-bottom: 16px; text-align: right; }

/* ═══ COMPONENT: Size Info ═══ */
.size-info {
  /* dezent, kein Rahmen */
  display: flex; align-items: center; gap: 12px;
  padding: 0; margin: 6px 0;
  background: none;
  font-size: 13px; color: var(--g700);
}
.size-info-icon { font-size: 15px; }
.size-info-label { font-weight: 600; color: var(--g500); font-size: 11px; text-transform: uppercase; letter-spacing: .3px; }
.size-info-value { font-weight: 700; color: var(--g800); }
.size-info-divider { width: 1px; height: 20px; background: var(--g300); }
/* Card size info (compact) */
.card-size {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 0; margin-top: 4px;
  font-size: 11.5px; color: var(--g500);
}
.card-size span { display: flex; align-items: center; gap: 3px; }
.card-size .sz-icon { font-size: 13px; }


/* ══════ COMPONENT: Financing Info ══════ */
.financing-box {
  margin: 16px 0;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fff8f0 0%, #fff3e8 100%);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}
.financing-box .financing-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--g700);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.financing-box .financing-rate {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.2;
}
.financing-box .financing-rate span {
  font-size: 13px;
  font-weight: 400;
  color: var(--g600);
}
.financing-box .financing-details {
  font-size: 11px;
  color: var(--g500);
  margin-top: 6px;
  line-height: 1.5;
}


/* ══════ COMPONENT: Card Financing Line ══════ */
.card-financing {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  margin-top: 2px;
  padding: 0;
}
.card-financing span {
  font-weight: 400;
  color: var(--g500);
}



/* ===== ACC-SECTION BASE (product detail pages) ===== */
.acc-section { margin-top: 32px; padding: 24px; background: var(--g50); border-radius: var(--r-md); }
.acc-section h3 { margin-bottom: 16px; font-size: 18px; color: var(--blue); }
.acc-section .variant-info { font-size: 14px; font-weight: 400; color: var(--g500); margin-left: 8px; }

/* ===== MOBILE OPTIMIZATIONS ===== */

/* 1) Product cards: 2 per row on mobile */
@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .product-card .card-img-wrap { min-height: 120px; }
  .product-card .card-img { height: auto; }
  .product-card .card-title { font-size: 13px; line-height: 1.3; }
  .product-card .card-desc { font-size: 11px; line-height: 1.3; -webkit-line-clamp: 2; }
  .product-card .card-size { font-size: 11px; }
  .product-card .card-price { font-size: 14px; }
  .product-card .price-val { font-size: 16px; }
  .product-card .card-financing { font-size: 10px; }
  .product-card .btn { font-size: 13px; padding: 10px 12px; }

  /* Acc-row in cards: compact on mobile */
  .product-card .acc-row { padding: 8px 10px 4px; }
  .product-card .acc-label { font-size: 9px; margin-bottom: 4px; }
  .product-card .acc-item { gap: 6px; padding: 3px 0; }
  .product-card .acc-img { width: 28px; height: 28px; }
  .product-card .acc-title { font-size: 10px; }
  .product-card .acc-price { font-size: 10px; }
}

/* 2) Product detail: acc-section uniform cards */
.acc-section .acc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.acc-section .acc-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r-md);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.acc-section .acc-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px;
}
.acc-section .acc-card .acc-card-title {
  font-size: 13px;
  color: var(--g700);
  line-height: 1.3;
  margin-bottom: 6px;
  flex: 1;
}
.acc-section .acc-card .acc-card-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
}

@media (max-width: 767px) {
  /* 2) Detail page acc-section: uniform 3-col on mobile too */
  .acc-section .acc-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .acc-section .acc-card { padding: 10px 6px; }
  .acc-section .acc-card img { width: 50px; height: 50px; }
  .acc-section .acc-card .acc-card-title { font-size: 11px; }
  .acc-section .acc-card .acc-card-price { font-size: 13px; }

  /* 3) Detail page: fix overflow elements */
  .product-detail { overflow-x: hidden; }
  .product-detail .container { padding: 0 16px; }
  .product-cta, .btn-outline { max-width: 100%; box-sizing: border-box; }
  .acc-section { margin: 16px 0; padding: 16px !important; overflow: hidden; }
  .acc-section h3 { font-size: 16px; }
  .acc-section .variant-info { font-size: 12px; }

  /* Description section padding */
  .product-page-content > h2,
  .product-page-content > h3,
  .product-page-content > p,
  .product-page-content > ul,
  .product-page-content > div { padding-left: 16px; padding-right: 16px; }
}


/* =====================================================
   MEGA MENU & DROPDOWN (v2.0)
   ===================================================== */
.nav-item { position: relative; }
.nav-arrow { font-size: 10px; opacity: 0.6; margin-left: 2px; transition: transform 0.2s; }
.nav-item.open .nav-arrow { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--g100);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 24px;
  min-width: 600px;
  z-index: 9999;
  animation: megaFadeIn 0.15s ease;
}
@keyframes megaFadeIn { from { opacity:0; transform: translateX(-50%) translateY(-8px); } to { opacity:1; transform: translateX(-50%) translateY(0); } }
.mega-menu.open { display: block; }
.mega-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 24px; }
.mega-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--g400); margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--g100); }
.mega-link {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--g700);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
  margin-bottom: 2px;
}
.mega-link:hover { background: var(--g50); color: var(--blue); }
.mega-link--highlight { background: var(--g50); font-weight: 700; color: var(--blue); }
.mega-vol { font-size: 11px; color: var(--g400); font-weight: 400; margin-top: 1px; }

/* Service Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--g100);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  padding: 8px;
  min-width: 220px;
  z-index: 9999;
  animation: megaFadeIn 0.15s ease;
}
.dropdown-menu.open { display: block; }
.dropdown-link {
  display: block;
  padding: 9px 14px;
  border-radius: 7px;
  text-decoration: none;
  color: var(--g700);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s;
}
.dropdown-link:hover { background: var(--g50); color: var(--blue); }

/* Mobile mega menu adjustments */
@media (max-width: 768px) {
  .mega-menu, .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: auto;
    animation: none;
    background: var(--g50);
    border-top: 1px solid var(--g100);
    margin-top: 4px;
  }
  .mega-inner { grid-template-columns: 1fr; gap: 0; }
  .mega-col { margin-bottom: 12px; }
}


@media (min-width: 769px) {
  .has-mega:hover .mega-menu,
  .has-dropdown:hover .dropdown-menu {
    display: block;
  }
  .has-mega:hover .nav-arrow,
  .has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
  }
}


/* =====================================================
   MEGA MENU CLICK-TOGGLE (v2.1)
   desktop + mobile: click opens/closes
   ===================================================== */
.mega-menu { display: none; }
.mega-menu.open { display: block !important; }
.dropdown-menu { display: none; }
.dropdown-menu.open { display: block !important; }
/* MEGA MENU CLICK FIX */
