/* ===================================================================
   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,
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #224A7B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #224A7B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ECAE3F;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 10px;
}
h1, h2, h3, h4, h5, h6 {
  color: #224A7B;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}
h1 {font-size: 2.75rem; margin-bottom: 18px;}
h2 {font-size: 2rem; margin-bottom: 14px;}
h3 {font-size: 1.25rem; margin-bottom: 10px; font-weight: 600;}
h4 {font-size: 1.1rem; font-weight: 500;}
p {
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================================================
   LAYOUT CONTAINERS & STRUCTURE
==================================================================== */
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ===================================================================
   HEADER & NAVIGATION
==================================================================== */
header {
  background: #fff;
  border-bottom: 1px solid #F4F7FB;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
  position: relative;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 30px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-size: 1rem;
  font-family: 'Quicksand', Arial, sans-serif;
  color: #224A7B;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #ECAE3F;
  transition: width 0.18s;
  margin-top: 3px;
}
nav a:hover:after, nav a:focus:after {
  width: 90%;
}
nav a:hover, nav a:focus {
  color: #ECAE3F;
}
.cta-button {
  background: #224A7B;
  color: #fff;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 36px;
  padding: 12px 30px;
  margin-left: 18px;
  box-shadow: 0 2px 12px rgba(34,74,123,0.05);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.13s;
  outline: none;
  font-weight: 700;
  display: inline-block;
  text-align: center;
}
.cta-button:hover,
.cta-button:focus {
  background: #ECAE3F;
  color: #224A7B;
  box-shadow: 0 4px 20px rgba(236,174,63,0.10);
  transform: translateY(-2px) scale(1.03);
}
button, .button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
/* Hamburger Button (Mobile) */
.mobile-menu-toggle {
  display: none;
  background: #ECAE3F;
  color: #224A7B;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  border: none;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
  margin-left: 10px;
  z-index: 203;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #224A7B;
  color: #fff;
}

/* ===================================================================
   MOBILE NAVIGATION OVERLAY
==================================================================== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 12px 64px rgba(34,74,123,0.16);
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.64,1.42,.54,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 28px 30px 10px 0;
  font-size: 2.2rem;
  color: #224A7B;
  background: #ECAE3F;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
  z-index: 204;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #224A7B;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100vw;
  align-items: center;
  margin-top: 26px;
}
.mobile-nav a {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.25rem;
  color: #224A7B;
  padding: 12px 0;
  width: 90vw;
  background: #f7f9fc;
  border-radius: 12px;
  text-align: center;
  transition: background 0.22s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ECAE3F;
  color: #224A7B;
}

/* When mobile menu is open, prevent background scroll */
body.mobile-menu-open {
  overflow: hidden;
}

/* ===================================================================
   MAIN SECTIONS & TYPOGRAPHY
==================================================================== */
.hero {
  background: #F4F7FB;
  min-height: 270px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  align-items: stretch;
  justify-content: center;
  height: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  padding: 32px 0;
}
.hero h1 {
  color: #224A7B;
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero p {
  color: #224A7B;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero .cta-button {
  margin-top: 10px;
  padding: 14px 36px;
  font-size: 1.15rem;
}
.features {
  background: #fff;
  margin-bottom: 60px;
}
.features .content-wrapper > h2 {
  margin-bottom: 18px;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 8px 0;
  padding: 0;
  list-style: none;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.06rem;
  color: #224A7B;
  padding: 12px 0;
}
.features ul img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
/* Feature Item class (for generic features or grids) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

.services .service-list, .product-categories .category-list, .features .product-spotlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.services .service-list > div,
.product-categories .category-list > div,
.features .product-spotlight-list > div {
  background: #F4F7FB;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,74,123,0.06);
  padding: 30px 22px;
  min-width: 240px;
  flex: 1 0 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.services .service-list > div:hover,
.product-categories .category-list > div:hover,
.features .product-spotlight-list > div:hover {
  box-shadow: 0 8px 24px rgba(34,74,123,0.12);
  transform: translateY(-3px) scale(1.015);
}
.services .service-list h3,
.product-categories .category-list h3,
.features .product-spotlight-list h3 {
  margin-bottom: 8px;
  font-weight: 700;
  color: #224A7B;
}
.services .service-list p,
.product-categories .category-list p,
.features .product-spotlight-list p {
  margin-bottom: 0;
  color: #4d6a8b;
  font-size: 1rem;
}

/* testimonials section */
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 30px 20px 30px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(34,74,123,0.08);
  margin-bottom: 20px;
  margin-top: 14px;
  min-width: 220px;
  max-width: 600px;
  transition: box-shadow 0.18s, transform 0.13s;
  color: #224A7B;
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(34,74,123,0.13);
  transform: translateY(-2px) scale(1.015);
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #4d6a8b;
}
.testimonial-meta img {
  width: 18px;
  height: 18px;
  margin-right: 2px;
  vertical-align: middle;
}

