/* 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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body { line-height: 1; background: #F6F2EA; }
ol,ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; border: none; background: none; }
img { max-width: 100%; display: block; border: 0; }

/* --- VINTAGE_RETRO COLOR PALETTE --- */
:root {
  --primary: #236267;
  --secondary: #F5C747;
  --accent: #FFFFFF;
  --vintage-brown: #876445;
  --vintage-orange: #D9843B;
  --vintage-red: #B7410E;
  --vintage-bg: #F6F2EA;
  --vintage-green: #679186;
  --vintage-blue: #1E5162;
  --vintage-cream: #FEF6E4;
  --vintage-text: #473627;
  --testimonial-bg: #FFF9EA;
  --shadow: 0 4px 16px rgba(73,55,42,0.10);
}

/* --- FONTS: LOAD VINTAGE-STYLE FONTS (Fallbacks included) --- */
@import url('https://fonts.googleapis.com/css?family=Baloo+2:700,800&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(--vintage-text);
  background: var(--vintage-bg);
  font-size: 16px;
  letter-spacing: 0.03em;
}

h1,h2,h3 {
  font-family: 'Baloo 2', 'Brush Script MT', cursive, Arial, sans-serif;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 0 #FFF8D9, 0 2px 2px rgba(157,110,48,0.07);
}
h1 { font-size: 2.4em; line-height: 1.12; }
h2 { font-size: 2em; }
h3 { font-size: 1.32em; margin-bottom: 10px; }

p,li,td,th,blockquote,dd {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--vintage-text);
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 10px;
}
strong { color: var(--vintage-brown); font-weight: 700; }

blockquote {
  font-style: italic;
  border-left: 4px solid var(--primary);
  padding-left: 18px;
  color: var(--primary);
  background: var(--testimonial-bg);
  border-radius: 8px;
  margin-bottom: 12px;
}

/* --- SECTIONS SPACING & FLEX PATTERNS --- */
.section, .about, .values, .team, .categories, .testimonial, .features, .policy, .cta, .blog-intro, .blog-list, .thankyou, .contact, .business-hours, .faq, .howto, .featured-products, .benefits {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-cream);
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding-left: 10px; padding-right: 10px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--accent);
  border: 2px solid var(--secondary);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(157,70,14,0.15),var(--shadow);
  transform: translateY(-2px) scale(1.01);
}
.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: var(--testimonial-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
  border-left: 6px solid var(--primary);
}
.testimonial-card blockquote {
  background: none;
  border: none;
  font-style: italic;
  color: var(--vintage-blue);
  margin: 0;
}
.testimonial-author span {
  color: var(--vintage-brown);
  font-size: 1em;
  font-weight: 700;
  margin-left: 3px;
}
.feature-item, .features ul li, .benefits ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--vintage-bg);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px dashed var(--secondary);
  margin-bottom: 12px;
  font-size: 1.1em;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: var(--primary);
  color: var(--accent);
  padding: 14px 0;
  border-bottom: 5px dotted var(--secondary);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
header img {
  height: 46px;
  width: auto;
  filter: sepia(0.13) contrast(1.03);
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: var(--accent);
  font-family: 'Baloo 2',cursive, Arial, sans-serif;
  font-size: 1.17em;
  padding: 7px 14px;
  border-radius: 12px;
  transition: background .160s;
  position: relative;
}
header nav a:hover:not(.cta-btn),
header nav a.active {
  background: var(--secondary);
  color: var(--primary);
}
.cta-btn {
  font-family: 'Baloo 2',cursive;
  background: var(--secondary);
  color: var(--primary)!important;
  border-radius: 18px;
  padding: 10px 26px;
  font-weight: 700;
  font-size: 1.18em;
  box-shadow: 0 2px 10px rgba(157,70,14,0.06);
  margin-left: 8px;
  border: 2px solid var(--primary);
  transition: background .16s, color .16s, box-shadow .18s, border .16s;
  outline: none;
  cursor: pointer;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--primary);
  color: var(--secondary)!important;
  border: 2px solid var(--secondary);
  box-shadow: 0 4px 18px 0 rgba(245,199,71,0.17);
}

