/* CSS 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {line-height: 1.15; box-sizing: border-box; scroll-behavior: smooth;}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #faf7ec;
  color: #183153;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after { box-sizing: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', 'Arial', sans-serif; }
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
/* VINTAGE RETRO COLORS & FONTS */
:root {
  --primary: #183153;         /* deep blue - brand */
  --secondary: #2497b9;       /* cyan-teal - brand */
  --accent: #f8f9fa;          /* nearly white - brand */
  --retro-bg: #faf7ec;        /* warm paper beige */
  --retro-brown: #af7a3f;     /* mid brown */
  --retro-orange: #e67c3c;    /* vivid retro orange */
  --retro-mustard: #f5ca49;   /* muted yellow */
  --retro-dark: #322107;      /* very dark brown */
  --shadow: rgba(70,49,29,0.11);
  --border-radius: 14px;
  --card-radius: 18px;
  --trans: 0.23s cubic-bezier(.42,0,.58,1);
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}
body {
  background: var(--retro-bg);
  color: var(--primary);
  font-family: var(--font-body);
}

/* TYPOGRAPHY + HIERARCHY */
h1, .hero h1, .shop-hero h1, .promo-hero h1, .new-hero h1, .thank-you-confirmation h1, .about h1, .privacy-policy h1, .gdpr-policy h1, .terms-policy h1, .cookie-policy h1, .contact-hero h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--retro-dark);
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  text-shadow: 1px 1px 0 var(--retro-mustard);
}
@media (min-width: 600px) {
  h1, .hero h1 { font-size: 2.7rem; }
}
@media (min-width: 1024px) {
  h1, .hero h1 { font-size: 3.2rem; }
}
h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--retro-orange);
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.7;
}
strong, b { color: var(--retro-orange); font-weight: bold; }
.text-section ul,
.content-wrapper ul,
li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary);
}
.text-section ul {
  margin-bottom: 18px;
  padding-left: 22px;
  list-style: disc inside;
}
h4, h5, h6 { font-family: var(--font-display); }

/* LAYOUT CONTAINERS */
.container {
  width: 96%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 12px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 940px;
  padding: 40px 0;
}
.section, .features, .promotions, .new-arrivals, .testimonials, .about, .stats, .team, .shop-hero, .product-listing, .shop-features, .promo-hero, .promotion-list, .promo-cta, .new-hero, .new-products, .support-hero, .faq, .contact-support, .contact-hero, .contact-details, .contact-form-section, .privacy-policy, .gdpr-policy, .terms-policy, .cookie-policy, .thank-you-confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX PATTERNS */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff8ef;
  border-radius: var(--card-radius);
  box-shadow: 0 4px 16px var(--shadow);
  padding: 24px 18px;
  border: 2.5px solid var(--retro-mustard);
  transition: box-shadow var(--trans), transform var(--trans);
}
.card:hover {
  box-shadow: 0 7px 25px var(--shadow);
  transform: translateY(-4px) scale(1.024);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  min-width: 220px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 14px var(--shadow);
  border: 2px dashed var(--retro-orange);
  color: #222;
  position: relative;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: #2a2118;
  margin-bottom: 0;
  font-family: var(--font-body);
  text-align: center;
}
.testimonial-card span {
  color: var(--retro-brown);
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MOTIF & SECTION DECORATIVE RETRO ELEMENTS */
.section, .features, .about, .stats, .team, .product-listing, .promotion-list, .shop-features, .faq, .contact-support, .contact-details, .contact-form-section, .privacy-policy, .gdpr-policy, .terms-policy, .cookie-policy {
  background: repeating-linear-gradient( 135deg, #fffbe9, #faf7ec 18px, #f5e3bc 30px, #fffbe9 46px );
  border-radius: 24px;
  box-shadow: 0 7px 28px var(--shadow);
}

/* HEADER NAVIGATION */
header {
  background: #fffdef;
  border-bottom: 4px solid var(--primary);
  box-shadow: 0 6px 24px rgba(50,33,7,0.06);
  position: relative;
  z-index: 1043;
}
header .container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-left: 18px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.06rem;
  letter-spacing: 0.2px;
  color: var(--retro-brown);
  padding: 7px 13px;
  border-radius: 8px;
  transition: background var(--trans), color var(--trans);
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--retro-mustard);
  color: var(--retro-dark);
}
header img {
  max-height: 44px; display: block;
}
.cta-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.13rem;
  background: var(--retro-orange);
  color: #fff;
  padding: 10px 28px;
  border-radius: 60px;
  font-weight: bold;
  border: none;
  margin-left: 20px;
  box-shadow: 0 4px 20px var(--shadow);
  cursor: pointer;
  letter-spacing: 0.7px;
  transition: background var(--trans), color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--retro-dark);
  color: var(--retro-mustard);
  box-shadow: 0 8px 32px rgba(79,53,33,0.16);
  transform: scale(1.045);
}
.cta-secondary {
  display: inline-block;
  background: var(--retro-brown);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 35px;
  margin-top: 16px;
  border: none;
  transition: background var(--trans), color var(--trans), transform var(--trans);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--retro-orange);
  color: var(--retro-dark);
  transform: scale(1.04);
}

