/* 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;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #FEF8F3;
  color: #2d2d2d;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height:100vh;
}
a {
  color: #356553;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #AB5236;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* TYPOGRAPHY -------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: #356553;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.12;
  margin-bottom: 24px;
  text-shadow: 1px 2px 0 #F9C770, 0 0 10px #e6dbab39;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-top: 8px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #625240;
}
p, li, blockquote, .newsletter-signup p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #3B3831;
}
blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: #66542b;
  padding-left: 20px;
  border-left: 5px solid #F9C770;
  margin-bottom: 14px;
  background: #F4EEDF;
  border-radius: 8px;
}
strong {
  font-weight: bold;
  color: #604B2A;
}

/* BRAND COLORS ------------------------------------------------------------- */
:root {
  --color-primary: #356553;
  --color-secondary: #9dcc86;
  --color-accent: #F3FAF4;
  --color-dark: #574E39;
  --color-light: #FEF8F3;
  --color-retro-amber: #F9C770;
  --color-retro-blue: #3D4971;
  --color-retro-green: #B1B7A4;
  --color-retro-orange: #DF9353;
  --color-retro-beige: #E2D7C1;
  --color-border: #D6BA94;
}

/* BASIC LAYOUT ------------------------------------------------------------- */
.container {
  width: 95%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
main {
  margin-top: 32px;
}

/* SPACING PATTERNS (MANDATORY) --------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-light);
  border-radius: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffbe6;
  border: 2px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 6px 26px 0 rgba(191, 153, 99, .14), 0 2px 4px 0 #bda67f12;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 38px 2px rgba(191, 153, 99, .24), 0 2px 8px 0 #bd9b6c36;
}
.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;
  background: #fff9ec;
  border: 2px solid var(--color-retro-amber);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(251, 187, 58,.09);
  margin-bottom: 20px;
  transition: box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 #F6B5436c;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX & RESPONSIVE -------------------------------------------------------- */
.hero .container,
.content-wrapper, .footer-navigation, .team-bios, .impact-statistics, .partnerships, .sustainability-initiatives,
.product-grid, .category-collections ul, .category-filter ul, .feature-grid, .new-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
}
.feature-grid, .category-collections ul, .blog-listing ul, .product-grid, .feature-benefits {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.feature-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.team-bios ul, .impact-statistics ul, .partnerships ul, .sustainability-initiatives ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.values-list ul {
  display: flex;
  flex-direction: column;
  gap:8px;
}
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

/* HEADER ------------------------------------------------------------------- */
header {
  background: var(--color-retro-amber);
  border-bottom: 2px solid var(--color-retro-beige);
  box-shadow: 0 2px 12px #d6ba946e;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header nav {
  display: flex;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #34322E;
  padding: 6px 8px;
  background: transparent;
  border-radius: 6px;
  transition: background .16s, color .16s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--color-secondary);
  color: #253100;
}
header img {
  height: 46px;
  min-width: 120px;
}
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--color-primary);
  color: #fffbe7;
  border:none;
  display: inline-block;
  padding: 12px 32px;
  font-weight: 900;
  font-size:1.1rem;
  border-radius: 22px;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 0 #9fcc9e48;
  box-shadow: 0 2px 8px 0 #3d4d1758;
  text-transform: uppercase;
  margin-left: 14px;
  cursor: pointer;
  position: relative;
  transition: background .24s, color .22s, box-shadow .22s, transform .16s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-secondary);
  color: #253100;
  box-shadow: 0 6px 16px #8bc16a5c;
  transform: translateY(-2px) scale(1.03);
}

