/* =============================================
   RHG Sh.P.K. — Main Stylesheet
   Primary: #2a77b8 | Dark: #1e5f96 | Light: #e8f3fb
   ============================================= */

@font-face {
  font-family: 'Inter Variable';
  src: url('fonts/inter-latin-wght-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Inter Variable';
  src: url('fonts/inter-latin-ext-wght-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* ---- Reset ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter Variable','Inter',ui-sans-serif,system-ui,-apple-system,sans-serif;
  color: #1a2535;
  background: #f8fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- Variables ---- */
:root {
  --primary: #2a77b8;
  --primary-dark: #1e5f96;
  --primary-light: #e8f3fb;
  --primary-mid: #4da3e0;
  --fg: #1a2535;
  --muted: #5a7080;
  --border: #d4e4f0;
  --card: #ffffff;
  --bg: #f8fafc;
  --bg-light: #f0f7fd;
  --shadow-sm: 0 1px 4px rgba(42,119,184,0.08);
  --shadow-md: 0 4px 16px rgba(42,119,184,0.13);
  --shadow-lg: 0 8px 32px rgba(42,119,184,0.16);
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --max-w: 1280px;
}

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
@media(min-width:1024px){ .container{ padding: 0 2rem; } }
.section { padding: 4.5rem 0; }
@media(min-width:768px){ .section{ padding: 6rem 0; } }
.section-text { color: var(--muted); line-height: 1.75; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.text-center { text-align: center; }
.bg-white { background: white; }
.bg-light { background: var(--bg-light); }

/* ---- Typography ---- */
h1 { font-size: clamp(2rem,5vw,3.75rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.overline {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--primary); background: var(--primary-light);
  padding: 0.3rem 0.75rem; border-radius: 0.35rem;
  margin-bottom: 0.875rem;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { color: var(--muted); margin-top: 0.875rem; max-width: 540px; margin-left: auto; margin-right: auto; font-size: 0.95rem; }

/* ---- Header ---- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(42,119,184,0.07);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 1.25rem; max-width: var(--max-w); margin: 0 auto;
}
@media(min-width:1024px){ .header-inner{ padding: 0.55rem 2rem; } }
.logo img { width: 45px; height: auto; object-fit: contain; }
.nav-links { display: none; gap: 1.75rem; align-items: center; }
@media(min-width:1024px){ .nav-links{ display: flex; } }
.nav-links a {
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
  transition: color .15s; position: relative; padding: 0.25rem 0;
}
.nav-links a:hover,.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--primary); border-radius: 2px;
}
.header-right { display: none; align-items: center; gap: 0.75rem; }
@media(min-width:1024px){ .header-right{ display: flex; } }

/* Lang switcher */
.lang-switcher {
  display: flex; gap: 2px; background: var(--bg-light);
  border: 1px solid var(--border); border-radius: 0.5rem; padding: 3px;
}
.lang-btn {
  border: none; background: transparent; cursor: pointer;
  padding: 0.25rem 0.625rem; border-radius: 0.35rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: .05em;
  color: var(--muted); transition: all .15s; font-family: inherit;
}
.lang-btn.active { background: var(--primary); color: white; }

/* Call button */
.btn-call {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--primary); color: white;
  padding: 0.45rem 1rem; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 600;
  box-shadow: var(--shadow-sm); transition: all .2s;
}
.btn-call:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-call svg { width: 0.875rem; height: 0.875rem; }

/* Hamburger */
.hamburger {
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent; cursor: pointer;
  padding: 0.5rem; border-radius: 0.5rem; color: var(--fg); transition: background .15s;
}
.hamburger:hover { background: var(--primary-light); }
@media(min-width:1024px){ .hamburger{ display: none; } }

/* Mobile menu */
.mobile-menu {
  display: none; border-top: 1px solid var(--border);
  background: white; padding: 1rem 1.25rem 1.25rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.7rem 0.75rem; border-radius: 0.5rem;
  font-size: 0.9rem; font-weight: 500; color: var(--fg); transition: background .15s;
}
.mobile-menu a:hover,.mobile-menu a.active { background: var(--primary-light); color: var(--primary); }
.mobile-menu-footer {
  margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.mobile-lang { display: flex; gap: 0.5rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  border: none; transition: all .2s; font-family: inherit;
  text-decoration: none;
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-primary { background: var(--primary); color: white; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.1); color: white;
  border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-submit { width: 100%; }
@media(min-width:640px){ .btn-submit{ width: auto; } }

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-tires.jpg') center/cover no-repeat;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(22,60,100,0.88) 0%,rgba(42,119,184,0.72) 60%,rgba(16,48,82,0.9) 100%);
}
.hero-top-line { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); }
.hero-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 7rem;
  background: linear-gradient(to bottom,transparent,var(--bg)); pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px; padding: 8rem 1.25rem 6rem;
  margin: 0 auto;
}
@media(min-width:1024px){ .hero-content{ margin: 0; padding-left: 2rem; } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(255,255,255,0.22); background: rgba(42,119,184,0.18);
  border-radius: 999px; padding: 0.4rem 1rem;
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem; backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--primary-mid);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.2); }
}
.hero h1 { color: white; text-wrap: balance; }
.hero > .hero-content > p {
  color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-top: 1.25rem;
  max-width: 500px; line-height: 1.75;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 2.5rem;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px; padding: 0.3rem 0.875rem;
  font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.8);
}
.trust-badge svg { width: 0.875rem; height: 0.875rem; opacity: 0.7; }
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); animation: bounce 2s infinite; z-index: 2;
}
.hero-scroll svg { width: 1.5rem; height: 1.5rem; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- About ---- */
.about-grid { display: grid; gap: 3.5rem; align-items: center; }
@media(min-width:1024px){ .about-grid{ grid-template-columns: 1fr 1fr; } }
.about-img-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 440px; object-fit: cover; }
.about-bullets { display: flex; flex-direction: column; gap: 0.875rem; }
.about-bullets li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; font-weight: 500; color: var(--fg);
}
.about-bullets li svg { width: 1.1rem; height: 1.1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.15rem; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media(min-width:1024px){ .stats-grid{ grid-template-columns: repeat(4,1fr); } }
.stat-card {
  display: flex; flex-direction: column; align-items: center;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2rem 1rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: all .25s;
}
.stat-card:hover { border-color: rgba(42,119,184,0.4); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-icon {
  width: 3rem; height: 3rem; border-radius: 0.875rem;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; transition: all .2s;
}
.stat-card:hover .stat-icon { background: var(--primary); color: white; }
.stat-icon svg { width: 1.4rem; height: 1.4rem; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--fg); line-height: 1; font-variant-numeric: tabular-nums; }
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 0.375rem; }

