/* QualeSpiaggia · brand.css · v2.0
   Design tokens + typography + base components
   Based on official design handoff (16 schermate, Dec 2025) */

/* ═══════════════════════════════════════════════════════════════
   FONTS — self-hosted woff2 (vedi /css/fonts.css)
   Importali via <link rel="stylesheet" href="/css/fonts.css"> in <head>
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Colors — primary palette */
  --qs-sand: #FFF8EE;
  --qs-sand-dark: #F7EDDA;
  --qs-sand-warm: #FFF1DE;
  --qs-deep: #0B4F6C;
  --qs-deep-dark: #083A52;
  --qs-orange: #FF9E3D;
  --qs-orange-soft: rgba(255, 158, 61, 0.1);
  --qs-orange-dark: #E5882C;
  --qs-gold: #FFD89C;
  --qs-teal: #2AA7C7;

  /* Score colors */
  --qs-score-perfect: #2E8B6E;   /* verde 80+ */
  --qs-score-good: #7FA65C;      /* verde chiaro 65–79 */
  --qs-score-moderate: #FF9E3D;  /* arancio 50–64 */
  --qs-score-bad: #E5533D;       /* rosso <50 */

  /* Text */
  --qs-text: #0B4F6C;
  --qs-text-soft: rgba(11, 79, 108, 0.75);
  --qs-text-muted: rgba(11, 79, 108, 0.55);
  --qs-text-faint: rgba(11, 79, 108, 0.35);
  --qs-text-invert: #FFF8EE;
  --qs-text-invert-soft: rgba(255, 248, 238, 0.75);

  /* Borders */
  --qs-border: rgba(11, 79, 108, 0.08);
  --qs-border-strong: rgba(11, 79, 108, 0.15);
  --qs-border-invert: rgba(255, 248, 238, 0.12);

  /* Typography families */
  --qs-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --qs-font-body: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --qs-font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Radii */
  --qs-r-sm: 8px;
  --qs-r-md: 12px;
  --qs-r-lg: 14px;
  --qs-r-xl: 18px;
  --qs-r-2xl: 20px;
  --qs-r-pill: 999px;

  /* Shadows */
  --qs-shadow-sm: 0 1px 3px rgba(11, 79, 108, 0.04);
  --qs-shadow-md: 0 4px 24px rgba(11, 79, 108, 0.06);
  --qs-shadow-lg: 0 12px 40px rgba(11, 79, 108, 0.12);
  --qs-shadow-xl: 0 20px 60px rgba(11, 79, 108, 0.18);

  /* Spacing scale */
  --qs-space-1: 4px;
  --qs-space-2: 8px;
  --qs-space-3: 12px;
  --qs-space-4: 16px;
  --qs-space-5: 20px;
  --qs-space-6: 24px;
  --qs-space-8: 32px;
  --qs-space-10: 40px;
  --qs-space-12: 48px;
  --qs-space-16: 64px;
  --qs-space-20: 80px;
  --qs-space-24: 96px;

  /* Containers */
  --qs-container-sm: 680px;
  --qs-container-md: 960px;
  --qs-container-lg: 1200px;

  /* Transitions */
  --qs-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --qs-duration: 200ms;
}

/* ═══════════════════════════════════════════════════════════════
   RESET / BASE
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--qs-sand);
  color: var(--qs-text);
  font-family: var(--qs-font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
html { overflow-x: clip; }

[hidden] { display: none !important; }

img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: var(--qs-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
.qs-display { font-family: var(--qs-font-display); font-weight: 500; letter-spacing: -0.02em; }
.qs-mono { font-family: var(--qs-font-mono); letter-spacing: 0.03em; }

/* Kicker — small uppercase eyebrow above headings */
.qs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--qs-orange);
  margin-bottom: 18px;
}
.qs-kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--qs-orange);
}

/* Display headings */
.qs-h1 {
  font-family: var(--qs-font-display);
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 20px;
  text-wrap: balance;
}
.qs-h1 em, .qs-accent {
  font-style: italic;
  color: var(--qs-orange);
  font-weight: 500;
}

