/* 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
input, textarea, select {
  font: inherit;
  outline: none;
}

/* BRAND COLORS */
:root {
  --color-primary: #265C41;
  --color-secondary: #F3C892;
  --color-accent: #FFF6ED;
  --color-success: #46b06e;
  --color-danger: #ed3a3a;
  --color-dark: #222C1B;
  --color-light: #FFF;
  --color-grey: #F9F9F9;
  --color-shadow: rgba(38, 92, 65, 0.08);
}

/* PLAYFUL DYNAMIC VARIANTS */
:root {
  --fun-magenta: #ff56a8;
  --fun-turquoise: #3ee2a8;
  --fun-yellow: #FFE366;
  --fun-orange: #ff9e44;
  --fun-blue: #42b9fe;
  --fun-deepblue: #325ac0;
}

/* 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');

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-dark);
  background: var(--color-accent);
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--fun-magenta);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}
p, li, ul, ol, label, .service-price, .testimonial-name, .brand-info span {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-dark);
}
p {
  margin-bottom: 1.2em;
}

/* LAYOUT CONTAINERS & SPACING PATTERNS */
.container {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 36px 36px 36px 18px;
  box-shadow: 0 4px 32px var(--color-shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--color-light);
  border-radius: 20px;
  box-shadow: 0 2px 16px var(--color-shadow);
  transition: transform 0.18s cubic-bezier(.44,.12,.46,1.23), box-shadow .2s;
  min-width: 260px;
  max-width: 390px;
  flex: 1 1 260px;
  padding: 32px 24px;
}
.card:hover,
.feature-item:hover,
.service-item:hover {
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
  box-shadow: 0 6px 32px var(--color-shadow);
  z-index: 2;
}
.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: var(--fun-yellow);
  border-radius: 26px;
  box-shadow: 0 2px 16px var(--color-shadow);
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 200px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--fun-turquoise);
  border-radius: 18px;
  padding: 26px 18px 22px 18px;
  box-shadow: 0 2px 16px var(--color-shadow);
  flex: 1 1 220px;
  min-width: 180px;
  transition: transform 0.14s, box-shadow 0.14s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.service-item {
  background: var(--fun-blue);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--color-shadow);
  color: var(--color-light);
  padding: 24px 18px;
  min-width: 210px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-price {
  font-size: 1.24rem;
  font-weight: 700;
  color: var(--fun-magenta);
  background: var(--color-light);
  padding: 2px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 8px;
}

/**** HEADER AREA ****/
header {
  background: var(--fun-yellow);
  box-shadow: 0 1px 12px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 18px;
}
header nav {
  display: flex;
  gap: 18px;
}
header nav a {
  color: var(--color-primary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.17s;
}
header nav a:focus, header nav a:hover {
  color: var(--fun-magenta);
}
header img {
  height: 44px;
  border-radius: 12px;
  background: var(--color-light);
  margin-right: 8px;
}
.cta-button {
  background: var(--fun-magenta);
  color: var(--color-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  padding: 13px 32px;
  border: none;
  border-radius: 30px 20px 38px 20px;
  outline: none;
  box-shadow: 0 2px 16px var(--color-shadow);
  transition: background 0.17s, box-shadow 0.18s, transform 0.12s;
  position: relative;
  margin-left: 10px;
  margin-right: 4px;
  cursor: pointer;
  z-index: 10;
}
.cta-button:focus, .cta-button:hover {
  background: var(--fun-turquoise);
  color: var(--color-primary);
  box-shadow: 0 6px 32px var(--color-shadow);
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}


/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: var(--color-primary);
  background: var(--color-light);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  border: 2px solid var(--fun-magenta);
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  transition: background .16s, color .16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--fun-magenta);
  background: var(--fun-yellow);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-accent);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(.85,.16,.24,.92);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 23px 26px 6px 0;
  font-size: 2.4rem;
  background: var(--fun-magenta);
  color: var(--color-light);
  border-radius: 60%;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 8px var(--color-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .19s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--fun-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding: 12px 34px;
  margin-top: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  background: var(--fun-yellow);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 18px;
  padding: 12px 24px;
  transition: color .14s, background .18s, transform .17s;
  min-width: 195px;
  text-align: left;
  display: inline-block;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  background: var(--fun-magenta);
  color: var(--color-light);
  transform: translateX(4px) scale(1.03);
}

/* HIDE NAV ON MOBILE, SHOW BURGER MENU */
@media (max-width: 1020px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; margin-left: auto; }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
}

/* MAIN & SECTION SPACING */
main {
  padding: 0 0 100px 0;
  width: 100%;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
}
.section:last-child, main > section:last-child {
  margin-bottom: 0;
}

