/* ======================================================================
   Politaspri Casa - Elegant Classic CSS Style
   Author: Senior CSS Developer & UI Designer
   ====================================================================== */

/* --------------------------
   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,
u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.65;
  background: #F6F1E4;
  color: #333120;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #285643;
  text-decoration: none;
  transition: color .3s cubic-bezier(.4,.1,.6,1);
  outline: none;
}
a:hover, a:focus {
  color: #825C36;
  text-decoration: underline;
}
button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: background .2s, color .2s, box-shadow .2s;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #2C2320;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }    /* 40px */
h2 { font-size: 2rem;   margin-bottom: 16px; }    /* 32px */
h3 { font-size: 1.375rem;  margin-bottom: 12px; } /* 22px */
h4 { font-size: 1.125rem;  margin-bottom: 8px; }  /* 18px */
p {
  font-size: 1rem;     /* 16px */
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  line-height: 1.7;
}
strong, b {
  font-weight: 600;
}

/* Utility & Layout Containers */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(130,92,54,0.075);
  padding: 28px 24px;
  transition: box-shadow .3s cubic-bezier(.4,.1,.6,1), transform .2s cubic-bezier(.4,.1,.6,1);
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 22px 0 rgba(40,86,67,0.09);
  transform: translateY(-2px) scale(1.01);
}
.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;
  border-radius: 10px;
  background: #F6F1E4;
  color: #2C2320;
  box-shadow: 0 4px 14px 0 rgba(40,86,67,0.05);
  margin-bottom: 20px;
  border-left: 4px solid #285643;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

/* --------------------------
   HEADER & NAVIGATION
--------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #eee1d2;
  position: relative;
  z-index: 202;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2C2320;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding: 4px 0;
  transition: color .2s;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #825C36;
  margin-top: 2px;
  transition: width .2s cubic-bezier(.4,.1,.6,1);
}
header nav a:hover:after, header nav a:focus:after {
  width: 70%;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #285643;
  background: #fff;
  padding: 6px 18px 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(40,86,67,0.03);
  transition: background .20s, box-shadow .25s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6F1E4;
  box-shadow: 0 2px 12px 0 rgba(40,86,67,0.07);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  z-index: 210;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(44,35,32,0.16);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.5,.05,.36,1);
  display: flex;
  flex-direction: column;
  padding: 0 0;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  color: #285643;
  background: none;
  border: none;
  margin: 18px 20px 8px 0;
  border-radius: 50%;
  padding: 2px 10px;
  z-index: 211;
  transition: background .2s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #eee1d2;
  color: #825C36;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 26px 36px 0 36px;
  width: 80vw;
  max-width: 320px;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.28rem;
  color: #285643;
  font-weight: 500;
  padding: 8px 0 6px 0;
  border-bottom: 1px solid #eee1d2;
  width: 100%;
  transition: color .2s, background .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #825C36;
  background: #f2e6d3;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --------------------------
   HERO SECTIONS
--------------------------- */
.hero-section,
.hero-simple-section {
  background: #F6F1E4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 30px 0;
}
.hero-section h1, .hero-simple-section h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: #825C36;
}
.hero-section p, .hero-simple-section p {
  font-size: 1.18rem;
  color: #2C2320;
  max-width: 450px;
}
.hero-section .cta-button, .hero-simple-section .cta-button {
  margin-top: 22px;
}

/* --------------------------
   FEATURE SECTIONS
--------------------------- */
.features-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(44,35,32,.06);
  margin-bottom: 60px;
  padding: 40px 14px 32px 14px;
}
.features-section h2 {
  color: #285643;
}
.features-section ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features-section li {
  font-size: 1.09rem;
  color: #333120;
  padding-left: 12px;
  border-left: 2px solid #eee1d2;
}

