/* ------------------------------------
   Čeština Rychle – playful_dynamic CSS
   All FLEXBOX layouts, mobile-first
   ------------------------------------ */

/* -------- RESET / NORMALIZE -------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
html {
  height: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2C4375;
  background: #F4FAF5;
  line-height: 1.7;
  font-size: 1rem;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: #2C4375;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #6DB65B;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s, transform 0.1s;
}

/* ----------- BRAND FONTS ----------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
:root {
  --color-primary: #2C4375;
  --color-secondary: #6DB65B;
  --color-accent: #FFF;
  --color-orange: #FFB534;
  --color-magenta: #EA4A86;
  --color-light: #F4FAF5;
  --color-dark: #192947;
  --shadow: 0 4px 20px rgba(44,67,117,0.11);
  --radius: 18px;
  --card-radius: 24px;
  --btn-radius: 32px;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ----------- TYPOGRAPHY ------------ */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, .text-section p, .content-wrapper p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: 15px;
  line-height: 1.8;
}
strong {
  color: var(--color-primary);
  font-weight: 700;
}
em {
  color: var(--color-magenta);
  font-style: normal;
}
blockquote {
  font-style: italic;
  background: #FFF8E7;
  color: var(--color-dark);
  padding: 16px 24px;
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius);
  margin-bottom: 12px;
  font-size: 1.08rem;
  box-shadow: 0 2px 6px rgba(44,67,117,0.08);
}

/* ------------- LAYOUT ------------ */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: var(--radius);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section, .faq-snippet {
  margin-bottom: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  flex: 1 1 240px;
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.14s;
  z-index: 1;
}
.card:hover, .card:focus-within {
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 8px 32px rgba(44,67,117,0.16);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonials {
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 540px;
  border-left: 6px solid var(--color-secondary);
  transition: box-shadow 0.17s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(106, 182, 91, 0.17);
  border-left-color: var(--color-magenta);
}
.testimonial-card blockquote {
  margin-bottom: 8px;
  background: transparent;
  border-left: none;
  padding-left: 0;
}
.testimonial-card p strong {
  color: var(--color-magenta);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ---------- NAVIGATION ----------- */
header {
  background: var(--color-primary);
  position: relative;
  box-shadow: 0 4px 16px rgba(44,67,117,0.10);
  z-index: 100;
}
nav {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
}
header nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 15px;
  border-radius: 22px;
  transition: background 0.17s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
header nav a.btn-primary {
  background: var(--color-orange);
  color: var(--color-primary);
  font-size: 1.14rem;
  font-weight: 900;
  border-radius: var(--btn-radius);
  box-shadow: 0 3px 13px rgba(255,181,52,0.18);
  padding: 10px 28px;
  margin-left: 18px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.11s;
  border: 3px solid transparent;
}
header nav a.btn-primary:hover,
header nav a.btn-primary:focus {
  background: var(--color-magenta);
  color: #fff;
  box-shadow: 0 6px 22px rgba(234,74,134,0.18);
  border: 3px solid var(--color-orange);
  transform: scale(1.05) rotate(-2deg);
}
.header .logo,
header nav img {
  height: 52px;
  width: auto;
  margin-right: 8px;
}

/* ------ MOBILE NAVIGATION -------- */
.mobile-menu-toggle {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--color-orange);
  color: var(--color-primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  outline: none;
  border: none;
  box-shadow: var(--shadow);
  z-index: 120;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-magenta);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: var(--color-primary);
  z-index: 5000;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.84,-0.06,.28,1.09);
  box-shadow: 0 12px 60px rgba(44,67,117,0.22);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 40px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: var(--color-magenta);
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 51;
  transition: background 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
  padding-left: 32px;
  padding-right: 32px;
}
.mobile-nav a {
  font-size: 1.35rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  padding: 14px 0;
  border-radius: 16px;
  transition: background 0.16s, color 0.16s;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-orange);
  color: var(--color-primary);
}

/* Show/hide nav for mobile/desktop */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex;
  }
}

/* ---------- HERO SECTION ----------- */
.hero {
  background: linear-gradient(90deg, #FFF8E7 55%, #D8F6E3 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 36px rgba(106,182,91,0.14);
  margin-bottom: 60px;
  padding: 60px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  color: var(--color-magenta);
  font-size: 2.8rem;
  font-weight: 900;
  text-shadow: 0 4px 10px #2C437504;
  margin-bottom: 18px;
  line-height: 1.13;
  letter-spacing: 0.03em;
}
.hero p {
  color: var(--color-primary);
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 24px;
}
/* Decorative playful blobs (for extra energy) */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.13;
}
.hero::before {
  width: 190px; height: 170px; left: -32px; top: 18px;
  background: var(--color-orange);
  animation: blobWiggle 7s infinite ease-in-out;
}
.hero::after {
  width: 110px; height: 110px; right: -40px; bottom: 30px;
  background: var(--color-magenta);
  animation: blobBounce 6s infinite alternate-reverse;
}
@keyframes blobWiggle {
  0%,100% { transform: scaleY(1) rotate(10deg); }
  50% { transform: scaleY(1.09) rotate(-5deg); }
}
@keyframes blobBounce {
  0% { transform: scale(1) translateY(0); }
  70% { transform: scale(1.07) translateY(-20px); }
  100% { transform: scale(1.13) translateY(-42px); }
}