/* --- HERO SECTION --- */
.hero {
  background: var(--secondary);
  background-image:
    repeating-linear-gradient(135deg, #F4D88E 0 2px, rgba(0,0,0,0) 2px 20px),
    repeating-linear-gradient(-135deg, #FFF9EA 0 3px, rgba(0,0,0,0) 3px 21px);
  border-radius: 30px;
  box-shadow: 0 2px 20px rgba(246,180,60,0.10);
  padding: 46px 20px 36px;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.5em;
  margin-bottom: 12px;
  letter-spacing: .02em;
  text-shadow: 1px 3px #FFF9EA, 0 2px 0 #E7B746;
}
.hero p { font-size: 1.22em; color: var(--vintage-brown); margin-bottom: 24px; }
.hero .cta-btn { margin-top: 12px; }

/* --- CATEGORIES, FEATURES, BLOG, ETC. --- */
.categories ul, .features ul, .benefits ul, .team ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}
.categories ul li,
.features ul li,
.team ul li,
.benefits ul li {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 10px;
  font-family: 'Baloo 2', cursive;
  background: #FEFBF0;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(157,70,14,0.06);
  font-size: 1.09em;
  border: 1px solid #F7D46A;
  margin-bottom: 11px;
  transition: background .17s, color .17s;
}
.categories ul li:hover {
  background: var(--primary);
  color: var(--secondary);
  cursor: pointer;
}

/* --- BLOG LIST --- */
.blog-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.blog-list li {
  flex: 1 1 290px; min-width: 240px; max-width: 340px;
}
.blog-list article {
  background: var(--vintage-bg);
  border-radius: 13px;
  padding: 26px 16px 19px;
  border-bottom: 8px solid var(--vintage-brown);
  box-shadow: var(--shadow);
  min-height: 192px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .14s, transform .14s;
  position: relative;
}
.blog-list article:hover {
  box-shadow: 0 6px 28px rgba(157,70,14,0.09), var(--shadow);
  transform: translateY(-2px) scale(1.01);
}
.blog-list a {
  color: var(--primary);
  text-decoration: underline;
  margin-top: 12px;
  font-weight: 600;
  transition: color .15s;
}
.blog-list a:hover { color: var(--vintage-red); }

/* --- FOOTER --- */
footer {
  background: var(--primary);
  padding: 35px 0 15px;
  color: var(--accent);
  border-top: 6px dotted var(--secondary);
  margin-top: 80px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
  justify-content: space-between;
}
footer img { height: 42px; }
footer nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
footer nav a {
  color: var(--accent);
  opacity: .95;
  font-size: 1em;
  font-family: 'Baloo 2', cursive;
  transition: color .15s;
}
footer nav a:hover { color: var(--secondary); }
.footer-contact {
  font-size: 0.98em;
  color: var(--vintage-cream);
  font-family: 'Roboto', sans-serif;
  margin-top: 8px;
}
.footer-contact a { color: var(--secondary); text-decoration: underline; }

/* --- TABLES --- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #FFF9EA;
  margin: 15px 0 18px;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1em;
}
th, td {
  padding: 14px 9px;
  border: 1px solid #ECC868;
}
th {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
}

/* --- MISC --- */
.policy ul, .values ul {
  margin-bottom: 18px;
  list-style: disc inside;
  padding-left: 6px;
}
.policy ul li, .values ul li {
  margin-bottom: 8px;
  color: var(--vintage-brown);
}
.next-steps {
  font-family: 'Baloo 2', cursive;
  font-size: 1.05em;
  color: var(--vintage-orange);
  margin-bottom: 18px;
}
.special-offers {
  font-family: 'Baloo 2', cursive;
  font-size: 1.15em;
  color: var(--vintage-red);
  margin-top: 16px;
  background: #FFF9EA;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(255,194,93,0.05);
}

.pet-owners-note {
  margin-top: 18px; background: #FFF6DC; color: var(--vintage-brown);
  padding: 11px 17px; border-radius: 11px; font-size: 1.01em;
  border-left: 6px solid var(--vintage-brown);
  font-family: 'Baloo 2', cursive;
}

.address-map {
  background: #FEF6E4;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px dashed var(--primary);
  margin-top: 12px;
  color: var(--vintage-brown);
}

/* --- MOBILE MENU STYLES --- */
.mobile-menu-toggle {
  position: fixed;
  top: 18px; right: 18px;
  width: 48px; height: 48px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  font-size: 2em;
  z-index: 1200;
  box-shadow: 0 2px 16px rgba(245,199,71,0.15);
  display: none;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background .16s, transform .2s, color .16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--vintage-cream);
  z-index: 2500;
  padding: 0 0 0 0;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.64,.06,.16,.95);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 4px 0 32px 6px rgba(40,33,22,.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2em;
  padding: 11px;
  align-self: flex-end;
  margin-top: 12px; margin-right: 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: background .14s, color .17s;
}
.mobile-menu-close:hover { color: var(--secondary); background: #ffe7a1; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 35px 0 0 30px;
  width: 80vw;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Baloo 2', cursive;
  font-size: 1.45em;
  padding: 9px 0;
  border-radius: 8px;
  transition: background .15s, color .15s;
  margin-bottom: 2px;
  min-width: 180px;
}
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--vintage-red);
  font-weight: 700;
}

