/* 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;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: none;
}

/* ROOT VARIABLES */
:root {
  --fe-primary: #003049;
  --fe-secondary: #F77F00;
  --fe-accent: #FCF3EA;
  --fe-white: #ffffff;
  --fe-black: #1a1a1a;
  --fe-gray: #e9ecef;
  --fe-text: #242729;
  --fe-font-display: 'Playfair Display', serif;
  --fe-font-body: 'Montserrat', Arial, Helvetica, sans-serif;
}

html {
  font-size: 16px;
}
body {
  font-family: var(--fe-font-body);
  background: var(--fe-accent);
  color: var(--fe-text);
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s;
}

main {
  min-height: 60vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--fe-white);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fe-font-display);
  font-weight: 600;
  color: var(--fe-primary);
}
h1 {
  font-size: 2.75rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2.25rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  color: var(--fe-primary);
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--fe-text);
}
p, ul li, ol li {
  font-family: var(--fe-font-body);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--fe-text);
}
.text-section ul,
.text-section ol {
  margin-left: 18px;
  margin-bottom: 16px;
}
.text-section ul li::marker {
  color: var(--fe-secondary);
}
.text-section a {
  color: var(--fe-secondary);
  text-decoration: underline;
}

/* NAVIGATION STYLES */
header {
  background: var(--fe-white);
  border-bottom: 1px solid var(--fe-gray);
  position: sticky;
  top: 0;
  z-index: 1020;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  min-height: 72px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-nav > a {
  font-family: var(--fe-font-body);
  font-size: 1rem;
  color: var(--fe-primary);
  opacity: 0.92;
  transition: color 0.2s, opacity 0.2s;
  padding: 8px 0;
}
.main-nav img[alt="Fast Ember"] {
  height: 38px;
}
.main-nav > a.cta {
  background: var(--fe-secondary);
  color: var(--fe-white);
  font-family: var(--fe-font-body);
  font-weight: 700;
  border-radius: 28px;
  padding: 8px 24px;
  margin-left: auto;
  margin-right: 0;
  box-shadow: 0 2px 6px 0 rgba(247,127,0,0.13);
  transition: background 0.15s, box-shadow 0.2s;
  border: none;
}
.main-nav > a.cta:hover, .main-nav > a.cta:focus {
  background: #e76c00;
  box-shadow: 0 4px 16px 0 rgba(247,127,0,0.21);
}
.main-nav > a:hover, .main-nav > a:focus {
  color: var(--fe-secondary);
  opacity: 1.0;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  color: var(--fe-primary);
  margin-left: auto;
  line-height: 1;
  z-index: 2001;
  border: none;
  width: 44px;
  height: 44px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--fe-white);
  box-shadow: 0 0 38px 0 rgba(0,0,0,0.13);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.2,.8,.33,1.1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: var(--fe-primary);
  background: transparent;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1210;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 86px 38px 0 38px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-family: var(--fe-font-body);
  color: var(--fe-primary);
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--fe-secondary);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 20px;
    padding: 0 12px;
  }
  .container {
    max-width: 910px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 14px;
    max-width: 98vw;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 14px;
    top: 18px;
  }
  .mobile-menu {
    display: flex;
  }
}

/* HERO SECTION */
.hero, .hero-about, .hero-experiences, .hero-destinations, .hero-luxury, .hero-journal, .hero-contact {
  display: flex;
  align-items: center;
  min-height: 320px;
  background: var(--fe-accent);
  padding-top: 44px;
  padding-bottom: 22px;
  border-radius: 0 0 32px 32px;
  margin-bottom: 56px;
  box-shadow: 0 4px 24px 0 rgba(0,48,73,0.027);
}
.hero .container, .hero-about .container, .hero-experiences .container, .hero-destinations .container,
.hero-luxury .container, .hero-journal .container, .hero-contact .container {
  align-items: center;
  justify-content: center;
}
.hero h1, .hero-about h1, .hero-experiences h1, .hero-destinations h1, .hero-luxury h1, .hero-journal h1, .hero-contact h1 {
  font-size: 2.9rem;
  color: var(--fe-primary);
  font-family: var(--fe-font-display);
  font-weight: 700;
  line-height: 1.15;
}
.hero p, .hero-about p, .hero-experiences p, .hero-destinations p, .hero-luxury p, .hero-journal p, .hero-contact p {
  color: var(--fe-text);
  font-size: 1.15rem;
  margin-bottom: 22px;
  max-width: 540px;
}


