/* ============================================================
   PetsFriend — Retro Groovy Shopify Theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --cream: #faf2df;
  --cream-deep: #f1e4c8;
  --orange: #e0641f;
  --orange-bright: #ea7a2c;
  --coral: #e07d5e;
  --coral-soft: #ec9b80;
  --mustard: #f0a930;
  --mustard-soft: #f6c45a;
  --green: #1f6b5c;
  --green-soft: #2f8472;
  --ink: #4a2e16;
  --ink-soft: #7a5a3a;

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 10px 0 rgba(58, 51, 38, 0.12);
  --shadow-hover: 0 16px 0 rgba(58, 51, 38, 0.15);
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(217, 158, 31, 0.07), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(47, 111, 79, 0.07), transparent 32%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.02; font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.05rem; letter-spacing: .3px;
  padding: 16px 34px; border-radius: 999px;
  border: 3px solid var(--ink); cursor: pointer;
  background: var(--orange); color: var(--cream);
  box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease, background .2s;
}
.btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.btn:active { transform: translateY(2px); box-shadow: 0 4px 0 rgba(58,51,38,.15); }
.btn--green { background: var(--green); }
.btn--mustard { background: var(--mustard); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--cream-deep); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 234, 208, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--ink);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 50px; height: 50px; flex-shrink: 0;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.65rem; color: var(--green); letter-spacing: .2px;
}
.brand__name--orange { color: var(--orange); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 1.02rem;
  position: relative; transition: color .2s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 3px; width: 0;
  background: var(--orange); border-radius: 2px; transition: width .25s ease;
}
.nav a:hover { color: var(--orange); }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-link {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 600;
}
.cart-count {
  background: var(--coral); color: var(--cream);
  border-radius: 999px; min-width: 24px; height: 24px; padding: 0 6px;
  display: grid; place-items: center; font-size: .82rem; border: 2px solid var(--ink);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); border-radius: 2px; margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 80px 0 90px; text-align: center; overflow: hidden; }
.hero__eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: 600;
  background: var(--green); color: var(--cream); padding: 8px 22px;
  border-radius: 999px; border: 3px solid var(--ink); font-size: .95rem;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px;
  transform: rotate(-2deg);
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 700;
  letter-spacing: -1px; max-width: 16ch; margin: 0 auto;
}
.hero__title .l1 { color: var(--orange); display: block; }
.hero__title .l2 { color: var(--coral); display: block; }
.hero__title .l3 { color: var(--mustard); display: block; }
.hero__title .l4 { color: var(--green); display: block; }
.hero__tagline {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem); color: var(--green);
  margin: 26px auto 0; max-width: 28ch; line-height: 1.15;
}
.hero__tagline em { color: var(--orange); font-style: italic; }
.hero__sub {
  font-size: 1.25rem; max-width: 46ch; margin: 18px auto 38px;
  color: var(--ink-soft); font-weight: 500;
}
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.daisy { position: absolute; pointer-events: none; animation: bob 6s ease-in-out infinite; }
.daisy svg, .daisy img { display: block; width: 100%; height: auto; }
.daisy--1 { top: 90px; left: 8%; width: 78px; animation-delay: 0s; }
.daisy--2 { top: 150px; right: 9%; width: 92px; animation-delay: 1.2s; }
.daisy--3 { bottom: 70px; left: 12%; width: 66px; animation-delay: 2.1s; }
.daisy--4 { bottom: 110px; right: 14%; width: 84px; animation-delay: .6s; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(6deg); } }

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--green); color: var(--cream); border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink); overflow: hidden; padding: 16px 0;
}
.strip__track {
  display: flex; gap: 50px; white-space: nowrap; width: max-content;
  animation: scroll 26s linear infinite; font-family: var(--font-display);
  font-weight: 600; font-size: 1.25rem; letter-spacing: 1px;
}
.strip__track span { display: inline-flex; align-items: center; gap: 50px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 86px 0; }
.section__head { text-align: center; max-width: 60ch; margin: 0 auto 56px; }
.section__kicker {
  font-family: var(--font-display); font-weight: 600; color: var(--orange);
  text-transform: uppercase; letter-spacing: 2px; font-size: .95rem; margin-bottom: 14px;
}
.section__title { font-size: clamp(2rem, 4.5vw, 3.4rem); color: var(--green); }
.section__title .accent { color: var(--orange); }
.section__intro { margin-top: 18px; color: var(--ink-soft); font-size: 1.15rem; font-weight: 500; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 38px 30px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card__icon {
  width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center;
  font-size: 2rem; border: 3px solid var(--ink); margin-bottom: 22px;
}
.card:nth-child(1) .card__icon { background: var(--coral-soft); }
.card:nth-child(2) .card__icon { background: var(--mustard-soft); }
.card:nth-child(3) .card__icon { background: var(--green-soft); }
.card:nth-child(4) .card__icon { background: var(--orange-bright); }
.card:nth-child(5) .card__icon { background: var(--coral); }
.card:nth-child(6) .card__icon { background: var(--green); }
.card__title { font-size: 1.5rem; color: var(--green); margin-bottom: 12px; }
.card__text { color: var(--ink-soft); font-weight: 500; }
.card__price { margin-top: 18px; font-family: var(--font-display); font-weight: 700; color: var(--orange); font-size: 1.2rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step { text-align: center; }
.step__num {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--mustard); color: var(--cream); border: 3px solid var(--ink);
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 700; font-size: 1.6rem; box-shadow: var(--shadow);
}
.step:nth-child(2) .step__num { background: var(--coral); }
.step:nth-child(3) .step__num { background: var(--green); }
.step__title { font-size: 1.4rem; color: var(--green); margin-bottom: 10px; }
.step__text { color: var(--ink-soft); font-weight: 500; }

/* ---------- Split / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split__media {
  background: var(--cream-deep); border: 3px solid var(--ink); border-radius: var(--radius);
  aspect-ratio: 4/3; box-shadow: var(--shadow); display: grid; place-items: center;
  overflow: hidden; position: relative;
}
.split__media .big-emoji { font-size: 8rem; }
.split__media--photo { aspect-ratio: 1; padding: 0; }
.split__media--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split__media--tall { aspect-ratio: 4/5; }
.split h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--green); margin-bottom: 20px; }
.split h2 .accent { color: var(--orange); }
.split p { color: var(--ink-soft); font-weight: 500; margin-bottom: 16px; font-size: 1.1rem; }
.checklist { list-style: none; margin-top: 22px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
  font-weight: 600; color: var(--ink);
}
.checklist li::before {
  content: '✓'; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); color: var(--cream); display: grid; place-items: center;
  font-size: .9rem; border: 2px solid var(--ink);
}

/* ---------- Product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card {
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-card__media { aspect-ratio: 1; background: var(--cream-deep); display: grid; place-items: center; font-size: 3.6rem; border-bottom: 3px solid var(--ink); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 20px; }
.product-card__title { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--green); margin-bottom: 6px; }
.product-card__price { font-family: var(--font-display); font-weight: 700; color: var(--orange); font-size: 1.15rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote {
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow); position: relative;
}
.quote__stars { color: var(--mustard); font-size: 1.3rem; margin-bottom: 14px; letter-spacing: 2px; }
.quote__text { font-weight: 500; color: var(--ink); margin-bottom: 20px; font-size: 1.05rem; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; border: 3px solid var(--ink); display: grid; place-items: center; font-size: 1.3rem; background: var(--coral-soft); }
.quote__name { font-family: var(--font-display); font-weight: 600; color: var(--green); }
.quote__role { font-size: .9rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--orange); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  text-align: center; padding: 80px 0; color: var(--cream); position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 18px; }
.cta-band p { font-size: 1.25rem; margin-bottom: 34px; font-weight: 500; opacity: .95; }
.cta-band .btn { background: var(--cream); color: var(--orange); border-color: var(--ink); }
.cta-band .phone { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; margin-top: 26px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green); color: var(--cream); border-top: 3px solid var(--ink); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 44px; }
.footer-brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; margin-bottom: 14px; }
.footer-brand p { opacity: .85; font-weight: 500; max-width: 32ch; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { opacity: .85; font-weight: 500; transition: opacity .2s, padding .2s; }
.footer-col a:hover { opacity: 1; padding-left: 5px; }
.footer-newsletter input {
  width: 100%; padding: 14px 18px; border-radius: 999px; border: 3px solid var(--ink);
  font-family: var(--font-body); font-weight: 500; margin-bottom: 12px; background: var(--cream); color: var(--ink);
}
.footer-bottom {
  border-top: 2px solid rgba(246,234,208,.25); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-weight: 500; opacity: .82; font-size: .92rem;
}
.footer-bottom .socials { display: flex; gap: 12px; }
.footer-bottom .socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--cream);
  display: grid; place-items: center; transition: background .2s, color .2s;
}
.footer-bottom .socials a:hover { background: var(--cream); color: var(--green); }

/* ---------- Page / generic ---------- */
.page-hero { text-align: center; padding: 64px 0 40px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--green); }
.page-hero h1 .accent { color: var(--orange); }
.rte { max-width: 70ch; margin: 0 auto; font-size: 1.08rem; font-weight: 500; color: var(--ink); }
.rte h2 { color: var(--green); margin: 32px 0 14px; font-size: 1.8rem; }
.rte h3 { color: var(--orange); margin: 26px 0 12px; }
.rte p { margin-bottom: 16px; }
.rte ul { margin: 0 0 18px 22px; }
.rte li { margin-bottom: 8px; }
.rte a { color: var(--orange); text-decoration: underline; }