/* HERO SECTIONS & PROMOS */
.hero, .shop-hero, .promo-hero, .new-hero, .thank-you-confirmation, .contact-hero {
  background: repeating-linear-gradient(-34deg, #fffbe9 0 18px, #f5e3bc 18px 26px, #fffbe9 26px 52px);
  border-bottom: 4px solid var(--retro-orange);
  box-shadow: 0 9px 34px #ecdcb2dd;
}
.hero .container, .shop-hero .container, .promo-hero .container, .new-hero .container, .thank-you-confirmation .container, .contact-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper, .shop-hero .content-wrapper, .promo-hero .content-wrapper, .new-hero .content-wrapper, .thank-you-confirmation .content-wrapper, .contact-hero .content-wrapper {
  padding: 48px 0 44px 0;
  text-align: center;
}
.hero p, .shop-hero p, .promo-hero p, .new-hero p, .thank-you-confirmation p, .contact-hero p {
  font-size: 1.07rem;
  color: var(--primary);
  margin-bottom: 34px;
}

/* FEATURES */
.features ul, .promotions ul, .shop-features ul, .new-arrivals ul,
.product-listing ul, .faq ul, .about ul, .stats ul, .team ul, .contact-details ul, .contact-support ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.features ul li, .shop-features ul li, .product-listing ul li, .promotions ul li, .new-arrivals ul li, .faq ul li, .about ul li, .stats ul li, .team ul li, .contact-details ul li, .contact-support ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 0;
  background: #fffbe9;
  border-left: 5px solid var(--retro-mustard);
  border-radius: 7px;
  font-family: var(--font-body);
  color: var(--retro-dark);
  box-shadow: 0 2px 8px #efede790;
}
.features ul li img, .contact-details ul li img, .contact-support ul li img {
  height: 26px;
  width: 26px;
  margin-right: 7px;
  filter: none;
}

/* PROMOTION CARDS */
.promotion-list .promotion-card {
  background: linear-gradient(120deg, #fcf0cf 65%, #fff9e6 110%);
  border: 2px solid var(--retro-orange);
  border-radius: var(--card-radius);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px var(--shadow);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.promotion-list .promotion-card:hover {
  box-shadow: 0 10px 36px #ac651a33;
  transform: translateY(-6px) scale(1.021);
}
.promotion-list .promotion-card h3 {
  margin: 0 0 6px 0;
  font-size: 1.17rem;
}
.promotion-list .promotion-card p {
  color: var(--primary);
  margin-bottom: 0;
}

/* NEW PRODUCTS */
.new-products ul li, .product-listing ul li {
  padding: 14px 17px;
  background: #fffbe9;
  border: 2px dotted var(--retro-mustard);
  border-radius: 9px;
  margin-bottom: 11px;
  box-shadow: 0 2px 8px #efede790;
}

/* SHOP FILTERS */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 35px 0 6px 0;
  font-family: var(--font-display);
}
.shop-filters ul {
  display: flex;
  gap: 10px;
}
.shop-filters ul li {
  background: var(--retro-orange);
  color: #fff;
  padding: 4px 12px;
  border-radius: 9px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  border: none;
  box-shadow: 0 1.5px 4px var(--shadow);
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 0 0;
}
.search-bar input {
  padding: 6px 17px;
  font-size: 1rem;
  border: 2px solid var(--retro-brown);
  border-radius: 7px;
  background: #f4ede4;
  color: var(--retro-dark);
  transition: border var(--trans);
}
.search-bar input:focus {
  border: 2.5px solid var(--retro-orange);
  outline: none;
}

/* FOOTER */
footer {
  background: #222118;
  color: #fff8ef;
  border-top: 5px solid var(--retro-orange);
  padding-top: 26px;
  padding-bottom: 18px;
  box-shadow: 0 -5px 30px #893e153b;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-brand img {
  max-height: 48px;
  margin-bottom: 7px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 8px 0 10px 0;
}
.footer-nav a {
  color: var(--retro-mustard);
  font-family: var(--font-display);
  font-size: 1.01rem;
  letter-spacing: 0.4px;
  transition: color var(--trans);
  padding: 2px 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-orange);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.99rem;
  color: var(--retro-mustard);
  align-items: flex-start;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
}
.footer-social {
  display: flex;
  gap: 17px;
}
.footer-social img {
  width: 26px; height: 26px;
  filter: sepia(30%) hue-rotate(330deg) contrast(110%);
  transition: filter var(--trans), transform var(--trans);
}
.footer-social img:hover {
  filter: brightness(1.28) sepia(0%) drop-shadow(0 6px 12px #fdca5f66);
  transform: scale(1.2) rotate(-5deg);
}
.footer-copy {
  color: #f5ca49cc;
  font-size: 0.9rem;
  margin-top: 7px;
  text-align: center;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 2100;
  background: var(--retro-brown);
  color: #fffbe9;
  border: none;
  border-radius: 13px;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px var(--shadow);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}
.mobile-menu-toggle:active { transform: scale(0.93); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffbe9;
  box-shadow: 0 7px 38px #783e136f;
  transform: translateX(-110vw);
  transition: transform 0.35s cubic-bezier(.6,0,.32,1);
  z-index: 3000;
  padding: 33px 22px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: var(--retro-dark);
  border: none;
  font-size: 2.43rem;
  font-weight: 900;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color var(--trans), transform var(--trans);
  z-index: 1;
}
.mobile-menu-close:hover { color: var(--retro-orange); transform: scale(1.09) rotate(-6deg); }
.mobile-nav {
  margin-top: 5px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-size: 1.18rem;
  font-family: var(--font-display);
  padding: 14px 0 13px 7px;
  color: var(--retro-dark);
  border-bottom: 1.5px solid #f5ca4980;
  letter-spacing: 0.35px;
  transition: background var(--trans), color var(--trans);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-mustard);
  color: var(--retro-orange);
}