/* HAMBURGER (MOBILE) ----------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fffbe7;
  border: none;
  font-size: 2.15rem;
  padding: 4px 16px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 10px;
  z-index: 201;
  transition: box-shadow 0.15s;
  position: relative;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  box-shadow: 0 3px 11px #35655358;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 82vw;
  max-width: 340px;
  height: 100vh;
  background: var(--color-retro-amber);
  box-shadow: -4px 0 24px #66542c59;
  transform: translateX(110%);
  transition: transform .32s cubic-bezier(.61,-0.01,.47,1.18);
  z-index: 3002;
  display: flex;
  flex-direction: column;
  padding: 33px 28px 22px 20px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform .30s cubic-bezier(.61,-0.01,.47,1);
}
.mobile-menu-close {
  background: var(--color-retro-amber);
  color: #356553;
  font-size: 1.9rem;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 16px;
  margin-bottom: 10px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ddd3b6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.23rem;
  color: #373028;
  padding: 8px 4px 8px 0;
  border-bottom: 1px dotted #E2D7C1;
  border-radius: 3px;
  transition: background .13s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #2d4418;
}

/* HERO ------------------------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #F3FAF4 75%, #F9C770 100%);
  border-radius: 18px;
  margin-bottom: 52px;
  box-shadow: 0 3px 14px #ccc5a1;
  padding: 44px 0 38px 0;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 0 24px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  color: #2d2d2d;
  text-shadow: 1.5px 2px 0 #f9c77054;
}
.hero p {
  max-width:530px;
  color: #685e39;
  font-size: 1.125rem;
}
.hero .cta-primary {
  margin-top: 18px;
}

/* FEATURE GRID & CATEGORIES ---------------------------------------------- */
.feature-grid, .category-collections ul, .product-grid, .new-product-grid {
  gap: 22px;
  width: 100%;
  margin-bottom: 14px;
}
.feature-grid li,
.category-collections li,
.product-grid li,
.new-product {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fdf5e2;
  border: 2.5px dashed var(--color-retro-amber);
  border-radius: 14px;
  box-shadow: 0 3px 12px #b1b7a42a;
  padding: 22px 16px 16px 16px;
  min-width: 200px;
  min-height:160px;
  align-items: flex-start;
  transition: border-color 0.17s, box-shadow 0.2s, transform 0.15s;
}
.feature-grid li:hover, .category-collections li:hover, .product-grid li:hover, .new-product:hover {
  border-color: #356553;
  box-shadow: 0 8px 24px 0 #dbc79933;
  transform: scale(1.03);
}
.feature-grid img, .feature-benefits img {
  width: 45px; height: 45px; margin-bottom: 2px;
}
.category-collections a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  color: #483501;
  margin-bottom: 3px;
  border-bottom: 2px dotted #B1B7A4;
  transition: color .13s;
}
.category-collections a:hover {
  color: #AB5236;
}
.category-filter {
  gap: 12px;
  margin-bottom: 16px;
}
.category-filter ul {
  gap: 13px;
}
.category-filter a {
  background: #E9E4C6;
  color: #5F5725;
  padding: 7px 22px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  transition: background .15s, color .16s;
}
.category-filter a:hover {
  background: #356553;
  color: #fff;
}

/* PRODUCT HIGHLIGHTS ----------------------------------------------------- */
.product-highlights {
  background: #F3FAF4;
  border-left: 6px solid #9DCC86;
  border-radius: 12px;
  padding: 18px 26px;
  margin: 18px 0 14px 0;
}
.product-highlights ul {
  flex-direction: column;
  gap: 7px;
}

.sort-options {
  margin-top: 6px;
  color: #6b5e3c;
  font-size: 1.03rem;
  background: #fff8ea;
  border-radius: 30px;
  display: flex;
  align-items:center;
  gap: 7px;
  padding: 4px 20px 4px 13px;
}
.sort-options a {
  color: #3d4971;
  font-weight: 600;
  font-size: 1.03rem;
  background: transparent;
  border-radius: 3px;
  padding: 2px 7px;
  transition: color .12s, background .13s;
}
.sort-options a:hover {
  background: #B1B7A4;
  color: #fff;
}

