/* === 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #283747;
  line-height: 1.6;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #7D3C98;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ea76b7;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* === BRAND COLOR PALETTE === */
:root {
  --clr-primary: #7D3C98;
  --clr-secondary: #283747;
  --clr-accent: #F6DDCC;
  --clr-info: #42c0fa;
  --clr-yellow: #FFE066;
  --clr-pink: #ea76b7;
  --clr-green: #29C87B;
  --clr-red: #EE5D6C;
  --clr-white: #fff;
  --clr-black: #1d2231;
  --shadow-card: 0 2px 20px rgba(125,60,152,0.10), 0 2px 8px rgba(40,55,71,0.06);
  --shadow-btn: 0 2px 8px rgba(40,55,71,0.16);
}

/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600&display=swap');

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--clr-primary);
  font-weight: 900;
  letter-spacing: -1.5px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-shadow: 1px 2px 8px #eed1ff44;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--clr-pink);
  text-shadow: 1px 3px 12px #FBB7D9;
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-secondary);
  margin-bottom: 8px;
  background: rgba(246,221,204,0.25);
  border-left: 7px solid var(--clr-primary);
  padding: 16px 18px 14px 26px;
  border-radius: 12px;
}
cite {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--clr-secondary);
  opacity: 0.76;
  margin-left: 18px;
}
p {
  margin-bottom: 16px;
  color: var(--clr-secondary);
}
strong {
  color: var(--clr-pink);
  font-weight: 700;
}

/* === CONTAINER & WRAPPER === */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 6vw;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* === SECTIONS SPACING === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
  position: relative;
}
section.hero {
  background: linear-gradient(120deg, #F6DDCC 65%, #FFE066 100%);
  box-shadow: 0 2px 22px #f9d6ff22;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 64px;
  overflow: hidden;
}
section.hero {
  animation: sectionBounce 1.3s cubic-bezier(.24,1.45,.65,1) 0.1s both;
}
@keyframes sectionBounce {
  0% { opacity:0; transform:translateY(60px) scale(0.85); }
  70% { opacity:1; transform:translateY(-10px) scale(1.03); }
  100% { opacity:1; transform:none; }
}

/* Section margins and padding (SCOPED RESET) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 540px) {
  section, .section {
    padding: 26px 5vw 24px 5vw;
    margin-bottom: 40px;
  }
}

/* === HEADER & NAV === */
header {
  background: var(--clr-white);
  box-shadow: 0 2px 16px #f6ddcc45;
  position: sticky;
  top: 0;
  z-index: 600;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 14px;
}
.logo img {
  display: block;
  height: 48px;
  width: auto;
  margin-right: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-secondary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.22s, border-color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--clr-primary);
  border-bottom: 2px solid var(--clr-primary);
  background: none;
}

