/* === CSS RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer, header,
hgroup, main, 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;
}
html { height: 100%; }
body { min-height: 100vh; line-height: 1.6; background: #FAF6F1; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { display: block; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
button, select, input, textarea { font-family: inherit; font-size: 100%; }

/* === VINTAGE RETRO BRAND VARIABLES === */
:root {
  --color-primary: #336699;
  --color-secondary: #FFBC42;
  --color-accent: #EAF2FB;
  --color-bg: #FAF6F1;
  --color-bg-card: #F7ECE2;
  --color-bg-footer: #EAE1CF;
  --color-success: #5AB982;
  --color-error: #C44240;
  --color-headline: #19324A;
  --color-text: #312C26;
  --color-text-light: #f9f7ef;
  --color-border: #E6D0B8;
  --color-shadow: rgba(65, 54, 30, 0.10);

  --font-display: 'Baloo 2', 'Arial Rounded MT Bold', 'Comic Sans MS', cursive, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* === FONTS (LOAD VIA <link> IN HTML) === */
/* Baloo 2 and Open Sans from Google Fonts recommended */

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-headline);
  font-weight: 700;
  letter-spacing: -1px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol { font-size: 1rem; margin-bottom: 16px; }

/* Subtle retro border pattern for body background */
body {
  background: repeating-linear-gradient(135deg, #FAF6F1, #FAF6F1 20px, #F7ECE2 40px, #FAF6F1 60px);
}

/* === MAIN LAYOUT === */
.container {
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

main {
  padding-top: 20px;
}
.sections {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === HEADER + NAV === */
header {
  background: var(--color-bg-card);
  box-shadow: 0 2px 7px var(--color-shadow);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
  padding: 0;
}
.logo img {
  width: 54px;
  height: auto;
  border-radius: 15px 50px 15px 40px / 22px 40px 11px 30px; /* Fun vintage blob */
  box-shadow: 1px 2px 7px var(--color-shadow);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-right: 16px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.08rem;
  padding: 9px 16px;
  border-radius: 9px;
  position: relative;
  transition: background .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}

.cta-button {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.06rem;
  background: var(--color-secondary);
  color: #40361C;
  padding: 12px 28px;
  border-radius: 24px 35px 15px 24px / 20px 33px 19px 24px;
  font-weight: 700;
  box-shadow: 0 3px 12px var(--color-shadow);
  border: 3px solid var(--color-primary);
  margin-left: 0;
  margin-bottom: 0;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.5px;
  transition: background 0.18s, color 0.13s, box-shadow 0.18s;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: var(--color-text-light);
  box-shadow: 0 3px 19px var(--color-shadow);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
  margin-left: 16px;
  z-index: 100;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  header .container {
    gap: 10px;
  }
}
@media (max-width: 790px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .cta-button { margin-right: 8px; }
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-bg-card);
  box-shadow: 3px 0 28px var(--color-shadow);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.7,0.3,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 30px 24px 16px 28px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  align-self: flex-end;
  color: var(--color-primary);
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 25px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.2rem;
  padding: 9px 0;
  font-family: var(--font-display);
  border-bottom: 2px dotted var(--color-secondary);
  transition: color .18s, background .22s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: var(--color-accent);
}

@media (min-width: 791px) {
  .mobile-menu,
  .mobile-menu-close { display: none; }
}

/* === SECTION LAYOUTS === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  box-shadow: 0 2px 14px var(--color-shadow);
  background: var(--color-bg-card);
}

/* === FEATURE GRID / CARDS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
}
.feature {
  flex: 1 1 210px;
  min-width: 180px;
  background: var(--color-accent);
  border-radius: 16px;
  padding: 22px 20px 20px 20px;
  box-shadow: 0 2px 8px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .2s;
}
.feature img {
  width: 48px; height: 48px;
  margin-bottom: 9px;
  border-radius: 12px;
  border: 2px solid var(--color-secondary);
  background: var(--color-bg-footer);
}
.feature:hover {
  box-shadow: 0 5px 23px var(--color-shadow);
}

/* Shop Category Cards */
.category-cards, .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 11px;
  justify-content: space-between;
}
.category-card, .category-link {
  flex: 1 1 210px;
  min-width: 180px;
  background: var(--color-bg-footer);
  border-radius: 20px;
  box-shadow: 0 1px 7px var(--color-shadow);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px dashed var(--color-secondary);
  transition: box-shadow .18s, border-color .16s;
}
.category-card:hover, .category-link:hover {
  box-shadow: 0 4px 16px var(--color-shadow);
  border-color: var(--color-primary);
}
.category-card a, .category-link a {
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 8px;
  font-size: 1.01rem;
  transition: color .17s;
}
.category-card a:hover, .category-link a:hover {
  color: var(--color-secondary);
}

/* Product Grid & Cards */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 17px;
  justify-content: space-between;
}
.product-card {
  flex: 1 1 270px;
  min-width: 220px;
  background: var(--color-accent);
  padding: 26px 18px 18px 18px;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--color-shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow .22s, transform .20s;
  border: 2.5px solid var(--color-border);
  position: relative;
}
.product-card img {
  width: 54px; height: 54px;
  border-radius: 10px;
  margin-bottom: 5px;
  background: var(--color-bg-card);
  border: 2px solid var(--color-secondary);
}
.product-card .price {
  font-size: 1.3rem;
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.2px;
}
.product-card .cta-button {
  margin-top: auto;
}
.product-card:hover {
  box-shadow: 0 9px 23px var(--color-shadow);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

/* Shop Controls */
.shop-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 25px;
  margin-bottom: 30px;
}
.shop-controls label {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1rem;
  margin-right: 4px;
}
.shop-controls select {
  padding: 6px 14px;
  border-radius: 16px;
  border: 2px solid var(--color-secondary);
  background: var(--color-bg-footer);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 0.97rem;
  margin-right: 8px;
  outline: none;
  transition: border-color .16s;
}
.shop-controls select:focus {
  border-color: var(--color-primary);
}