/* Hide desktop nav & show mobile toggle on mobile */
@media (max-width: 970px) {
  header nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 971px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  header nav, .cta-primary {
    display: flex;
  }
}

/* SECTIONS & GENERAL SPACING */
main>section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:not(:last-child) { margin-bottom: 62px; }
.card:not(:last-child), .promotion-card:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 24px;
}
.content-grid > * { min-width: 230px; }
.card-container > *, .card-grid > *, .content-grid > *, .features ul > *, .feature-item > *, .shop-filters ul > *, .footer-contact > *, .footer-social > * {
  margin-bottom: 0;
}

/* BUTTONS & LINKS */
button, .cta-primary, .cta-secondary {
  font-family: var(--font-display);
  transition: background var(--trans), color var(--trans), transform var(--trans), box-shadow var(--trans);
  outline: none;
}
button:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible {
  outline: 2.5px solid var(--retro-orange);
  outline-offset: 2px;
}
a:active, button:active {
  transform: scale(0.98);
}

/* MICRO-INTERACTIONS */
section a.cta-primary:not(.footer-copy),
section a.cta-secondary:not(.footer-copy) {
  margin-top: 10px;
  font-size: 1.07rem;
  will-change: transform, background, box-shadow;
}

/* ICONS (for retro feel with glow + color overlay) */
footer img, .features img, .contact-details img, .contact-support img {
  filter: drop-shadow(0 4px 8px #fdca5f20);
  opacity: 1;
}

/* RETRO PATTERNS and Nostalgic Details */
.hero, .promo-hero, .shop-hero, .thank-you-confirmation, .new-hero {
  position: relative;
  z-index: 2;
}
.hero:before, .promo-hero:before, .shop-hero:before, .new-hero:before, .thank-you-confirmation:before {
  content: '';
  position: absolute;
  left: -45px; top: 15px;
  width: 90px; height: 28px;
  background: repeating-linear-gradient(90deg, #f5ca49 0 9px, #fffbe9 9px 18px);
  border-radius: 13px 23px 7px 12px;
  opacity: 0.23;
  z-index: 1;
}
.hero:after, .promo-hero:after, .shop-hero:after, .new-hero:after, .thank-you-confirmation:after {
  content: '';
  position: absolute;
  right: -38px; bottom: 12px;
  width: 87px; height: 19px;
  background: repeating-linear-gradient(90deg, #e67c3c 0 7px, #fffbe9 7px 17px);
  border-radius: 11px 23px 17px 22px;
  opacity: 0.17;
  z-index: 1;
}

/* RESPONSIVE FLEX DIRECTION ADJUSTMENTS */
@media (max-width: 768px) {
  .content-grid, .card-container, .card-grid, .features ul, .footer-nav, .footer-contact, .footer-social {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 22px !important;
  }
}

/* RETRO SCROLLBAR */
::-webkit-scrollbar {
  width: 12px;
  background: #fffbe9;
}
::-webkit-scrollbar-thumb {
  background: #e0b75e;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #af7a3f;
}

/* FORMS (used e.g. in search-bar or contact forms) */
input, textarea {
  background: #fffbe9;
  border: 2px solid var(--retro-mustard);
  border-radius: 9px;
  padding: 8px 13px;
  color: var(--retro-dark);
  transition: border var(--trans);
}
input:focus, textarea:focus {
  border-color: var(--retro-orange);
  outline: none;
}
label { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--retro-dark); }

/* MODALS (COOKIE DIALOG) */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #f8e5bc;
  color: #563b17;
  box-shadow: 0 -7px 24px #99621144;
  z-index: 9000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 26px 19px 23px;
  border-top: 5px solid var(--retro-brown);
  font-size: 1rem;
  font-family: var(--font-body);
  animation: fadeinbottom 0.6s;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    font-size: .98rem;
    padding: 16px 11px 17px 13px;
  }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 33px;
  border: none;
  padding: 8px 21px;
  font-weight: 700;
  box-shadow: 0 2px 11px #69893934;
  margin: 0;
  transition: background var(--trans), color var(--trans), box-shadow var(--trans);
  cursor: pointer;
}
.cookie-banner .accept {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--retro-brown);
  color: var(--retro-mustard);
}
.cookie-banner .reject {
  background: var(--retro-mustard);
  color: var(--retro-brown);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--retro-brown);
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  color: var(--retro-brown);
  border: 1.5px solid var(--retro-mustard);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--retro-mustard);
  color: var(--retro-dark);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(47,33,18,0.56);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s cubic-bezier(.6,0,.32,1);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffbe9;
  color: #37240a;
  border-radius: 22px;
  box-shadow: 0 8px 40px #b3821f45;
  padding: 33px 36px 28px 36px;
  max-width: 94vw;
  min-width: 270px;
  width: 470px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popin 0.37s cubic-bezier(.65,0,.45,1);
}
@media (max-width: 500px) {
  .cookie-modal { padding: 19px 7vw 24px 7vw; width: 98vw; }
}
.cookie-modal h3 {
  margin: 0 0 15px 0;
  color: var(--retro-brown);
  font-size: 1.19rem;
  font-family: var(--font-display);
}
.cookie-modal label[for^='cookie'] {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.05rem;
  color: var(--retro-dark);
  margin-bottom: 7px;
}
.cookie-toggle {
  width: 38px; height: 20px;
  border-radius: 30px;
  background: #d3c5a0;
  position: relative;
  vertical-align: middle;
  margin-left: 7px;
  cursor: pointer;
}
.cookie-toggle input[type='checkbox'] {
  display: none;
}
.cookie-toggle .slider {
  position: absolute; left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: var(--retro-mustard);
  border-radius: 50%;
  transition: left 0.18s cubic-bezier(.56,0,.43,1); 
}
.cookie-toggle input[type='checkbox']:checked + .slider {
  left: 20px;
  background: var(--retro-orange);
}
.cookie-modal .modal-actions {
  display: flex; gap: 13px; margin-top: 22px; justify-content: flex-end;
}
.cookie-modal button {
  font-size: 1.02rem;
  font-family: var(--font-display);
  border-radius: 31px;
  border: none;
  box-shadow: 0 1.5px 8px var(--shadow);
  padding: 6px 21px;
  font-weight: 700;
  margin: 0;
}
.cookie-modal .save {
  background: var(--retro-orange);
  color: #fff;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: var(--retro-brown);
  color: var(--retro-mustard);
}
.cookie-modal .cancel {
  background: #fff;
  color: var(--retro-brown);
  border: 1.5px solid var(--retro-mustard);
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: var(--retro-mustard);
  color: var(--retro-dark);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px; right: 19px;
  background: none;
  border: none;
  color: #b87424;
  font-size: 1.69rem;
  font-weight: 900;
  cursor: pointer;
  transition: color var(--trans);
}
.cookie-modal .modal-close:hover { color: var(--retro-orange); }


/* MEDIA QUERIES FOR RESPONSIVE TYPOGRAPHY & PADDING */
@media (max-width: 660px) {
  h1, .hero h1 { font-size: 1.65rem; }
  h2 { font-size: 1.19rem; }
  .container, .content-wrapper { padding-left: 4px; padding-right: 4px; }
  .section, main>section { padding: 26px 4vw; }
  .footer-brand img { max-height: 40px; }
}
@media (max-width: 430px) {
  .cookie-banner {
    font-size: .96rem; padding: 12px 7px 13px 7px;
  }
}

/* ANIMATIONS */
@keyframes fadeinbottom {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popin {
  0% { transform: scale(0.88); opacity: 0.3; }
  87% { transform: scale(1.04); opacity: 1; }
  100% { transform: scale(1); }
}

/* VISIBILITY HELPERS */
.hide { display: none !important; }

/* ACCESSIBILITY FOCUS VISIBLE */
:focus-visible {
  outline: 2.5px solid var(--retro-orange);
  outline-offset: 2px;
}

/* UTILITY: CLEAR FLOATS (legacy)
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
*/