.about ul {
  margin-bottom: 17px;
}
.about ul li {
  font-size: 1.06rem;
  color: #224A7B;
  padding: 10px 0;
}

.cta {
  background: #224A7B;
  color: #fff;
  border-radius: 16px;
  margin-bottom: 48px;
}
.cta .content-wrapper {
  align-items: flex-start;
}
.cta h2 {
  color: #fff;
}
.cta p {
  color: #D7E4F6;
  margin-bottom: 18px;
}
.cta .cta-button {
  background: #ECAE3F;
  color: #224A7B;
}
.cta .cta-button:hover,
.cta .cta-button:focus {
  background: #fff;
  color: #224A7B;
}

/* policy pages */
.policy {
  background: #F4F7FB;
  min-height: 200px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.policy h1, .policy h2, .policy h3 {
  margin-top: 0;
}
.policy h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.policy h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.policy ul {
  margin-bottom: 18px;
}
.policy ul li {
  font-size: 1.04rem;
}

/* Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(34,74,123,0.04);
  transition: box-shadow 0.17s, transform 0.12s;
}
.card:hover {
  box-shadow: 0 5px 28px rgba(34,74,123,0.11);
  transform: translateY(-2px) scale(1.01);
}

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

/* Text-Image Section pattern */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Testimonial card pattern (wide) */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Blog post snippets */
.blog-list .post-snippet {
  background: #F4F7FB;
  border-radius: 14px;
  padding: 24px 20px 20px 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 7px rgba(34,74,123,0.05);
  transition: box-shadow 0.2s, transform 0.13s;
}
.blog-list .post-snippet:hover {
  box-shadow: 0 6px 16px rgba(34,74,123,0.12);
  transform: translateY(-2px) scale(1.012);
}
.blog-list .category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 10px;
  margin-bottom: 12px;
}
.blog-list .category-tags span {
  font-size: 0.93rem;
  background: #ECAE3F;
  color: #224A7B;
  padding: 5px 15px;
  border-radius: 12px;
  margin-bottom: 6px;
}

.pet-type-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 4px 1px;
  list-style: none;
}
.pet-type-filters li {
  cursor: pointer;
  background: #F4F7FB;
  color: #224A7B;
  border-radius: 12px;
  padding: 7px 16px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.17s, color 0.10s;
}
.pet-type-filters li:hover, .pet-type-filters li.active {
  background: #ECAE3F;
  color: #224A7B;
}