/* TESTIMONIALS & SLIDER -------------------------------------------------- */
.testimonial-slider {
  gap: 24px;
  margin: 20px 0 0 0;
  align-items: stretch;
}
.testimonial-card {
  background: #fff9ed;
  color: #3A311D;
  align-items: flex-start;
  min-width:240px;
  min-height:130px;
  flex: 1 1 275px;
}
.testimonial-card blockquote {
  padding-left: 0;
  border: 0;
  background: none;
  margin-bottom: 6px;
}
.testimonial-author {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: .98rem;
  color: #5d3c14;
  opacity: .89;
  padding-top: 2px;
}

/* NEWSLETTER BOX --------------------------------------------------------- */
.newsletter-signup {
  background: #F3FAF4;
  border: 2px solid #9DCC86;
  border-radius: 18px;
  padding: 18px 26px;
  margin: 10px 0 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* BLOG SECTION ----------------------------------------------------------- */
.featured-articles ul, .blog-listing ul {
  gap: 9px;
  flex-direction: column;
}
.featured-articles h2 {
  margin-bottom: 10px;
}
.blog-listing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap:20px;
  align-items: flex-start;
}
.categories-filter {
  display: flex;
  align-items: center;
  gap:7px;
  margin-top: 12px;
  color: #735431;
  background: #F9C77018;
  border-radius: 11px;
  padding: 4px 13px;
  font-size: 1rem;
}
.categories-filter a {
  color: #3d4971;
  font-weight: 600;
  font-size: 0.98rem;
  background: transparent;
  border-radius: 3px;
  padding: 1px 5px;
  transition: color .11s, background .13s;
}
.categories-filter a:hover {
  background: #9DCC86;
  color: #2d2d2d;
}

/* FAQ ACCORDION -------------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 12px 0;
}
.faq-item {
  background: #FFF9ED;
  border: 2px solid #DF9353;
  border-radius: 10px;
  padding: 13px 20px 11px 20px;
  box-shadow: 0 2px 10px #e4bb755e;
  transition: box-shadow .15s;
}
.faq-item h3 {
  font-size: 1.13rem;
  color: #604B2A;
  cursor:pointer;
  margin-bottom: 6px;
  font-weight: 600;
}
.faq-answer {
  color: #3B3831;
  font-size: 1rem;
  margin-left: 2px;
}

/* FOOTER ----------------------------------------------------------------- */
footer {
  background: var(--color-retro-blue);
  color: #fffbe6;
  padding: 42px 0 24px 0;
  border-top: 3px solid var(--color-retro-amber);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width:158px;
}
.footer-navigation a {
  color: #FDF5E2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color .13s, background .13s;
  border-radius: 3px;
  padding: 2px 8px;
}
.footer-navigation a:hover {
  color: #F9C770;
  background: #fffbe80c;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 240px;
}
.brand-footer img {
  height: 40px;
  margin-bottom: 4px;
}
.brand-footer p {
  font-size: .98rem;
  color: #f4f4f4;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-top: 7px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  transition: filter .13s ease, transform .14s;
  filter: brightness(.97) grayscale(0.25);
}
.social-links a:hover img {
  filter: brightness(1.15) drop-shadow(0 2px 5px #F9C770);
  transform: translateY(-2px) scale(1.05);
}
footer .newsletter-signup {
  margin: 19px 0 3px 0;
  background: #36564E;
  border: 1.5px solid #F9C770;
  color: #fffbe6;
  padding: 14px 18px;
}
footer .legal {
  margin-top:10px;
  color:#e7d1a6;
  font-size: 0.95rem;
  text-align:center;
}
footer .legal a{
  color:#D7F0BB;
  font-weight:600;
  transition:color .13s;
  text-decoration: none;
}
footer .legal a:hover{
  color:#F9C770;
}

/* POLICY CONTENT ---------------------------------------------------------- */
.policy-content, .rodo-content, .terms-content, .cookie-content {
  background: #f6efd7;
  border: 2px solid #B1B7A4;
  border-radius: 14px;
  padding: 20px 24px 14px 24px;
  margin:18px 0 10px 0;
  color: #3B3831;
  font-size:1.05rem;
}
.policy-content h2, .rodo-content h2, .terms-content h2, .cookie-content h2 {
  font-size: 1.15rem;
  color: #AF874B;
  margin-top: 17px;
}

/* BUTTONS ----------------------------------------------------------------- */
button, .btn, .cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
}
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 24px;
  background: var(--color-retro-orange);
  color: #fffbe6;
  font-size: 1.06rem;
  border: none;
  margin: 0 6px 6px 0;
  transition: background .18s, color .14s, box-shadow .13s, transform .13s;
  box-shadow: 0 2px 10px #BDA67F33;
}
.btn:hover, .btn:focus {
  background: #356553;
  color: #fff;
  box-shadow: 0 6px 14px #3d4d1745;
  transform: translateY(-1px) scale(1.05);
}