.btn-primary {
  display: inline-block;
  padding: 13px 35px;
  background: var(--color-orange);
  color: var(--color-primary);
  border-radius: var(--btn-radius);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.16rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 9px rgba(255,181,52,0.17);
  border: 2.5px solid transparent;
  margin-top: 3px;
  margin-bottom: 8px;
  transition: background 0.19s, color 0.19s, box-shadow 0.14s, transform 0.11s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-magenta);
  color: #fff;
  box-shadow: 0 6px 14px rgba(234,74,134,0.16);
  border: 2.5px solid var(--color-orange);
  transform: scale(1.07) rotate(-3deg);
}

/* ----------- FEATURES (with icons) ----------- */
.features ul,
.services ul,
.features ol {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
  margin-top: 6px;
}
.features li,
.services li {
  font-family: var(--font-body);
  font-size: 1.09rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  margin-bottom: 10px;
  color: #1D2E54;
  font-weight: 600;
  position: relative;
  transition: box-shadow 0.16s, background 0.16s;
}
.features li img,
.services li img {
  width: 32px;
  height: 32px;
  display: inline-block;
  margin-right: 8px;
  filter: drop-shadow(0 1px 2px rgba(44,67,117,0.08));
}
.features li:hover,
.services li:hover {
  background: #fff8e7;
  box-shadow: 0 6px 20px rgba(255,181,52,0.12);
}
.features ol {
  padding-left: 16px;
}
.features ol li {
  list-style: decimal inside;
  min-width: 210px;
  font-size: 1.08rem;
  background: #F3F8F5;
}

/* -------- SERVICES / COURSE CARDS -------- */
.services ul {
  gap: 22px;
}
.services li {
  min-width: 208px;
  background: #E7FAD8;
  box-shadow: none;
  color: var(--color-primary);
  font-size: 1.12rem;
  font-weight: 600;
}
.services li strong {
  color: var(--color-magenta);
  font-size: 1.08em;
}
.services li em {
  color: var(--color-orange);
  font-style: normal;
  font-weight: 900;
  font-size: 1.07em;
  margin-left: 6px;
}

