/* ========================= PYRALINE LITERATUR: STYLE.CSS ========================= */

/* Normalize & CSS Reset */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
table { border-collapse: collapse; border-spacing: 0; }
:root {
  --primary: #1B2A41;
  --secondary: #F0C808;
  --accent: #FFFFFF;
  --brand-blue: #35A7FF;
  --brand-pink: #FF61A6;
  --brand-green: #65E39E;
  --brand-orange: #FF924C;
  --border-radius: 18px;
  --card-shadow: 0 2px 12px rgba(27,42,65,0.10);
  --box-shadow-hover: 0 4px 24px 0 rgba(27,42,65,0.17);
  --transition: all 0.19s cubic-bezier(.83,.03,.66,.99);
  --font-display: 'Lora', serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --link-hover: #FF61A6;
  --focus-outline: 2px solid #F0C808;
}

@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lora:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Fredoka+One|Baloo+2|Quicksand:700&display=swap'); /* For fun headlines */

body {
  background: var(--accent);
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 16px;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

header {
  background: var(--secondary);
  box-shadow: 0 4px 20px rgba(27,42,65,0.08);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
header img {
  height: 50px;
  width: auto;
  margin-right: 18px;
  vertical-align: middle;
  transition: transform .22s cubic-bezier(.79,0,.29,1.27);
}
header img:hover {
  transform: rotate(-4deg) scale(1.07);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Quicksand', 'Baloo 2', var(--font-display), cursive, serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  letter-spacing: 0.01em;
  position: relative;
  text-decoration: none;
  padding-bottom: 3px;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-pink);
  outline: none;
}
header .cta.primary {
  margin-left: 24px;
  font-size: 16px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 6px 10px;
  transition: background .15s;
  border-radius: 8px;
}
.mobile-menu-toggle:focus {
  outline: var(--focus-outline);
  background: rgba(53, 167, 255, 0.1);
}

/* ========================= MOBILE MENU ========================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary);
  z-index: 1111;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.66,.03,.73,1.61);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 8px 32px 0 rgba(53, 167, 255, 0.08);
  padding-top: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--brand-pink);
  border: none;
  color: var(--accent);
  font-size: 32px;
  align-self: flex-end;
  margin-right: 22px;
  margin-bottom: 10px;
  padding: 3px 16px 0 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(255,97,166,0.10);
  transition: background .18s;
}
.mobile-menu-close:focus {
  outline: var(--focus-outline);
  background: var(--brand-orange);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 24px;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: 'Quicksand', var(--font-display), cursive, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
  text-decoration: none;
  padding: 8px 0;
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: background .15s, color .23s, transform .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-blue);
  color: var(--accent);
  transform: translateX(8px) scale(1.04);
  outline: none;
}

/* ========================= HERO ========================= */
.hero {
  background: linear-gradient(90deg, #FCE785 40%, #FF61A6 100%);
  background-blend-mode: lighten;
}
.hero .container { min-height: 320px; }
.hero .content-wrapper {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Fredoka One', 'Lora', serif;
  font-size: 2.4rem;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  line-height: 1.09;
  text-shadow: 0 2px 0 #fff4b2, 2px 4px 8px #ff61a642;
  animation: popIn 0.8s cubic-bezier(.58,2.1,.32,1) 0.1s both;
}
@keyframes popIn {
  from { transform: scale(0.92) translateY(100px); opacity: .2; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.hero p {
  font-size: 1.28rem;
  color: var(--primary);
  margin: 16px 0 8px 0;
  max-width: 540px;
  font-family: var(--font-body);
}

/* ========================= GENERIC BUTTONS ========================= */
.cta {
  display: inline-block;
  background: var(--brand-pink);
  color: var(--accent);
  font-family: 'Quicksand', 'Baloo 2', var(--font-display), serif;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 32px;
  margin-top: 18px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 1px 8px rgba(255,97,166,0.13);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .19s, box-shadow .23s, color .20s, transform .15s;
  text-decoration: none;
}
.cta.primary {
  background: var(--primary);
  color: var(--secondary);
  margin-top: 0;
}
.cta:hover, .cta:focus {
  background: var(--brand-blue);
  color: var(--accent);
  box-shadow: 0 4px 18px 0 rgba(53,167,255,0.19);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* ========================= FLEX SECTION & SPACING ========================= */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ========== FLEXIBLE LAYOUTS (STATIC/RESPONSIVE) ========== */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.feature-item {
  background: var(--brand-green);
  color: var(--primary);
  min-width: 210px;
  max-width: 310px;
  flex: 1 1 210px;
  padding: 28px 22px 26px 22px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: box-shadow .18s, background .17s, transform .15s;
  position: relative;
  z-index: 1;
  border: 2.5px solid var(--brand-blue);
  animation: floatCard 1.1s cubic-bezier(.78,0,.32,1.19) both;
}
@keyframes floatCard {
  from { transform: translateY(64px) scale(0.94); opacity: .05; }
  to   { transform: translateY(0)    scale(1.00); opacity: 1.0; }
}
.feature-item:hover,
.feature-item:focus {
  background: var(--brand-orange);
  box-shadow: var(--box-shadow-hover);
  transform: translateY(-6px) scale(1.03) rotate(-2deg);
  cursor: pointer;
  outline: none;
}
.feature-item img {
  width: 38px; height: 38px; object-fit: contain;
  background: var(--accent);
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0 0 3px 1px #fffbe8ad;
}
.feature-item h3 {
  font-size: 1.17rem;
  font-family: 'Fredoka One', 'Quicksand', 'Lora', serif;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.feature-item p {
  font-size: 1.02rem;
  color: var(--primary);
}

/* Cards and grids for reviews, team, books, etc */
.reviews-grid, .curated-books-grid, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.review-card, .book-item, .team-member {
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 22px 18px;
  transition: box-shadow .14s, transform .18s, border .20s;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border: 2px solid var(--brand-blue);
  position: relative;
}
.review-card:hover,
.book-item:hover,
.team-member:hover {
  box-shadow: var(--box-shadow-hover);
  border-color: var(--brand-pink);
  transform: translateY(-4px) scale(1.025) rotate(-2deg);
  z-index: 4;
}
.review-card h3, .book-item h3, .team-member h3 {
  font-family: 'Baloo 2', 'Lora', serif;
  font-size: 1.17rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.review-card .review-category {
  display: inline-block;
  margin-top: 14px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.96rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 5px 12px;
}

.brief-reviews-list li,
.reading-lists li,
.bookstores-list li,
.seasonal-tips,
.audience-specific-tips ul li {
  margin-bottom: 16px;
  line-height: 1.45;
  font-size: 1.04em;
  position: relative;
}
.brief-reviews-list li:before, .reading-lists li:before, .bookstores-list li:before {
  content: '\2022';
  color: var(--brand-orange);
  font-weight: 900;
  margin-right: 8px;
}

/* ========== Testimonial Card ========== */
.testimonial-card {
  display: flex;
  align-items: center;
  background: #fffbe8;
  box-shadow: 0 2px 14px 0 #F0C80822;
  border-radius: var(--border-radius);
  color: var(--primary);
  margin-bottom: 20px;
  gap: 20px;
  padding: 20px;
  border-left: 7px solid var(--brand-pink);
  font-size: 1.04rem;
  font-family: var(--font-body);
}
.testimonial-card strong {
  color: var(--brand-pink);
  font-size: 1em;
}

/* ========================= SECTION HEADINGS ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', 'Fredoka One', serif;
  color: var(--primary);
  line-height: 1.12;
}
h1 { font-size: 2.2rem; margin-bottom: 14px; font-family: 'Fredoka One','Lora',serif; }
h2 { font-size: 1.6rem; margin-bottom: 18px; font-family: 'Fredoka One','Lora',serif; }
h3 { font-size: 1.18rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol, li { font-family: var(--font-body); font-size: 1.01em; }
p { margin-bottom: 16px; }
a { color: #2b6fa3; text-decoration: underline; transition: color .13s; }
a:hover, a:focus { color: var(--brand-pink); outline: none; }
ul, ol { margin-bottom: 18px; }
strong { font-weight: 700; }
em { font-style: italic; }

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* Editor's pick box */
.editor-pick {
  background: #F0C80811;
  border-radius: 12px;
  color: var(--brand-blue);
  font-weight: 700;
  padding: 12px 18px;
  box-shadow: 0 1px 6px #F0C80818;
  margin-bottom: 10px;
  font-family: 'Fredoka One','Lora',serif;
}

/* ========== PAGINATION ========== */
.pagination {
  margin-top: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
}
.pagination a {
  background: var(--brand-blue);
  color: var(--accent);
  padding: 7px 20px;
  border-radius: 24px;
  font-weight: 700;
  transition: background .15s, color .14s, transform .16s;
  text-decoration: none;
  font-family: 'Quicksand',serif;
  font-size: 1.03em;
}
.pagination a:hover, .pagination a:focus {
  background: var(--brand-pink);
  color: var(--accent);
  transform: translateY(-1.5px) scale(1.04);
  outline: none;
}

/* ========== CATEGORY FILTERS ========== */
.category-filters {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.category-filters span {
  font-weight: 600;
  color: var(--brand-orange);
}
.category-filters a {
  display: inline-block;
  background: var(--brand-green);
  color: var(--primary);
  border-radius: 12px;
  padding: 6px 18px;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 4px;
  transition: background .17s, color .16s, transform .14s;
  font-family: 'Quicksand',serif;
}
.category-filters a:hover, .category-filters a:focus {
  background: var(--brand-pink);
  color: var(--accent);
  outline: none;
  transform: scale(1.07);
}

/* ========== NEWSLETTER ========== */
.newsletter {
  background: var(--brand-blue);
  color: var(--accent);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.newsletter .container, .newsletter .text-section, .newsletter .content-wrapper {
  color: var(--accent) !important;
}
.newsletter h2, .newsletter p {
  color: var(--accent);
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 36px 0 22px 0;
  font-size: 1.05em;
  box-shadow: 0 -2px 10px #161e30aa;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.footer-nav a {
  color: var(--secondary);
  text-decoration: underline;
  font-size: 1em;
  font-family: var(--font-body);
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-pink);
  outline: none;
}
.contact-short {
  line-height: 1.7;
  color: var(--accent);
  font-size: 0.98em;
}
.contact-short img {
  vertical-align: middle;
  margin-right: 6px;
  height: 18px;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 6px;
}
.social-links a img {
  width: 32px;
  height: 32px;
  transition: transform .19s, box-shadow .14s;
  border-radius: 12px;
  background: var(--brand-blue);
  padding: 4px;
}
.social-links a:hover img, .social-links a:focus img {
  transform: scale(1.13) rotate(-4deg);
  box-shadow: 0 1px 8px #F0C80870;
  background: var(--brand-pink);
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--brand-blue);
  color: var(--accent);
  font-size: 1.05em;
  z-index: 2222;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 25px;
  box-shadow: 0 -4px 24px rgba(53,167,255,0.14);
  gap: 16px;
  transition: transform 0.26s, opacity 0.19s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(120px);
  pointer-events: none;
}
.cookie-consent-banner .cookie-text {
  flex: 10;
  margin-right: 20px;
  min-width: 220px;
  font-size: 1em;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-consent-banner .cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 22px;
  font-size: 1.05em;
  font-weight: 700;
  font-family: 'Quicksand',serif;
  padding: 9px 22px;
  transition: background .16s, color .16s, transform .12s;
  cursor: pointer;
  margin-right: 0;
}
.cookie-consent-banner .cookie-btn.accept {
  background: var(--brand-green);
  color: var(--primary);
}
.cookie-consent-banner .cookie-btn.reject {
  background: var(--brand-pink);
  color: var(--accent);
}
.cookie-consent-banner .cookie-btn.settings {
  background: var(--brand-blue);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 2px 10px #ff61a671;
  outline: none;
}
/* ========== COOKIE PREFERENCES MODAL ========== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 3001;
  background: var(--accent);
  color: var(--primary);
  border-radius: 24px;
  box-shadow: 0 10px 44px 0 rgba(53,167,255,0.16);
  width: 94vw;
  max-width: 410px;
  padding: 40px 36px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalIn .28s cubic-bezier(.63,.17,.57,1.27);
}
@keyframes modalIn {
  from { opacity: 0; transform: translate(-50%,-22%); }
  to   { opacity: 1; transform: translate(-50%,-50%); }
}
.cookie-modal h3 {
  font-size: 1.22em;
  font-family: 'Fredoka One','Lora',serif;
}
.cookie-modal .cookie-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 14px 0;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 1.06em;
}
.cookie-category-row .category-toggle {
  accent-color: var(--brand-blue);
  width: 18px;
  height: 18px;
}
.cookie-category-row .always {
  color: var(--brand-green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .91em;
  margin-left: 8px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  width: 100%;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 18px;
  font-size: 28px;
  color: var(--brand-pink);
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
.cookie-modal-close:focus {
  outline: var(--focus-outline);
  color: var(--brand-blue);
}
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3000;
  top: 0; left:0;
  width: 100vw;
  height: 100vh;
  background: rgba(27, 42, 65,.25);
  animation: fadeinModalBg .24s;
}
@keyframes fadeinModalBg { from { opacity: 0; } to { opacity: 1; } }

/* ========== LEGAL / INFO PAGES ========== */
.legal, .info, .confirmation {
  background: #fffbe8;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 22px;
}
.legal h1, .confirmation h1 { color: var(--brand-blue); }
.legal ul, .info ul, .confirmation ul {
  margin-left: 16px;
  margin-bottom: 16px;
}
.legal ul li, .info ul li { margin-bottom: 8px; }

/* ========== UTILITY ========= */
.hide { display: none !important; }
.show { display: block !important; }

/* ========================= RESPONSIVE DESIGN ========================= */
@media (max-width: 1023px) {
  .container { max-width: 98vw; padding: 0 12px; }
  header .container, footer .container { gap: 12px; }
  .main-nav { gap: 18px; font-size: 14px; }
  .features .feature-grid { gap: 18px; }
  .reviews-grid, .curated-books-grid, .team-list { gap: 18px; }
}
@media (max-width: 850px) {
  .main-nav { gap: 8px; }
  .footer-nav { flex-wrap: wrap; gap: 12px; }
  .reviews-grid, .curated-books-grid, .team-list { flex-wrap: wrap; gap: 14px; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  header .container {
    flex-direction: row;
    gap: 8px;
    min-height: 56px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle { display: block; margin-left: 8px; }
  .footer-nav, .contact-short, .social-links { flex: 1 1 100%; }
  .footer-nav { flex-wrap: wrap; gap: 8px; }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  /* Features & cards stack */
  .features .feature-grid, .reviews-grid, .curated-books-grid, .team-list {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .feature-item, .review-card, .book-item, .team-member {
    min-width: 0;
    width: 100%;
    max-width: 98vw;
  }
  .content-wrapper, .text-section { gap: 9px; }
  .text-image-section { flex-direction: column; gap: 14px; }
  .section, .legal, .info, .confirmation {
    padding: 28px 10px;
    margin-bottom: 32px;
  }
  .cookie-modal { padding: 26px 9px 17px 9px; max-width: 98vw; }
}
@media (max-width: 500px) {
  .hero h1 { font-size: 1.25rem; }
  h2 { font-size: 1.09rem; }
  .section, .legal, .info, .confirmation { padding: 18px 3vw; }
  .mobile-menu-close { margin-right: 8px; font-size: 28px; }
  .mobile-nav { padding-left: 18px; gap: 13px; }
}

/* ========================= MICRO-INTERACTIONS ========================= */
.card, .card:hover,
.feature-item, .feature-item:hover,
.review-card, .review-card:hover,
.book-item, .book-item:hover,
.team-member, .team-member:hover {
  transition: box-shadow .19s cubic-bezier(.71,0,.37,1.15), transform .14s cubic-bezier(.79,0,.29,1.27);
}
.cta, .cta:hover { transition: var(--transition); }
.social-links a img { transition: transform .16s cubic-bezier(.65,.13,.28,1.12); }

/* ========================= ACCESSIBILITY IMPROVEMENTS ========================= */
a:focus, button:focus, .cta:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: var(--focus-outline);
}

/* ========================= END ========================= */
