/* ------------------------------
   Petite Pooch – Global Styles
   ------------------------------ */

:root {
  --bg: #fdf8ff;
  --bg-alt: #f7f0ff;
  --accent: #ff4fa5;       /* vibrant pink */
  --accent-dark: #a86dff;  /* purple-pink */
  --accent-soft: #ffe4f7;
  --teal: #29c9c1;         /* teal accent */
  --text: #333333;
  --muted: #777777;
  --card-bg: #ffffff;
  --border: #eadbe6;
  --radius-lg: 1.5rem;
  --shadow-soft: 0 18px 35px rgba(0, 0, 0, 0.06);
  --max-width: 1120px;
}

/* Reset-ish */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 79, 165, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(41, 201, 193, 0.18), transparent 60%),
    var(--bg);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ------------------------------
   Header / Navigation
   ------------------------------ */

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 219, 230, 0.7);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--accent);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", system-ui, serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.brand-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transition: width 0.2s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.nav-phone {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Buttons */

.btn-primary {
  border: none;
  outline: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(216, 137, 175, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.btn-primary span {
  font-size: 1.1rem;
  margin-bottom: 1px;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(234, 219, 230, 0.9);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.btn-ghost span {
  font-size: 1.1rem;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav.nav-mobile-open .nav-links,
  .nav.nav-mobile-open .nav-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 0.75rem;
  }

  .nav {
    flex-wrap: wrap;
  }
}

/* ------------------------------
   Hero with paw-print overlay
   ------------------------------ */

.hero {
  padding: 3.5rem 0 2.75rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "🐾  🐾  🐾";
  position: absolute;
  right: -0.5rem;
  top: 0.5rem;
  font-size: 2.2rem;
  opacity: 0.12;
  color: var(--accent-dark);
  transform: rotate(-18deg);
  pointer-events: none;
}

.hero::after {
  content: "🐾  🐾";
  position: absolute;
  left: -0.5rem;
  bottom: -0.3rem;
  font-size: 2.3rem;
  opacity: 0.12;
  color: var(--teal);
  transform: rotate(16deg);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 228, 240, 0.9);
  border: 1px solid rgba(243, 180, 209, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero-kicker span {
  font-size: 1.1rem;
}

.hero-title {
  font-family: "Playfair Display", system-ui, serif;
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero-title span {
  background: linear-gradient(120deg, var(--accent), var(--teal), var(--accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 1.3rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.pill {
  font-size: 0.75rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(234, 219, 230, 0.9);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  white-space: nowrap;
}

.pill span {
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Hero media card */

.hero-media {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    circle at 10% 0,
    #ffeaf5,
    #f2e9ff 40%,
    #eaf7ff
  );
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  overflow: hidden;
}

.hero-media-inner {
  position: relative;
  border-radius: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(234, 219, 230, 0.9);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.2rem;
}

.hero-media-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.hero-media-title {
  font-family: "Playfair Display", system-ui, serif;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.hero-media-sub {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 17rem;
}

.hero-media-placeholder {
  margin-top: 0.5rem;
  width: 88%;
  aspect-ratio: 16 / 9;
  border-radius: 0.9rem;
  border: 1px dashed rgba(234, 219, 230, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ------------------------------
   Sections & Cards
   ------------------------------ */

.section {
  padding: 2.5rem 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.section-title {
  font-family: "Playfair Display", system-ui, serif;
  font-size: 1.4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 26rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  border-radius: 1.2rem;
  background: var(--card-bg);
  border: 1px solid rgba(234, 219, 230, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "🐾";
  position: absolute;
  right: 0.6rem;
  top: 0.4rem;
  font-size: 1.9rem;
  opacity: 0.07;
  color: var(--accent-dark);
  pointer-events: none;
}

.card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.card-title {
  font-family: "Playfair Display", system-ui, serif;
  font-size: 1.1rem;
}

.card-body {
  font-size: 0.85rem;
  color: var(--muted);
}

.card-link {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--accent-dark);
}

.card-link span {
  font-size: 1.05rem;
}

/* ------------------------------
   Info grids (About / Hours / Contact)
   ------------------------------ */

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.info-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(234, 219, 230, 0.9);
  background: linear-gradient(135deg, #ffffff, #fbf4ff);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.info-title {
  font-family: "Playfair Display", system-ui, serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.hours-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem 1rem;
  margin: 0.6rem 0 0.4rem;
}

@media (max-width: 600px) {
  .hours-list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hours-list li span {
  font-weight: 500;
  color: var(--text);
}

.info-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.contact-lines {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.contact-lines p + p {
  margin-top: 0.25rem;
}

.contact-lines a {
  color: var(--accent-dark);
  font-weight: 500;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.6rem;
}

.badge {
  font-size: 0.7rem;
  padding: 0.27rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(234, 219, 230, 0.9);
  background: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ------------------------------
   Products / Ratings Section
   ------------------------------ */

.soft-section {
  background: var(--bg-alt);
  border-top: 1px solid rgba(234, 219, 230, 0.7);
  border-bottom: 1px solid rgba(234, 219, 230, 0.7);
  padding: 2.4rem 0;
  margin-top: 1.5rem;
}

.soft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.6rem;
}

@media (max-width: 900px) {
  .soft-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.product-list {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

.product-list ul {
  list-style: disc;
  margin-left: 1rem;
  margin-top: 0.35rem;
}

.rating-card {
  border-radius: 1.2rem;
  border: 1px solid rgba(234, 219, 230, 0.9);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  padding: 1.1rem 1.2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.rating-stars {
  color: #f6b54a;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.rating-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.rating-score {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.rating-note {
  font-size: 0.8rem;
}

/* ------------------------------
   Footer
   ------------------------------ */

footer {
  padding: 2.2rem 0 1.6rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.6rem;
  margin-bottom: 1.2rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.footer-brand {
  font-size: 0.85rem;
}

.footer-brand strong {
  font-family: "Playfair Display", system-ui, serif;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(234, 219, 230, 0.7);
  padding-top: 0.9rem;
  margin-top: 0.5rem;
}