/* CTA BUTTONS */
.cta {
  background: var(--fe-secondary);
  color: var(--fe-white);
  font-size: 1.12rem;
  font-family: var(--fe-font-body);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 28px;
  margin-top: 12px;
  box-shadow: 0 2px 10px 0 rgba(247,127,0,0.085);
  border: none;
  outline: none;
  display: inline-block;
  transition: background 0.18s, box-shadow 0.19s, transform 0.15s;
  cursor: pointer;
}
.cta:hover, .cta:focus {
  background: #e76c00;
  box-shadow: 0 7px 24px 0 rgba(247,127,0,0.22);
  transform: translateY(-2px) scale(1.02);
}

/* SECTION LAYOUTS */
.features, .features-editor-picks, .features-exclusives {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.about, .brand-story, .about-destinations, .about-policy, .about-gdpr, .about-cookies, .about-terms, .about-thank-you, .contact-details-section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.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;
    align-items: flex-start;
    gap: 20px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--fe-white);
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.045);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 7px 28px 0 rgba(0,48,73,0.07);
  z-index: 3;
}

/* FEATURES, LISTS */
.feature-grid, .feature-list, .feature-icons, .unique-services {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 22px;
  align-items: stretch;
}
.feature-grid li, .feature-list li, .feature-icons li, .unique-services li {
  background: var(--fe-white);
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.03);
  padding: 22px 18px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 0 220px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid li:hover, .feature-list li:hover, .feature-icons li:hover, .unique-services li:hover {
  box-shadow: 0 6px 32px 0 rgba(0,48,73,0.09);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img, .feature-list img, .feature-icons img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.feature-icons {
  gap: 28px;
}
.unique-services li {
  background: transparent;
  padding: 0 0 12px 0;
  box-shadow: none;
}

/* SERVICES / OFFERINGS */
.services-list, .services-list-section .services-list, .services-experiences .experience-list, .services-journal .recommended-experiences {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.services-list li, .experience-list li, .recommended-experiences li {
  background: var(--fe-white);
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.03);
  padding: 18px 22px 16px 20px;
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
  position: relative;
}
.services-list li .price, .experience-list li .price, .price {
  color: var(--fe-secondary);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 6px;
  font-family: var(--fe-font-body);
}
.services-list li:hover, .experience-list li:hover {
  box-shadow: 0 6px 24px 0 rgba(0,48,73,0.06);
  transform: translateY(-1px) scale(1.01);
}

.article-teaser-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.article-teaser-list li {
  background: var(--fe-white);
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.027);
  padding: 22px 16px 20px 14px;
  flex: 1 1 240px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.14s;
  margin-bottom: 20px;
}
.article-teaser-list img {
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
}
.article-teaser-list li:hover {
  box-shadow: 0 7px 34px 0 rgba(0,48,73,0.10);
  transform: translateY(-1px) scale(1.01);
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
  padding: 38px 0 24px 0;
}
.testimonials .content-wrapper > h2 {
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--fe-white);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(0,48,73,0.06);
  color: var(--fe-text);
  font-size: 1.08rem;
  min-width: 180px;
  font-family: var(--fe-font-body);
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: var(--fe-primary);
  font-family: var(--fe-font-display);
  font-style: italic;
  font-size: 1.05rem;
  flex: 1 1 auto;
  line-height: 1.4;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--fe-secondary);
  font-weight: 500;
  font-family: var(--fe-font-body);
  white-space: nowrap;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px 0 rgba(247,127,0,0.09);
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.trust-badges img {
  width: 48px;
  height: 48px;
}