/* FLEX LAYOUTS FOR GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 10px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 10px;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-short, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
}
.contact-action {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.team-intro ul, .team-chefs ul {
  padding-left: 22px;
}
.team-intro li, .team-chefs li {
  padding-left: 0.25em;
}
.value-icons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
}
.value-icons img {
  width: 48px;
}
.value-descriptions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.text-section {
  background: var(--color-accent);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 1px 6px var(--color-shadow);
}

/* SEARCH BAR */
.search-bar {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.search-bar input[type="search"] {
  padding: 10px 16px;
  border-radius: 16px 0 0 16px;
  border: 2px solid var(--fun-magenta);
  background: var(--color-light);
  font-size: 1rem;
  flex: 1 1 160px;
}
.search-bar button {
  padding: 11px 22px;
  border-radius: 0 16px 16px 0;
  background: var(--fun-magenta);
  color: var(--color-light);
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  transition: background .14s, color .12s, transform .12s;
}
.search-bar button:hover, .search-bar button:focus { background: var(--fun-blue); }

/* FILTER OPTIONS & FEATURED RECIPES */
.filter-options ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.filter-options li {
  background: var(--fun-yellow);
  border-radius: 14px;
  padding: 8px 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  box-shadow: 0 1px 6px var(--color-shadow);
}
.featured-recipes ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.featured-recipes li {
  background: var(--fun-turquoise);
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 700;
  color: var(--color-primary);
}

/******** TESTIMONIALS STYLE ********/
.testimonial-card {
  background: var(--fun-yellow);
  color: var(--color-dark);
  border-radius: 26px;
  box-shadow: 0 2px 16px var(--color-shadow);
  min-height: 90px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 20px 30px;
  transition: box-shadow .18s, background .14s, transform .13s;
  border-left: 7px solid var(--fun-magenta);
}
.testimonial-card p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--color-dark);
}
.testimonial-name {
  color: var(--color-primary);
  font-weight: 900;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
}

/******* FOOTER *******/
footer {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 36px 0;
  position: relative;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-menu a {
  color: var(--fun-yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: color .21s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--fun-magenta);
  text-decoration: underline;
}
.brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
}
.brand-info img {
  height: 38px;
}
.brand-info span {
  color: var(--color-light);
  font-size: 0.97rem;
}

/******************** COOKIE CONSENT BANNER ********************/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: var(--fun-magenta);
  color: var(--color-light);
  padding: 22px 20px 18px 18px;
  box-shadow: 0 -4px 20px var(--color-shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: cookie-banner-slideup 0.7s cubic-bezier(.58,.13,.55,1.04);
}
@keyframes cookie-banner-slideup {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-text {
  flex: 1 1 200px;
}
.cookie-consent-banner .cookie-btn {
  margin: 0 8px 0 0;
  padding: 9px 22px;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, color .12s, transform .11s;
  box-shadow: 0 1px 8px var(--color-shadow);
  background: var(--fun-yellow);
  color: var(--color-primary);
}
.cookie-consent-banner .cookie-btn:hover,.cookie-consent-banner .cookie-btn:focus {
  background: var(--fun-turquoise);
  color: var(--color-dark);
}
.cookie-consent-banner .cookie-settings-btn {
  background: var(--fun-blue);
  color: var(--color-light);
}
.cookie-consent-banner .cookie-settings-btn:hover, .cookie-consent-banner .cookie-settings-btn:focus {
  background: var(--fun-magenta);
}

/****** COOKIE SETTINGS MODAL ******/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,44,27, 0.4);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.cookie-modal-overlay.open {
  display: flex;
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: var(--color-light);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 0 30px var(--color-shadow);
  padding: 36px 24px 24px 24px;
  min-width: 310px;
  max-width: 96vw;
  width: 410px;
  position: relative;
  animation: cookie-modal-up .36s cubic-bezier(.54,.22,.4,1.15);
}
@keyframes cookie-modal-up {
  from { transform: translateY(90px); opacity: 0 }
  to   { transform: translateY(0); opacity: 1 }
}
.cookie-modal h2 {
  color: var(--color-primary);
  margin-bottom: 18px;
  font-size: 1.36rem;
  font-weight: 800;
}
.cookie-modal .cookie-cat {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 14px;
}
.cookie-modal .switch {
  margin-left: auto;
}
.cookie-modal .cookie-cat strong {
  color: var(--fun-deepblue);
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-cat em {
  color: var(--color-primary);
  font-style: normal;
  font-size: .97rem;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}
.cookie-modal .cookie-btn {
  flex: 1 1 130px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 23px;
  background: var(--fun-magenta);
  color: var(--color-light);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.23rem;
  font-weight: 800;
  border: none;
  box-shadow: 0 1px 6px var(--color-shadow);
  transition: background .17s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: var(--fun-blue);
}
.switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--fun-yellow);
  border-radius: 22px;
  transition: .2s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: .18s;
}
.switch input:checked + .slider {
  background: var(--fun-magenta);
}
.switch input:checked + .slider:before {
  transform: translateX(14px);
  background: var(--fun-blue);
}