/* TEAM SECTION */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: space-between;
}
.team-member {
  flex: 1 1 216px;
  min-width: 180px;
  background: var(--color-bg-footer);
  border-radius: 16px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-style: italic;
  align-items: flex-start;
  border: 1.5px solid var(--color-border);
}
.team-member h3 {
  font-size: 1.09rem;
  color: var(--color-primary);
  margin-bottom: 5px;
}

/* === TESTIMONIALS === */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffdfa;
  border-radius: 16px 30px 21px 16px;
  box-shadow: 0 2px 10px var(--color-shadow);
  min-width: 230px;
  max-width: 345px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  border: 2.5px solid var(--color-border);
  font-family: var(--font-body);
}
.testimonial-card p {
  color: var(--color-headline);
  font-style: italic;
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.02rem;
}

/* === BLOG PREVIEW / POSTS === */
.blog-preview, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 17px;
}
.blog-post-teaser, .blog-post {
  flex: 1 1 260px;
  min-width: 210px;
  background: var(--color-bg-card);
  border-radius: 14px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 6px solid var(--color-secondary);
  transition: box-shadow .17s, border-color .18s;
}
.blog-post-teaser:hover, .blog-post:hover {
  box-shadow: 0 5px 18px var(--color-shadow);
  border-color: var(--color-primary);
}
.blog-post-teaser a, .blog-post a {
  color: var(--color-primary);
  font-weight: 700;
  margin-top: 7px;
  transition: color .18s;
  position: relative;
  display: inline-block;
}
.blog-post-teaser a::after, .blog-post a::after {
  content: '\2192';
  font-size: 1.04em;
  padding-left: 4px;
  opacity: .6;
}
.blog-post-teaser a:hover, .blog-post a:hover { color: var(--color-secondary); }

.newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 14px;
  background: var(--color-accent);
  border-radius: 13px;
  padding: 18px 15px;
  box-shadow: 0 1px 5px var(--color-shadow);
  flex-direction: row;
}
.newsletter-signup .text-section { flex: 1 1 200px; }
.newsletter-signup .cta-button { min-width: 180px; }
@media (max-width: 700px) {
  .newsletter-signup { flex-direction: column; align-items: flex-start; }
}

