/* -------------------- CSS RESET & NORMALIZATION -------------------- */
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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #2D3540;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  min-height: 100vh;
}
*, *::before, *::after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a, button {
  transition: color 0.18s, background 0.18s, border 0.18s, box-shadow 0.18s, opacity 0.18s, transform 0.18s;
  outline: none;
}
a {
  color: #2D3540;
  text-decoration: none;
}
a:hover, a:focus {
  color: #FFD700;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* -------------------- BRAND COLORS & FONTS -------------------- */
:root {
  --primary: #2D3540;
  --secondary: #738290;
  --accent: #FFD700;
  --bg: #fff;
  --text: #2D3540;
  --muted: #f6f7f9;
  --border: #eceff1;
  --shadow: 0 2px 12px 0 rgba(31,37,51,0.07);
  --radius: 10px;
  --display-font: 'Montserrat', Arial, sans-serif;
  --body-font: 'Open Sans', Arial, sans-serif;
}

/* -------------------- TYPOGRAPHY SCALE -------------------- */
h1, .h1 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 10px;
}
h5, .h5 {
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-family: var(--body-font);
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--text);
}
strong, b {
  font-weight: 600;
}
.tagline {
  color: var(--secondary);
  font-size: 1.13rem;
  margin-bottom: 28px;
}

/* -------------------- CONTAINER & LAYOUT -------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg);
}
.hero {
  margin-bottom: 60px;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
  min-height: 360px;
  display: flex;
  align-items: center;
}

.features {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.catalog-preview, .about-snippet, .services-teaser, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.brand-story, .team, .brand-highlights, .catalog-intro, .product-filters, .product-listing, .service-steps, .news, .confirmation, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* Flex container utilities (MANDATORY) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  flex: 1 1 320px;
  min-width: 280px;
}
.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;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 20px 20px;
  min-width: 230px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  opacity: 0.86;
}
.feature-item:hover {
  box-shadow: 0 4px 18px 0 rgba(31,37,51,0.11);
  transform: translateY(-3px) scale(1.025);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

/* Cards/Listings */
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.product-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.89rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 3px 12px;
  margin-right: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.product-item .price {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 12px;
}
.product-item .cta,
.product-item .add-to-cart {
  width: fit-content;
  margin-bottom: 0;
}
.product-item .add-to-cart {
  color: var(--secondary);
  font-size: 0.97rem;
  font-weight: 400;
  padding: 0;
}
.product-item .add-to-cart:hover,
.product-item .add-to-cart:focus {
  color: var(--primary);
  text-decoration: underline;
}

/* Services Grid */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.service-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 16px 18px 16px;
  flex: 1 1 220px;
  min-width: 195px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.17s;
}
.service-item:hover {
  box-shadow: 0 4px 18px 0 rgba(31,37,51,0.12);
  transform: translateY(-2px) scale(1.018);
}
.service-price {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.05rem;
  margin-top: 6px;
}

/* News cards */
.news-teaser {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 18px 18px;
  margin-bottom: 20px;
}

/* -------------------- BUTTON STYLES -------------------- */
.cta,
button.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display-font);
  padding: 11px 30px 11px 30px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 1.08rem;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 12px;
  box-shadow: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s, border 0.17s, box-shadow 0.17s, transform 0.16s, opacity 0.15s;
}
.cta.primary {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
  box-shadow: 0 2px 8px 0 rgba(31,37,51,0.11);
}
.cta.primary:hover, .cta.primary:focus {
  background: #1b2028;
  color: #FFD700 !important;
  border-color: var(--primary);
  box-shadow: 0 4px 16px 0 rgba(31,37,51,0.12);
  transform: translateY(-1px) scale(1.025);
}
.cta:hover, .cta:focus {
  background: var(--muted);
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 2px 12px 0 rgba(31,37,51,0.08);
  transform: translateY(-1px) scale(1.015);
}

/* Footer links */
.footer-nav a {
  margin-right: 20px;
  font-size: 0.97rem;
  color: var(--secondary);
}
.footer-nav a:last-child {
  margin-right: 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--primary);
  text-decoration: underline;
}

/* Tables and form elements - Minimal for legal/cookie pages */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 14px;
  margin-bottom: 16px;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--primary);
  outline: none;
}