.about-short-section { background: #F6F1E4; border-radius: 16px; }
.about-short-section h2 {
  color: #285643;
}
.about-short-section ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-short-section li {
  padding-left: 10px;
  border-left: 2px solid #825C36;
  color: #2C2320;
}

.cta-section {
  background: #fff;
  border-radius: 12px;
  text-align: left;
  margin-bottom: 60px;
  box-shadow: 0 3px 18px 0 rgba(130,92,54,0.08);
  padding: 43px 18px 40px 18px;
}
.cta-section h2 {
  font-size: 2rem;
  color: #825C36;
}

.cta-section .cta-button {
  margin-top: 14px;
}

/* -----------------------------
   PRODUCT & SERVICE LISTINGS
------------------------------- */
.product-listings-section .product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 rgba(40,86,67,0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding: 24px 20px;
  border-left: 4px solid #285643;
  transition: box-shadow .2s, transform .2s;
}
.product-listings-section .product-card:hover {
  box-shadow: 0 8px 32px 0 rgba(130,92,54,0.11);
  transform: translateY(-2px) scale(1.01);
}
.artisan-badge {
  display: inline-block;
  background: #F6F1E4;
  color: #825C36;
  font-size: 0.98rem;
  border-radius: 17px;
  padding: 4px 16px;
  margin: 6px 0 8px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid #eee1d2;
}

/* Service Card */
.services-list-section .service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 rgba(130,92,54,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding: 24px 22px;
  position: relative;
  border-left: 4px solid #285643;
  transition: box-shadow .24s, transform .18s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 22px 0 rgba(40,86,67,0.11);
  transform: translateY(-2px) scale(1.01);
}
.service-card h3 {
  margin-bottom: 0;
}
.service-price {
  font-family: 'Playfair Display', Georgia, serif;
  color: #825C36;
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 6px;
  align-self: flex-end;
}
.icon-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  margin-top: 18px;
}
.icon-grid img {
  width: 62px;
  height: auto;
}

.category-filters-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 8px;
}
.category-filters-section li {
  background: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 10px;
  color: #285643;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid #eee1d2;
  font-weight: 500;
}

/* -------------------------------
   ARTIGIANI & MINI STORY BLOCKS
--------------------------------- */
.artisan-list-section ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.artisan-list-section li {
  background: #fff;
  padding: 15px 21px;
  border-radius: 8px;
  border-left: 4px solid #825C36;
  color: #2C2320;
  font-size: 1.05rem;
  box-shadow: 0 3px 14px 0 rgba(40,86,67,0.04);
  margin-bottom: 12px;
}
.mini-story-block {
  background: #F6F1E4;
  border-radius: 8px;
  padding: 16px 26px;
  margin-bottom: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  box-shadow: 0 1px 7px 0 rgba(130,92,54,0.03);
  border-left: 4px solid #285643;
  color: #2C2320;
  font-size: 1.05rem;
}
.artisan-quote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-size: .99rem;
  color: #285643;
}

/* --------------------------
   TESTIMONIALS
--------------------------- */
.testimonial-section h2 { color: #285643; }
.testimonial-section .testimonial-card {
  background: #fff;
  color: #2C2320;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(40,86,67,0.07);
  font-family: 'Playfair Display', Georgia, serif;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid #825C36;
  margin-bottom: 22px;
  min-width: 0;
}
.testimonial-card p {
  font-size: 1.09rem;
  margin-bottom: 8px;
  color: #333120;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #285643;
  font-weight: 500;
  font-size: .98rem;
}

/* Testimonial Color Contrast Always Dark on Light */
.testimonial-card, .testimonial-section .testimonial-card, .testimonial-card p, .testimonial-card span {
  background: #fff;
  color: #2C2320;
}


/* --------------------------
   FAQ ACCORDION
--------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px 0 rgba(130,92,54,0.05);
  padding: 16px 22px;
  cursor: pointer;
  border-left: 3px solid #825C36;
  transition: box-shadow .18s, border .2s;
  margin-bottom: 8px;
}
.faq-item h3 {
  margin-bottom: 5px;
  font-size: 1.14rem;
  color: #285643;
}
.faq-answer {
  font-size: 1rem;
  color: #2C2320;
  margin-top: 8px;
  display: none;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeInFaq .27s cubic-bezier(.5,.04,.4,1);
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------
   LEGAL SECTION
--------------------------- */
.legal-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 rgba(130,92,54,0.06);
  margin-bottom: 54px;
  padding: 38px 18px 33px 18px;
  color: #2C2320;
}