/* CONTACT MINI SECTION */
.contact-mini {
  background: var(--fe-white);
  border-radius: 24px;
  box-shadow: 0 1px 12px 0 rgba(0,0,0,0.035);
  padding: 32px 0;
  margin-bottom: 54px;
}
.contact-mini .content-wrapper {
  align-items: flex-start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--fe-primary);
  font-family: var(--fe-font-body);
  font-size: 1.05rem;
}
.contact-details img {
  width: 18px;
  height: 18px;
}

/* FOOTER */
footer {
  background: var(--fe-accent);
  border-top: 1px solid var(--fe-gray);
  padding: 36px 0 8px 0;
  width: 100%;
  font-size: 1rem;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--fe-primary);
  font-family: var(--fe-font-body);
}
.footer-menu a {
  color: var(--fe-primary);
  opacity: 0.93;
  transition: color 0.16s;
  font-size: 0.96rem;
}
.footer-menu a:hover {
  color: var(--fe-secondary);
  opacity: 1;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 13px;
  color: var(--fe-primary);
  align-items: center;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-info img {
  width: 16px;
  height: 16px;
}
.brand-credits {
  text-align: center;
  font-size: 0.97rem;
  color: #676a6f;
  margin-top: 12px;
}
.social-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 4px;
}
.social-links a img {
  width: 24px;
  height: 24px;
  opacity: 0.90;
  transition: opacity 0.13s;
}
.social-links a:hover img {
  opacity: 1;
}

/* MAP FEATURE */
.map-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0 0 0;
}
.map-feature img {
  width: 98px;
  height: auto;
}