/* ---------- Product page ---------- */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product__media { background: var(--cream-deep); border: 3px solid var(--ink); border-radius: var(--radius); aspect-ratio: 1; display: grid; place-items: center; font-size: 7rem; overflow: hidden; box-shadow: var(--shadow); }
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__title { font-size: clamp(2rem, 4vw, 3rem); color: var(--green); margin-bottom: 14px; }
.product__price { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--orange); margin-bottom: 24px; }
.product__desc { color: var(--ink-soft); font-weight: 500; margin-bottom: 30px; font-size: 1.08rem; }
.product__form label { font-family: var(--font-display); font-weight: 600; display: block; margin-bottom: 8px; }
.product__form select { padding: 13px 18px; border-radius: 999px; border: 3px solid var(--ink); font-family: var(--font-body); font-weight: 600; background: var(--cream); margin-bottom: 24px; min-width: 200px; }

/* ---------- Forms / contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.field { margin-bottom: 20px; }
.field label { font-family: var(--font-display); font-weight: 600; display: block; margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; padding: 14px 18px; border-radius: var(--radius-sm); border: 3px solid var(--ink);
  font-family: var(--font-body); font-weight: 500; background: var(--cream); color: var(--ink); font-size: 1rem;
}
.field textarea { border-radius: 18px; min-height: 140px; resize: vertical; }
.contact-info { background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.contact-info h3 { color: var(--green); margin-bottom: 20px; font-size: 1.6rem; }
.contact-info .row { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; font-weight: 600; }
.contact-info .row .ico { width: 44px; height: 44px; border-radius: 50%; background: var(--mustard-soft); border: 3px solid var(--ink); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }

/* ---------- Collection / faq ---------- */
.faq-item { background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius-sm); margin-bottom: 16px; overflow: hidden; box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 26px; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--green); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { font-size: 1.6rem; color: var(--orange); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a__inner { padding: 0 26px 24px; color: var(--ink-soft); font-weight: 500; }

/* ---------- Misc ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .cards, .quotes, .steps { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .split, .product, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav { position: fixed; inset: 78px 0 auto 0; background: var(--cream); flex-direction: column; padding: 24px; gap: 18px; border-bottom: 3px solid var(--ink); transform: translateY(-120%); transition: transform .3s; }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .cards, .quotes, .steps, .product-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 60px; }
  .daisy { display: none; }
}

/* ============================================================
   WordPress-specific adjustments
   ============================================================ */
.custom-logo, .custom-logo-link img { height: 64px; width: auto; display: block; }
.brand__logo { height: 64px; width: auto; display: block; }
.site-header__inner { height: 88px; }
.header-phone { font-size: 1rem; }
.nav .nav__menu, .nav ul { list-style: none; display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; }
.nav li { margin: 0; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col .menu, .footer-col .menu li { list-style: none; }

/* WP core alignment + media */
.rte img, .wp-block-image img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.wp-caption-text { font-size: .9rem; color: var(--ink-soft); text-align: center; }
.screen-reader-text { position: absolute; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }

/* Pagination */
.pagination, .nav-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.page-numbers {
  font-family: var(--font-display); font-weight: 600; padding: 10px 18px;
  border: 3px solid var(--ink); border-radius: 999px; background: var(--cream);
  color: var(--ink); box-shadow: var(--shadow);
}
.page-numbers.current { background: var(--orange); color: var(--cream); }

/* Comments */
.comment-list { margin: 0; }
.comment-list .comment { background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius-sm); padding: 18px 22px; margin-bottom: 16px; }
.comment-respond textarea, .comment-respond input[type=text], .comment-respond input[type=email], .comment-respond input[type=url] {
  width: 100%; padding: 12px 16px; border: 3px solid var(--ink); border-radius: 12px;
  font-family: var(--font-body); font-weight: 500; background: var(--cream); margin-bottom: 14px;
}
.comment-respond .submit, #submit {
  font-family: var(--font-display); font-weight: 600; padding: 14px 30px; border-radius: 999px;
  border: 3px solid var(--ink); cursor: pointer; background: var(--orange); color: var(--cream); box-shadow: var(--shadow);
}