/* --------------------------
   THANK YOU SECTION
--------------------------- */
.thank-you-section {
  background: #fff;
  border-radius: 18px;
  text-align: left;
  margin-bottom: 60px;
  box-shadow: 0 2px 15px 0 rgba(40,86,67,0.07);
  padding: 48px 24px 42px 24px;
}
.thank-you-section h1 {
  color: #285643;
}


/* --------------------------
   BUTTONS & CTA
--------------------------- */
.cta-button {
  display: inline-block;
  background: #285643;
  color: #fff;
  border-radius: 24px;
  padding: 13px 40px;
  font-size: 1.06rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  box-shadow: 0 2px 9px rgba(44,35,32,0.07);
  transition: background .23s, color .21s, transform .22s, box-shadow .22s;
  cursor: pointer;
  outline: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cta-button:hover, .cta-button:focus {
  background: #825C36;
  color: #fffbe7;
  box-shadow: 0 4px 20px 0 rgba(40,86,67,0.13);
  transform: translateY(-2px) scale(1.012);
}

/* Links in Content */
.content-wrapper a:not(.cta-button) {
  color: #285643;
  border-bottom: 1.5px dotted #825C36;
  font-weight: 500;
  transition: color .16s;
}
.content-wrapper a:not(.cta-button):hover, .content-wrapper a:not(.cta-button):focus {
  color: #825C36;
}

/* --------------------------
   FOOTER
--------------------------- */
footer {
  background: #F6F1E4;
  padding: 0 0 0 0;
  border-top: 2px solid #eee1d2;
  margin-top: 42px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 18px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-top img {
  width: 55px; height: auto;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-top nav a {
  color: #2C2320;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.022em;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 34px; height: 34px;
  box-shadow: 0 2px 7px 0 rgba(130,92,54,.08);
  transition: background .14s, box-shadow .18s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #eee1d2;
  box-shadow: 0 4px 14px 0 rgba(130,92,54,.12);
}
.footer-bottom {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #eee1d2;
  padding-top: 16px;
}
.footer-bottom nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom nav a {
  color: #285643;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 1.5px;
}
.footer-contact {
  font-size: 0.98rem;
  color: #333120;
  max-width: 320px;
}
.footer-copy {
  margin-top: 14px;
  font-size: 0.94rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #7d714c;
  text-align: center;
  letter-spacing: 0.01em;
}

/* --------------------------
   COOKIE CONSENT BANNER
--------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  width: 100vw;
  background: #fffbe7;
  color: #2C2320;
  border-top: 1.5px solid #eee1d2;
  box-shadow: 0 -2px 24px rgba(42,35,32,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px 20px 20px 32px;
  opacity: 1;
  transform: translateY(0%);
  transition: transform .35s cubic-bezier(.5,.04,.4,1), opacity .24s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner__text {
  font-size: 1rem;
  color: #2C2320;
  flex: 1 1 0;
  max-width: 650px;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
}
.cookie-banner__actions button {
  min-width: 90px;
  border-radius: 22px;
  font-size: 1rem;
  padding: 9px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  box-shadow: 0 2px 9px rgba(130,92,54,0.06);
  transition: background .19s, color .15s, box-shadow .15s;
}
.cookie-banner__actions .accept-btn {
  background: #285643;
  color: #fff;
  font-weight: 600;
}
.cookie-banner__actions .accept-btn:hover,
.cookie-banner__actions .accept-btn:focus {
  background: #825C36;
  color: #fffbe7;
}
.cookie-banner__actions .reject-btn {
  background: #fff;
  color: #285643;
  border: 1.5px solid #285643;
  font-weight: 500;
}
.cookie-banner__actions .reject-btn:hover,
.cookie-banner__actions .reject-btn:focus {
  background: #f2e6d3;
  color: #825C36;
}
.cookie-banner__actions .settings-btn {
  background: #fff;
  color: #825C36;
  border: 1.5px solid #825C36;
  font-weight: 500;
}
.cookie-banner__actions .settings-btn:hover,
.cookie-banner__actions .settings-btn:focus {
  background: #e6e0d2;
  color: #285643;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,35,32,0.32);
  z-index: 3100;
  opacity: 1;
  transition: opacity .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fffbe7;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(40,86,67,.12);
  max-width: 420px;
  width: 94vw;
  padding: 37px 34px 24px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal .5s cubic-bezier(.5,.04,.4,1);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  color: #285643;
  margin-bottom: 10px;
  font-size: 1.33rem;
}
.cookie-modal-category {
  margin-bottom: 18px;
  padding: 14px 9px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(130,92,54,.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.cookie-modal-toggle {
  accent-color: #285643;
  width: 22px;
  height: 22px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal-actions button {
  border-radius: 22px;
  font-size: 1rem;
  padding: 8px 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background .2s, color .15s;
}
.cookie-modal-actions .accept-btn {
  background: #285643; color: #fff;
}
.cookie-modal-actions .accept-btn:hover { background: #825C36; color: #fffbe7; }
.cookie-modal-actions .reject-btn {
  background: #fff;
  color: #285643;
  border: 1.5px solid #285643;
}
.cookie-modal-actions .reject-btn:hover { background: #f2e6d3; color: #825C36; }
.cookie-modal-actions .close-btn {
  background: #fff;
  color: #825C36;
  border: 1.5px solid #825C36;
}
.cookie-modal-actions .close-btn:hover { background: #e6e0d2; color: #285643; }
.cookie-alwayson {
  font-size: .96rem;
  color: #7d714c;
  opacity: .86;
}

/* --------------------------
   RESPONSIVE DESIGN
--------------------------- */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 10px; padding-right: 10px; }
  .section { padding: 28px 8px; margin-bottom: 42px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.42rem; }
  h3 { font-size: 1.13rem; }
  .content-grid, .icon-grid, .footer-top, .footer-bottom {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 14px;
    align-items: flex-start;
  }
  .testimonial-card { padding: 14px; }
  .mini-story-block { padding: 12px 10px; }
  footer .container { gap: 14px; }
  .footer-contact { max-width: 100%; }
  .cookie-banner { flex-direction: column; gap: 12px; padding: 18px 8px 18px 8px; }
  .cookie-banner__actions { flex-direction: column; gap: 8px; }
  .cookie-modal { max-width: 97vw; padding: 26px 10px 18px 10px; }
}

@media (max-width:480px){
  html{font-size:14px}
  .footer-top img{width:36px;}
}

/* Utility: spacing for cards/lists/sections */
.card-container > *, .content-grid > *, .feature-item, .testimonial-card, .product-card, .mini-story-block, .faq-item {
  margin-bottom: 20px;
}

/* Remove last margin in lists */
.card-container > *:last-child, .content-grid > *:last-child, .feature-item:last-child, .testimonial-card:last-child, .product-card:last-child, .mini-story-block:last-child, .faq-item:last-child {
  margin-bottom: 0;
}

/* Prevent overlap for all main cards */
.card, .feature-item, .testimonial-card, .product-card, .artisan-list-section li, .mini-story-block, .faq-item {
  z-index: 2;
}

/* Focus style for accessibility on interactive elements */
button:focus, .cta-button:focus, a:focus {
  outline: 2px solid #825C36;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #f2e6d399;
}

/* Subtle transitions/microinteractions */
.card, .service-card, .product-card, .feature-item, .testimonial-card, .faq-item, .mini-story-block {
  transition: box-shadow .18s, transform .16s;
}
.card:hover, .feature-item:hover, .product-card:hover, .service-card:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 8px 24px 0 rgba(130,92,54,.15);
  transform: translateY(-1.5px) scale(1.01);
}

/* ========== End of CSS ========== */