/* COOKIE CONSENT BANNER --------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 6002;
  padding: 18px 8vw 18px 8vw;
  background: #fffdf7;
  border-top: 3px solid #9DCC86;
  box-shadow: 0 -4px 22px #b1b7a477;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
  transition: transform .25s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  transition: transform .22s;
}
.cookie-banner .cookie-buttons {
  display: flex;
  align-items: center;
  gap: 17px;
}
.cookie-banner .btn {
  min-width: 122px;
  font-size: 1rem;
  padding: 7px 18px;
  background: #9DCC86;
  color: #253100;
  border: 1px solid #356553;
  border-radius: 21px;
  margin:0;
}
.cookie-banner .btn.reject {
  background: #DF9353;
  color: #fffbe3;
  border: 1.5px solid #bc6f14;
}
.cookie-banner .btn.settings {
  background: #F9C770;
  color: #3A311D;
  border: 1.5px solid #b3995a;
}
.cookie-banner .btn:hover {
  background: #356553;
  color: #fff;
  border-color: #253100;
}

/* COOKIE MODAL ------------------------------------------------------------ */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 7002;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,32,17,0.31);
}
.cookie-modal-backdrop.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fffbe6;
  border: 3.5px solid #9DCC86;
  border-radius: 22px;
  padding: 34px 34px 22px 34px;
  box-shadow: 0 8px 36px #b1b7a466, 0 2px 5px #F9C77044;
  max-width: 355px;
  width: 98vw;
  animation: modalIn .29s cubic-bezier(.65,.05,.36,1) both;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@keyframes modalIn {from{transform:scale(.95) translateY(48px); opacity:.08} to{transform:scale(1) translateY(0); opacity:1}}
.cookie-modal h2 {
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #356553;
  margin-bottom: 9px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 17px;
}
.cookie-category {
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:6px;
}
.cookie-category input[type=checkbox] {
  width: 19px;
  height: 19px;
  accent-color: #9DCC86;
  outline: 2.5px solid #356553;
  border-radius: 5px;
}
.cookie-category label {
  font-family:'Roboto', Arial, sans-serif;
  color: #574e39;
  font-size: 1.04rem;
  margin-left: 5px;
}
.cookie-modal .btn {
  width: 100%;
  margin-top: 12px;
  padding: 9px 0;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px;
  right: 22px;
  background: transparent;
  border: none;
  color: #60633C;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 7030;
}