@media (max-width: 680px) {
  .nav .nav__menu, .nav ul { flex-direction: column; align-items: flex-start; gap: 18px; }
  .header-phone { display: none; }
}

/* ---------- Pricing page ---------- */
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.pricing { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 760px; margin: 0 auto; }
.price-card {
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.price-card__head {
  display: flex; align-items: center; gap: 18px; padding: 28px 30px;
  border-bottom: 3px solid var(--ink); background: var(--cream-deep);
}
.price-card__icon {
  width: 62px; height: 62px; border-radius: 50%; background: var(--mustard-soft);
  border: 3px solid var(--ink); display: grid; place-items: center; font-size: 1.8rem; flex-shrink: 0;
}
.price-card:nth-child(2) .price-card__icon { background: var(--green-soft); }
.price-card:nth-child(3) .price-card__icon { background: var(--coral-soft); }
.price-card__heading { flex: 1; }
.price-card__title { font-size: 1.6rem; color: var(--green); margin: 0; }
.price-card__sub { color: var(--ink-soft); font-weight: 600; font-size: .98rem; }
.price-card__price { text-align: right; flex-shrink: 0; }
.price-card__amount { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--orange); display: block; line-height: 1; }
.price-card__unit { color: var(--ink-soft); font-weight: 600; font-size: .92rem; }
.rate-list { list-style: none; margin: 0; padding: 8px 30px 24px; }
.rate-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 14px 0; border-bottom: 2px dashed rgba(74,46,22,.18);
}
.rate-list li:last-child { border-bottom: 0; }
.rate-list__label { font-weight: 600; color: var(--ink); }
.rate-list__value { font-family: var(--font-display); font-weight: 700; color: var(--green); text-align: right; flex-shrink: 0; }