/* ---- Products ---- */
.products-grid { display: grid; gap: 1.5rem; }
@media(min-width:640px){ .products-grid{ grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .products-grid{ grid-template-columns: repeat(4,1fr); } }
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: all .25s; box-shadow: var(--shadow-sm);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.product-img { position: relative; height: 14rem; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,0.52),transparent);
}
.product-icon {
  position: absolute; top: 1rem; left: 1rem;
  width: 2.5rem; height: 2.5rem; border-radius: 0.625rem;
  background: rgba(255,255,255,0.18); color: white;
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
}
.product-icon svg { width: 1.2rem; height: 1.2rem; }
.product-body { padding: 1.4rem; }
.product-body h3 { color: var(--fg); margin-bottom: 0.5rem; }
.product-body p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.product-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.825rem; font-weight: 600; color: var(--primary);
  margin-top: 0.875rem; transition: gap .2s;
}
.product-link:hover { gap: 0.6rem; }
.product-link svg { width: 0.875rem; height: 0.875rem; }

/* ---- Why Us ---- */
.grid-4 { display: grid; gap: 1.25rem; }
@media(min-width:640px){ .grid-4{ grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .grid-4{ grid-template-columns: repeat(4,1fr); } }
.why-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 1.75rem;
  transition: all .25s; box-shadow: var(--shadow-sm);
}
.why-card:hover { border-color: rgba(42,119,184,0.4); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-icon {
  width: 3rem; height: 3rem; border-radius: 0.875rem;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: all .2s;
}
.why-card:hover .why-icon { background: var(--primary); color: white; }
.why-icon svg { width: 1.4rem; height: 1.4rem; }
.why-card h3 { margin-bottom: 0.5rem; color: var(--fg); }
.why-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ---- CTA Banner ---- */
.banner-blue {
  background: var(--primary); padding: 4rem 0; position: relative; overflow: hidden;
}
.banner-blue::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px,rgba(255,255,255,0.05) 1px,transparent 0);
  background-size: 28px 28px;
}
.banner-inner {
  position: relative; display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem; text-align: center;
}
@media(min-width:1024px){ .banner-inner{ flex-direction: row; justify-content: space-between; text-align: left; } }
.banner-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem; flex-shrink: 0;
  background: rgba(255,255,255,0.15); color: white;
  display: flex; align-items: center; justify-content: center;
}
.banner-icon svg { width: 1.75rem; height: 1.75rem; }
.banner-text h2 { color: white; font-size: clamp(1.3rem,2.5vw,1.9rem); }
.banner-text p { color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-top: 0.375rem; max-width: 460px; }

/* ---- Contact Form ---- */
.contact-wrap { max-width: 720px; margin: 0 auto; }
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 1.25rem;
}
.form-row { display: grid; gap: 1.25rem; }
@media(min-width:640px){ .form-row{ grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--fg); }
.req { color: #dc2626; }
.form-field input,
.form-field textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.875rem; font-family: inherit; color: var(--fg);
  background: var(--bg-light); outline: none; transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42,119,184,0.12);
}
.form-field textarea { resize: none; }
.form-msg {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.875rem 1rem; border-radius: var(--radius);
  font-size: 0.84rem;
}
.form-msg svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.form-msg-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.form-msg-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.spinner { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Map ---- */
.map-wrap { width: 100%; height: 350px; }
@media(min-width:768px){ .map-wrap{ height: 400px; } }
.map-wrap iframe { display: block; }

/* ---- Contact Bar ---- */
.contact-bar { background: var(--primary); padding: 1.5rem 0; }
.contact-bar-grid { display: grid; gap: 1.5rem; }
@media(min-width:768px){ .contact-bar-grid{ grid-template-columns: repeat(3,1fr); } }
.contact-bar-item {
  display: flex; align-items: flex-start; gap: 1rem; color: white; font-size: 0.875rem;
}
.contact-bar-item a { color: white; display: block; }
.contact-bar-item a:hover { text-decoration: underline; }
.contact-bar-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
}
.contact-bar-icon svg { width: 1.1rem; height: 1.1rem; }