/* --------- CTA BLOCKS --------- */
.cta {
  background: linear-gradient( 80deg, #fff8e7 50%, #ea4a862a 100% );
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(106,182,91,0.13);
  margin: 0 0 60px 0;
  text-align: center;
  position: relative;
}
.cta h1, .cta h2 {
  color: var(--color-magenta);
  font-size: 2rem;
  font-weight: 900;
}
.cta p {
  color: var(--color-primary);
  font-size: 1.14rem;
}

/* ----------- LEGAL/INFO --------- */
.legal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 18px rgba(44,67,117,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h1, .legal h2 {
  color: var(--color-primary);
}
.legal ul {
  margin-top: 8px;
  margin-bottom: 14px;
  padding-left: 20px;
  list-style: disc;
}
.legal li {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--color-dark);
}

/* ---- CONTACT/INFO blocks --- */
.contact-info {
  background: #e0eefd;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px #2c437515;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 1.01rem;
  color: var(--color-dark);
}
.location-map {
  background: #e7fad8;
  border-radius: var(--radius);
  padding: 13px 16px;
  margin-bottom: 22px;
  color: var(--color-primary);
  font-size: 1.06rem;
}

.faq-snippet {
  background: #fff8e7;
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-bottom: 16px;
  box-shadow: 0 0px 12px rgba(255,181,52,0.07);
  color: var(--color-primary);
}

/* ------------ FOOTER ------------- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 30px 0 20px 0;
  box-shadow: 0 -6px 20px rgba(44,67,117,0.2);
  margin-top: 34px;
  border-radius: 30px 30px 0 0;
  position: relative;
  z-index: 1;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 14px;
  transition: background 0.15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--color-magenta);
  color: #fff;
}
.legal-links {
  color: #cee7ea;
  font-size: 0.99rem;
  margin-bottom: 6px;
}
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  transition: filter 0.19s, transform 0.16s;
  filter: grayscale(40%) brightness(1.11);
}
.social-links a:hover img {
  filter: drop-shadow(0 3px 12px #ffb5344a);
  transform: scale(1.09) rotate(-8deg);
}

/* ----------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff8e7;
  box-shadow: 0 -4px 16px #1d2e5417;
  padding: 24px 20px 20px 20px;
  z-index: 4200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  animation: cookieSlideIn 0.6s cubic-bezier(.43,.23,.28,1.09);
}
@keyframes cookieSlideIn {
  from { opacity: 0; transform: translateY(48px); }
  to   { opacity: 1; transform: none; }
}
.cookie-banner p {
  margin: 0;
  color: var(--color-dark);
  font-size: 1rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-secondary);
  border-radius: 23px;
  padding: 9px 22px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(106,182,91,0.10);
  transition: background 0.16s, color 0.14s, box-shadow 0.18s, transform 0.14s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--color-magenta);
  color: #fff;
  box-shadow: 0 7px 18px rgba(234,74,134,0.11);
  transform: scale(1.07);
}
.cookie-banner .settings-btn {
  background: var(--color-orange);
  color: var(--color-primary);
  font-weight: 900;
}
.cookie-banner .settings-btn:hover {
  background: var(--color-secondary);
  color: var(--color-accent);
}

/* ---- COOKIE MODAL POPUP ---- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 5001;
  min-width: 310px;
  max-width: 98vw;
  width: 420px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 14px 64px rgba(44,67,117,0.18);
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s cubic-bezier(.39,1.32,1,1), transform 0.28s cubic-bezier(.59,1.27,1,1);
  padding: 35px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-body);
  color: var(--color-primary);
}
.cookie-modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}
.cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--color-magenta);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F4FAF5;
  border-radius: 13px;
  padding: 9.5px 15px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 19px;
  height: 19px;
  border-radius: 7px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-buttons button {
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--color-orange);
  color: var(--color-primary);
  padding: 9px 22px;
  border-radius: 23px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 2px 11px #ffb53418;
  transition: background 0.18s, color 0.16s, transform 0.14s;
}
.cookie-modal-buttons button:hover {
  background: var(--color-magenta);
  color: #fff;
  transform: scale(1.05);
}
.cookie-modal .close-modal {
  position: absolute;
  right: 17px; top: 17px;
  background: var(--color-magenta);
  color: #fff;
  width: 33px; height: 33px;
  font-size: 1.13rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
}
.cookie-modal .close-modal:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ----------- ANIMATIONS ----------- */
.btn-primary,
.card,
.feature-item,
.testimonial-card,
.hero,
.cta,
.cookie-banner button,
.mobile-menu,
.cookie-modal {
  will-change: transform, box-shadow, opacity;
}
.card, .testimonial-card {
  animation: fadePopIn 0.53s cubic-bezier(.57,1.2,1,1) backwards;
}
@keyframes fadePopIn {
  from { transform: scale(0.95) translateY(24px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}

/* ------------- RESPONSIVE DESIGN -------------- */
@media (max-width: 850px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .cta h1, .cta h2 {
    font-size: 1.4rem;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, .legal {
    padding: 24px 8px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 180px;
    padding: 38px 0 26px 0;
  }
  .cta {
    padding: 24px 5px;
  }
  .section {
    padding: 18px 5px;
    margin-bottom: 36px;
  }
  .legal {
    padding: 20px 5px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .features ul,
  .services ul,
  .features ol {
    flex-direction: column;
    gap: 13px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    max-width: 100%;
    border-left-width: 4px;
    padding: 16px 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav a {
    font-size: 1rem;
  }
  .social-links {
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    padding: 16px 6px 12px 6px;
    gap: 15px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 9px;
    width: 100%;
  }
  .cookie-banner button {
    width: 100%;
    min-width: 140px;
  }
  .mobile-modal {
    min-width: unset;
    width: 99vw;
    padding: 14px 8px;
  }
}

/* ----------- ACCESSIBILITY ----------- */
:focus {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}
.btn-primary:focus {
  outline: 3px solid var(--color-magenta);
}
.mobile-menu-close:focus, .cookie-modal .close-modal:focus {
  outline: 3px solid var(--color-orange);
}

/* ------ PLAYFUL MICRO-INTERACTIONS ------ */
.card:hover::after,
.testimonial-card:hover::after {
  content: "✨";
  position: absolute;
  top: -16px; right: 13px;
  font-size: 1.35em;
  opacity: 0.7;
  animation: sparkle 0.88s linear;
}
@keyframes sparkle {
  0% { opacity:0; transform: scale(0.4) rotate(-30deg); }
  80% { opacity:1; transform:scale(1.3) rotate(10deg); }
  100%{ opacity:0; transform: scale(0.8) rotate(0); }
}
.btn-primary:active,
.cookie-banner button:active,
.mobile-menu-close:active {
  transform: scale(0.94);
}

/* --------- MISC --- */
::-webkit-scrollbar {
  width: 10px;
  background: #fdfff4;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 20px;
}

/* --------- END --------- */
