/* ================================================
   CSS RESET & NORMALIZATION
   ================================================ */

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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #34536C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #34536C;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px solid #F7B17C;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  outline: none;
}

/* ================================================
   BRAND COLORS & VARIABLES
   ================================================ */
:root {
  --color-primary: #34536C;
  --color-secondary: #F7B17C;
  --color-accent: #FFFFFF;
  --color-highlight: #74B7D2;
  --color-fun: #FFD25F;
  --color-fun2: #FD6E7F;
  --color-fun3: #80E2B4;
  --color-dark: #1D2937;
  --shadow-card: 0 4px 20px 0 rgba(52,83,108,0.08);
  --shadow-btn: 0 1.5px 4px 0 rgba(247,177,124,0.18);
  --radius-card: 18px;
  --radius-btn: 28px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.12;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p, ul, ol, small {
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
p, ul, ol {
  font-size: 1rem;
  color: var(--color-dark);
}
small {
  font-size: 0.93rem;
  color: #567183;
}

b, strong {
  font-weight: 700;
  color: var(--color-primary);
}

/****** FUN TYPO FOR HEADLINES ******/
.hero-section h1,
.content-wrapper > h1,
.content-wrapper > h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: var(--color-fun2);
  text-shadow: 2px 6px 0 var(--color-fun), 0 2px 10px #00000010;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  animation: popUp 0.7s cubic-bezier(.85,1.6,.56,.9);
}
@keyframes popUp {
  0% {transform: translateY(40px) scale(0.92); opacity: 0;}
  80% {transform: translateY(-6px) scale(1.03);}
  100% {transform: none; opacity: 1;}
}

/****** Fun Typography/decoration ******/
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 6px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--color-fun) 50%, var(--color-highlight));
  border-radius: 3px;
  animation: underlineWiggle 1.2s cubic-bezier(.6,-0.15,.41,1.19);
}
@keyframes underlineWiggle {
  0% {width:0; opacity:.2;}
  80% {width:64px; opacity:.7;}
  100%{width:48px; opacity:1;}
}

/****** playful_dynamic HEADINGS ******/
h3, .feature-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-fun3);
  font-size: 1.25rem;
  margin-bottom: 8px;
}

/****** Links ******/
a {
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}
a:hover, a:active {
  color: var(--color-fun2);
}

/****** Buttons ******/
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 168px;
  padding: 0 34px;
  border-radius: var(--radius-btn);
  border: none;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 6px;
  margin-right: 12px;
  box-shadow: var(--shadow-btn), 0 1.5px 2.5px 0 rgba(53,83,108,.08);
  transition: background .18s cubic-bezier(.55,1.15,.74,1.18), color .18s, transform .2s;
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 3px solid var(--color-fun2);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-fun2);
  color: #fff;
  transform: scale(1.07) rotate(-2deg);
  border-color: var(--color-secondary);
}
.btn-secondary {
  background: var(--color-fun3);
  color: #fff;
  border: 2.5px solid var(--color-highlight);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-highlight);
  color: var(--color-primary);
  transform: scale(1.045) rotate(2deg);
}

/****** Container & Layout Utility ******/
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background: none;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  box-sizing: border-box;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: box-shadow .16s, transform .18s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(253,110,127,0.18);
  transform: translateY(-4px) scale(1.015) rotate(-1.5deg);
}

.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;
  background: #FFFCEB;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(253,110,127,0.10);
  border-left: 7px solid var(--color-fun2);
  animation: testimonialIn 0.56s cubic-bezier(.60,1.2,.51,1) forwards;
}
@keyframes testimonialIn {
  0% { opacity: 0; transform: translateX(-60px) scale(.92); }
  100% { opacity: 1; transform: none; }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 20px 20px 20px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  min-width: 250px;
  min-height: 210px;
  position: relative;
  margin-bottom: 24px;
  transition: box-shadow .16s, background .22s;
}
.feature-item:hover {
  background: #FFF9F6;
  box-shadow: 0 6px 26px 0 rgba(52,83,108,0.12);
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}

/****** Fun/Playful Feature Icons ******/
.feature-item img {
  filter: drop-shadow(1.5px 1.5px 0px var(--color-fun2));
  animation: emojiWobble .36s cubic-bezier(.23,1.11,.9,1.06) alternate infinite;
}
@keyframes emojiWobble {
  0% {transform: rotate(-7deg) scale(.99);} 100%{transform: rotate(6deg) scale(1.03);}
}