/* ---- Footer ---- */
.footer { background: var(--primary-dark); padding: 4rem 0 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media(min-width:640px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .footer-grid{ grid-template-columns: 2fr 1.5fr 1fr 1fr; } }
.footer-logo { width: 45px; height: auto; margin-bottom: 1rem; }
.footer-col > p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.75; }
.footer-col h4 { color: rgba(255,255,255,0.45); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.68);
}
.footer-col ul li svg { width: 1rem; height: 1rem; color: var(--primary-mid); flex-shrink: 0; margin-top: 0.1rem; }
.footer-hours-item { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.68); font-size: 0.875rem; }
.footer-hours-item svg { width: 1rem; height: 1rem; color: var(--primary-mid); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.25rem; }
.social-btn {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: white;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.social-btn:hover { background: rgba(255,255,255,0.22); }
.social-btn svg { width: 1.1rem; height: 1.1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0; margin-top: 3.5rem;
}
.footer-bottom-inner {
  display: flex; flex-direction: column; align-items: center; gap: 0.875rem;
}
@media(min-width:640px){ .footer-bottom-inner{ flex-direction: row; justify-content: space-between; } }
.footer-bottom-inner p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-bottom-inner nav { display: flex; gap: 1.5rem; }
.footer-bottom-inner nav button,
.footer-bottom-inner nav .modal-trigger {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  background: none; border: none; cursor: pointer; transition: color .15s;
  font-family: inherit;
}
.footer-bottom-inner nav button:hover { color: white; }

/* ---- Modals ---- */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: flex-end; justify-content: center;
}
@media(min-width:640px){ .modal{ align-items: center; } }
.modal[hidden] { display: none; }
.modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52); backdrop-filter: blur(2px);
  cursor: pointer;
}
.modal-box {
  position: relative; z-index: 1; background: white;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%; max-width: 640px; max-height: 85vh;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lg);
}
@media(min-width:640px){ .modal-box{ border-radius: var(--radius-xl); max-height: 80vh; } }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.modal-header h2 { font-size: 1.1rem; color: var(--fg); }
.modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: 0.25rem; border-radius: 0.375rem;
  display: flex; transition: background .15s;
}
.modal-close:hover { background: var(--bg-light); }
.modal-close svg { width: 1.1rem; height: 1.1rem; }
.modal-body { padding: 1.5rem; overflow-y: auto; flex: 1; }
.legal-section { margin-bottom: 1.5rem; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h3 { font-size: 0.9rem; font-weight: 700; color: var(--fg); margin-bottom: 0.5rem; }
.legal-section p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }
.legal-section a { color: var(--primary); }
.legal-section a:hover { text-decoration: underline; }

/* ---- WhatsApp ---- */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 90;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform .2s;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 1.75rem; height: 1.75rem; }

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  padding: 1rem; display: none;
}
#cookie-banner.visible { display: block; }
.cookie-banner-card {
  max-width: 900px; margin: 0 auto; background: white;
  border-radius: var(--radius-xl); box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.cookie-banner-main {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.25rem 1.5rem; align-items: flex-start;
}
@media(min-width:768px){ .cookie-banner-main{ flex-direction: row; align-items: center; } }
.cookie-banner-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 0.625rem; flex-shrink: 0;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.cookie-banner-icon svg { width: 1.1rem; height: 1.1rem; }
.cookie-banner-text { flex: 1; }
.cookie-banner-text strong { font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.cookie-banner-text p { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; line-height: 1.5; }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; flex-shrink: 0; }
.cb-btn {
  border: none; cursor: pointer; padding: 0.45rem 1rem; border-radius: 0.625rem;
  font-size: 0.78rem; font-weight: 600; font-family: inherit; transition: all .15s;
}
.cb-btn-accept { background: var(--primary); color: white; }
.cb-btn-accept:hover { background: var(--primary-dark); }
.cb-btn-necessary { background: transparent; border: 1px solid var(--border); color: var(--fg); }
.cb-btn-necessary:hover { background: var(--bg); }
.cb-btn-close {
  background: transparent; border: none; cursor: pointer;
  color: var(--muted); padding: 0.25rem; border-radius: 0.375rem;
  display: flex; transition: background .15s; flex-shrink: 0;
}
.cb-btn-close:hover { background: var(--bg-light); }
.cb-btn-close svg { width: 1rem; height: 1rem; }
