/* =========================================================================
   CSS RESET & BASIC 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #1A2236;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1A2236;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B0073C;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}
:focus {
  outline: 2px solid #B0073C;
  outline-offset: 1px;
}

/* =========================================================================
   BRAND VARIABLES
   ========================================================================= */
:root {
  --color-primary: #1A2236;
  --color-secondary: #F5F3F0;
  --color-bg: #FFFFFF;
  --color-black: #191919;
  --color-white: #FFFFFF;
  --color-accent: #B0073C;
  --color-grey-light: #F6F6F6;
  --color-grey-medium: #D3D3D3;
  --color-grey-dark: #5A5A5A;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --radius: 12px;
  --shadow: 0 4px 20px rgba(26,34,54,0.06), 0 1.5px 5px rgba(26,34,54,0.06);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Source Sans Pro', Arial, sans-serif;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.16;
  color: #191919;
  letter-spacing: -0.3px;
}
h1 {
  font-size: 2.875rem; /* 46px */
  margin-bottom: 16px;
  letter-spacing: -1.2px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
  letter-spacing: -0.7px;
}
h3 {
  font-size: 1.5rem; /* 24px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
p, li, .subheadline {
  font-family: var(--font-body);
  color: #333;
  font-size: 1rem;
  margin-bottom: 12px;
}
.subheadline {
  color: #5A5A5A;
  font-size: 1.15rem;
  margin-bottom: 22px;
  font-weight: 400;
}
strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  h3 {
    font-size: 1.11rem;
  }
  .subheadline {
    font-size: 1rem;
  }
}

/* Monochrome sophisticated headings and caps */
h1, h2 {
  text-transform: none;
  letter-spacing: -1px;
}
h3, h4, h5, h6 {
  text-transform: none;
  letter-spacing: -0.2px;
}

/* =========================================================================
   LAYOUT CONTAINERS & UTILITY CLASSES
   ========================================================================= */
.container {
  width: 95%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius);
}
@media (max-width: 768px) {
  .section,
  section {
    margin-bottom: 32px;
    padding: 26px 5px;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 28px rgba(26,34,54,0.12), 0 1.5px 7px rgba(26,34,54,0.10);
  transform: translateY(-3px) scale(1.01);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  background: #F5F3F0;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(26,34,54,0.04);
  position: relative;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  color: #191919;
  font-style: italic;
  border-left: 4px solid #B0073C;
  padding-left: 18px;
  margin-bottom: 8px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #5A5A5A;
}
.star-rating-summary {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: #B0073C;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ------------------------------------
   FLEXBOX WRAPPERS FOR LIST-GRIDS
------------------------------------ */
.feature-grid, .highlight-grid, .value-list, .benefit-list, .event-slider, .event-list, .festival-grid, .review-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid li, .highlight-grid li, .event-teaser, .event-item, .festival-item, .award-info-block, .review-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px;
  min-width: 210px;
  flex: 1 1 320px;
  min-height: 160px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid li:hover, .highlight-grid li:hover, .event-teaser:hover, .event-item:hover, .festival-item:hover, .award-info-block:hover, .review-item:hover {
  box-shadow: 0 5px 22px rgba(26,34,54,0.085);
  transform: translateY(-2px) scale(1.01);
}
.value-list {
  background:#fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  gap: 0;
  margin-bottom: 30px;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 500;
  color: #222;
}
.value-list li:not(:last-child) {
  margin-bottom: 12px;
}

.benefit-list li:before {
  content: '✓';
  color: #B0073C;
  font-weight: bold;
  margin-right: 7px;
  font-size: 1rem;
}
/* ------------------------------------
   HERO, BANNERS & CALLOUTS
------------------------------------ */
.hero {
  background: linear-gradient(96deg, #fff 60%, #F5F3F0 100%);
  border-radius: var(--radius);
  box-shadow: 0 2px 21px rgba(26,34,54,0.06);
  padding: 40px 0;
  display: flex;
  align-items: center;
  min-height: 340px;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 680px;
  padding: 0 10px;
  gap: 7px;
}
.cta-banner {
  background: #191919;
  color: #fff;
  border-radius: var(--radius);
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner h2, .cta-banner p {
  color: #fff;
}
@media (max-width: 768px) {
  .hero {
    padding: 26px 0;
    min-height: 150px;
    margin-bottom: 32px;
  }
  .cta-banner {
    min-height: 110px;
  }
}
/* ------------------------------------
   BUTTONS & INTERACTIVES
------------------------------------ */
.cta {
  display: inline-block;
  min-width: 176px;
  text-align: center;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 14px 30px;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  box-shadow: none;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-top: 18px;
  margin-bottom: 14px;
}
.cta.primary {
  background: #1A2236;
  color: #fff;
  border: 2px solid #1A2236;
  box-shadow: 0 2px 20px rgba(26,34,54,0.04);
}
.cta.primary:hover, .cta.primary:focus {
  background: #B0073C;
  color: #fff;
  border-color: #B0073C;
  box-shadow: 0 7px 18px #1A223619;
  transform: translateY(-2px) scale(1.018);
}
.cta.secondary {
  background: transparent;
  color: #B0073C;
  border: 2px solid #B0073C;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #B0073C;
  color: #fff;
  box-shadow: 0 7px 18px #B0073C19;
  transform: translateY(-2px) scale(1.014);
}

/* News/Category/Filters */
.category {
  display: inline-block;
  background: #1A2236;
  color: #fff;
  font-size: 0.92rem;
  font-family: var(--font-display);
  border-radius: 6px;
  padding: 3px 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.news-filters, .review-filters {
  margin-top: 22px;
  font-size: 0.97rem;
  color: #1A2236;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-filters a, .review-filters a {
  color: #B0073C;
  font-weight: 600;
  transition: color var(--transition);
  padding: 2px 5px;
}
.news-filters a:hover, .review-filters a:hover {
  color: #191919;
  text-decoration: underline;
}

/* ------------------------------------
   NAVIGATION (DESKTOP & MOBILE BURGER)
------------------------------------ */
header {
  background: #fff;
  border-bottom: 1px solid #E4E4E4;
  padding: 0;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  min-height: 80px;
}
header a img {
  height: 54px;
  min-width: 120px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  margin-left: 38px;
  font-size: 1rem;
}
.main-nav a {
  color: #1A2236;
  padding: 7px 12px;
  border-radius: 5px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5F3F0;
  color: #B0073C;
}
.mobile-menu-toggle {
  display: none;
  background: #1A2236;
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 1.55rem;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #B0073C;
}
/* Hide cta as button on mobile, show in nav-drawer */
@media (max-width: 1020px) {
  .main-nav {
    gap: 13px;
    margin-left: 14px;
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta.primary {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 4000;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  box-shadow: 0 10px 30px rgba(26,34,54,0.11);
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0%) !important;
}
.mobile-menu-close {
  position: absolute;
  right: 26px;
  top: 34px;
  background: #F5F3F0;
  color: #1A2236;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  z-index: 4200;
  border: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #B0073C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 110px 38px 34px 38px;
  height: 100%;
  justify-content: flex-start;
}
.mobile-nav a {
  color: #1A2236;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 7px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5F3F0;
  color: #B0073C;
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 88px 15px 18px 18px;
    gap: 18px;
  }
}

/* =========================================================================
   PAGE SPECIFIC & BLOCKS
   ========================================================================= */
.news-list, .news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.news-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 25px 18px 22px 18px;
  flex: 1 1 330px;
  min-width: 230px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.news-item:hover {
  box-shadow: 0 9px 32px rgba(26,34,54,0.09);
  transform: translateY(-4px) scale(1.015);
}
.event-slider, .event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  min-width: 220px;
}
.event-teaser {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 23px 20px 20px 23px;
  flex: 1 1 290px;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 0;
}

.events-teaser a.cta {
  margin-top: 24px;
  margin-bottom: 0;
}
.festival-listing .festival-grid {
  gap: 24px;
}
.festival-item, .award-info-block {
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px 22px;
  flex: 1 1 330px;
}
.award-info-block {
  border-left: 4px solid #B0073C;
}

.review-list-grid {
  gap: 24px;
}
.review-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  flex: 1 1 320px;
}

@media (max-width: 900px) {
  .news-list, .news-grid, .event-slider, .event-list, .festival-grid, .highlight-grid, .feature-grid, .review-list-grid {
    flex-direction: column;
    gap: 17px;
  }
  .feature-grid li, .highlight-grid li, .event-teaser, .event-item, .festival-item, .award-info-block, .review-item {
    min-width: 0;
    width: 100%;
  }
}

/* icons in contact details */
.address-block, .phone-block, .email-block, .hours-block {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.02rem;
  margin-bottom: 18px;
}

/* Text sections */
.text-section {
  margin-bottom: 18px;
}

/* Legal & Policy pages */
.legal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 35px 22px 40px 22px;
}
.legal-text-sections, .cookie-policy-text, .terms-and-conditions-text {
  margin-top: 22px;
}
.legal-text-sections h3, .cookie-policy-text h3, .terms-and-conditions-text h3 {
  font-size: 1.09rem;
  color: #191919;
  margin-top: 20px;
  font-weight: 700;
}
.legal-text-sections ul, .cookie-policy-text ul, .terms-and-conditions-text ul {
  margin-left: 18px;
  margin-bottom: 18px;
  color: #353535;
  font-size: 1rem;
}
.legal-text-sections li, .cookie-policy-text li, .terms-and-conditions-text li {
  margin-bottom: 6px;
}

/* Thank-you section */
.thank-you {
  background: #F5F3F0;
  border-radius: var(--radius);
  text-align: center;
  padding: 40px 0;
}
.thank-you h1, .thank-you h2, .thank-you p {
  color: #1A2236;
}

/* Newsletter signup section styling */
.newsletter-signup ul.benefit-list {
  margin-bottom: 18px;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
  background: #191919;
  color: #fff;
  padding: 40px 0 22px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 38px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  width: 100%;
  flex: 2 1 370px;
}
.footer-navigation a {
  color: #F6F6F6;
  font-size: 0.98rem;
  font-family: var(--font-display);
  border-radius: 4px;
  padding: 4px 9px;
  transition: background var(--transition), color var(--transition);
}
.footer-navigation a:hover, .footer-navigation a:focus {
  background: #B0073C;
  color: #fff;
}
.footer-brand {
  flex: 1 0 160px;
  text-align: left;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 12px;
}
.footer-address {
  font-size: 0.97rem;
  color: #D3D3D3;
  flex: 2 1 280px;
  margin-top: 9px;
}
@media (max-width: 1020px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-navigation {
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 12px;
  }
}

/* =========================================================================
   RESPONSIVE: MOBILE-FIRST / TABLET
   ========================================================================= */
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  .container {
    width: 100%;
    padding: 0 4px;
    max-width: 100vw;
  }
  header .container {
    min-height: 65px;
    padding: 0 5px;
    gap: 7px;
  }
  .footer-brand img {
    height: 36px;
  }
  .footer-address {
    font-size: 0.93rem;
  }
  footer {
    padding: 18px 0 11px 0;
    margin-top: 32px;
  }
}

/* =========================================================================
   COOKIE CONSENT BANNER & COOKIE MODAL
   ========================================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 7000;
  background: #fff;
  box-shadow: 0 -2px 22px rgba(26,34,54,0.08);
  border-top: 3px solid #B0073C;
  padding: 22px 18px 18px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 1rem;
  color: #191919;
  animation: bannerIn 0.45s ease;
}
@keyframes bannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner p {
  margin-bottom: 0;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-left: 8px;
}
.cookie-btn {
  background: #F5F3F0;
  color: #1A2236;
  border: 1.5px solid #1A2236;
  border-radius: 8px;
  padding: 9px 17px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-right: 2px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btn.accept {
  background: #B0073C;
  color: #fff;
  border: 1.5px solid #B0073C;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #1A2236;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #5A5A5A;
  border: 1.5px solid #B0073C;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F5F3F0;
  color: #B0073C;
}
.cookie-btn.settings {
  background: transparent;
  color: #1A2236;
  border: 1.5px solid #1A2236;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #1A2236;
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 7px 14px 7px;
    font-size: 0.98rem;
  }
  .cookie-banner-actions {
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,34,54,0.53);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .33s;
}
.cookie-modal {
  background: #fff;
  width: 99vw;
  max-width: 430px;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(26,34,54,0.13);
  padding: 36px 30px 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalIn .38s cubic-bezier(.7,.2,.22,1);
}
@keyframes modalIn {
  from { transform: translateY(80px) scale(.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 5px;
}
.cookie-category-list {
  border-top: 1.5px solid #E4E4E4;
  margin-top: 10px;
  padding-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #191919;
  font-family: var(--font-body);
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #D3D3D3;
  border-radius: 31px;
  transition: background var(--transition);
}
.cookie-toggle input:checked + .cookie-slider {
  background: #B0073C;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 19px;
  width: 19px;
  left: 3px;
  bottom: 3.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 2px 4px rgba(26,34,54,0.08);
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(21px);
}
/* Essential toggles always ON (displayed as disabled) */
.cookie-category.essential .cookie-toggle {
  opacity: 0.67;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #F5F3F0;
  color: #1A2236;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.27rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #B0073C;
  color: #fff;
}

/* Cookie banner MODAL Responsive */
@media (max-width: 520px) {
  .cookie-modal {
    padding: 22px 8px 20px 12px;
    max-width: 98vw;
  }
}

/* HELPERS & ACCESSIBILITY */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/* =========================================================================
   END OF STYLE.CSS
   ========================================================================= */