/****** Rating Stars ******/
.rating-icons {
  display: flex;
  align-items: center;
  margin-top: 14px;
  gap: 4px;
}
.rating-icons img {
  height: 28px;
  width: 28px;
  filter: drop-shadow(0 2px 2px #FFD25F44);
  animation: starBounce .55s both cubic-bezier(.61,1.60,.41,1.12);
}
@keyframes starBounce {
  0% {transform: scale(.65) rotate(-20deg); opacity:0;}
  60% {transform: scale(1.15) rotate(10deg); opacity:.65;}
  100%{transform: scale(1) rotate(0deg); opacity:1;}
}

/****** Decorative List Points ******/
ul li, .text-section ul li {
  position: relative;
  padding-left: 29px;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.6;
}
ul li::before, .text-section ul li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  left: 0;
  top: 3px;
  position: absolute;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 1.5px 2.5px 0 rgba(253,110,127,.03);
}
.text-section ul li:nth-child(2)::before {
  background: var(--color-fun2);
}
.text-section ul li:nth-child(3)::before {
  background: var(--color-fun3);
}
ul li strong {
  color: var(--color-primary);
}

/****** TABLE STYLES ******/
table {
  border-collapse: separate;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 30px;
  overflow: hidden;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
thead th {
  text-align: left;
  background: #F7B17C;
  color: #34536C;
  border-bottom: 4px solid #FFD25F;
  font-weight: 700;
  padding: 14px 16px;
  font-size: 1.15rem;
}
tbody td {
  padding: 13px 16px;
  border-bottom: 1.5px solid #e6e6e6;
}
tr:last-child td {
  border-bottom: none;
}

/* ================================================
   HEADER & NAVIGATION (Desktop & Mobile)
   ================================================ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 18px #bedfff12;
  z-index: 92;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img[alt="Rac & Codisin Pfotensalon"] {
  height: 56px;
  width: auto;
  margin-right: 18px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.02rem;
  margin: 0 3px;
  padding: 7px 13px;
  border-radius: 21px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--color-secondary);
  color: var(--color-fun2);
  font-weight: 700;
}

/******* Mobile Burger Menu ******/
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  line-height: 1;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 14px;
  border: 2.5px solid var(--color-fun2);
  padding: 4px 14px 2px 14px;
  margin-left: 18px;
  box-shadow: 0 1.5px 6px 0 #fd6e7f18;
  position: relative;
  z-index: 100;
  transition: background .17s, color .18s, transform .14s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-fun2);
  color: #fff;
  transform: scale(1.07) rotate(-3deg);
}