/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  position: relative;
  z-index: 202;
  box-shadow: 0 2px 12px rgba(31,37,51,0.03);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
  min-height: 56px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-left: 34px;
}
.main-nav a {
  font-family: var(--display-font);
  font-size: 1.03rem;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 4px 8px;
  border-radius: 7px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--muted);
  color: var(--primary);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2.2rem;
  color: var(--primary);
  border-radius: 8px;
  transition: background 0.14s, color 0.16s;
  margin-left: 14px;
  align-self: center;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--muted);
  color: var(--accent);
}

/* -------------------- MOBILE MENU -------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  box-shadow: 0 2px 32px 0 rgba(31,37,51,0.12);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 0 0 0;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.4,1.1,.6,1), opacity 0.18s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: #fff;
  color: var(--primary);
  font-size: 2rem;
  border-radius: 7px;
  z-index: 1010;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--muted);
  color: var(--accent);
}
.mobile-nav {
  margin-top: 54px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: var(--display-font);
  color: var(--primary);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  width: 85vw;
  max-width: 420px;
  transition: color 0.17s, background 0.17s;
  border-radius: 6px;
  margin-bottom: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--muted);
  color: var(--accent);
}

/* -------------------- FOOTER -------------------- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding: 32px 0 24px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.97rem;
  color: var(--secondary);
}
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 7px;
}

/* -------------------- PAGE SECTION SPACING -------------------- */
section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
section .container {
  padding: 0;
}
section .content-wrapper {
  padding: 0;
}
section ul, section ol {
  margin-bottom: 12px;
  margin-left: 16px;
  padding-left: 12px;
}
section ul li, section ol li {
  margin-bottom: 7px;
  color: var(--secondary);
  font-size: 1rem;
  line-height: 1.6;
}
section ul li::marker, section ol li::marker {
  color: var(--accent);
}

/* Section specific tweaks */
.about-snippet a, .brand-highlights a, .catalog-preview a, .services-teaser a {
  margin-top: 6px;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.17s, border 0.17s;
}
.about-snippet a:hover, .brand-highlights a:hover, .catalog-preview a:hover, .services-teaser a:hover {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

/* -------------------- CONTACT SECTION -------------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.store-map {
  background: var(--muted);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* -------------------- TESTIMONIALS -------------------- */
.testimonial-card {
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
  font-style: italic;
  font-size: 1.08rem;
  font-family: var(--body-font);
  flex-direction: column;
  gap: 12px;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: var(--secondary);
  font-style: normal;
  font-weight: 500;
}
.testimonials strong {
  color: var(--accent);
  font-size: 1.1em;
  font-weight: 600;
}

/* Ensure high contrast for testimonials */
.testimonials {
  background: #f7fafd;
}

/* -------------------- LEGAL PAGE STYLES -------------------- */
.legal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 20px;
  margin-bottom: 60px;
}

/* -------------------- CONFIRMATION PAGE -------------------- */
.confirmation .content-wrapper, .confirmation h1, .confirmation p {
  text-align: center;
}
.confirmation a {
  margin: 18px auto 0 auto;
}

