/* BalkonSetup — wspólne style www (wyodrębnione z layout.blade.php) */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #ece9e4;
  --bg-dark: #1a1a1a;
  --text-light: #ffffff;
  --accent-warm: #c8a87c;
  --accent-gold: #d4b896;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
}
/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: #ece9e4;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s, border-bottom-color 0.3s, box-shadow 0.3s;
}
/* Po zescrollowaniu poniżej hero — solidne tło nawigacji */
nav.scrolled {
  background: #ece9e4 !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
nav.scrolled .logo-img { content: url('/images/logo/logo-nav.png') !important; }
nav.scrolled .nav-links a { color: rgba(42,36,32,0.7) !important; }
nav.scrolled .nav-links a:hover { color: #2a2420 !important; }
nav.scrolled .nav-links a.active { color: #2a2420 !important; }
nav.scrolled .nav-links a::after { background: #a0784c !important; }
nav.scrolled .mobile-menu-btn span { background: #2a2420 !important; }
nav.scrolled .lang-flag { box-shadow: 0 1px 3px rgba(0,0,0,0.12) !important; }
@media (max-width: 768px) {
  nav.scrolled .nav-links { background: #ece9e4 !important; }
  nav.scrolled .nav-links a { color: rgba(42,36,32,0.7) !important; }
  nav.scrolled .lang-switcher-mobile { border-top-color: rgba(42,36,32,0.08) !important; }
}
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 44px; width: auto; display: block; }
.logo-img-footer { height: 40px; margin-bottom: 16px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(42,36,32,0.7); font-size: 16px;
  letter-spacing: 0.5px; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: #a0784c; transition: width 0.3s;
}
.nav-links a:hover { color: #2a2420; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #2a2420; }
.nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switcher { display: flex; gap: 10px; align-items: center; }
.lang-switcher a {
  text-decoration: none; display: flex; align-items: center; justify-content: center;
  opacity: 0.45; transition: opacity 0.3s, transform 0.3s;
}
.lang-switcher a:hover { opacity: 0.75; transform: scale(1.08); }
.lang-switcher a.active { opacity: 1; }
.lang-flag { width: 26px; height: 18px; border-radius: 3px; display: block; box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
.lang-switcher-mobile { display: none; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: #2a2420; margin: 5px 0; }
/* SECTIONS COMMON */
.section { padding: 100px 48px; }
.section-dark { background: #2a2420; color: #fff; }
.section-light { background: var(--bg); color: #2a2420; }
.section-warm { background: #3a322c; color: #fff; }
.section-title {
  font-family: 'DM Sans', sans-serif; font-size: clamp(24px, 3vw, 36px);
  font-weight: 700; text-align: center; margin-bottom: 60px; letter-spacing: 0.3px;
}
.section-title span { color: var(--accent-warm); }
.section-inner { max-width: 1100px; margin: 0 auto; }
/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; padding: 18px 42px;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500;
  letter-spacing: 0.5px; text-decoration: none; border-radius: 50px;
  cursor: pointer; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); border: none;
}
.btn-primary { background: var(--accent-warm); color: #1a1a1a; box-shadow: 0 4px 20px rgba(200,168,124,0.25); }
.btn-primary:hover { background: var(--accent-gold); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,168,124,0.35); }
.btn-dark { background: var(--accent-warm); color: #1a1a1a; box-shadow: 0 4px 20px rgba(200,168,124,0.2); }
.btn-dark:hover { background: var(--accent-gold); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: #2a2420; border: 1.5px solid rgba(42,36,32,0.25); }
.btn-outline-dark:hover { border-color: var(--accent-warm); color: var(--accent-warm); transform: translateY(-2px); }
.btn-warm { background: var(--accent-warm); color: #1a1a1a; box-shadow: 0 4px 20px rgba(200,168,124,0.2); }
.btn-warm:hover { background: var(--accent-gold); transform: translateY(-2px); }
.btn-outline-warm { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-outline-warm:hover { border-color: var(--accent-warm); color: var(--accent-warm); transform: translateY(-2px); }
.btn-outline { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--accent-warm); color: var(--accent-warm); background: rgba(200,168,124,0.08); transform: translateY(-2px); }
.btn-lg { font-size: 18px; padding: 20px 48px; }
/* BOUNCE */
@keyframes softBounce { 0%, 85%, 100% { transform: translateY(0); } 90% { transform: translateY(-5px); } 95% { transform: translateY(0); } 97% { transform: translateY(-2px); } }
.btn-bounce { animation: softBounce 3s 1s infinite; }
/* CTA */
.cta-box {
  text-align: center; max-width: 1100px; margin: 0 auto;
}
.cta-box p {
  font-size: clamp(14px, 1.3vw, 16px); line-height: 1.7;
  color: rgba(255,255,255,0.7); margin-bottom: 40px;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
/* FOOTER */
footer {
  background: #221e1a; color: rgba(255,255,255,0.5); padding: 60px 48px 32px;
  font-size: 13px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-socials { display: flex; gap: 16px; margin-top: 16px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; transition: all 0.3s;
}
.footer-socials a:hover { background: rgba(200,168,124,0.15); color: var(--accent-warm); border-color: rgba(200,168,124,0.2); }
.footer-socials a svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-warm); }
.footer-col span { display: block; color: rgba(255,255,255,0.5); margin-bottom: 4px; font-size: 13px; }
.footer-payments {
  max-width: 1100px; margin: 32px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.footer-payments svg { opacity: 0.6; transition: opacity 0.3s; }
.footer-payments svg:hover { opacity: 1; }
.footer-bottom {
  max-width: 1100px; margin: 16px auto 0; padding-top: 16px;
  text-align: center; color: rgba(255,255,255,0.25);
}
/* PANEL CARD ACTIONS (shared) */
.panel-card-imgs, .wzory-card-imgs {
  position: relative; cursor: pointer;
}
.panel-card-actions {
  position: absolute; bottom: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; z-index: 2;
}
.panel-card-actions button {
  background: rgba(42,36,32,0.6); color: #fff; border: none; cursor: pointer;
  border-radius: 20px; padding: 6px 12px; font-size: 11px; font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: 5px; transition: background 0.3s;
  backdrop-filter: blur(4px);
}
.panel-card-actions button:hover { background: rgba(42,36,32,0.85); }
.panel-card-actions button svg { width: 14px; height: 14px; }
/* PANEL MODAL */
.panel-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.88);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.panel-modal-overlay.active { opacity: 1; pointer-events: auto; }
.panel-modal {
  position: relative; max-width: 560px; width: 100%;
  background: #fff; border-radius: 20px; overflow: hidden;
  transform: scale(0.92); transition: transform 0.3s;
}
.panel-modal-overlay.active .panel-modal { transform: scale(1); }
.panel-modal-img-wrap {
  position: relative; aspect-ratio: 1/1; background: #f5f2ee; overflow: hidden;
}
.panel-modal-img-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: opacity 0.5s ease;
}
.panel-modal-img-wrap .modal-img-back { opacity: 0; }
.panel-modal-img-wrap.flipped .modal-img-front { opacity: 0; }
.panel-modal-img-wrap.flipped .modal-img-back { opacity: 1; }
.panel-modal-body {
  padding: 20px 24px; display: flex; align-items: center; justify-content: space-between;
}
.panel-modal-name { font-size: 18px; font-weight: 600; color: #2a2420; }
.panel-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.3s; backdrop-filter: blur(4px);
}
.panel-modal-close:hover { background: rgba(0,0,0,0.75); }
.panel-modal-close svg { width: 20px; height: 20px; }
.panel-modal-flip-btn {
  background: var(--accent-warm); color: #1a1a1a; border: none; cursor: pointer;
  border-radius: 24px; padding: 10px 20px; font-size: 13px; font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  display: flex; align-items: center; gap: 6px; transition: background 0.3s;
  flex-shrink: 0;
}
.panel-modal-flip-btn:hover { background: var(--accent-gold); }
.panel-modal-flip-btn svg { width: 16px; height: 16px; }
/* COOKIE CONSENT */
.cc-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
  background: #2a2420; color: rgba(255,255,255,0.85);
  padding: 24px 48px; padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  font-size: 14px; line-height: 1.6;
  transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
}
.cc-banner.cc-visible { transform: translateY(0); }
.cc-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cc-banner-text { flex: 1; }
.cc-banner-text p { margin: 0; }
.cc-banner-text a { color: var(--accent-warm); text-decoration: underline; text-underline-offset: 2px; }
.cc-banner-text a:hover { color: var(--accent-gold); }
.cc-banner-buttons { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cc-btn {
  display: inline-flex; align-items: center; padding: 14px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 0.3px; border-radius: 50px; cursor: pointer;
  transition: all 0.3s; border: none; white-space: nowrap;
}
.cc-btn-accept { background: var(--accent-warm); color: #1a1a1a; }
.cc-btn-accept:hover { background: var(--accent-gold); transform: translateY(-1px); }
.cc-btn-reject { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.25); }
.cc-btn-reject:hover { border-color: var(--accent-warm); color: var(--accent-warm); transform: translateY(-1px); }
.cc-btn-settings { background: transparent; color: rgba(255,255,255,0.7); border: 1.5px solid rgba(255,255,255,0.15); }
.cc-btn-settings:hover { border-color: rgba(255,255,255,0.4); color: #fff; transform: translateY(-1px); }
.cc-modal-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cc-modal-overlay.cc-visible { opacity: 1; pointer-events: auto; }
.cc-modal {
  background: var(--bg); color: #2a2420; border-radius: 16px;
  max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto;
  transform: scale(0.95); transition: transform 0.3s;
}
.cc-modal-overlay.cc-visible .cc-modal { transform: scale(1); }
.cc-modal-header { padding: 28px 28px 0; display: flex; align-items: center; justify-content: space-between; }
.cc-modal-title { font-size: 20px; font-weight: 700; color: #2a2420; }
.cc-modal-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(42,36,32,0.06); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(42,36,32,0.5); transition: all 0.3s;
}
.cc-modal-close:hover { background: rgba(42,36,32,0.12); color: #2a2420; }
.cc-modal-close svg { width: 18px; height: 18px; }
.cc-modal-body { padding: 24px 28px; }
.cc-modal-desc { font-size: 14px; color: rgba(42,36,32,0.6); line-height: 1.6; margin-bottom: 24px; }
.cc-category {
  background: #fff; border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px; padding: 20px; margin-bottom: 12px;
}
.cc-category-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cc-category-name { font-size: 15px; font-weight: 600; color: #2a2420; }
.cc-category-desc { font-size: 13px; color: rgba(42,36,32,0.5); line-height: 1.5; }
.cc-toggle { position: relative; width: 48px; height: 26px; flex-shrink: 0; }
.cc-toggle input { opacity: 0; width: 0; height: 0; }
.cc-toggle-slider {
  position: absolute; inset: 0; background: rgba(42,36,32,0.15);
  border-radius: 26px; cursor: pointer; transition: background 0.3s;
}
.cc-toggle-slider::before {
  content: ''; position: absolute; left: 3px; top: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  transition: transform 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.cc-toggle input:checked + .cc-toggle-slider { background: var(--accent-warm); }
.cc-toggle input:checked + .cc-toggle-slider::before { transform: translateX(22px); }
.cc-toggle input:disabled + .cc-toggle-slider { opacity: 0.6; cursor: default; }
.cc-necessary-badge {
  font-size: 11px; color: rgba(42,36,32,0.4);
  letter-spacing: 0.5px; text-transform: uppercase; font-weight: 500;
}
.cc-modal-footer { padding: 0 28px 28px; display: flex; gap: 12px; }
.cc-modal-footer .cc-btn { flex: 1; justify-content: center; }
.cc-btn-save { background: var(--accent-warm); color: #1a1a1a; }
.cc-btn-save:hover { background: var(--accent-gold); }
.cc-btn-accept-all-modal { background: rgba(42,36,32,0.08); color: #2a2420; border: 1px solid rgba(42,36,32,0.12); }
.cc-btn-accept-all-modal:hover { background: rgba(42,36,32,0.14); }
/* ── ACCESSIBILITY MODE OVERRIDES ── */
html.a11y-font-size-1 { --a11y-font-scale: 1.1; }
html.a11y-font-size-2 { --a11y-font-scale: 1.2; }
html.a11y-font-size-3 { --a11y-font-scale: 1.35; }
html[class*="a11y-font-size-"] body { font-size: calc(1rem * var(--a11y-font-scale, 1)); }
html.a11y-high-contrast body { background: #000 !important; color: #fff !important; }
html.a11y-high-contrast nav,
html.a11y-high-contrast .section-light,
html.a11y-high-contrast .cc-modal { background: #000 !important; color: #fff !important; }
html.a11y-high-contrast .section-dark,
html.a11y-high-contrast .section-warm,
html.a11y-high-contrast footer,
html.a11y-high-contrast .cc-banner { background: #1a1a1a !important; color: #fff !important; }
html.a11y-high-contrast a { color: #ffff00 !important; }
html.a11y-high-contrast .btn-primary,
html.a11y-high-contrast .btn-warm,
html.a11y-high-contrast .btn-dark { background: #ffff00 !important; color: #000 !important; }
html.a11y-high-contrast img { filter: contrast(1.2); }
html.a11y-dyslexia-font body,
html.a11y-dyslexia-font input,
html.a11y-dyslexia-font textarea,
html.a11y-dyslexia-font button,
html.a11y-dyslexia-font select { font-family: 'OpenDyslexic', 'Comic Sans MS', 'Trebuchet MS', sans-serif !important; }
html.a11y-highlight-links a {
  text-decoration: underline !important; text-underline-offset: 3px !important;
  outline: 2px solid currentColor !important; outline-offset: 2px !important;
}
html.a11y-big-cursor, html.a11y-big-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M4 4l18 36 5-14 14-5z' fill='%23000' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E") 4 4, auto !important;
}
html.a11y-stop-animations *,
html.a11y-stop-animations *::before,
html.a11y-stop-animations *::after {
  animation-duration: 0s !important; animation-delay: 0s !important;
  transition-duration: 0s !important; transition-delay: 0s !important;
}
html.a11y-line-height-1 body { line-height: 1.8 !important; }
html.a11y-line-height-2 body { line-height: 2.2 !important; }
html.a11y-letter-spacing-1 body { letter-spacing: 1.5px !important; }
html.a11y-letter-spacing-2 body { letter-spacing: 3px !important; }
.a11y-reading-guide {
  position: fixed; left: 0; right: 0; height: 12px;
  background: rgba(200,168,124,0.35);
  border-top: 2px solid var(--accent-warm); border-bottom: 2px solid var(--accent-warm);
  pointer-events: none; z-index: 99999; display: none; transition: top 0.05s linear;
}
html.a11y-reading-guide-on .a11y-reading-guide { display: block; }
html.a11y-monochrome body { filter: grayscale(100%) !important; }
html.a11y-hide-images img:not(.a11y-icon):not(.lang-flag),
html.a11y-hide-images picture,
html.a11y-hide-images video { opacity: 0.05 !important; }
html.a11y-text-left * { text-align: left !important; }
/* ── ACCESSIBILITY WIDGET UI ── */
.a11y-trigger {
  position: fixed; bottom: 24px; left: 24px; z-index: 140;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent-warm); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(200,168,124,0.35);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s, box-shadow 0.3s;
}
.a11y-trigger:hover { background: var(--accent-gold); transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 30px rgba(200,168,124,0.45); }
.a11y-trigger:focus-visible { outline: 3px solid var(--accent-warm); outline-offset: 3px; }
.a11y-trigger svg { width: 26px; height: 26px; fill: #1a1a1a; }
.a11y-panel-overlay {
  position: fixed; inset: 0; z-index: 159;
  background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.a11y-panel-overlay.a11y-visible { opacity: 1; pointer-events: auto; }
.a11y-panel {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 160;
  width: 360px; background: #2a2420; color: rgba(255,255,255,0.85);
  overflow-y: auto; transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 4px 0 30px rgba(0,0,0,0.3);
}
.a11y-panel.a11y-visible { transform: translateX(0); }
.a11y-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 24px 16px; position: sticky; top: 0; background: #2a2420;
  z-index: 1; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.a11y-panel-title { font-size: 18px; font-weight: 700; color: #fff; font-family: 'DM Sans', sans-serif; }
.a11y-panel-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all 0.3s;
}
.a11y-panel-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.a11y-panel-close svg { width: 18px; height: 18px; }
.a11y-panel-body { padding: 20px 24px 100px; }
.a11y-feature {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 16px; margin-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.a11y-feature-info { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.a11y-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 8px;
  background: rgba(200,168,124,0.12); display: flex; align-items: center; justify-content: center;
}
.a11y-feature-icon svg { width: 18px; height: 18px; stroke: var(--accent-warm); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.a11y-feature-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); }
.a11y-toggle { position: relative; width: 48px; height: 26px; flex-shrink: 0; }
.a11y-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.a11y-toggle-slider {
  position: absolute; inset: 0; background: rgba(255,255,255,0.15);
  border-radius: 26px; cursor: pointer; transition: background 0.3s;
}
.a11y-toggle-slider::before {
  content: ''; position: absolute; left: 3px; top: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  transition: transform 0.3s; box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.a11y-toggle input:checked + .a11y-toggle-slider { background: var(--accent-warm); }
.a11y-toggle input:checked + .a11y-toggle-slider::before { transform: translateX(22px); }
.a11y-stepper { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.a11y-stepper-btn {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.a11y-stepper-btn:hover { background: rgba(200,168,124,0.25); border-color: var(--accent-warm); }
.a11y-stepper-value { width: 28px; text-align: center; font-size: 13px; font-weight: 600; color: var(--accent-warm); }
.a11y-section-label {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin: 20px 0 12px; font-weight: 500;
}
.a11y-reset-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px; margin-top: 20px;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 50px; color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.3s;
}
.a11y-reset-btn:hover { border-color: var(--accent-warm); color: var(--accent-warm); background: rgba(200,168,124,0.08); }
.a11y-reset-btn svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: #ece9e4; padding: 20px; gap: 20px; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
  .nav-links.open { display: flex; }
  .lang-switcher { display: none; }
  .lang-switcher-mobile {
    display: flex; gap: 12px; justify-content: center;
    padding-top: 12px; border-top: 1px solid rgba(42,36,32,0.08);
  }
  .lang-switcher-mobile a {
    text-decoration: none; display: flex; align-items: center; justify-content: center;
    opacity: 0.45; transition: opacity 0.3s;
  }
  .lang-switcher-mobile a.active { opacity: 1; }
  .lang-switcher-mobile .lang-flag { width: 30px; height: 20px; border-radius: 3px; }
  .mobile-menu-btn { display: block; }
  .section { padding: 64px 20px; }
  .btn { padding: 14px 28px; font-size: 14px; white-space: nowrap; }
  .btn-lg { padding: 16px 36px; font-size: 16px; }
  .logo-img { height: 47px; }
  .logo-img-footer { height: 43px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-socials { justify-content: center; }
  .panel-modal { max-width: 100%; }
  .panel-card-actions { flex-wrap: nowrap; }
  .panel-card-actions button { padding: 7px 13px; font-size: 12px; white-space: nowrap; }
  /* Accessibility widget mobile */
  .a11y-trigger { bottom: 20px; left: 16px; width: 48px; height: 48px; }
  .a11y-trigger svg { width: 22px; height: 22px; }
  .a11y-panel { width: 100%; }
  .a11y-panel-header { padding: 20px 20px 12px; }
  .a11y-panel-body { padding: 16px 20px 100px; }
  .a11y-feature { padding: 14px; }
  /* Cookie consent mobile */
  .cc-banner { padding: 20px; padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); max-height: 85vh; overflow-y: auto; }
  .cc-banner-inner { flex-direction: column; gap: 20px; text-align: center; }
  .cc-banner-text a { display: block; margin-top: 8px; }
  .cc-banner-buttons { flex-direction: column; width: 100%; gap: 12px; }
  .cc-btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .cc-modal { max-height: 90vh; border-radius: 12px; }
  .cc-modal-header { padding: 20px 20px 0; }
  .cc-modal-body { padding: 16px 20px; }
  .cc-modal-footer { padding: 0 20px 20px; flex-direction: column; }
  .cc-category { padding: 16px; }
}
@media (max-width: 400px) {
  .btn { padding: 12px 20px; font-size: 13px; }
  .btn-lg { padding: 14px 28px; font-size: 14px; }
  .panel-card-actions button { padding: 5px 9px; font-size: 10px; }
  .panel-card-actions button svg { width: 12px; height: 12px; }
  .a11y-trigger { bottom: 16px; left: 12px; width: 44px; height: 44px; }
  .a11y-feature-name { font-size: 13px; }
  .cc-btn { font-size: 13px; padding: 12px 16px; }
  .cc-modal-title { font-size: 18px; }
  .cc-category-name { font-size: 14px; }
}
