/* -------------------------
   💾 CSS RESET & BASE RULES
-------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*,*::before,*::after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  background: #FCFAF5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #4C3F2D;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a { color: #234591; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #EC9600; }
ul, ol { padding-left: 1.3em; }

:root {
  --color-primary: #234591;
  --color-secondary: #F6F8FB;
  --color-accent: #EC9600;
  --color-dark: #1C376F;
  --color-bg: #FCFAF5;
  --color-bg-deep: #F2EEE4;

  --font-display: 'Montserrat', 'Arial Rounded MT', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;

  --radius-base: 1.1em;
  --radius-card: 20px;
  --shadow-card: 0 4px 24px 0 #2c212105, 0 2px 4px 0 #2c212107;
}

/* ===============
   LAYOUT HELPERS
================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper { width: 100%; }

.section, .about-section, .values-section, .contact-form-section, .services-section, .legal-section, .thank-you-section, .map-section, .features-section, .recommended-section, .about-preview-section, .search-filter-section, .listings-section, .cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
  border-radius: 24px;
}

@media (max-width: 900px) {
  .section, .about-section, .values-section, .contact-form-section, .services-section, .legal-section, .thank-you-section, .map-section, .features-section, .recommended-section, .about-preview-section, .search-filter-section, .listings-section, .cta-section {
    padding: 26px 8px;
    margin-bottom: 32px;
  }
  .container { padding: 0 8px; }
}

/* ============
   TYPOGRAPHY
============= */
h1, h2, h3, h4, .brand-logo, .footer-brand p {
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-weight: 700;
}
h1 { font-size: 2.8rem; margin-bottom: 18px; color: var(--color-primary); text-shadow: 1px 1px 0 #fff6da77; }
h2 { font-size: 2rem;   margin-bottom: 16px; color: #D4670A; letter-spacing: 0.5px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--color-primary); }
h4 { font-size: 1rem; margin-bottom: 7px; color: var(--color-dark); }

p, li {
  font-size: 1.06rem;
  margin-bottom: 13px;
  font-family: var(--font-body);
  color: #57452e;
}
.subtitle, .subheadline { font-size: 1.1rem; color: #7c5c20; font-family: var(--font-display); margin-bottom: 20px; }
blockquote {
  font-family: 'Montserrat', 'Arial Rounded MT', Arial, sans-serif;
  font-style: italic;
  color: #22417E;
  background: #f8ede3;
  border-left: 6px solid #ec9600;
  padding: 12px 22px 10px 16px;
  margin-bottom: 6px;
}
cite { display: block; margin-top: 8px; font-size: .98rem; color: #4C3F2D; font-style: normal; font-family: var(--font-body); }
strong { font-weight: 700; color: #A1480E; }

.text-section a {
  color: var(--color-accent);
  border-bottom: 1.5px dashed var(--color-accent);
  transition: border-color .2s;
}
.text-section a:hover { border-color: var(--color-primary); }

/* Vintage Retro Effect fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');

/* ===========
   NAVIGATION
============ */
header {
  width: 100%;
  background: #FDF5E8;
  border-bottom: 3px solid #BE995E;
  box-shadow: 0 2px 14px #eac2440d;
  position: sticky;
  top: 0; z-index: 80;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  height: 75px;
}
.brand-logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 1px 0 #be995e77);
}

.main-nav {
  display: flex; flex-direction: row; gap: 18px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.08rem;
  padding: 8px 14px;
  border-radius: 18px;
  transition: background .16s, color .16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6EAD3;
  color: #A1480E;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  padding: 10px 22px;
  border-radius: 18px;
  letter-spacing: 1.2px;
  box-shadow: 0 3px 10px 0 #be995e40, 0 2px 4px #23141012;
  margin-left: 14px;
  cursor: pointer;
  transition: background .18s, transform .18s, box-shadow .18s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #D4670A;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 7px 16px #eac24416, 0 2px 6px #23141017;
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 16px;
  padding: 9px 20px;
  font-family: var(--font-display);
  font-size: 1.03rem;
  margin-top: 22px;
  transition: background .18s, color .18s, border-color .18s, transform .16s;
  cursor: pointer;
  font-weight: 600;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px) scale(1.03);
}

/* Hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 2rem;
  box-shadow: 0 2px 8px #ec960084;
  align-items: center; justify-content: center;
  margin-left: 14px;
  margin-right: 0;
  cursor: pointer;
  transition: box-shadow .2s, background .14s, color .12s;
  z-index: 102;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: #fff1ea;
  box-shadow: 0 4px 13px #23459133;
}

@media (max-width: 950px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 280px;
  background: #fff;
  box-shadow: 5px 0 24px #23459112;
  z-index: 110;
  transform: translateX(-110%);
  transition: transform .36s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open { transform: translateX(0%); }
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  line-height: 1;
  padding: 10px;
  margin: 15px 0 0 15px;
  cursor: pointer;
  align-self: flex-start;
}
.mobile-nav {
  display: flex; flex-direction: column;
  width: 100%; gap: 8px;
  margin: 30px 0 0 0;
  padding: 0 25px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  padding: 11px 0 11px 6px;
  border-radius: 12px;
  border-bottom: 1px dashed #E8C676;
  margin-bottom: 3px;
  transition: background .16s, color .16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F6EAD3;
  color: #BE995E;
}

@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 5px;
  }
}

/* ===============
    HERO SECTION
================= */
.hero-section {
  background: repeating-linear-gradient(135deg, #FDF5E8 0, #F6EAD3 24px, #FFF8ED 48px);
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 8px 52px #eac24408, 0 2px 4px #23141006;
}
.hero-section .content-wrapper {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 16px;
  min-height: 310px;
  justify-content: center;
  padding: 30px 8px;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 18px;
  text-shadow: 2px 2px #ffefa7, 0 2px #f2d194;
  letter-spacing: 2px;
}
.hero-section .btn-primary { margin-top: 8px; }
.hero-section .subheadline {
  max-width: 640px;
  font-size: 1.18rem;
  color: #815729;
}

/* ===============
     FEATURES
================= */
.features-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 22px;
}
.feature-card {
  background: #fffdf8;
  border: 1.4px solid #eac2446e;
  box-shadow: var(--shadow-card);
  border-radius: 22px;
  flex: 1 1 230px;
  min-width: 210px;
  max-width: 270px;
  padding: 28px 18px 22px 18px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow .17s, border-color .13s, transform .16s;
  position: relative;
  margin-bottom: 20px;
}
.feature-card img {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  filter: sepia(50%) hue-rotate(-18deg) brightness(1.05) saturate(1.2);
}
.feature-card:hover {
  box-shadow: 0 8px 44px #EC960049, 0 4px 8px #D6B58822;
  border-color: #ec9600ad;
  transform: translateY(-5px) scale(1.03);
  z-index: 2;
}

/* ===============
   RECOMMENDED CATALOG & CARDS
================= */
.recommended-list, .highlight-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.shop-card-grid, .values-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.shop-card {
  background: #fffefd;
  border: 1.2px solid #eac24464;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  padding: 29px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 1;
  transition: box-shadow .17s, border-color .13s, transform .16s;
}
.shop-card img {
  width: 46px; height: 46px; margin-bottom: 6px;
  filter: sepia(45%) hue-rotate(-13deg) contrast(1.09) brightness(1.09);
}
.shop-card h3 { margin-bottom: 4px; font-size: 1.25rem; }
.shop-card span {
  color: #81995e;
  font-size: .98rem;
  font-family: var(--font-body);
  margin-top: 5px;
  display: block;
}
.shop-card:hover {
  box-shadow: 0 10px 44px #EC960051, 0 4px 8px #23459122;
  border-color: #ec9600ad;
  transform: translateY(-5px) scale(1.03);
  z-index: 2;
}

/* ================
   TESTIMONIAL CARD
================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F8FB;
  border: 1.5px solid #EAC24455;
  border-radius: 15px;
  margin-top: 7px;
  margin-bottom: 0;
  box-shadow: 0 3px 17px #d6b58815;
  flex-direction: column;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  font-size: 1.09rem;
  color: #1C376F;
  margin: 0 0 4px 0;
  padding: 0;
}
.testimonial-card cite { color: #745207; font-size: .99rem; margin-bottom: 0; font-style: italic; }

/* Ensure proper contrast */
.testimonial-card, .testimonial-card blockquote, .testimonial-card cite {
  background: #F6F8FB !important;
  color: #1C376F !important;
}

/* ================
      ABOUT / LEGAL SECTION
================== */
.text-section {
  margin-bottom: 14px;
}
.about-section h2,
.values-section h2,
.legal-section h2 {
  color: #D4670A;
  font-size: 1.35rem;
  margin-top: 17px;
  margin-bottom: 8px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.value-card {
  background: #fffefd;
  border: 1.3px solid #eac2446e;
  box-shadow: var(--shadow-card);
  border-radius: 19px;
  flex: 1 1 210px;
  min-width: 190px;
  max-width: 250px;
  padding: 25px 15px 17px 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .15s, border-color .12s, transform .13s;
  position: relative;
  margin-bottom: 20px;
}
.value-card img {
  width: 38px; height: 38px; margin-bottom: 7px;
  filter: sepia(45%) hue-rotate(-13deg) contrast(1.09) brightness(1.09);
}
.value-card:hover {
  box-shadow: 0 10px 44px #EC960031, 0 3px 6px #23459113;
  border-color: #ec9600ad;
  transform: translateY(-3px) scale(1.02);
}

/* ================
      SERVICES
================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffdf9;
  border: 1.5px solid #BE995E33;
  border-radius: 22px;
  box-shadow: 0 5px 24px #ec960012;
  padding: 28px 25px 18px 19px;
  min-width: 220px;
  max-width: 275px;
  margin-bottom: 20px;
  position: relative;
}
.service-item h3 {
  margin-bottom: 4px;
  font-size: 1.13rem;
  color: var(--color-accent);
}
.service-item .price {
  font-size: 1.03rem;
  background: #EC9600;
  color: #fff;
  font-family: var(--font-display);
  border-radius: 10px;
  padding: 5px 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: auto;
  margin-bottom: 2px;
  box-shadow: 0 1px 4px #ec960064;
}

/* ================
     PAGINATION
================== */
.pagination {
  display: flex;
  gap: 16px;
  margin: 30px 0 0 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span.current {
  font-size: 1.11rem;
  border-radius: 13px;
  padding: 8px 18px;
  background: #fcf8ed;
  color: var(--color-primary);
  border: 1px solid #d2b88057;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: normal;
  transition: background .13s, color .13s, border-color .13s;
}
.pagination a:hover { background: #ec9600; color: #fff; border-color: #ec9600; }
.pagination span.current {
  background: #ec9600;
  color: #fff;
  border-color: #ec9600;
  font-weight: 700;
}

/* ================
   FORMS/FILTERS
================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px;
  margin: 18px 0 4px 0;
}
.filters input[type='text'], .filters select {
  padding: 10px 13px;
  border: 1.2px solid #eac2446c;
  border-radius: 13px;
  background: #fffdf9;
  font-size: 1rem;
  box-shadow: 0 2px 7px #f9eac20a;
  outline: none;
  transition: border-color .16s, box-shadow .15s;
  font-family: var(--font-body);
  color: #6a4b18;
  min-width: 180px;
}
.filters input[type='text']:focus, .filters select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 4px 13px #ec960021;
}

/* ================
   FOOTER
================== */
footer {
  background: #FDF5E8;
  border-top: 3px solid #BE995E;
  margin-top: 65px;
  padding: 30px 0;
  box-shadow: 0 -2px 15px #eac2440e;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { 
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px; min-width: 180px;
}
.footer-brand img { height: 39px; filter: drop-shadow(1px 2px 0 #ec960032); }
.footer-brand p {
  font-size: 1.05rem; color: #a17933c0;
  font-family: var(--font-display);
  text-shadow: 1px 1px 0 #fff6da44;
}
.footer-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 0;
}
.footer-main, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-main a, .footer-legal a {
  color: #A1480E;
  font-size: 1.04rem;
  font-family: var(--font-display);
  transition: color .14s;
}
.footer-main a:hover, .footer-legal a:hover {
  color: var(--color-accent);
}
.footer-contact {
  min-width: 210px;
  font-size: .98rem;
  color: #97723a;
  margin-top: 0;
  line-height: 1.6;
}
.footer-contact a {
  color: var(--color-accent);
  font-weight: 500;
  border-bottom: 1px dashed #ec9600;
  transition: border .13s, color .13s;
}
.footer-contact a:hover { border-bottom-color: #234591; color: #234591; }

@media (max-width: 950px) {
  footer .container { flex-direction: column; gap: 28px; }
  .footer-brand, .footer-links, .footer-contact { margin-left: 0; }
  .footer-links { gap: 20px; }
}

/* ================
   MAP PLACEHOLDER
================== */
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center; gap: 6px;
  background: #F6F8FB;
  border: 1.5px dashed #EC960033;
  border-radius: 18px;
  padding: 25px 7px;
  margin-top: 12px;
  color: #745207;
  font-family: var(--font-display);
}

/* ================
   CTA SECTION
================== */
.cta-section {
  background: #fff7e6 url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"><rect fill="%23EC9600" fill-opacity="0.03" width="100" height="20"/><rect fill="%23234591" fill-opacity="0.07" y="60" width="100" height="10"/></svg>') repeat;
  box-shadow: 0 0 40px #eac2440a;
  border-radius: 24px;
  text-align: center;
}
.cta-section h2 { color: #C08022; font-size: 1.5rem; }
.cta-section p { color: #7C5C20; font-size: 1.11rem; margin: 10px 0 32px 0; }
.cta-section .btn-primary { margin-top: 10px; }

/* ================
   INFO BOARD
================== */
.info-board {
  background: #fff8e7;
  border: 1.2px dashed #ec960066;
  border-radius: 15px;
  padding: 17px 18px;
  margin: 16px 0 18px 0;
  font-size: 1.04rem;
  color: #745207;
  font-family: var(--font-body);
}

/* ================
   CURATOR NOTE
================== */
.curator-note {
  background: #f2eee4;
  border: 1.6px solid #eac24450;
  border-radius: 14px;
  margin: 16px 0 32px 0;
  box-shadow: 0 2px 11px #eac24413;
  padding: 20px 13px 15px 19px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* ================
   THANK YOU
================== */
.thank-you-section {
  background: #fff8e3 url('data:image/svg+xml;utf8,<svg width="170" height="40" viewBox="0 0 170 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect fill="%23EC9600" fill-opacity="0.07" width="170" height="14"/><rect fill="%23234591" fill-opacity="0.04" y="23" width="170" height="13"/></svg>') repeat;
  border-radius: 20px;
  box-shadow: 0 8px 40px #ec960012;
  text-align: center;
}

/* ================
   RESPONSIVE STYLES
================== */
@media (max-width: 1200px) {
  .container { max-width: 980px; }
}
@media (max-width: 900px) {
  .recommended-list, .highlight-cards, .shop-card-grid, .values-grid, .feature-grid, .service-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .features-section .feature-grid,
  .recommended-list, .highlight-cards, .shop-card-grid, .values-grid, .service-list {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .shop-card, .feature-card, .value-card, .service-item {
    min-width: unset;
    max-width: 98%;
    width: 100%;
    box-sizing: border-box;
  }
  .pagination { justify-content: flex-start; gap: 9px; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  .hero-section .content-wrapper { min-height: 180px; padding: 15px 0; }
}
@media (max-width: 480px) {
  .section, .about-section, .values-section, .contact-form-section, .services-section, .legal-section, .thank-you-section, .map-section, .features-section, .recommended-section, .about-preview-section, .search-filter-section, .listings-section, .cta-section {
    padding: 8px 1px;
    border-radius: 11px;
  }
  .shop-card, .feature-card, .value-card, .service-item {
    padding: 13px 6px 9px 9px;
    border-radius: 10px;
  }
  .footer-brand img { height: 33px; }
}

/* ================
   COOKIE CONSENT BANNER
================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #F6EAD3;
  box-shadow: 0 -2px 20px #be995e33;
  padding: 14px 14px 14px 16px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-body);
  border-top: 3px solid #E6B35B;
  animation: cookieBannerIn .5s cubic-bezier(.86,0,.07,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(110%); opacity: 0; }
  to {   transform: translateY(0);   opacity: 1; }
}
.cookie-banner__text {
  flex: 1;
  font-size: 1rem;
  color: #815729;
  padding-right: 16px;
}
.cookie-banner__actions {
  display: flex;
  gap: 9px;
}
.cookie-banner button,
.cookie-banner .btn {
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 600;
  border: none;
  padding: 8px 14px;
  transition: background .15s, color .14s, border .15s;
  cursor: pointer;
  outline: none;
}
.cookie-banner .btn-accept {
  background: #EC9600;
  color: #fff;
  border: 1.5px solid #EC9600;
}
.cookie-banner .btn-accept:hover { background: #C08022; border-color: #D4670A; }
.cookie-banner .btn-reject {
  background: #fff2e0;
  color: #A1480E;
  border: 1.5px solid #BE995E;
}
.cookie-banner .btn-reject:hover { background: #f7dbab; color: #C08022; border-color: #C08022; }
.cookie-banner .btn-settings {
  background: transparent;
  color: #234591;
  border: 1.5px solid #234591;
}
.cookie-banner .btn-settings:hover { background: #234591; color: #fff; }
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 10px 2px 11px 7px; }
  .cookie-banner__text { padding-right: 0; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: #2c212190;
  z-index: 12000;
  display: none;
  align-items: center; justify-content: center;
  animation: cmfadein .36s cubic-bezier(.86,0,.08,1);
}
.cookie-modal-overlay.open { display: flex; }
@keyframes cmfadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffdf5;
  border-radius: 21px;
  box-shadow: 0 8px 52px #eac24419, 0 2px 4px #23141010;
  padding: 32px 20px 19px 23px;
  min-width: 295px;
  max-width: 97vw;
  width: 400px;
  position: relative;
  margin: 0 auto;
  font-family: var(--font-body);
  z-index: 13000;
  animation: cmfadein .36s;
}
.cookie-modal__header {
  font-family: var(--font-display);
  color: #234591;
  font-size: 1.27rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  padding: 10px 0 6px 0;
}
.cookie-modal .category-label {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: #745207;
  min-width: 150px;
  flex: 1;
}
.cookie-modal .category-toggle {
  background: #fff2e0;
  border: 1.6px solid #EC9600;
  border-radius: 20px;
  width: 40px;
  height: 23px;
  position: relative;
  transition: background .16s, border .13s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.cookie-modal .category-toggle input {
  opacity: 0;
  width: 100%; height: 100%;
  position: absolute; left: 0; top: 0;
  cursor: pointer;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 4px; top: 3px;
  width: 14px; height: 14px;
  background: #EC9600;
  border-radius: 50%;
  transition: transform .21s, background .16s;
}
.cookie-modal .category-toggle input:checked + .toggle-slider {
  transform: translateX(13px);
  background: #234591;
}
.cookie-modal .cookie-category[data-category='essential'] .category-toggle {
  background: #EEE3B7 !important;
  border-color: #E6B35B;
  cursor: not-allowed;
}
.cookie-modal .cookie-category[data-category='essential'] .toggle-slider {
  background: #C08022;
}
.cookie-modal__footer {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  right: 13px; top: 13px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-accent);
  cursor: pointer;
  padding: 5px;
}

/* Decorative VINTAGE/RETRO elements */
.section, .about-section, .values-section, .contact-form-section, .services-section, .legal-section, .thank-you-section, .map-section, .features-section, .recommended-section, .about-preview-section, .search-filter-section, .listings-section, .cta-section {
  border: 2.5px dashed #E6B35B;
  box-shadow: 0 2px 20px #eac24412;
}

/* Nostalgic pseudo-shadows for retro effect */
.shop-card, .feature-card, .value-card, .service-item, .testimonial-card {
  box-shadow: 2px 6px 0 #E6B35B15, 0 4px 20px #d6b58813, 0 2px 6px #4c3f2d0c;
}

/* Simple classic retro corners for cards */
.shop-card, .feature-card, .value-card, .service-item, .testimonial-card {
  border-radius: 18px 36px 11px 15px;
}

/* ==================
   SCROLLBAR Styling
=================== */
::-webkit-scrollbar {
  width: 11px; background: #F2EEE4;
}
::-webkit-scrollbar-thumb {
  background: #EDE1C6; border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ec96007a;
}

/* ================
   ACCESSIBILITY
================== */
:focus-visible {
  outline: 3px dashed #EC9600;
  outline-offset: 2px;
}

/* =========================
   FLEXBOX LAYOUTS MANDATORY
=========================== */
.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; }

/* Responsive text-image-section and content-grid for mobile */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
  .content-grid { flex-direction: column; gap: 13px; }
}