.qs-h2 {
  font-family: var(--qs-font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 16px;
  text-wrap: balance;
}

.qs-h3 {
  font-family: var(--qs-font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.qs-lead {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--qs-text-soft);
  max-width: 640px;
  text-wrap: pretty;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.qs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border: none;
  border-radius: var(--qs-r-pill);
  font-family: var(--qs-font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--qs-duration) var(--qs-ease), box-shadow var(--qs-duration) var(--qs-ease), background var(--qs-duration) var(--qs-ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.qs-btn:hover { text-decoration: none; transform: translateY(-1px); }
.qs-btn:active { transform: translateY(0); }
.qs-btn:focus-visible { outline: 2px solid var(--qs-orange); outline-offset: 3px; }

.qs-btn-primary {
  background: var(--qs-deep);
  color: var(--qs-text-invert);
}
.qs-btn-primary:hover { background: var(--qs-deep-dark); box-shadow: var(--qs-shadow-md); }

.qs-btn-accent {
  background: var(--qs-orange);
  color: var(--qs-deep);
}
.qs-btn-accent:hover { background: #FF8A1C; }

.qs-btn-ghost {
  background: white;
  color: var(--qs-deep);
  border: 1px solid var(--qs-border-strong);
}
.qs-btn-ghost:hover { background: var(--qs-sand-dark); }

.qs-btn-sm { padding: 8px 14px; font-size: 13px; }
.qs-btn-lg { padding: 16px 26px; font-size: 16px; }

/* ═══════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════ */
.qs-card {
  background: white;
  border-radius: var(--qs-r-xl);
  border: 1px solid var(--qs-border);
  overflow: hidden;
  transition: transform var(--qs-duration) var(--qs-ease), box-shadow var(--qs-duration) var(--qs-ease);
}
.qs-card-interactive { cursor: pointer; }
.qs-card-interactive:hover { transform: translateY(-2px); box-shadow: var(--qs-shadow-md); }

.qs-card-dark {
  background: var(--qs-deep);
  color: var(--qs-text-invert);
  border-color: var(--qs-border-invert);
}

/* ═══════════════════════════════════════════════════════════════
   SCORE PILL (used on beach cards)
   ═══════════════════════════════════════════════════════════════ */
.qs-score-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 9px;
  background: rgba(255, 248, 238, 0.92);
  border-radius: var(--qs-r-pill);
  backdrop-filter: blur(6px);
  font-family: var(--qs-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.qs-score-pill .score { font-size: 15px; line-height: 1; }
.qs-score-pill .label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.qs-score-perfect { color: var(--qs-score-perfect); }
.qs-score-good { color: var(--qs-score-good); }
.qs-score-moderate { color: var(--qs-score-moderate); }
.qs-score-bad { color: var(--qs-score-bad); }

/* ═══════════════════════════════════════════════════════════════
   CHIPS (category tags, filter pills)
   ═══════════════════════════════════════════════════════════════ */
.qs-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(6px);
  border-radius: var(--qs-r-pill);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--qs-deep);
  letter-spacing: 0.01em;
}
.qs-chip-outline {
  background: white;
  border: 1px solid var(--qs-border-strong);
}

/* ═══════════════════════════════════════════════════════════════
   NAV (desktop + mobile hamburger)
   ═══════════════════════════════════════════════════════════════ */
.qs-nav {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--qs-border);
}
.qs-nav-inner {
  max-width: var(--qs-container-lg);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.qs-nav-logo { display: flex; align-items: center; gap: 10px; }
.qs-nav-logo img { height: 36px; width: auto; }
.qs-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.qs-nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--qs-text-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.qs-nav-links a:hover { color: var(--qs-deep); text-decoration: none; }
.qs-nav-links a.active {
  color: var(--qs-deep);
  border-bottom-color: var(--qs-orange);
}
.qs-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.qs-nav-lang {
  font-family: var(--qs-font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--qs-text-muted);
  letter-spacing: 0.08em;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
}
.qs-nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--qs-r-md);
  background: var(--qs-deep);
  color: var(--qs-text-invert);
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .qs-nav-links, .qs-nav-actions .qs-btn { display: none; }
  .qs-nav-hamburger { display: inline-flex; }
  .qs-nav-inner { gap: 16px; padding: 14px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE DRAWER (full-screen overlay menu)
   ═══════════════════════════════════════════════════════════════ */
.qs-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--qs-sand);
  color: var(--qs-deep);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 220ms var(--qs-ease);
  overflow: hidden;
}
.qs-drawer.is-open { transform: translateX(0); }
.qs-drawer::before, .qs-drawer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.qs-drawer::before {
  top: -80px; right: -80px; width: 260px; height: 260px;
  background: radial-gradient(circle, var(--qs-gold) 0%, transparent 70%);
  opacity: 0.55;
}
.qs-drawer::after {
  bottom: -100px; left: -100px; width: 280px; height: 280px;
  background: radial-gradient(circle, var(--qs-teal) 0%, transparent 70%);
  opacity: 0.22;
}
.qs-drawer-header {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--qs-border);
  position: relative;
  z-index: 2;
}
.qs-drawer-header .qs-nav-logo { flex: 1; }
.qs-drawer-close {
  width: 42px; height: 42px;
  border-radius: var(--qs-r-md);
  background: rgba(11, 79, 108, 0.06);
  border: none;
  color: var(--qs-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qs-drawer-nav {
  flex: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 2;
  overflow-y: auto;
}
.qs-drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-family: var(--qs-font-display);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--qs-deep);
  border-bottom: 1px solid var(--qs-border);
  text-decoration: none;
}
.qs-drawer-nav a:hover { color: var(--qs-orange); text-decoration: none; }
.qs-drawer-nav a span { color: var(--qs-text-faint); font-size: 20px; }
.qs-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--qs-border);
  background: rgba(255, 248, 238, 0.9);
  position: relative;
  z-index: 2;
}
.qs-drawer-lang {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--qs-text-muted);
}
.qs-drawer-lang div { display: flex; gap: 4px; }
.qs-drawer-lang button {
  padding: 6px 10px;
  border-radius: var(--qs-r-sm);
  border: none;
  background: transparent;
  color: var(--qs-deep);
  font-family: var(--qs-font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.qs-drawer-lang button.active {
  background: var(--qs-deep);
  color: var(--qs-text-invert);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.qs-footer {
  background: var(--qs-deep);
  color: var(--qs-text-invert);
  padding: 64px 24px 32px;
  margin-top: 80px;
}
.qs-footer-inner {
  max-width: var(--qs-container-lg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.qs-footer-brand img { height: 40px; width: auto; margin-bottom: 18px; }
.qs-footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--qs-text-invert-soft);
  max-width: 280px;
  margin: 0;
}
.qs-footer-col h4 {
  font-family: var(--qs-font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--qs-gold);
  margin: 0 0 16px;
}
.qs-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qs-footer-col a {
  color: var(--qs-text-invert);
  font-size: 14px;
  opacity: 0.85;
}
.qs-footer-col a:hover { opacity: 1; text-decoration: underline; }
.qs-footer-bottom {
  max-width: var(--qs-container-lg);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--qs-border-invert);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--qs-font-mono);
  font-size: 12px;
  color: var(--qs-text-invert-soft);
  letter-spacing: 0.03em;
}
.qs-footer-social {
  display: inline-flex;
  gap: 6px;
}
.qs-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: var(--qs-sand);
  transition: background 0.15s ease;
}
.qs-footer-social a:hover { background: rgba(255,248,238,0.12); }
.qs-footer-license { color: var(--qs-text-invert-soft); }
.qs-footer-license a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 760px) {
  .qs-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .qs-footer-brand { grid-column: 1 / -1; }
  .qs-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTAINERS / SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.qs-section { padding: 80px 24px; }
.qs-section-dark { background: var(--qs-deep); color: var(--qs-text-invert); }
.qs-section-warm {
  background: linear-gradient(180deg, var(--qs-sand-dark) 0%, var(--qs-sand) 100%);
}

.qs-container {
  max-width: var(--qs-container-lg);
  margin: 0 auto;
}
.qs-container-md { max-width: var(--qs-container-md); margin: 0 auto; }
.qs-container-sm { max-width: var(--qs-container-sm); margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════════ */
.qs-input, .qs-select, .qs-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--qs-border-strong);
  border-radius: var(--qs-r-md);
  background: #FFFBF4;
  color: var(--qs-deep);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color var(--qs-duration) var(--qs-ease);
}
.qs-input:focus, .qs-select:focus, .qs-textarea:focus {
  outline: none;
  border-color: var(--qs-orange);
  box-shadow: 0 0 0 3px rgba(255, 158, 61, 0.15);
}
.qs-textarea { resize: vertical; min-height: 120px; }
.qs-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--qs-text-muted);
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.qs-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.qs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.qs-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .qs-grid-3, .qs-grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .qs-grid-3, .qs-grid-4 { grid-template-columns: 1fr; } }