/* Offcanvas Mobile Menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 52px 0 #fd6e7f22;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.6,1.21,.41,1.21);
  padding: 35px 24px 24px 32px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--color-fun2);
  color: #fff;
  border-radius: 13px;
  padding: 3px 14px 4px;
  border: none;
  box-shadow: 0 1.5px 8px 0 #fd6e7f11;
  transition: background .15s;
}
.mobile-menu-close:active, .mobile-menu-close:focus {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 12px 0px 12px 6px;
  border-radius: 19px 0 0 19px;
  transition: background .18s, color .18s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--color-fun2);
  color: #fff;
  font-weight: 700;
}

/*****************
  HERO SECTION
******************/
.hero-section {
  background: linear-gradient(80deg,#FFD25F 67%,#F7B17C 100%,#FFF 100%);
  padding: 40px 0 68px 0;
  position: relative;
  min-height: 340px;
  z-index: 1;
  overflow: hidden;
}
.hero-section .container {
  align-items: flex-start;
  flex-direction: row;
  justify-content: flex-start;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 660px;
}
.hero-section h1 {
  font-size: 2.5rem;
  line-height: 1.05;
}
.hero-section p {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 20px;
}

/*****************
  FEATURES & ABOUT PREVIEW
******************/
.features-section {
  background: #ffffff;
}
.feature-grid {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 22px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.about-preview-section, .services-preview-section {
  background: #FFF;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.text-section ul {
  margin-top: 8px;
}

/*****************
  TESTIMONIALS
*****************/
.testimonials-section {
  background: linear-gradient(88deg,#FFD25F 3%, #F7B17C 65%, #fff 100%);
  padding: 38px 0 28px 0;
}
.testimonials-section h2 {
  color: var(--color-primary)!important;
  margin-bottom: 28px;
}
.testimonial-card p {
  color: #222;
  font-size: 1.04rem;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-meta span {
  color: #567183;
  font-size: .95rem;
  font-weight: 700;
}

/*****************
   CONTACT / CTA
*****************/
.contact-cta-section,
.contact-section, .appointment-section {
  background: #fff;
}
.contact-details p,
.text-section p {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 9px;
  margin-bottom: 7px;
}
.contact-details img,
.text-section img {
  height: 22px;
  width: 22px;
  margin-right: 7px;
}
.social-media-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin: 11px 0 4px 0;
}
.social-media-links a img {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  box-shadow: 0 1.5px 3px 0 #FFD25F25;
  transition: box-shadow .17s, filter .13s;
}
.social-media-links a:hover img {
  filter: brightness(1.14) saturate(1.45);
  box-shadow: 0 2.5px 9px 0 #F7B17c77;
}

/*****************
  FOOTER
*****************/
footer {
  background: #34536C;
  color: #fff;
  padding: 27px 0 11px 0;
  width: 100%;
  font-size: 0.97rem;
  box-sizing: border-box;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 11px;
}
.footer-nav a {
  color: #fff;
  opacity: .88;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 3px 11px;
  border-radius: 19px;
  transition: background .15s, color .16s;
}
.footer-nav a:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  opacity:1;
}
.footer-contact {
  color: #ffeeb9;
  margin-top: 2px;
}
.footer-contact a { color: #fff;}

/*****************
  PAGE SECTION SPACING UTILS
*****************/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child { margin-bottom: 0; }

/*****************
  RESPONSIVE 
*****************/
@media (max-width: 1040px) {
  .hero-section .content-wrapper { max-width: 97vw; }
  .container { max-width: 97vw; }
}
@media (max-width: 850px) {
  .footer-nav { flex-direction: column; align-items: flex-start; gap: 6px; }
  .main-nav { gap: 12px; }
  .feature-grid { gap: 14px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    align-items: center;
    padding-top: 8px; padding-bottom: 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 650px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  section,.section {
    padding: 30px 4px;
  }
  .feature-item {
    min-width: 162px;
    padding: 18px 12px 15px 12px;
    min-height: 168px;
  }
  .testimonial-card {
    padding: 15px;
  }
  .footer-contact { font-size: .91rem; }
}
@media (max-width: 600px) {
  .hero-section { min-height: 185px; padding: 28px 0 28px 0; }
  .hero-section .content-wrapper h1 {
    font-size: 1.55rem;
  }
  .hero-section .content-wrapper {
    min-width: 0; max-width: 97vw;
  }
  .feature-grid,
  .content-grid,
  .card-container {
    flex-direction: column !important;
    gap: 19px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
}

/*****************
  FLEXBOX LAYOUT OVERRIDES
*****************/
/**** CRITICAL: No Grid, Flex Only ****/
.features-section .feature-grid,
.content-grid,
.card-container,
.card, .card-content,
.text-image-section,
.footer-nav,
.social-media-links,
.rating-icons {
  display: flex;
}
.card-container { flex-wrap: wrap; gap: 24px; }
.card { flex-direction: column; justify-content: flex-start; align-items: flex-start; }
.content-grid, .feature-grid { flex-wrap: wrap; gap: 20px; }
.text-image-section { align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { flex-direction: row; align-items: center; gap: 20px; padding: 20px; margin-bottom: 20px; }
.feature-item { flex-direction: column; align-items: flex-start; gap: 15px; }

/*****************
  COOKIE CONSENT BANNER & MODAL
*****************/
.cookie-banner {
  position: fixed;
  left: 0; right:0; bottom: 0;
  background: #fffbe6;
  color: #34536C;
  z-index: 10001;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 -2.5px 18px 0 #fd6e7f15;
  border-top: 4.5px solid var(--color-fun2);
  padding: 20px 24px 25px 24px;
  width: 100%;
  font-size: 1rem;
  animation: bannerSlideIn .7s cubic-bezier(.82,2.2,.19,1.18);
}
@keyframes bannerSlideIn {
  0% {transform: translateY(120%);opacity:0;}
  80% {transform: translateY(-10px);opacity:.8;}
  100% {transform:none;opacity:1;}
}
.cookie-banner.hide { display: none; }
.cookie-banner .cookie-text {
  max-width: 420px; font-size: 1.01rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-left: 12px;
}
.cookie-banner .btn-cookie {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 22px;
  border: none;
  margin-right: 6px;
  transition: background .17s, color .15s, box-shadow .15s, transform .18s;
  cursor: pointer;
}
.btn-cookie.accept {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-fun2);
  box-shadow: 0 1.2px 6px #FFD25F44;
}
.btn-cookie.accept:hover, .btn-cookie.accept:focus {
  background: var(--color-fun2);
  color: white;
  transform: scale(1.06);
}
.btn-cookie.reject {
  background: var(--color-fun2);
  color: #fff;
  border: 2px solid var(--color-secondary);
}
.btn-cookie.reject:hover, .btn-cookie.reject:focus {
  background: #fff;
  color: var(--color-fun2);
  border-color: var(--color-fun2);
  transform: scale(1.045);
}
.btn-cookie.settings {
  background: var(--color-fun3);
  color: #fff;
  border: 2px solid #eee;
}
.btn-cookie.settings:hover, .btn-cookie.settings:focus {
  background: #fff;
  color: var(--color-fun3);
  border-color: var(--color-fun3);
  transform: scale(1.045);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column; align-items: flex-start; gap: 8px;
    padding: 14px 8px 15px 8px;
    font-size: .93rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: row;
    gap: 8px; margin-left: 0;
  }
}

/****** COOKIE MODAL ******/
.cookie-modal {
  position: fixed;
  left: 0; top:0; width: 100vw; height: 100vh;
  background: rgba(52,83,108,0.16);
  z-index: 11001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  animation: modalFadeIn .22s cubic-bezier(.56,1.15,.61,1.14);
}
@keyframes modalFadeIn {
  0% { opacity: 0; } 100% {opacity:1;}
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-card), 0 10px 64px #34536c24;
  max-width: 390px;
  min-width: 270px;
  padding: 32px 32px 22px 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: modalPop .44s cubic-bezier(.61,1.43,.5,1.06);
}
@keyframes modalPop {
  0% {transform: scale(.75) translateY(45px);opacity:0;}
  80% {transform: scale(1.07) translateY(-8px);opacity:.9;}
  100%{transform: none;opacity:1;}
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 17px;
  color: var(--color-primary);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 21px;
  right: 31px;
  background: none;
  color: #fd6e7f;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
}
.cookie-modal .categories {
  margin: 10px 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal .category-row {
  display: flex; flex-direction: row; align-items: center; gap: 13px;
  font-size: 1.06rem;
  padding: 7px 0 7px 0;
}
.cookie-modal .category-name {
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .toggle-switch {
  width: 44px;
  height: 24px;
  background: #FFD25F77;
  border-radius: 20px;
  position: relative;
  margin-left: 10px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
}
.cookie-modal .toggle-switch[data-checked="true"] {
  background: var(--color-fun3);
}
.cookie-modal .toggle-switch::after {
  content: '';
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  box-shadow: 0 1.5px 5px #fd6e7f22;
  transition: left .18s cubic-bezier(.72,1.38,.55,1.13);
}
.cookie-modal .toggle-switch[data-checked="true"]::after {
  left: 21px;
}
.cookie-modal .toggle-switch[data-disabled="true"] {
  opacity: .57;
  pointer-events: none;
}
.cookie-modal .category-always-on {
  font-size: .98rem;
  margin-left: 11px;
  color: #567183;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 15px;
}
.cookie-modal .btn-cookie {
  min-width: 110px;
  font-size: 1rem;
  border-radius: 22px;
  padding: 8px 17px;
}

/*****************
  ACCESSIBILITY
*****************/
:focus-visible {
  outline: 2px solid var(--color-fun2);
  outline-offset: 1.5px;
}

/*****************
  MICRO-INTERACTIONS
*****************/
.btn-primary, .btn-secondary, .btn-cookie {
  will-change: transform;
  transition-property: box-shadow, background, color, transform;
}
.card, .feature-item, .testimonial-card {
  transition: box-shadow .2s, transform .18s;
}

/*****************
  MISC UTILITIES
*****************/
.hide { display: none !important; }

/*****************
  Print Styles
*****************/
@media print {
  header, footer, nav, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  section, .section {
    box-shadow: none!important;
    background: none!important;
    margin: 0; padding: 0;
  }
}

/*****************
  END OF STYLES
*****************/