@media (max-width: 980px) { .cards--3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .price-card__head { flex-wrap: wrap; }
  .price-card__price { text-align: left; width: 100%; }
}

/* ---------- All-reviews masonry ---------- */
.quotes--masonry { display: block; columns: 3; column-gap: 28px; }
.quotes--masonry .quote { break-inside: avoid; margin-bottom: 28px; display: inline-block; width: 100%; }
@media (max-width: 980px) { .quotes--masonry { columns: 2; } }
@media (max-width: 640px) { .quotes--masonry { columns: 1; } }

/* ---------- About page points ---------- */
.about-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.about-points li {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--cream); border: 3px solid var(--ink); border-radius: var(--radius-sm);
  padding: 18px 22px; box-shadow: var(--shadow); font-weight: 600; color: var(--ink);
}
.about-points__emoji { font-size: 1.5rem; flex-shrink: 0; line-height: 1.2; }

/* ---------- Form plugin styling (WPForms / Fluent Forms / CF7) ---------- */
/* Make third-party form fields match the PetsFriend look. */
.wpforms-field input[type=text],
.wpforms-field input[type=email],
.wpforms-field input[type=tel],
.wpforms-field input[type=url],
.wpforms-field textarea,
.wpforms-field select,
.frm-fluent-form input[type=text],
.frm-fluent-form input[type=email],
.frm-fluent-form input[type=tel],
.frm-fluent-form input[type=url],
.frm-fluent-form textarea,
.frm-fluent-form select,
.fluentform input[type=text],
.fluentform input[type=email],
.fluentform input[type=tel],
.fluentform input[type=url],
.fluentform textarea,
.fluentform select,
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=url],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%; padding: 14px 18px; border: 3px solid var(--ink); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 500; background: var(--cream); color: var(--ink);
  font-size: 1rem; margin-bottom: 6px;
}
.wpforms-field textarea, .fluentform textarea, .frm-fluent-form textarea, .wpcf7 textarea { border-radius: 18px; min-height: 140px; }

.wpforms-field-label, .fluentform label, .frm-fluent-form label, .wpcf7-form label {
  font-family: var(--font-display); font-weight: 600; color: var(--ink); margin-bottom: 8px; display: block;
}

/* Submit buttons */
.wpforms-submit,
.fluentform .ff-btn-submit,
.frm-fluent-form button[type=submit],
.wpcf7-submit {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: .3px;
  padding: 16px 34px; border-radius: 999px; border: 3px solid var(--ink); cursor: pointer;
  background: var(--orange); color: var(--cream); box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wpforms-submit:hover,
.fluentform .ff-btn-submit:hover,
.frm-fluent-form button[type=submit]:hover,
.wpcf7-submit:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* Confirmation / success messages */
.wpforms-confirmation-container-full,
.fluentform .ff-message-success,
.frm-fluent-form .ff-message-success,
.wpcf7-response-output {
  background: var(--green); color: var(--cream); border: 3px solid var(--ink) !important;
  border-radius: var(--radius-sm); padding: 18px 20px; font-weight: 600; font-family: var(--font-body);
}