.cta-btn {
  background: var(--clr-primary);
  color: #fff;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 10px 28px;
  box-shadow: var(--shadow-btn);
  margin-left: 14px;
  display: inline-block;
  letter-spacing: 0.04em;
  transition: transform 0.18s cubic-bezier(.45,1.2,.35,1), box-shadow 0.16s, background 0.27s;
  position: relative;
  outline: none;
  border: none;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--clr-pink);
  color: #fff;
  transform: translateY(-2px) scale(1.025) rotate(-2deg);
  box-shadow: 0 4px 28px #F6DDCC;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--clr-yellow);
  color: var(--clr-primary);
  width: 48px;
  height: 48px;
  font-size: 2rem;
  border-radius: 50%;
  border: 3px solid var(--clr-primary);
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  margin-left: 12px;
  z-index: 1201;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--clr-pink);
  color: #fff;
  border-color: var(--clr-pink);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(105deg, #FBB7D9 50%, #F6DDCC 100%);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-110vw);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 40px 0 0;
  font-size: 2.2rem;
  color: var(--clr-primary);
  background: var(--clr-white);
  border-radius: 50%;
  border: 3px solid var(--clr-pink);
  width: 48px; height: 48px;
  transition: background 0.2s, color 0.2s, border 0.18s;
  z-index: 2100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--clr-yellow);
  color: var(--clr-pink);
  border-color: var(--clr-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 44px;
}
.mobile-nav a {
  display: block;
  color: var(--clr-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  background: #FFF;
  border-radius: 20px;
  padding: 14px 32px;
  transition: background 0.23s, color 0.18s, transform 0.18s;
  margin-bottom: 0;
  box-shadow: 0 4px 24px #C3B2DF15;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--clr-primary);
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    gap: 8px;
  }
  .cta-btn {
    padding: 8px 16px;
    font-size: 0.97rem;
  }
  .logo img {
    height: 40px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 821px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===== HERO ===== */
.hero {
  border-radius: 24px;
  background: linear-gradient(109deg, #F6DDCC 80%, #FBB7D9 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 4px 44px 2px #ebb7cc28;
  animation: heroAppear 1.3s cubic-bezier(.18,.98,.34,1.02) both;
}
@keyframes heroAppear {
  0% {
    opacity: 0; transform: scale(0.97) translateY(58px);
  }
  70% {
    opacity: .76; transform: scale(1.04) translateY(-6px);
  }
  100% {
    opacity: 1; transform: none;
  }
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
  padding: 16px 0 16px 0;
}
@media (max-width: 620px) {
  .hero {
    min-height: 210px;
    padding-bottom: 18px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* ============= PLAYFUL DYNAMIC CARDS & LAYOUTS ============ */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 12px;
}
.feature {
  background: var(--clr-accent);
  border-radius: 22px;
  padding: 28px 20px 20px 20px;
  flex: 1 1 230px;
  min-width: 220px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: box-shadow 0.18s, transform 0.21s;
  position: relative;
  margin-bottom: 20px;
}
.feature img {
  width: 48px; height: 48px;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 14px #FBB7D9);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 12px 36px #ea76b725;
  transform: translateY(-4px) scale(1.03) rotate(-1.5deg);
}
@media (max-width: 820px) {
  .features-grid {
    gap: 18px;
  }
  .feature {
    padding: 21px 9% 16px 9%;
    min-width: 140px;
  }
}
@media (max-width: 600px) {
  .features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature {
    min-width: 80px;
    align-items: flex-start;
    padding: 18px 14px 12px 20px;
    border-radius: 17px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: #FFF;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  transform: scale(1.023) translateY(-3px) rotate(-2deg);
  box-shadow: 0 8px 36px #FBB7D9;
}
.card-content {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 22px #fbb7d932, 0 2px 8px #ea76b715;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.14s;
  position: relative;
  flex-wrap: wrap;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 40px #ea76b745;
  transform: translateY(-3px) scale(1.018) rotate(0.6deg);
  background: #FEF5F5;
}

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

.card, .testimonial-card, .feature {
  animation: playfulCardIn 0.7s cubic-bezier(.4,1.54,.4,.97) 0.12s both;
}
@keyframes playfulCardIn {
  0% { opacity:0; transform: scale(.92) translateY(23px) rotate(-3deg); }
  47% { transform: scale(1.014) translateY(-4px) rotate(2deg); }
  100% { opacity:1; transform: none; }
}

/* === CATALOG/KATALOG PREVIEW & PRODUCT TEASERS === */
.products-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 16px 0;
}
.product-teaser {
  background: #fff4fa;
  border-left: 7px solid var(--clr-primary);
  border-radius: 18px;
  box-shadow: 0 2px 12px #FBB7D9;
  padding: 20px 16px 15px 22px;
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 250px;
  animation: playfulCardIn 0.7s ease both;
  transition: transform 0.2s, box-shadow 0.19s;
}
.product-teaser:hover {
  background: #FBB7D9;
  box-shadow: 0 8px 28px #ea76b769;
  transform: rotate(-1.5deg) scale(1.03);
}
@media (max-width: 700px){
  .products-preview {
    flex-direction: column;
    gap: 14px;
  }
  .product-teaser {
    min-width: 120px;
  }
}

.category-filter {
  background: #FFEBF2;
  padding: 14px 20px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--clr-primary);
  letter-spacing: 0.03em;
  box-shadow: 0 2px 4px #FBB7D925;
  transition: box-shadow 0.19s;
}
.category-filter strong {
  color: var(--clr-pink);
}

/* === SERVICES DETAIL CARDS === */
.services-list-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-detail-card {
  background: var(--clr-accent);
  border-radius: 17px;
  box-shadow: var(--shadow-card);
  padding: 23px 20px 16px 20px;
  min-width: 210px;
  flex: 1 1 230px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.21s;
  position: relative;
}
.service-detail-card img {
  width: 44px; height: 44px;
  margin-bottom: 2px;
}
.service-detail-card:hover, .service-detail-card:focus-within {
  box-shadow: 0 8px 32px #7D3C9877;
  transform: scale(1.03) rotate(-0.5deg);
}
@media (max-width: 820px){
  .services-list-detail {
    gap: 14px;
  }
}
@media (max-width: 600px){
  .services-list-detail {
    flex-direction: column;
    gap: 12px;
  }
  .service-detail-card {
    min-width: 120px;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.services-list li {
  background: #FFF3E9;
  border-radius: 12px;
  padding: 14px 14px 14px 22px;
  box-shadow: 0 2px 8px #f6ddcc22;
  margin-bottom: 5px;
  color: var(--clr-secondary);
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow 0.17s;
}
.services-list li strong {
  color: var(--clr-primary);
}

/* === TRUST SIGNALS / SIMPLE ULs === */
ul, .content-wrapper ul, section ul {
  margin: 0 0 12px 18px;
  padding: 0;
  list-style: disc inside;
  color: var(--clr-secondary);
  font-size: 1.08rem;
  line-height: 1.6;
}
ul li {
  margin-bottom: 7px;
}

/* === MAP CONTAINER === */
.map-container {
  margin: 30px 0 10px 0;
  min-height: 148px;
  display: flex;
  align-items: center;
  border-radius: 22px;
  background: #FFEBF2;
  justify-content: center;
  box-shadow: 0 2px 12px #FBB7D9;
  padding: 14px 0;
}
.map-container img {
  max-height: 135px;
  filter: drop-shadow(0 8px 25px #EA76B755);
}

@media (max-width: 600px) {
  .map-container {
    padding: 12px 0;
  }
}

/* === MISC TEXTUAL SECTIONS === */
.text-section {
  margin-bottom: 18px;
  padding: 11px 13px 7px 13px;
  background: #FFF9F1;
  border-radius: 14px;
  font-size: 1.07rem;
  color: var(--clr-secondary);
  box-shadow: 0 2px 8px #F6DDCC55;
}
@media (max-width: 660px) {
  .text-section {
    font-size: 0.98rem;
    padding: 9px 7px 5px 7px;
  }
}

/* === FOOTER === */
footer {
  background: #121a29;
  color: #fff;
  padding: 40px 0 18px 0;
  width: 100%;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
}
.footer-menu a {
  color: var(--clr-yellow);
  opacity: 0.85;
  font-size: 0.97rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
  transition: color 0.18s, opacity 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-brand img {
  height: 36px; width: auto;
}
.brand-address {
  font-size: 0.97rem;
  color: #fff;
  opacity: 0.73;
}
@media (max-width: 600px) {
  .footer-brand {
    flex-direction: column;
    gap: 8px;
  }
  footer {
    padding-bottom: 8px;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(95deg, #FFE066 70%, #FBB7D9 100%);
  color: var(--clr-secondary);
  z-index: 3002;
  padding: 22px 12px 22px 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 -2px 20px #fbb7d932;
  font-size: 1.14rem;
  animation: bannerIn 0.9s cubic-bezier(.35,1.2,.4,1.0) both;
}
@keyframes bannerIn {
  0% { opacity: 0; transform: translateY(80px); }
  70% { opacity: .82; transform: translateY(-4px); }
  100% { opacity: 1; transform: none; }
}
.cookie-banner .cookie-banner-msg {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--clr-secondary);
  margin-right: 24px;
  font-size: 1.1rem;
  font-weight: 700;
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.99rem;
    padding: 14px 4vw 12px 4vw;
  }
  .cookie-banner .cookie-banner-msg {
    margin-right: 0;
  }
}

.cookie-banner-btn, .cookie-banner-settings-btn {
  background: var(--clr-primary);
  color: #fff;
  border-radius: 32px;
  padding: 9px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.01rem;
  margin-right: 6px;
  transition: background 0.16s, color 0.13s, transform 0.11s;
  box-shadow: 0 2px 8px #ea76b738;
  border: none;
  cursor: pointer;
}
.cookie-banner-btn:hover,
.cookie-banner-btn:focus {
  background: var(--clr-pink);
  color: var(--clr-white);
  transform: scale(1.054) rotate(-2deg);
}
.cookie-banner-settings-btn {
  background: var(--clr-accent);
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  margin-right: 4px;
}
.cookie-banner-settings-btn:hover, .cookie-banner-settings-btn:focus {
  background: #fff;
  color: var(--clr-pink);
  border-color: var(--clr-pink);
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,55,71,0.31);
  z-index: 4003;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.42s cubic-bezier(.42,1.21,.48,1) both;
}
@keyframes modalIn {
  0% { opacity:0; }
  100%{ opacity:1; }
}
.cookie-modal-content {
  background: linear-gradient(111deg, #FFF 70%, #F6DDCC 100%);
  border-radius: 24px;
  padding: 36px 34px 24px 34px;
  box-shadow: 0 8px 40px #EA76B755;
  max-width: 400px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  animation: modalContentIn 0.56s cubic-bezier(.22,1.08,.28,1) both;
}
@keyframes modalContentIn {
  0% { opacity:0; scale:0.89; }
  70% { opacity:.83; scale:1.04; }
  100% { opacity:1; scale:1; }
}
.cookie-modal-content h2 {
  color: var(--clr-primary);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 19px;
  background: var(--clr-yellow);
  color: var(--clr-primary);
  width: 36px;
  height: 36px;
  border-radius: 60%;
  border: 2px solid var(--clr-pink);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--clr-pink);
  color: #fff;
  border-color: var(--clr-primary);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.03rem;
  color: var(--clr-secondary);
  width: 100%;
  position: relative;
  font-weight: 700;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  border-radius: 18px;
  background: #eee;
  position: relative;
  margin-left: auto;
  transition: background 0.2s;
  border: 2px solid var(--clr-primary);
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle-switch {
  position: absolute;
  top: 2.5px; left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clr-pink);
  transition: transform 0.19s cubic-bezier(.34,1.2,.32,1.0), background 0.15s;
  box-shadow: 0 2px 10px #fbb7d93e;
}
.cookie-toggle input:checked + .cookie-toggle-switch {
  transform: translateX(17px);
  background: var(--clr-green);
}
.cookie-modal-category.essential {
  opacity: 0.68;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-banner-btn {
  box-shadow: 0 2px 8px #ea76b730;
}

/* === ANIMATION MICRO-INTERACTIONS === */
a, .cta-btn, .cookie-banner-btn, .cookie-banner-settings-btn, .product-teaser, .feature, .service-detail-card, .testimonial-card, .card {
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s, color 0.18s;
}

/* === VISUAL PLAYFULNESS === */
.feature, .testimonial-card, .card, .service-detail-card, .product-teaser {
  /* Playful shadow wiggle on hover */
}

/* ===== MEDIA QUERIES: MOBILE RESPONSIVE ===== */
@media (max-width: 640px) {
  h1, .hero h1 { font-size: 1.25rem; }
  h2 { font-size: 1.12rem; }
  .footer-menu, .footer-brand {
    flex-direction: column;
    gap: 8px;
  }
}

/* === ACCESSIBILITY FOCUS STATES === */
a:focus, .cta-btn:focus, .cookie-banner-btn:focus, .cookie-banner-settings-btn:focus {
  outline: 2px dashed var(--clr-primary);
  outline-offset: 2px;
}

/* === UTILS: GAPS, MARGINS, SPACING === */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* === ENSURE NO GRID === */
/* No grid or column-* properties anywhere. Verified. */