/******* CTA ANIMATION ******/
.cta-button {
  animation: playful-bounce 1.7s infinite ease-in-out;
  will-change: transform;
}
@keyframes playful-bounce {
  0% { transform: scale(1); }
  13% { transform: scale(1.07) rotate(-1deg); }
  18% { transform: scale(0.98); }
  26% { transform: scale(1.09) rotate(1deg);  }
  35% { transform: scale(1); }
  100% { transform: scale(1); }
}

/********* DECORATIVE ELEMENTS **********/
.card::before, .feature-item::before, .service-item::before {
  content: '';
  display: block;
  position: absolute;
  top: -20px; left: -20px;
  width: 52px;
  height: 52px;
  background: var(--fun-yellow);
  border-radius: 40% 60% 60% 40%/30% 40% 60% 70%;
  z-index: 0;
  opacity: .27;
  filter: blur(8px);
  pointer-events: none;
}
.card:hover::before, .feature-item:hover::before, .service-item:hover::before {
  background: var(--fun-magenta);
  opacity: .39;
}

/* Hide if not needed for main wrappers */
.card:empty::before, .feature-item:empty::before, .service-item:empty::before {
  display: none;
}

/********* ANIMATIONS **********/
.feature-item, .service-item, .testimonial-card, .card {
  transition: box-shadow .15s, transform .15s, background .15s;
}
.feature-item:focus-visible, .service-item:focus-visible {
  outline: 3px dashed var(--fun-blue);
  outline-offset: 3px;
}

/********* MISC TAGS *********/
strong {
  color: var(--fun-magenta);
}
a {
  color: var(--fun-magenta);
  transition: color .14s, border-radius .11s, background .12s;
}
a:hover, a:focus {
  color: var(--fun-turquoise);
  background: var(--color-grey);
  border-radius: 8px;
}

ul.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
ul.feature-icons li {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--fun-yellow);
  padding: 8px 15px;
  border-radius: 12px;
  color: var(--color-primary);
  font-weight: 700;
}

.map-embed {
  background: var(--color-accent);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 6px var(--color-shadow);
  color: var(--color-primary);
}

/****** RESPONSIVE DESIGN ******/
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  header .container {
    height: auto;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .feature-grid, .service-list, .content-grid, .testimonials {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.3rem; }
  .section,
  section {
    padding: 24px 0 0 0;
    margin-bottom: 38px;
    border-radius: 16px;
  }
  header .container {
    flex-direction: row;
    height: auto;
    gap: 10px;
  }
  .card, .feature-item, .service-item, .testimonial-card {
    min-width: 95vw;
    max-width: 97vw;
    flex: 1 1 90vw;
    padding: 22px 13px;
    font-size: 0.99rem;
  }
  .feature-grid, .service-list, .content-grid, .testimonials {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .content-wrapper, .contact-short, .contact-details, .text-image-section {
    flex-direction: column;
    align-items: stretch !important;
    gap: 16px;
  }
  .footer-menu, .brand-info {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.99rem;
  }
  .search-bar {
    flex-direction: column;
    gap: 7px;
  }
  .mobile-menu {
    max-width: 100vw;
    padding: 0;
    border-radius: 0;
  }
  .cookie-modal {
    min-width: 95vw;
    padding: 28px 9px 18px 9px;
  }
}

@media (max-width: 560px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.11rem; }
  h3 { font-size: .97rem; }
  .card, .feature-item, .service-item, .testimonial-card {
    font-size: 0.91rem;
    padding: 12px 5px;
  }
  .container { padding: 0 3vw; }
  .cta-button { padding: 8px 11px; font-size: 0.96rem; }
}

/* VISIBILITY UTILS */
@media (max-width: 1020px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    z-index: 101;
  }
}
@media (min-width: 1020px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Focus outlines for accessibility */
a:focus, .cta-button:focus, .service-item:focus, .feature-item:focus, .testimonial-card:focus, .mobile-menu-close:focus {
  outline: 2.5px dashed var(--fun-turquoise) !important;
  outline-offset: 1.5px !important;
  box-shadow: 0 0 6px var(--fun-turquoise);
}

/* Hide scrollbars on mobile menu overlay */
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar, .cookie-modal-overlay::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

/* Miscellaneous helpers */
::-webkit-input-placeholder { color: #888; }
:-moz-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/****** PRINT ******/
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  section, .container, .section, main { background: #fff !important; }
}