/* RESPONSIVE DESIGN ------------------------------------------------------- */
@media (max-width: 1025px) {
  .footer-navigation { flex-basis: 100%; }
  .footer-navigation a { font-size: 0.99rem; }
  .footer-navigation, .brand-footer, .newsletter-signup, .social-links, .legal {
    margin-bottom: 10px;
  }
  .feature-grid li, .category-collections li, .product-grid li, .new-product {
    min-width: 150px;
  }
}
@media (max-width: 920px) {
  header .container { flex-wrap: wrap; gap: 8px 16px; }
  .hero h1 { font-size:2rem; }
  .testimonials-slider, .content-grid, .feature-grid, .category-collections ul, .product-grid, .new-product-grid {
    gap: 10px;
  }
  .category-collections li { min-width: 180px; }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    max-width: 99vw;
    width: 98vw;
    padding:0 2vw;
  }
  .section {
    padding: 18px 5vw;
    margin-bottom: 40px;
  }
  main {
    margin-top: 18px;
  }
  .content-wrapper {
    gap: 14px;
    margin-bottom: 6px;
  }
  .hero {
    border-radius: 0 0 15px 15px;
    padding: 33px 0 26px 0;
    margin-bottom: 34px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 17px;
  }
  .category-collections ul,
  .feature-grid, 
  .blog-listing, 
  .product-grid, 
  .new-product-grid, 
  .footer-navigation {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .card-container, .content-grid {
    gap:12px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .brand-footer {
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  header .container { flex-direction: row; gap:4px; justify-content: space-between; }
  .hero {
    padding: 18px 2vw 12px 2vw;
  }
  h1 { font-size: 1.59rem; }
  h2 { font-size: 1.18rem; }
  .section { padding:10px 2vw; margin-bottom: 18px; }
  .testimonial-card { min-width: unset; min-height: unset; padding: 13px 7vw; }
  .policy-content, .rodo-content, .terms-content, .cookie-content {
    padding: 9px 7vw 6px 7vw;
  }
}

/* VINTAGE/RETRO DECOR ----------------------------------------------------- */
.section, .card, .feature-grid li, .category-collections li, .testimonial-card, .newsletter-signup, .product-grid li, .new-product {
  background: repeating-linear-gradient(135deg, #fef8f3 0px, #fef8f3 27px, #f4eedf 27px, #f4eedf 55px);
}

/* MICRO-INTERACTIONS, HOVERS ---------------------------------------------- */
.card, .card-container > *, .feature-grid li, .category-collections li, .product-grid li, .new-product, .testimonial-card {
  transition: box-shadow 0.17s, border-color 0.17s, transform .10s;
}
.card:active, .feature-grid li:active, .category-collections li:active, .testimonial-card:active, .new-product:active {
  background: #faf4d7c9;
  box-shadow: 0 1px 7px #B1B7A444;
  border-color: #df93539e;
  transform: scale(.98);
}

/* VISUAL HIERARCHY & VINTAGE EFFECTS -------------------------------------- */
.section {
  box-shadow: 0 3px 24px #f3faf458, 0 2px 3px #F9C77044;
  border: 2px solid #E2D7C1;
}
.card {
  border: 2.5px solid #B1B7A4;
  box-shadow: 0 4px 32px #df935318, 0 2px 5px #f9c77033;
}
.section, .card, .feature-grid li, .category-collections li, .product-grid li, .new-product, .testimonial-card {
  border-radius: 16px;
}
/* Retro header lines */
.section > h2, .feature-grid > h2, .category-collections > h2, .card > h2 {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}
.section > h2:before, .feature-grid > h2:before, .category-collections > h2:before, .card > h2:before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 15px;
  height: 3px;
  background: #F9C770;
  border-radius: 2px;
  transform: translateY(-50%);
}
/* Decorative corner squiggle */
.section:after {
  content: '';
  display:block;
  width:29px; height:14px;
  background-image: url('data:image/svg+xml;utf8,<svg width="29" height="14" viewBox="0 0 29 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 12C7 5 22 5.5 27 12" stroke="%23F9C770" stroke-width="3" stroke-linecap="round" fill="none"/></svg>');
  margin-top:10px;
  margin-left:6px;
}

/* ACCESSIBILITY ----------------------------------------------------------- */
:focus {
  outline: 2px solid #356553;
  outline-offset:2px;
}

/* Utility Classes --------------------------------------------------------- */
.hide { display: none !important; }


/* END */