/* MISCELLANEOUS */
.related-services {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.related-services ul {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.related-services li {
  font-size: 1rem;
  font-family: var(--fe-font-body);
  color: var(--fe-primary);
  background: #f8f8f8;
  border-radius: 8px;
  padding: 8px 14px;
}

/* TEXT-ONLY POLICIES, LEGAL, THANK YOU ETC. */
.text-section {
  margin-bottom: 18px;
}
.text-section ul {
  margin-bottom: 12px;
  padding-left: 20px;
}
.text-section li {
  padding-bottom: 4px;
  font-size: 1rem;
}
.text-section a {
  color: var(--fe-secondary);
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1100px) {
  .feature-grid, .feature-list, .article-teaser-list {
    gap: 17px;
  }
  .card-container, .services-list, .recommended-experiences, .unique-services {
    gap: 17px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .feature-list, .article-teaser-list, .services-list, .experience-list, .recommended-experiences {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 720px) {
  .container, .content-wrapper {
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero, .hero-about, .hero-experiences, .hero-destinations, .hero-luxury, .hero-journal, .hero-contact {
    min-height: 180px;
    padding-top: 22px;
  }
  .section, .features, .about, .contact-mini {
    padding: 20px 4px;
    margin-bottom: 32px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.28rem;
  }
}
@media (max-width: 600px) {
  .card, .services-list li, .article-teaser-list li, .feature-grid li, .feature-list li {
    min-width: 0;
    width: 100%;
    padding: 14px 8px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 15px 8px;
  }
}

/* BUTTON & LINK MICRO-INTERACTIONS */
a, button {
  transition: color 0.16s, background 0.16s, box-shadow 0.19s, transform 0.10s;
}
a:focus, button:focus {
  outline: 2px dashed var(--fe-secondary);
  outline-offset: 2px;
  background: rgba(251,202,120,0.11);
}

/* MOBILE-FIRST ADJUSTMENTS */
@media (max-width: 490px) {
  .main-nav {
    padding: 0 2px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
  }
  .contact-info {
    flex-direction: column;
    gap: 7px;
  }
  .contact-mini {
    border-radius: 0;
    padding: 12px 2px;
  }
  .hero, .hero-about, .hero-experiences, .hero-destinations, .hero-luxury, .hero-journal, .hero-contact {
    border-radius: 0 0 15px 15px;
    min-height: 110px;
    padding-top: 10px;
  }
}

/* ============= COOKIE CONSENT BANNER ============= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--fe-white);
  box-shadow: 0 -2px 16px 0 rgba(0,48,73,0.07);
  z-index: 2050;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 30px;
  font-size: 1rem;
  animation: cookiebanner-slidein 0.45s cubic-bezier(.14,.94,.43,1.18);
  transition: transform 0.28s;
}
@keyframes cookiebanner-slidein {
  from { transform: translateY(86px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  max-width: 540px;
  color: var(--fe-primary);
  font-size: 1rem;
  margin-bottom: 0;
  font-family: var(--fe-font-body);
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-btn-alt {
  background: var(--fe-secondary);
  color: var(--fe-white);
  border-radius: 22px;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: var(--fe-font-body);
  font-weight: 600;
  margin: 0 3px;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(247,127,0,0.08);
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #e76c00;
}
.cookie-btn-alt {
  background: #eeeeee;
  color: var(--fe-primary);
  border: 1px solid #d3d3d3;
}
.cookie-btn-alt:hover, .cookie-btn-alt:focus {
  background: #ffe1b2;
  color: var(--fe-primary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(10,20,40,0.19);
  z-index: 2300;
}
.cookie-modal-backdrop.open {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,110vh);
  min-width: 340px;
  max-width: 98vw;
  background: var(--fe-white);
  color: var(--fe-text);
  border-radius: 18px;
  box-shadow: 0 12px 64px 0 rgba(0,48,73,0.23);
  z-index: 2400;
  padding: 34px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookiemodalslide 0.42s cubic-bezier(.17,.9,.32,1.17) forwards;
}
@keyframes cookiemodalslide {
  0%   { transform: translate(-50%,110vh); opacity: 0; }
  90%  { opacity: 1; }
  100% { transform: translate(-50%,-50%); opacity: 1; }
}
.cookie-modal.open {
  animation: cookiemodalslide 0.42s cubic-bezier(.17,.9,.32,1.17) forwards;
}
.cookie-modal h3 {
  font-size: 1.35rem;
  color: var(--fe-primary);
  font-family: var(--fe-font-display);
  margin-bottom: 11px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 13px;
  margin-top: 5px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-modal .cookie-switch {
  width: 36px;
  height: 22px;
  border-radius: 14px;
  background: #e8e8e8;
  position: relative;
  margin-left: 10px;
  border: 1px solid #dddddd;
}
.cookie-modal .cookie-switch input {
  appearance: none;
  width: 36px;
  height: 22px;
  margin: 0;
}
.cookie-modal .cookie-switch-label {
  font-family: var(--fe-font-body);
  font-size: 1.01rem;
  color: var(--fe-primary);
  margin-left: 6px;
}
.cookie-modal .cookie-switch:has(input:checked) {
  background: var(--fe-secondary);
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: var(--fe-secondary);
}
.cookie-modal .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fe-white);
  box-shadow: 0 0px 2px #88888820;
  transition: left 0.19s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  left: 16px;
}
.cookie-modal .cookie-category.essential {
  opacity: 0.6;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 20px;
}
.cookie-modal .cookie-btn-alt {
  padding: 8px 16px;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 7px;
    gap: 14px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    min-width: 0;
    width: 95vw;
    padding: 18px 4px 16px 4px;
  }
}

/* UTILITY SPACING */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mt-6 { margin-top: 6px !important; }
.mt-12 { margin-top: 12px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-48 { margin-top: 48px !important; }

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