/* Mobile menu responsiveness */
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 990px) {
  header .container, footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  header nav { margin-top: 12px; }
}
@media (max-width: 850px) {
  .container { max-width: 99vw; padding-left: 0; padding-right: 0; }
  .section, .about, .categories, .testimonial, .features, .cta, .team, .policy, .benefits, .blog-intro, .blog-list, .thankyou, .contact, .business-hours, .faq, .howto, .featured-products {
    padding: 27px 7px;
  }
}
@media (max-width: 768px) {
  header nav, footer nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  header .container { flex-direction: row; justify-content: space-between; gap: 0; }
  footer .container { flex-direction: column; }
  .categories ul, .features ul, .blog-list ul, .benefits ul, .team ul { flex-direction: column; gap: 10px; }
  .content-grid, .card-container { flex-direction: column; gap: 20px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--vintage-cream);
  box-shadow: 0 -4px 32px rgba(73,55,42,0.15);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 16px 16px 16px;
  z-index: 3500;
  border-top: 6px solid var(--secondary);
  transition: transform 0.35s cubic-bezier(.57,1.44,.7,1.13), opacity 0.15s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0.02;
  pointer-events: none;
}
.cookie-banner-content {
  font-size: 1.08em;
  color: var(--vintage-brown);
  max-width: 680px;
  font-family: 'Baloo 2', cursive;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  margin-left: 18px;
  align-items: center;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Baloo 2',cursive;
  border-radius: 12px;
  border: 2px solid var(--primary);
  transition: background .14s, color .14s, border .12s;
  padding: 8px 23px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
}
.cookie-btn:hover {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-btn.settings {
  background: var(--vintage-brown);
  color: #FFF9EA;
  border: 2px solid var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--vintage-orange);
  color: var(--primary);
}

/* --- COOKIE MODAL --- */
.cookie-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(36,26,16,.40);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .22s;
}
.cookie-modal-bg.hide {
  opacity: 0; pointer-events: none;
}
.cookie-modal {
  background: var(--vintage-cream);
  border-radius: 28px;
  padding: 36px 28px 32px;
  max-width: 410px;
  width: 95vw;
  box-shadow: 0 10px 64px rgba(73,55,42,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: 'Roboto', sans-serif;
  color: var(--primary);
}
.cookie-modal h3 {
  font-family: 'Baloo 2', cursive;
  color: var(--vintage-brown);
  font-size: 1.4em;
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.06em;
}
.cookie-modal input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--secondary);
  cursor: pointer;
}
.cookie-modal .cookie-modal-btnrow {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}
.cookie-modal .cookie-btn { min-width: 108px; }
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.25em;
  color: var(--vintage-orange);
  cursor: pointer;
}
.cookie-modal-close:hover { color: var(--vintage-red); }

/* --- FORM ELEMENTS --- */
input, select, textarea {
  border: 2px solid var(--vintage-brown);
  border-radius: 8px;
  padding: 10px 14px;
  background: #FFFCF5;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 1em;
  transition: border .12s, box-shadow .18s;
}
input:focus, textarea:focus {
  border: 2px solid var(--secondary);
  box-shadow: 0 2px 10px rgba(245, 199, 71, 0.10);
}

/* --- ANIMATIONS --- */
@keyframes pop-in {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.card, .testimonial-card, .blog-list article, .special-offers {
  animation: pop-in 0.45s cubic-bezier(.63,.1,.26,.94);
}

/* --- MEDIA QUERIES: ADVANCED RESPONSIVENESS --- */
@media (max-width: 700px) {
  h1 { font-size: 1.55em; }
  h2 { font-size: 1.25em; }
  .hero { padding: 30px 7px 18px; }
  .card, .testimonial-card, .blog-list article, .section, .about, .categories, .features, .cta, .team, .policy, .benefits, .blog-intro, .blog-list, .thankyou, .contact, .business-hours, .faq, .howto, .featured-products {
    padding: 16px 4px;
    margin-bottom: 35px;
    border-radius: 16px;
  }
  .footer-contact { font-size: 0.93em; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start; gap: 14px;
    padding: 20px 6px 10px 6px;
    font-size: 0.98em;
  }
  .cookie-buttons { margin-left: 0; gap: 11px; }
  .blog-list ul { flex-direction: column; gap: 16px; }
}
@media (max-width: 440px) {
  header img, footer img { height: 32px; }
  .mobile-nav a { font-size: 1.01em; }
  .cookie-modal { padding: 15vw 5vw 9vw 5vw; }
}

/* --- ACCESSIBILITY & FOCUS STYLES --- */
:focus-visible {
  outline: 3px dashed var(--secondary);
  outline-offset: 2px;
}

/* --- MICRO-INTERACTIONS --- */
.cta-btn:active,
.cookie-btn:active {
  transform: scale(0.98);
  filter: brightness(0.98);
}

::-webkit-input-placeholder { color: #b8955e; opacity: .7; }
::-moz-placeholder          { color: #b8955e; opacity: .7; }
:-ms-input-placeholder      { color: #b8955e; opacity: .7; }
::placeholder              { color: #b8955e; opacity: .7; }

/* --- HIGH CONTRAST FOR TESTIMONIALS, POLICY & REVIEW --- */
.testimonial-card, .testimonial-card blockquote {
  color: #283034;
  background: #FFF9EA;
  font-weight: 500;
}

/* ----------- End of CSS -------------- */