/* Focus-visible default */
:focus-visible { outline: 2px solid var(--qs-orange); outline-offset: 2px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════════
   ATMOSPHERE — paper grain overlay (editorial texture)
   ═══════════════════════════════════════════════════════════════ */
.qs-grain {
  position: relative;
  isolation: isolate;
}
.qs-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.31 0 0 0 0 0.42 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.qs-grain > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   MOTION — entrance animations (respects reduced-motion)
   ═══════════════════════════════════════════════════════════════ */
@keyframes qs-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes qs-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.qs-reveal {
  opacity: 0;
  animation: qs-rise 720ms var(--qs-ease) forwards;
}
.qs-reveal-1 { animation-delay: 80ms; }
.qs-reveal-2 { animation-delay: 200ms; }
.qs-reveal-3 { animation-delay: 320ms; }
.qs-reveal-4 { animation-delay: 440ms; }
.qs-reveal-5 { animation-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  .qs-reveal,
  .qs-reveal-1, .qs-reveal-2, .qs-reveal-3, .qs-reveal-4, .qs-reveal-5 {
    animation: none;
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER (bottom-fixed, non-blocking)
   ═══════════════════════════════════════════════════════════════ */
.qs-cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px;
  background: white;
  border-radius: var(--qs-r-lg);
  box-shadow: var(--qs-shadow-xl);
  border: 1px solid var(--qs-border);
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 150;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 300ms var(--qs-ease), opacity 300ms var(--qs-ease);
}
.qs-cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.qs-cookie-ico {
  width: 44px;
  height: 44px;
  border-radius: var(--qs-r-md);
  background: var(--qs-sand-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.qs-cookie-body { flex: 1; min-width: 0; }
.qs-cookie-title {
  font-family: var(--qs-font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 3px;
  color: var(--qs-deep);
}
.qs-cookie-desc {
  font-size: 13px;
  color: var(--qs-text-soft);
  line-height: 1.45;
}
.qs-cookie-desc a { color: var(--qs-deep); font-weight: 600; }
.qs-cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

@media (max-width: 640px) {
  .qs-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
    bottom: 12px;
    left: 12px;
    right: 12px;
  }
  .qs-cookie-ico { width: 36px; height: 36px; font-size: 18px; }
  .qs-cookie-actions { width: 100%; justify-content: flex-end; }
}