/* -------------------- COOKIE CONSENT BANNER -------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2000;
  background: #fff;
  color: var(--primary);
  border-top: 1.5px solid #e9eaec;
  box-shadow: 0 -2px 12px rgba(45,53,64,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 21px 12px;
  font-size: 1rem;
  gap: 20px;
  width: 100vw;
  max-width: 100vw;
  min-height: 70px;
  transition: transform 0.36s cubic-bezier(.4,1.03,.61,1), opacity 0.21s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner .cookie-banner-text {
  flex-grow: 1;
  max-width: 520px;
  line-height: 1.45;
  margin-right: 30px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btns button {
  font-family: var(--display-font);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 24px;
  border: 2px solid var(--primary);
  padding: 8px 28px;
  background: #fff;
  color: var(--primary);
  transition: background 0.17s, color 0.16s, border 0.16s;
}
.cookie-banner .cookie-btns .accept {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.cookie-banner .cookie-btns .accept:hover, .cookie-banner .cookie-btns .accept:focus {
  background: #253044;
  color: var(--accent);
}
.cookie-banner .cookie-btns .reject {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
}
.cookie-banner .cookie-btns .reject:hover, .cookie-banner .cookie-btns .reject:focus {
  background: var(--muted);
  color: var(--accent);
}
.cookie-banner .cookie-btns .settings {
  background: #fff;
  color: var(--secondary);
  border-color: var(--secondary);
}
.cookie-banner .cookie-btns .settings:hover, .cookie-banner .cookie-btns .settings:focus {
  background: var(--muted);
  color: var(--primary);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: rgba(45,53,64,0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-inner {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 32px 0 rgba(45,53,64,0.14);
  padding: 32px 30px 22px 30px;
  max-width: 416px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  margin: 24px;
}
.cookie-modal-inner h2 {
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 7px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0 11px 0;
  border-bottom: 1px solid #f1f2f4;
  font-size: 1rem;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-modal-category .category-label {
  color: var(--primary);
  font-weight: 500;
}
.cookie-modal-category .category-toggle {
  font-size: 1rem;
  color: var(--accent);
  background: none;
  padding: 0;
  border: none;
  cursor: pointer;
}
.cookie-modal-category.essential .category-toggle {
  color: #a6adb7;
  cursor: not-allowed;
  pointer-events: none;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 13px;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 7px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--muted);
  color: var(--accent);
}

/* Cookie modal toggle switch */
.toggle-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.toggle-switch input {
  display: none;
}
.toggle-switch span {
  display: inline-block;
  width: 34px;
  height: 20px;
  background: #e2e5ea;
  border-radius: 14px;
  position: relative;
  transition: background 0.18s;
}
.toggle-switch span:before {
  content: '';
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px rgba(45,53,64,0.04);
  transition: transform 0.18s;
}
.toggle-switch input:checked + span {
  background: var(--accent);
}
.toggle-switch input:checked + span:before {
  transform: translateX(13px);
  background: var(--primary);
}
.toggle-switch input:disabled + span {
  background: #e2e5ea;
  opacity: 0.67;
  cursor: not-allowed;
}


/* -------------------- TRANSITIONS & MICRO-INTERACTIONS -------------------- */
.card, .product-item, .feature-item, .service-item, .testimonial-card, .news-teaser {
  transition: box-shadow 0.18s, transform 0.18s, border 0.13s;
}
.card:hover, .product-item:hover, .feature-item:hover, .service-item:hover, .news-teaser:hover {
  box-shadow: 0 6px 26px -2px rgba(31,37,51,0.13);
  transform: translateY(-2px) scale(1.016);
  border: 1.5px solid #f0f1f2;
}


/* -------------------- RESPONSIVE DESIGN -------------------- */
@media (max-width: 1120px) {
  .container {
    max-width: 93vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    margin-left: 8px;
  }
  .card, .feature-item, .product-item, .service-item {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .section, .catalog-preview, .about-snippet, .services-teaser, .testimonials,
  .brand-story, .team, .brand-highlights, .catalog-intro, .product-filters,
  .product-listing, .service-steps, .news, .confirmation, .contact, .legal {
    padding: 30px 2vw;
  }

  h1, .h1 {
    font-size: 1.6rem;
    margin-bottom: 17px;
  }
  h2, .h2 {
    font-size: 1.28rem;
    margin-bottom: 13px;
  }
  h3, .h3 {
    font-size: 1.07rem;
    margin-bottom: 7px;
  }

  .hero {
    min-height: 180px;
    padding-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 30px;
  }

  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    height: 56px;
    min-height: 46px;
    padding-right: 8px;
  }

  .card-container, .feature-grid, .product-list, .service-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-item, .product-item, .service-item {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
  .testimonial-card, .news-teaser, .card {
    width: 100%;
    min-width: 0;
  }
  .mobile-menu {
    padding: 18px 0 0 0;
  }
  .mobile-nav a {
    font-size: 1.08rem;
    padding: 11px 0;
    width: 90vw;
  }
  .footer-brand span {
    font-size: 0.95rem;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 8px 21px 8px;
    font-size: 0.96rem;
    gap: 12px;
  }
  .cookie-banner .cookie-btns {
    flex-direction: row;
    gap: 12px;
  }
}
@media (max-width: 512px) {
  .container {
    padding: 0 2vw;
  }
  .logo img {
    height: 28px;
  }
  .footer-brand img {
    width: 28px; height: 28px;
  }
  .cookie-modal-inner {
    padding: 18px 7px 17px 7px;
    max-width: 97vw;
  }
}

/* -------------------- UTILITIES -------------------- */
.hide {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* -------------------- PRINT -------------------- */
@media print {
  header, footer, .main-nav, .mobile-menu, .cookie-banner { display: none !important; }
  main, .container, section, .content-wrapper { box-shadow: none !important; }
}