/* === CONTACT PAGE === */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 21px;
}
.contact-details > div {
  flex: 1 1 185px;
  min-width: 160px;
  background: var(--color-accent);
  border-radius: 10px 20px 10px 14px;
  padding: 17px 13px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  box-shadow: 0 2px 8px var(--color-shadow);
  border: 1.5px solid var(--color-secondary);
  font-size: 0.97rem;
}
.contact-details img { width: 24px; height: 24px; margin-bottom: 6px; }
.map-static {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* === FOOTER === */
footer {
  background: var(--color-bg-footer);
  box-shadow: 0 -2px 10px var(--color-shadow);
  padding: 38px 0 18px 0;
  margin-top: 35px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 22px;
}
.footer-nav a {
  color: var(--color-primary);
  font-size: 0.98rem;
  font-family: var(--font-display);
  border-bottom: 2px dotted var(--color-secondary);
  transition: color .14s, border-bottom-color .15s;
}
.footer-nav a:hover { color: var(--color-secondary); border-bottom-color: var(--color-primary); }
.footer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5C5042;
  font-size: 1rem;
}
.footer-info img {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--color-bg-card);
  box-shadow: 0 0.5px 4px var(--color-shadow);
}
.social-media {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-media a img {
  width: 32px; height: 32px;
  border-radius: 12px;
  border: 2px solid var(--color-primary);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.social-media a:hover img {
  border-color: var(--color-secondary);
  box-shadow: 0 2px 8px var(--color-shadow);
}

@media (max-width: 990px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* === RESPONSIVENESS === */
@media (max-width: 1080px) {
  .feature-grid, .product-grid, .team-list, .category-cards, .category-list, .blog-preview, .blog-post-list, .testimonials-slider {
    flex-direction: column;
  }
  .feature-grid > *, .product-card, .team-member, .category-card, .category-link, .testimonial-card, .blog-post-teaser, .blog-post {
    min-width: 0;
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .section { padding: 24px 7px; }
  .container { padding: 0 7px; }
  .contact-details > div, .map-static { min-width: 0; width: 100%; }
}

/* === COLORS, TYPOGRAPHY: BODY & HEADINGS === */
strong { font-weight: 700; color: var(--color-headline); }
em, i { color: var(--color-primary); font-style: italic; }
a { color: var(--color-primary); transition: color .17s; }
a:hover, a:focus { color: var(--color-secondary); }
code, pre { font-family: 'Fira Mono', monospace; background: #f9f6ef; color: #A93226; border-radius: 5px; padding: 1.5px 6px; }

ul, ol {
  margin-bottom: 16px;
  margin-left: 25px;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 6px;
  list-style-type: square;
  color: #74542c;
  font-size: 1rem;
}

/* === MICROPATTERNS / RETRO EFFECTS === */
.section, .product-card, .category-card, .category-link, .testimonial-card {
  border-radius: 22px 38px 18px 18px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--color-border);
  background: repeating-linear-gradient(135deg, var(--color-bg-card), var(--color-bg-card) 80px, #e9d9c6 90px, var(--color-bg-card) 100px);
  position: relative;
}
.section:before, .product-card:before, .category-card:before, .testimonial-card:before {
  content: "";
  position: absolute;
  top: -10px; left: -10px;
  width: 32px; height: 10px;
  border-radius: 30% 70% 30% 70%;
  background: var(--color-secondary);
  opacity: 0.12;
  z-index: 1;
}

/* Card Container (if used) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-accent);
  border-radius: 15px;
  padding: 18px 15px;
  box-shadow: 0 1px 6px var(--color-shadow);
  position: relative;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 6px;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: var(--color-bg-footer);
  border-top: 4px double var(--color-secondary);
  box-shadow: 0 -2px 14px var(--color-shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 7vw 20px 7vw;
  animation: cookiein 0.37s cubic-bezier(0.5,1,0.7,1) both;
}
@keyframes cookiein { from{ opacity:0; transform: translateY(45px);} to{ opacity:1; transform:none;} }
.cookie-banner p {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-headline);
  max-width: 420px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #40361C;
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 15px;
  border: 2px solid var(--color-primary);
  padding: 10px 20px;
  font-weight: 700;
  box-shadow: 0 1px 5px var(--color-shadow);
  outline: none;
  cursor: pointer;
  margin-left: 0;
  transition: background .15s, color .17s;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
}
.cookie-settings {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}
.cookie-settings:focus, .cookie-settings:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

@media (max-width: 799px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 13px 3vw 17px 3vw;
  }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; right: 0; bottom: 0;
  background-color: rgba(70,58,40,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiein 0.2s .1s both;
}
.cookie-modal-content {
  background: var(--color-bg-footer);
  padding: 30px 30px 20px 30px;
  border-radius: 24px 16px 30px 24px;
  box-shadow: 0 4px 24px var(--color-shadow);
  min-width: 310px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-family: var(--font-body);
  position: relative;
}
.cookie-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 9px;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--color-primary);
  cursor: pointer;
}
.cookie-switch-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
}
.cookie-category label {
  font-family: var(--font-display);
  color: var(--color-primary);
}
.cookie-toggle {
  width: 40px;
  height: 24px;
  position: relative;
  display: inline-block;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d8bb6c;
  border-radius: 22px;
  transition: background .18s;
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--color-success);
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(90,59,41,.07);
  transition: transform .18s;
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-ess {'
  opacity: 0.6;
}

/* === UTILS === */
.hide { display: none !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* === RETRO PATTERNS & EFFECTS === */
.section, .product-card, .category-card, .testimonial-card {
  background-image: repeating-linear-gradient(145deg, #fffdfa 0 50px, var(--color-bg-card) 60px 100px);
}

/* === FOCUS & ACCESSIBILITY === */
a:focus, .cta-button:focus, button:focus, .cookie-btn:focus  {
  outline: 2.5px dashed var(--color-primary);
  outline-offset: 2px;
}

/* === MICRO-INTERACTIONS, HOVER EFFECTS === */
.cta-button, .cookie-btn {
  transition: background .2s, color .18s, box-shadow .18s, border-color .15s;
}
.cta-button:active, .cookie-btn:active {
  transform: scale(0.98);
}
.product-card:hover, .feature:hover, .category-card:hover, .category-link:hover, .testimonial-card:hover {
  z-index: 6;
}

/* === MINIMUM SPACING FOR ALL CARDS/SECTIONS === */
.section, .card, .product-card, .category-card, .category-link, .testimonial-card {
  margin-bottom: 20px;
}

/* === Z-INDEX LAYERS === */
header { z-index: 20; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 4000; }

/* === END === */