/* Tips grid section */
.tips-grid > .container > .content-wrapper > div {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tips-grid h3 {
  margin-bottom: 8px;
}
.tips-grid ul {
  margin-bottom: 12px;
}
.tips-grid ul li {
  margin-bottom: 7px;
}

/* Store locator/address etc. */
.store-locator ul {
  margin-bottom: 14px;
}
.store-locator ul li {
  font-size: 1.07rem;
  margin-bottom: 8px;
}
.address-block, .map-snippet {
  background: #F4F7FB;
  border-radius: 12px;
  padding: 13px 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1.06rem;
}
.address-block img, .map-snippet img {
  width: 26px;
  height: 26px;
}

/* ===================================================================
   FOOTER
==================================================================== */
footer {
  background: #F4F7FB;
  color: #224A7B;
  padding: 42px 0 14px 0;
  border-top: 1px solid #ECAE3F11;
  margin-top: 35px;
}
footer .container {
  gap: 28px;
  flex-direction: column;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #224A7B;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: #ECAE3F;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: 0.98rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 0;
  color: #224A7B;
}
.footer-contact img {
  width: 22px;
  height: 22px;
}
.footer-copy {
  font-size: 0.97rem;
  color: #4d6a8b;
  margin-top: 12px;
}

/* ===================================================================
   COOKIE CONSENT BANNER & MODAL
==================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #224A7B;
  border-top: 1px solid #F4F7FB;
  box-shadow: 0 -2px 14px rgba(34,74,123,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 24px 32px 20px 32px;
  z-index: 2999;
  animation: cookieBannerSlideUp 0.5s cubic-bezier(.43,.93,.54,1) both;
}
@keyframes cookieBannerSlideUp {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner__text {
  font-size: 1rem;
  flex: 1 1 370px;
  min-width: 0;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner__button, .cookie-banner__settings {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  background: #ECAE3F;
  color: #224A7B;
  font-weight: 700;
  margin: 0;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform 0.12s;
  box-shadow: 0 1px 7px rgba(236,174,63,0.04);
}
.cookie-banner__button:hover, .cookie-banner__settings:hover,
.cookie-banner__button:focus, .cookie-banner__settings:focus {
  background: #224A7B;
  color: #fff;
  transform: translateY(-2px);
}
.cookie-banner__button--secondary {
  background: #F4F7FB;
  color: #224A7B;
  border: 1px solid #224A7B33;
}
.cookie-banner__button--secondary:hover,
.cookie-banner__button--secondary:focus {
  background: #ECAE3F;
  color: #224A7B;
  border: 1px solid #ECAE3F;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,74,123,0.16);
  z-index: 3899;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.32s cubic-bezier(.64,1.22,.54,1) both;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(34,74,123,0.12);
  padding: 34px 38px 28px 38px;
  width: 98vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: modalPopUp 0.37s cubic-bezier(.38,1.4,.54,1.01) both;
}
@keyframes modalPopUp {
  from { transform: scale(0.96) translateY(40px); opacity:0; }
  to   { transform: none; opacity:1;}
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-modal__title {
  color: #224A7B;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: bold;
}
.cookie-modal__close {
  font-size: 2rem;
  color: #224A7B;
  background: #F4F7FB;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: background 0.14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #ECAE3F;
  color: #224A7B;
}
.cookie-modal__body {
  font-size: 0.99rem;
  color: #224A7B;
}
.cookie-cat {
  margin-bottom: 16px;
  padding: 13px 0 8px 0;
  border-bottom: 1px solid #F4F7FB;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-cat:last-child {
  border-bottom: none;
}
.cookie-cat__label {
  flex: 1 1 0;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-switch {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F4F7FB;
  border-radius: 20px;
  transition: background .18s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #ECAE3F;
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: #224A7B;
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
  background: #fff;
}
.cookie-category-essential {
  color: #a4aebb;
  font-size: 0.98em;
  font-style: italic;
}
.cookie-modal__footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal__footer button {
  padding: 10px 24px;
  border-radius: 20px;
  border: none;
  background: #ECAE3F;
  color: #224A7B;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.14s, color 0.16s;
}
.cookie-modal__footer button:hover, .cookie-modal__footer button:focus {
  background: #224A7B;
  color: #fff;
}

/* ===================================================================
   RESPONSIVE/MOBILE STYLES (mobile-first)
==================================================================== */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 8vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 4vw;
  }
  .features .service-list > div, .product-categories .category-list > div, .features .product-spotlight-list > div {
    min-width: 130px;
    flex-basis: 150px;
    padding: 20px 11px;
  }
}
@media (max-width: 768px) {
  html {font-size: 16px;}
  header .container {height: auto;}
  nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    min-height: 160px;
    margin-bottom: 38px;
    padding-top: 34px;
    padding-bottom: 10px;
  }
  .section {
    padding: 24px 0 24px 0;
    margin-bottom: 38px;
  }
  .features .service-list,
  .product-categories .category-list,
  .features .product-spotlight-list {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cta .content-wrapper {
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 8vw 16px 8vw;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }
  .cookie-modal__dialog {
    padding: 25px 10vw 20px 9vw;
    max-width: 97vw;
  }
}
@media (max-width: 520px) {
  html {font-size: 15px;}
  h1 {font-size: 2rem;}
  h2 {font-size: 1.23rem;}
  h3 {font-size: 1.05rem;}
  .container {
    padding: 0 2vw;
  }
  .hero {
    min-height: 90px;
    padding: 16px 0 8px 0;
  }
  .features .service-list > div,
  .product-categories .category-list > div,
  .features .product-spotlight-list > div {
    padding: 13px 7px;
  }
  .cta .cta-button {
    padding: 11px 18px;
    font-size: 1rem;
  }
  .address-block, .map-snippet {
    padding: 8px 8px;
  }
}

/* ===================================================================
   SCROLLBAR, FOCUS, & OTHER UI POLISH
==================================================================== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #ECAE3F44;
  border-radius: 8px;
}
:focus {
 outline: 2px solid #ECAE3F;
 outline-offset: 2px;
}

/* ===================================================================
   ANIMATIONS & TRANSITIONS
==================================================================== */
body, html {
  scroll-behavior: smooth;
}

/* Links underline on hover/focus */
a[href]:hover, a[href]:focus {
  text-decoration: underline;
}

/* Hover scaling for all cards */
.card, .testimonial-card, .blog-list .post-snippet {
  transition: box-shadow 0.18s, transform 0.13s;
}

/* Button transitions/micro-interactions */
.cta-button, .cookie-banner__button, .cookie-banner__settings {
  transition: background 0.17s, color 0.18s, box-shadow 0.18s, transform 0.10s;
}

/* ===================================================================
   UTILITY & MISCELLANEOUS
==================================================================== */
.hide {
  display: none!important;
}

/* END ================================================================== */
