:root {
  --mcoon-ivory: #f7f1ed;
  --mcoon-cream: #fbf8f5;
  --mcoon-white: #fff;
  --mcoon-forest: #012f22;
  --mcoon-forest-2: #064b37;
  --mcoon-green: #53b154;
  --mcoon-green-hover: #459c48;
  --mcoon-sage: #a8b69a;
  --mcoon-pale-green: #eaf4e8;
  --mcoon-charcoal: #2a2d2b;
  --mcoon-muted: #6d746f;
  --mcoon-border: #e5ded8;
  --mcoon-gold: #b79b58;
  --mcoon-error: #b94343;
  --mcoon-font-display: "Cormorant Garamond", Georgia, serif;
  --mcoon-font-body: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mcoon-container: 1320px;
  --mcoon-shadow: 0 8px 30px rgba(1,47,34,.06);
  --mcoon-shadow-hover: 0 14px 40px rgba(1,47,34,.11);
  --mcoon-radius-sm: 6px;
  --mcoon-radius: 10px;
  --mcoon-radius-lg: 16px;
  --mcoon-transition: 220ms cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--mcoon-ivory);
  color: var(--mcoon-charcoal);
  font-family: var(--mcoon-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.nav-open, body.filter-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--mcoon-forest); text-decoration: none; transition: color var(--mcoon-transition), opacity var(--mcoon-transition); }
a:hover { color: var(--mcoon-green); }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button { border: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0 0 .5em; color: var(--mcoon-forest); font-family: var(--mcoon-font-display); font-weight: 500; line-height: 1.06; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
select, input[type="text"], input[type="email"], input[type="number"], input[type="tel"], textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--mcoon-border);
  border-radius: 8px;
  background: var(--mcoon-white);
  color: var(--mcoon-charcoal);
  padding: 0 14px;
  outline: none;
  transition: border-color var(--mcoon-transition), box-shadow var(--mcoon-transition);
}
textarea { min-height: 140px; padding-top: 12px; resize: vertical; }
select:focus, input:focus, textarea:focus { border-color: var(--mcoon-green); box-shadow: 0 0 0 3px rgba(83,177,84,.15); }
::selection { background: var(--mcoon-green); color: #fff; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.screen-reader-text:focus, .skip-link:focus {
  clip: auto !important; width: auto; height: auto; margin: 10px; padding: 12px 18px;
  background: var(--mcoon-white); color: var(--mcoon-forest); z-index: 99999; border-radius: 8px;
}
.mcoon-container { width: min(calc(100% - 64px), var(--mcoon-container)); margin-inline: auto; }
.narrow-content { max-width: 850px; }
.section-space { padding-block: 72px; }
.mcoon-icon { width: 24px; height: 24px; flex: 0 0 auto; }
.eyebrow { display: flex; align-items: center; gap: 14px; color: var(--mcoon-forest-2); font-size: 16px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow span { display: block; width: 40px; height: 1px; background: var(--mcoon-green); }
.stars { color: var(--mcoon-green); letter-spacing: .08em; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 48px; padding: 0 24px; border: 1px solid transparent; border-radius: 8px;
  font-size: 16px; font-weight: 700; letter-spacing: .035em; text-transform: uppercase;
  transition: transform var(--mcoon-transition), background var(--mcoon-transition), border-color var(--mcoon-transition), box-shadow var(--mcoon-transition), color var(--mcoon-transition);
}
.button .mcoon-icon { width: 18px; height: 18px; }
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--mcoon-green); color: #fff; box-shadow: 0 8px 18px rgba(83,177,84,.17); }
.button--primary:hover { background: var(--mcoon-green-hover); color: #fff; box-shadow: 0 10px 24px rgba(83,177,84,.25); }
.button--secondary { border-color: rgba(1,47,34,.35); background: transparent; color: var(--mcoon-forest); }
.button--secondary:hover { border-color: var(--mcoon-forest); background: rgba(1,47,34,.04); color: var(--mcoon-forest); }
.button--compact { min-height: 44px; padding-inline: 20px; }
.button--wide { width: 100%; }
.button-link { display: inline-flex; align-items: center; gap: 12px; color: var(--mcoon-charcoal); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.button-link .mcoon-icon { color: var(--mcoon-forest); width: 34px; height: 34px; }
.button-link:hover { color: var(--mcoon-green); }
.icon-button {
  display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(1,47,34,.18); border-radius: 50%; background: transparent; color: var(--mcoon-forest);
}
.icon-button:hover { border-color: var(--mcoon-green); color: var(--mcoon-green); }

/* Header */
.site-header { position: relative; z-index: 60; background: var(--mcoon-ivory); }
.site-header.is-sticky .main-header { position: fixed; top: 0; left: 0; right: 0; box-shadow: 0 8px 25px rgba(1,47,34,.08); animation: headerIn .22s ease-out; }
@keyframes headerIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.utility-bar { min-height: 32px; background: var(--mcoon-forest); color: rgba(255,255,255,.82); font-size: 16px; }
.utility-bar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 32px; }
.utility-trust, .utility-social { display: flex; align-items: center; gap: 24px; }
.utility-trust span { display: inline-flex; align-items: center; gap: 7px; }
.utility-trust .mcoon-icon { width: 14px; height: 14px; color: var(--mcoon-green); }
.utility-social a { color: #fff; font-weight: 700; }
.main-header { background: rgba(247,241,237,.97); border-bottom: 1px solid rgba(229,222,216,.75); backdrop-filter: blur(14px); }
.main-header__inner { display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 30px; min-height: 84px; }
.brand-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--mcoon-forest); width: max-content; }
.brand-logo__mark { width: 48px; height: 60px; color: var(--mcoon-forest); overflow: hidden; }
.brand-logo__mark svg { width: 100%; height: 100%; }
.brand-logo__text { display: flex; flex-direction: column; line-height: 1; }
.brand-logo__text strong { font-family: var(--mcoon-font-display); font-size: 27px; font-weight: 600; letter-spacing: -.02em; }
.brand-logo__text small { margin-top: 6px; color: #557467; font-size: 16px; letter-spacing: .08em; }
.primary-navigation { justify-self: center; }
.primary-menu { display: flex; align-items: center; gap: clamp(20px,2.5vw,38px); }
.primary-menu a { position: relative; color: var(--mcoon-charcoal); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.primary-menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -11px; height: 2px; background: var(--mcoon-green); transition: right var(--mcoon-transition); }
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after, .primary-menu .current_page_item > a::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; color: var(--mcoon-forest); }

/* Hero */
.hero-section { background: var(--mcoon-cream); border-bottom: 1px solid var(--mcoon-border); }
.hero-grid { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 520px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 62px 55px 62px 0; position: relative; z-index: 2; }
.hero-copy h1 { max-width: 540px; margin: 18px 0 8px; font-size: clamp(58px,5.7vw,82px); line-height: .86; letter-spacing: -.045em; color: var(--mcoon-charcoal); text-transform: uppercase; }
.hero-copy h1 br:nth-of-type(2) + * { color: var(--mcoon-forest); }
.hero-subtitle { margin-top: 12px; font-family: var(--mcoon-font-display); font-size: 24px; color: var(--mcoon-charcoal); }
.hero-description { max-width: 470px; color: var(--mcoon-muted); font-size: 16px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 20px; }
.hero-image { position: relative; min-height: 520px; overflow: hidden; }
.hero-image::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 22%; z-index: 1; background: linear-gradient(90deg, var(--mcoon-cream), transparent); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Trust row */
.trust-row { background: rgba(255,255,255,.46); border-bottom: 1px solid var(--mcoon-border); }
.trust-row__grid { display: grid; grid-template-columns: repeat(5,1fr); padding-block: 25px; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 0 18px; border-right: 1px solid var(--mcoon-border); }
.trust-item:last-child { border: 0; }
.trust-item > .mcoon-icon { width: 34px; height: 34px; color: var(--mcoon-forest-2); }
.trust-item span { display: flex; flex-direction: column; min-width: 0; }
.trust-item strong { color: var(--mcoon-charcoal); font-size: 16px; line-height: 1.2; text-transform: uppercase; }
.trust-item small { margin-top: 4px; color: var(--mcoon-muted); font-size: 16px; white-space: nowrap; }

/* Marketplace */
.marketplace-section { background: var(--mcoon-ivory); }
.marketplace-layout { display: grid; grid-template-columns: 300px 1fr; align-items: start; gap: 28px; }
.filter-panel { position: sticky; top: 110px; padding: 26px 20px 20px; border-radius: 10px; background: linear-gradient(165deg,#063a2b,var(--mcoon-forest)); color: #fff; box-shadow: 0 18px 42px rgba(1,47,34,.15); }
.filter-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.filter-heading h2 { max-width: 205px; color: #fff; font-family: var(--mcoon-font-body); font-size: 17px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.filter-heading > .mcoon-icon { color: var(--mcoon-green); width: 34px; height: 34px; }
.filter-panel form { display: grid; gap: 16px; margin-top: 18px; }
.filter-panel label, .filter-panel legend, .price-field > span { display: grid; gap: 7px; color: rgba(255,255,255,.85); font-size: 16px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.filter-panel select, .filter-panel input[type="text"], .filter-panel input[type="number"] { min-height: 42px; border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.035); color: #fff; font-size: 16px; }
.filter-panel select option { color: var(--mcoon-charcoal); }
.colour-swatches { display: flex; gap: 9px; align-items: center; }
.colour-swatches .colour-swatch__dot { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: var(--swatch); box-shadow: 0 0 0 2px rgba(0,0,0,.08); }
.price-field { display: grid; gap: 6px; }
.price-field input[type="range"] { width: 100%; accent-color: var(--mcoon-green); }
.price-field div { display: flex; justify-content: space-between; color: rgba(255,255,255,.84); }
.filter-panel fieldset { margin: 0; padding: 0; border: 0; }
.check-option { display: inline-flex !important; grid-auto-flow: column; align-items: center; margin-right: 16px; font-size: 16px !important; text-transform: none !important; }
.check-option input { position: absolute; opacity: 0; }
.check-option span { display: inline-grid; place-items: center; width: 16px; height: 16px; border: 1px solid rgba(255,255,255,.45); border-radius: 3px; }
.check-option input:checked + span { border-color: var(--mcoon-green); background: var(--mcoon-green); }
.check-option input:checked + span::after { content: "✓"; font-size: 16px; color: #fff; }
.more-filters { display: flex; justify-content: center; align-items: center; gap: 12px; padding: 12px; background: transparent; color: rgba(255,255,255,.82); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.filter-close { display: none; background: transparent; color: #fff; }
.listing-area { min-width: 0; }
.listing-toolbar { display: flex; justify-content: space-between; align-items: center; min-height: 44px; margin-bottom: 14px; }
.listing-toolbar > div { display: flex; align-items: center; gap: 10px; color: var(--mcoon-forest); font-size: 16px; text-transform: uppercase; }
.listing-toolbar > div .mcoon-icon { width: 20px; height: 20px; color: var(--mcoon-green); }
.listing-toolbar label { display: flex; align-items: center; gap: 10px; color: var(--mcoon-muted); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.listing-toolbar select { min-height: 38px; width: auto; min-width: 150px; font-size: 16px; }
.kitten-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.kitten-card { overflow: hidden; border: 1px solid var(--mcoon-border); border-radius: 10px; background: rgba(255,255,255,.72); box-shadow: 0 3px 18px rgba(1,47,34,.025); transition: transform var(--mcoon-transition), box-shadow var(--mcoon-transition), border-color var(--mcoon-transition); }
.kitten-card:hover { transform: translateY(-3px); border-color: rgba(83,177,84,.45); box-shadow: var(--mcoon-shadow-hover); }
.kitten-card__media { position: relative; aspect-ratio: 16/8.6; overflow: hidden; background: #ddd; }
.kitten-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.kitten-card:hover .kitten-card__media img { transform: scale(1.025); }
.status-chip { position: absolute; top: 10px; left: 10px; display: inline-flex; align-items: center; min-height: 23px; padding: 0 9px; border-radius: 4px; color: #fff; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.status-chip.is-available { background: var(--mcoon-green); }
.status-chip.is-reserved { background: var(--mcoon-gold); }
.favourite-button { position: absolute; top: 7px; right: 7px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(1,47,34,.36); color: #fff; backdrop-filter: blur(8px); }
.favourite-button .mcoon-icon { width: 18px; height: 18px; }
.favourite-button[aria-pressed="true"] { background: var(--mcoon-green); }
.favourite-button[aria-pressed="true"] .mcoon-icon { fill: currentColor; }
.kitten-card__body { padding: 14px 14px 0; }
.kitten-card h3 { margin: 0; font-family: var(--mcoon-font-body); font-size: 18px; font-weight: 700; line-height: 1.2; }
.kitten-card__colour { margin: 3px 0 8px; color: var(--mcoon-muted); font-size: 16px; }
.kitten-meta { display: flex; flex-wrap: wrap; gap: 6px 12px; color: var(--mcoon-muted); font-size: 16px; }
.kitten-meta li { display: inline-flex; align-items: center; gap: 4px; }
.kitten-meta .mcoon-icon { width: 12px; height: 12px; }
.kitten-price { margin: 8px 0 7px; color: var(--mcoon-forest); font-size: 16px; font-weight: 700; }
.kitten-badges { display: flex; flex-wrap: wrap; gap: 5px; }
.kitten-badges span { padding: 2px 7px; border-radius: 10px; background: #ece6df; color: #4d514e; font-size: 16px; font-weight: 700; text-transform: uppercase; }
.kitten-badges span:first-child { background: var(--mcoon-pale-green); color: var(--mcoon-forest); }
.card-action { display: flex; justify-content: center; align-items: center; gap: 10px; min-height: 43px; margin-top: 10px; border-top: 1px solid var(--mcoon-border); color: var(--mcoon-charcoal); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.card-action .mcoon-icon { width: 16px; height: 16px; transition: transform var(--mcoon-transition); }
.kitten-card:hover .card-action .mcoon-icon { transform: translateX(4px); }
.pagination, .nav-links { display: flex; justify-content: center; align-items: center; gap: 7px; margin-top: 24px; }
.pagination a, .pagination button, .pagination span, .nav-links .page-numbers { display: grid; place-items: center; min-width: 31px; height: 31px; border-radius: 5px; background: transparent; color: var(--mcoon-charcoal); font-size: 16px; }
.pagination .is-current, .nav-links .current { background: var(--mcoon-green); color: #fff; }

/* Benefits */
.benefits-strip { background: linear-gradient(95deg,#003e2d,var(--mcoon-forest)); color: #fff; }
.benefits-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.benefit-item { display: flex; align-items: center; gap: 20px; min-height: 124px; padding: 24px 30px; border-right: 1px solid rgba(255,255,255,.15); }
.benefit-item:last-child { border: 0; }
.benefit-item > .mcoon-icon { width: 48px; height: 48px; color: #b7d69e; }
.benefit-item h3 { margin: 0 0 5px; color: #fff; font-family: var(--mcoon-font-body); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.benefit-item p { margin: 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.5; }

/* Breeder CTA */
.breeder-cta { background: var(--mcoon-cream); }
.breeder-cta__grid { display: grid; grid-template-columns: 1fr 1.15fr; min-height: 360px; }
.breeder-cta__copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 54px 70px 54px 90px; overflow: hidden; }
.breeder-cta__copy h2 { max-width: 520px; font-size: clamp(38px,3.4vw,52px); }
.breeder-cta__copy > p:not(.eyebrow) { max-width: 520px; color: var(--mcoon-muted); font-size: 16px; }
.brand-watermark { position: absolute; left: -8px; bottom: 25px; width: 105px; opacity: .07; filter: grayscale(1); }
.check-list { display: grid; gap: 5px; margin: 4px 0 22px; color: var(--mcoon-charcoal); font-size: 16px; }
.check-list li { display: flex; align-items: center; gap: 8px; }
.check-list .mcoon-icon { width: 15px; height: 15px; color: var(--mcoon-green); }
.breeder-cta__image { overflow: hidden; }
.breeder-cta__image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; object-position: center; }

/* Testimonials */
.testimonials { background: var(--mcoon-ivory); }
.section-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.section-heading--center { justify-content: center; }
.section-heading h2 { margin: 0; font-family: var(--mcoon-font-body); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.section-heading span { width: 55px; height: 1px; background: var(--mcoon-green); }
.testimonial-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.testimonial-card { margin: 0; padding: 20px; border: 1px solid var(--mcoon-border); border-radius: 10px; background: rgba(255,255,255,.7); }
.testimonial-card .stars { font-size: 16px; }
.testimonial-card > p { min-height: 76px; margin: 7px 0 14px; color: var(--mcoon-charcoal); font-size: 16px; line-height: 1.5; }
.testimonial-card footer { display: flex; align-items: center; gap: 9px; }
.avatar-placeholder { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--mcoon-pale-green); color: var(--mcoon-forest); font-weight: 700; }
.testimonial-card footer span:last-child { display: flex; flex-direction: column; }
.testimonial-card footer strong { font-size: 16px; }
.testimonial-card footer small { color: var(--mcoon-muted); font-size: 16px; }

/* Footer */
.site-footer { background: var(--mcoon-forest); color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4,.9fr) .8fr; gap: 30px; padding-block: 46px 32px; }
.footer-brand > p { max-width: 260px; margin-top: 15px; font-size: 16px; }
.footer-social { display: flex; gap: 14px; margin: 16px 0; }
.footer-social a { color: #fff; }
.footer-column h3 { margin: 5px 0 14px; color: var(--mcoon-green); font-family: var(--mcoon-font-body); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.footer-column li { margin-bottom: 7px; }
.footer-column a, .footer-column p { color: rgba(255,255,255,.72); font-size: 16px; }
.footer-column a:hover { color: #fff; }
.footer-contact p { margin: 0 0 8px; }
.guarantee-card { display: flex; flex-direction: column; justify-content: center; align-items: center; min-height: 190px; padding: 20px; background: linear-gradient(145deg,#4b9e4d,#297344); color: #fff; text-align: center; }
.guarantee-card > span { font-size: 22px; }
.guarantee-card strong { font-family: var(--mcoon-font-display); font-size: 44px; line-height: 1; }
.guarantee-card b { max-width: 120px; font-size: 16px; font-weight: 500; text-transform: uppercase; line-height: 1.25; }
.guarantee-card .mcoon-icon { margin-top: 12px; width: 26px; height: 26px; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 15px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.55); font-size: 16px; }
.footer-bottom p { margin: 0; }

/* Archive */
.archive-main { min-height: 70vh; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 0 0 25px; color: var(--mcoon-muted); font-size: 16px; }
.breadcrumbs a { color: var(--mcoon-forest); }
.archive-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 35px; }
.archive-hero h1 { font-size: clamp(52px,6vw,76px); }
.archive-hero p:not(.eyebrow) { max-width: 620px; color: var(--mcoon-muted); }
.filter-drawer-trigger { display: none; }
.archive-layout .kitten-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.empty-state { display: grid; justify-items: center; padding: 70px 30px; border: 1px dashed var(--mcoon-border); border-radius: 16px; text-align: center; }
.empty-state > .mcoon-icon { width: 58px; height: 58px; color: var(--mcoon-green); }
.empty-state h1, .empty-state h2 { font-size: 44px; }
.not-found { display: grid; min-height: 70vh; align-items: center; }
.sort-form { margin: 0; }

/* Single kitten */
.kitten-detail-page { padding-top: 18px; }
.kitten-product { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: stretch; }
.kitten-gallery { min-width: 0; }
.gallery-main { position: relative; overflow: hidden; aspect-ratio: 1.55; border-radius: 12px; background: #ddd; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-zoom { position: absolute; top: 13px; right: 13px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(1,47,34,.58); color: #fff; backdrop-filter: blur(8px); }
.gallery-zoom .mcoon-icon { width: 20px; height: 20px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 9px; margin-top: 9px; }
.gallery-thumb { overflow: hidden; aspect-ratio: 1.35; padding: 0; border: 2px solid transparent; border-radius: 8px; background: #ddd; }
.gallery-thumb.is-active { border-color: var(--mcoon-green); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.kitten-summary { padding: 28px; border: 1px solid var(--mcoon-border); border-radius: 12px; background: rgba(255,255,255,.52); }
.summary-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.summary-heading h1 { margin: 0; font-size: clamp(58px,6vw,78px); line-height: .85; }
.summary-heading p { margin: 8px 0 0; color: var(--mcoon-charcoal); font-weight: 600; }
.status-pill { display: inline-flex; align-items: center; gap: 9px; margin-top: 34px; padding: 6px 12px; border-radius: 18px; background: var(--mcoon-pale-green); color: var(--mcoon-forest); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.status-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--mcoon-green); }
.detail-price { margin: 20px 0 14px; color: var(--mcoon-forest); font-size: 28px; font-weight: 700; }
.detail-quick-facts { display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--mcoon-border); }
.detail-quick-facts li { display: flex; justify-content: center; align-items: center; gap: 8px; min-height: 56px; border-right: 1px solid var(--mcoon-border); font-size: 16px; font-weight: 600; }
.detail-quick-facts li:last-child { border: 0; }
.detail-quick-facts .mcoon-icon { width: 20px; height: 20px; color: var(--mcoon-forest); }
.certification-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin: 18px 0; }
.certification-grid span { display: flex; align-items: center; justify-content: center; gap: 7px; min-height: 54px; padding: 7px; border: 1px solid var(--mcoon-border); border-radius: 8px; color: var(--mcoon-charcoal); font-size: 16px; font-weight: 600; line-height: 1.2; text-align: left; }
.certification-grid .mcoon-icon { width: 22px; height: 22px; color: var(--mcoon-forest-2); }
.kitten-description { color: var(--mcoon-charcoal); font-size: 16px; line-height: 1.65; }
.detail-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 17px; }
.save-listing { display: inline-flex; align-items: center; gap: 9px; margin-top: 13px; padding: 0; background: transparent; color: var(--mcoon-forest); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.save-listing .mcoon-icon { width: 20px; height: 20px; }
.save-listing[aria-pressed="true"] .mcoon-icon { fill: var(--mcoon-green); color: var(--mcoon-green); }
.detail-grid { display: grid; gap: 18px; margin-top: 20px; }
.two-up { grid-template-columns: .84fr 1.16fr; }
.detail-grid--health { grid-template-columns: .8fr 1.2fr; }
.detail-card { padding: 24px; border: 1px solid var(--mcoon-border); border-radius: 12px; background: rgba(255,255,255,.48); }
.detail-card > h2 { margin: 0 0 18px; font-family: var(--mcoon-font-body); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.breeder-profile { display: flex; gap: 18px; align-items: center; }
.breeder-profile > img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.breeder-profile h3 { display: flex; align-items: center; gap: 8px; margin: 0 0 7px; font-family: var(--mcoon-font-body); font-size: 17px; font-weight: 700; }
.breeder-profile h3 span { display: grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--mcoon-green); color: #fff; font-size: 16px; }
.breeder-profile p { display: flex; align-items: center; gap: 6px; margin: 5px 0; font-size: 16px; }
.breeder-profile .mcoon-icon { width: 15px; height: 15px; }
.breeder-card > p { margin: 14px 0; color: var(--mcoon-muted); font-size: 16px; }
.breeder-credentials { display: flex; gap: 22px; border-top: 1px solid var(--mcoon-border); padding-top: 14px; }
.breeder-credentials li { display: flex; align-items: center; gap: 7px; font-size: 16px; font-weight: 600; }
.breeder-credentials .mcoon-icon { width: 19px; height: 19px; color: var(--mcoon-forest-2); }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.spec-grid dl { margin: 0; }
.spec-grid dl div { display: grid; grid-template-columns: 1fr 1.3fr; gap: 14px; padding: 9px 0; border-top: 1px solid var(--mcoon-border); font-size: 16px; }
.spec-grid dt { font-weight: 700; }
.spec-grid dd { margin: 0; color: var(--mcoon-muted); }
.icon-feature-grid { display: grid; gap: 18px; }
.icon-feature-grid--three { grid-template-columns: repeat(3,1fr); }
.icon-feature-grid > div { display: flex; align-items: center; gap: 10px; }
.icon-feature-grid > div > .mcoon-icon { width: 29px; height: 29px; color: var(--mcoon-forest-2); }
.icon-feature-grid span { display: flex; flex-direction: column; }
.icon-feature-grid strong { font-size: 16px; }
.icon-feature-grid small { color: var(--mcoon-muted); font-size: 16px; }
.personality-grid { grid-template-columns: repeat(6,1fr); }
.personality-grid > div { flex-direction: column; text-align: center; }
.personality-grid > div > .mcoon-icon { width: 34px; height: 34px; }
.personality-grid small { max-width: 100px; margin-top: 4px; line-height: 1.35; }
.lineage-section { margin-top: 20px; }
.lineage-grid { display: grid; grid-template-columns: 1fr .7fr 1fr; align-items: center; gap: 34px; }
.lineage-grid > article { display: grid; grid-template-columns: 130px 1fr; border: 1px solid var(--mcoon-border); border-radius: 9px; overflow: hidden; }
.lineage-grid article img { width: 100%; height: 100%; min-height: 95px; object-fit: cover; }
.lineage-grid article div { padding: 12px; }
.lineage-grid h3 { margin: 2px 0; font-family: var(--mcoon-font-body); font-size: 16px; font-weight: 700; }
.lineage-grid article p, .lineage-grid article small, .lineage-grid article span { margin: 0; color: var(--mcoon-muted); font-size: 16px; }
.lineage-grid article span { display: flex; align-items: center; gap: 5px; margin-top: 5px; color: var(--mcoon-forest); }
.lineage-grid article span .mcoon-icon { width: 14px; height: 14px; }
.lineage-grid > p { margin: 0; color: var(--mcoon-charcoal); font-family: var(--mcoon-font-display); font-size: 19px; line-height: 1.35; text-align: center; }
.why-love { margin-top: 20px; }
.why-love-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.why-love-grid article { display: flex; gap: 10px; padding: 15px; border: 1px solid var(--mcoon-border); border-radius: 9px; }
.why-love-grid article > .mcoon-icon { width: 27px; height: 27px; color: var(--mcoon-forest-2); }
.why-love-grid h3 { margin: 0 0 4px; font-family: var(--mcoon-font-body); font-size: 16px; font-weight: 700; line-height: 1.35; }
.why-love-grid p { margin: 0; color: var(--mcoon-muted); font-size: 16px; line-height: 1.45; }
.similar-kittens { padding-block: 34px 38px; }
.section-heading-inline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.section-heading-inline h2 { margin: 0; font-family: var(--mcoon-font-body); font-size: 16px; font-weight: 700; text-transform: uppercase; }
.section-heading-inline a { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; text-transform: uppercase; }
.section-heading-inline .mcoon-icon { width: 17px; height: 17px; }
.kitten-grid--three { grid-template-columns: repeat(3,1fr); }
.detail-trust-strip { margin: 0 18px 4px; border-radius: 12px; background: var(--mcoon-forest); color: #fff; }
.detail-trust-strip .mcoon-container { display: grid; grid-template-columns: 1.4fr 1fr repeat(3,.9fr); align-items: center; gap: 20px; min-height: 112px; }
.detail-trust-strip h2 { margin: 0; color: #fff; font-family: var(--mcoon-font-body); font-size: 16px; line-height: 1.4; }
.detail-trust-strip > div > div { display: flex; align-items: center; gap: 10px; }
.detail-trust-strip > div > div:nth-child(2) { flex-direction: column; align-items: flex-start; gap: 0; }
.detail-trust-strip .mcoon-icon { width: 31px; height: 31px; color: #b7d69e; }
.detail-trust-strip span:not(.stars) { display: flex; flex-direction: column; }
.detail-trust-strip strong { font-size: 16px; }
.detail-trust-strip small { color: rgba(255,255,255,.65); font-size: 16px; }
.mobile-detail-actions { display: none; }

/* Content */
.content-main { min-height: 70vh; }
.content-card, .page-content { padding: 34px; border: 1px solid var(--mcoon-border); border-radius: 12px; background: rgba(255,255,255,.55); box-shadow: var(--mcoon-shadow); }
.content-card { margin-bottom: 18px; }
.content-card h2 { font-size: 36px; }
.page-content h1 { font-size: clamp(52px,7vw,76px); }
.page-content > * + * { margin-top: 1.2em; }
.page-content ul { padding-left: 22px; list-style: disc; }
.post-hero-image { width: 100%; border-radius: 12px; }
.content-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* Overlay */
.gallery-lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 40px; background: rgba(1,24,18,.92); opacity: 0; pointer-events: none; transition: opacity var(--mcoon-transition); }
.gallery-lightbox.is-open { opacity: 1; pointer-events: auto; }
.gallery-lightbox img { max-height: 88vh; border-radius: 10px; }
.gallery-lightbox button { position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; }

/* Responsive */
@media (max-width: 1180px) {
  .mcoon-container { width: min(calc(100% - 40px), var(--mcoon-container)); }
  .main-header__inner { grid-template-columns: 230px 1fr auto; gap: 18px; }
  .primary-menu { gap: 18px; }
  .primary-menu a { font-size: 16px; }
  .header-actions .button { display: none; }
  .hero-grid { grid-template-columns: .9fr 1.1fr; }
  .hero-copy h1 { font-size: 64px; }
  .marketplace-layout { grid-template-columns: 270px 1fr; }
  .kitten-grid { gap: 14px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3,1fr); }
  .footer-contact { grid-column: 2; }
  .guarantee-card { grid-column: 4; grid-row: 1 / span 2; }
  .detail-trust-strip .mcoon-container { grid-template-columns: 1.3fr 1fr repeat(3,1fr); }
}

@media (max-width: 980px) {
  .utility-trust span:nth-child(n+3) { display: none; }
  .main-header__inner { grid-template-columns: 1fr auto auto; min-height: 76px; }
  .nav-toggle { display: grid; place-items: center; grid-column: 2; }
  .header-actions { grid-column: 3; }
  .primary-navigation { position: fixed; inset: 108px 0 auto; padding: 22px; background: var(--mcoon-ivory); border-bottom: 1px solid var(--mcoon-border); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform var(--mcoon-transition), opacity var(--mcoon-transition); }
  .nav-open .primary-navigation { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--mcoon-border); font-size: 16px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 60px 0 44px; }
  .hero-copy h1 { max-width: 700px; font-size: clamp(58px,10vw,78px); }
  .hero-image { min-height: 430px; margin-inline: -20px; }
  .hero-image::before { display: none; }
  .trust-row__grid { grid-template-columns: repeat(3,1fr); row-gap: 22px; }
  .trust-item:nth-child(3) { border-right: 0; }
  .trust-item:nth-child(n+4) { border-top: 1px solid var(--mcoon-border); padding-top: 18px; }
  .marketplace-layout { grid-template-columns: 1fr; }
  .marketplace-section .filter-panel { position: relative; top: 0; }
  .filter-panel form { grid-template-columns: repeat(2,1fr); }
  .filter-panel .button--wide, .filter-panel .more-filters, .filter-panel fieldset { grid-column: 1 / -1; }
  .benefits-strip__grid { grid-template-columns: repeat(2,1fr); }
  .benefit-item:nth-child(2) { border-right: 0; }
  .benefit-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.15); }
  .breeder-cta__grid { grid-template-columns: 1fr; }
  .breeder-cta__copy { padding: 60px 70px; }
  .breeder-cta__image img { min-height: 430px; }
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .footer-brand { grid-column: span 3; }
  .guarantee-card { grid-column: 3; grid-row: 2 / span 2; }
  .archive-layout .filter-panel { position: fixed; inset: 0 auto 0 0; z-index: 100; width: min(360px,90vw); border-radius: 0; transform: translateX(-110%); overflow-y: auto; transition: transform var(--mcoon-transition); }
  .filter-open .archive-layout .filter-panel { transform: translateX(0); }
  .filter-close { display: grid; place-items: center; }
  .filter-drawer-trigger { display: inline-flex; }
  .archive-layout .filter-panel form { grid-template-columns: 1fr; }
  .archive-layout .filter-panel .button--wide { grid-column: auto; }
  .archive-layout .kitten-grid { grid-template-columns: repeat(2,1fr); }
  .kitten-product { grid-template-columns: 1fr; }
  .kitten-summary { margin-top: 4px; }
  .two-up, .detail-grid--health { grid-template-columns: 1fr; }
  .personality-grid { grid-template-columns: repeat(3,1fr); }
  .why-love-grid { grid-template-columns: repeat(3,1fr); }
  .detail-trust-strip .mcoon-container { grid-template-columns: repeat(2,1fr); padding-block: 24px; }
  .detail-trust-strip .mcoon-container > div:first-child { grid-column: span 2; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .mcoon-container { width: min(calc(100% - 28px), var(--mcoon-container)); }
  .section-space { padding-block: 52px; }
  .utility-bar { display: none; }
  .primary-navigation { top: 76px; }
  .brand-logo__mark { width: 40px; height: 50px; }
  .brand-logo__text strong { font-size: 23px; }
  .brand-logo__text small { font-size: 16px; }
  .header-actions .icon-button { display: none; }
  .hero-copy { padding: 48px 0 36px; }
  .hero-copy h1 { font-size: clamp(47px,15vw,64px); }
  .hero-subtitle { font-size: 21px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-image { min-height: 320px; }
  .trust-row { overflow-x: auto; }
  .trust-row__grid { display: flex; width: max-content; padding: 18px 14px; }
  .trust-item { min-width: 210px; border-top: 0 !important; border-right: 1px solid var(--mcoon-border) !important; }
  .filter-panel form { grid-template-columns: 1fr; }
  .filter-panel .button--wide, .filter-panel .more-filters, .filter-panel fieldset { grid-column: auto; }
  .listing-toolbar { align-items: flex-start; gap: 12px; }
  .listing-toolbar label { flex-direction: column; align-items: flex-end; gap: 3px; }
  .listing-toolbar select { min-width: 130px; }
  .kitten-grid, .archive-layout .kitten-grid, .kitten-grid--three { grid-template-columns: 1fr; }
  .kitten-card__media { aspect-ratio: 16/9.2; }
  .benefits-strip__grid { grid-template-columns: 1fr; }
  .benefit-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .breeder-cta__copy { padding: 50px 18px; }
  .breeder-cta__copy h2 { font-size: 40px; }
  .breeder-cta__image { margin-inline: -14px; }
  .breeder-cta__image img { min-height: 330px; }
  .testimonial-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .testimonial-card { flex: 0 0 84%; scroll-snap-align: start; }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .footer-brand { grid-column: span 2; }
  .guarantee-card { grid-column: span 2; grid-row: auto; min-height: 150px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .archive-hero { align-items: flex-start; flex-direction: column; }
  .archive-hero h1 { font-size: 52px; }
  .gallery-main { aspect-ratio: 1.15; }
  .gallery-thumbs { display: flex; overflow-x: auto; }
  .gallery-thumb { flex: 0 0 88px; }
  .kitten-summary { padding: 22px 16px; }
  .summary-heading { align-items: flex-end; }
  .summary-heading h1 { font-size: 58px; }
  .status-pill { margin-top: 12px; }
  .detail-quick-facts { grid-template-columns: 1fr; }
  .detail-quick-facts li { justify-content: flex-start; padding-inline: 8px; border-right: 0; border-bottom: 1px solid var(--mcoon-border); }
  .detail-quick-facts li:last-child { border-bottom: 0; }
  .certification-grid { grid-template-columns: repeat(2,1fr); }
  .detail-actions { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; gap: 0; }
  .icon-feature-grid--three, .personality-grid { grid-template-columns: repeat(2,1fr); }
  .lineage-grid { grid-template-columns: 1fr; }
  .lineage-grid > p { padding: 10px 20px; }
  .why-love-grid { grid-template-columns: 1fr; }
  .why-love-grid article { min-height: 95px; }
  .detail-trust-strip { margin-inline: 10px; }
  .detail-trust-strip .mcoon-container { grid-template-columns: 1fr; }
  .detail-trust-strip .mcoon-container > div:first-child { grid-column: auto; }
  .mobile-detail-actions { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: grid; grid-template-columns: .8fr 1.2fr; gap: 10px; padding: 10px 14px max(10px,env(safe-area-inset-bottom)); background: rgba(247,241,237,.96); border-top: 1px solid var(--mcoon-border); backdrop-filter: blur(12px); }
  .is-kitten-detail .site-footer { padding-bottom: 72px; }
  .content-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Breeder archive and profile */
.breeder-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.breeder-list-card { overflow:hidden; border:1px solid var(--mcoon-border); border-radius:12px; background:rgba(255,255,255,.62); box-shadow:var(--mcoon-shadow); transition:transform var(--mcoon-transition),box-shadow var(--mcoon-transition); }
.breeder-list-card:hover { transform:translateY(-3px); box-shadow:var(--mcoon-shadow-hover); }
.breeder-list-card__image { position:relative; display:block; aspect-ratio:4/3; overflow:hidden; }
.breeder-list-card__image img { width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.breeder-list-card:hover .breeder-list-card__image img { transform:scale(1.025); }
.verified-chip { position:absolute; left:12px; top:12px; padding:5px 10px; border-radius:15px; background:var(--mcoon-pale-green); color:var(--mcoon-forest); font-size: 16px; font-weight:700; text-transform:uppercase; }
.breeder-list-card__body { padding:20px 20px 0; }
.breeder-list-card h2 { font-size:30px; }
.breeder-list-card .stars { margin:0 0 8px; font-size: 16px; }
.breeder-location { display:flex; align-items:center; gap:7px; color:var(--mcoon-muted); font-size: 16px; }
.breeder-location .mcoon-icon { width:16px; height:16px; }
.breeder-excerpt { min-height:70px; color:var(--mcoon-muted); font-size: 16px; }
.breeder-card-badges { display:flex; flex-wrap:wrap; gap:8px 14px; margin-top:13px; }
.breeder-card-badges li { display:flex; align-items:center; gap:5px; font-size: 16px; font-weight:600; }
.breeder-card-badges .mcoon-icon { width:16px; height:16px; color:var(--mcoon-forest-2); }
.breeder-profile-hero { display:grid; grid-template-columns:.85fr 1.15fr; overflow:hidden; border:1px solid var(--mcoon-border); border-radius:16px; background:rgba(255,255,255,.52); }
.breeder-profile-hero__image { min-height:520px; }
.breeder-profile-hero__image img { width:100%; height:100%; object-fit:cover; }
.breeder-profile-hero__content { display:flex; flex-direction:column; justify-content:center; padding:56px; }
.breeder-profile-hero h1 { font-size:clamp(54px,6vw,80px); }
.breeder-profile-copy { color:var(--mcoon-muted); }
.breeder-profile-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:18px; }
.breeder-trust-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:22px; }
.breeder-trust-cards article { display:flex; align-items:center; gap:13px; padding:20px; border:1px solid var(--mcoon-border); border-radius:10px; background:rgba(255,255,255,.45); }
.breeder-trust-cards .mcoon-icon { width:32px; height:32px; color:var(--mcoon-forest-2); }
.breeder-trust-cards article div { display:flex; flex-direction:column; }
.breeder-trust-cards strong { font-size: 16px; }
.breeder-trust-cards small { color:var(--mcoon-muted); font-size: 16px; }
.breeder-kittens-section { padding-bottom:0; }
@media (max-width:980px){.breeder-grid{grid-template-columns:repeat(2,1fr)}.breeder-profile-hero{grid-template-columns:1fr}.breeder-profile-hero__image{min-height:420px}.breeder-trust-cards{grid-template-columns:repeat(2,1fr)}}
@media (max-width:720px){.breeder-grid{grid-template-columns:1fr}.breeder-profile-hero__content{padding:34px 20px}.breeder-profile-hero__image{min-height:320px}.breeder-trust-cards{grid-template-columns:1fr}}

/* --------------------------------------------------------------------------
   Version 1.1 — Gutenberg sections, readable typography and compact chrome
   -------------------------------------------------------------------------- */

/* Gutenberg page canvas */
.block-page > .wp-block-mcoon-hero:first-child,
.block-page > .hero-section:first-child { margin-top: 0; }
.block-page > * { margin-block-start: 0; margin-block-end: 0; }
.block-page > .alignwide { width: min(calc(100% - 64px), var(--mcoon-container)); margin-inline: auto; }
.block-page > .alignfull { width: 100%; max-width: none; }

/* Nothing displayed to visitors is intentionally set below 16px. */
small,
input,
select,
textarea,
button,
label,
legend,
figcaption,
.wp-caption-text { font-size: 16px; }

/* Compact, more readable header. */
.utility-bar,
.utility-bar__inner { min-height: 42px; }
.utility-bar { font-size: 16px; }
.utility-trust,
.utility-social { gap: 20px; }
.utility-trust .mcoon-icon { width: 18px; height: 18px; }
.main-header__inner {
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  min-height: 66px;
}
.brand-logo { gap: 9px; }
.brand-logo__mark { width: 42px; height: 50px; }
.brand-logo__text strong { font-size: 24px; line-height: .92; }
.brand-logo__text small { margin-top: 3px; font-size: 16px; line-height: 1.05; letter-spacing: .02em; }
.primary-navigation { justify-self: end; }
.primary-menu { gap: clamp(16px, 2vw, 28px); }
.primary-menu a { font-size: 16px; text-transform: none; }
.primary-menu a::after { bottom: -8px; }
.header-actions { display: none !important; }
.site-header.is-sticky .main-header { top: 0; }

/* Hero is deliberately around half the former vertical height. */
.hero-grid { grid-template-columns: .78fr 1.22fr; min-height: 320px; }
.hero-copy { padding: 34px 42px 34px 0; }
.hero-copy h1 {
  max-width: 520px;
  margin: 10px 0 4px;
  font-size: clamp(44px, 4.4vw, 62px);
  line-height: .9;
}
.hero-copy h1 em { color: var(--mcoon-forest); font-style: normal; }
.hero-subtitle { margin-top: 6px; font-size: 22px; }
.hero-description { max-width: 510px; font-size: 16px; line-height: 1.55; }
.hero-actions { gap: 22px; margin-top: 12px; }
.hero-image { min-height: 320px; max-height: 340px; }
.hero-image img { min-height: 320px; }
.eyebrow { font-size: 16px; letter-spacing: .07em; }
.button,
.button-link { font-size: 16px; }

/* Trust and marketplace readability. */
.trust-row__grid { padding-block: 22px; }
.trust-item { align-items: flex-start; padding-inline: 18px; }
.trust-item strong,
.trust-item small { font-size: 16px; white-space: normal; }
.trust-item small { line-height: 1.45; }
.marketplace-layout { grid-template-columns: 330px minmax(0, 1fr); gap: 32px; }
.filter-panel { top: 86px; padding: 28px 24px 24px; }
.filter-heading h2 { max-width: 240px; font-size: 20px; }
.filter-panel label,
.filter-panel legend,
.price-field > span,
.filter-panel select,
.filter-panel input[type="text"],
.filter-panel input[type="number"],
.check-option,
.more-filters,
.listing-toolbar > div,
.listing-toolbar label,
.listing-toolbar select { font-size: 16px !important; }
.filter-panel select,
.filter-panel input[type="text"],
.filter-panel input[type="number"] { min-height: 48px; }
.colour-swatches .colour-swatch__dot { width: 24px; height: 24px; }
.listing-toolbar { min-height: 50px; margin-bottom: 18px; }
.kitten-card__body { padding: 18px 18px 0; }
.kitten-card h3 { font-size: 22px; }
.kitten-card__colour,
.kitten-meta,
.kitten-price,
.kitten-badges span,
.status-chip,
.card-action,
.pagination a,
.pagination button,
.pagination span,
.nav-links .page-numbers { font-size: 16px; }
.kitten-meta { gap: 8px 14px; line-height: 1.4; }
.kitten-meta .mcoon-icon { width: 18px; height: 18px; }
.kitten-price { font-size: 20px; }
.kitten-badges span { padding: 5px 9px; border-radius: 14px; }
.status-chip { min-height: 32px; padding-inline: 12px; }
.card-action { min-height: 52px; }
.empty-state--compact { min-height: 420px; }

/* Feature strips and content sections. */
.benefit-item { min-height: 150px; padding: 28px; }
.benefit-item h3,
.benefit-item p,
.check-list,
.breeder-cta__copy > p:not(.eyebrow),
.section-heading h2,
.testimonial-card .stars,
.testimonial-card > p,
.testimonial-card footer strong,
.testimonial-card footer small { font-size: 16px; }
.benefit-item p { line-height: 1.55; }
.breeder-cta__grid { min-height: 380px; }
.breeder-cta__copy { padding: 52px 64px 52px 76px; }
.breeder-cta__copy h2 { font-size: clamp(38px, 3.2vw, 50px); }
.testimonial-card { padding: 24px; }
.testimonial-card > p { min-height: 140px; line-height: 1.65; }

/* Footer is enlarged and reflowed so every link remains comfortable to read. */
.footer-grid {
  grid-template-columns: 1.35fr repeat(4, minmax(150px, 1fr));
  gap: 36px;
  padding-block: 56px 34px;
}
.footer-brand > p,
.footer-column h3,
.footer-column a,
.footer-column p,
.footer-bottom { font-size: 16px; }
.footer-column h3 { margin-bottom: 18px; }
.footer-column li { margin-bottom: 12px; }
.guarantee-card {
  grid-column: 1 / -1;
  min-height: 104px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
  padding: 22px 30px;
}
.guarantee-card strong { font-size: 42px; }
.guarantee-card b { max-width: none; font-size: 18px; }
.footer-bottom { gap: 24px; padding-block: 20px; }

/* Kitten detail pages use the same minimum reading size. */
.breadcrumbs,
.status-pill,
.detail-quick-facts li,
.certification-grid span,
.kitten-description,
.save-listing,
.detail-card > h2,
.breeder-profile p,
.breeder-card > p,
.breeder-credentials li,
.spec-grid dl div,
.icon-feature-grid strong,
.icon-feature-grid small,
.lineage-grid article p,
.lineage-grid article small,
.lineage-grid article span,
.why-love-grid h3,
.why-love-grid p,
.section-heading-inline h2,
.section-heading-inline a,
.detail-trust-strip strong,
.detail-trust-strip small { font-size: 16px; }
.summary-heading h1 { font-size: clamp(50px, 5vw, 68px); }
.certification-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-card { padding: 28px; }
.spec-grid dl div { grid-template-columns: minmax(140px, .9fr) 1.2fr; gap: 18px; }
.why-love > p { font-size: 17px; line-height: 1.7; }
.detail-trust-strip .mcoon-container { min-height: 140px; }

/* Back-to-top control. */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: var(--mcoon-forest);
  color: #fff;
  box-shadow: 0 12px 28px rgba(1,47,34,.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--mcoon-transition), transform var(--mcoon-transition), visibility var(--mcoon-transition), background var(--mcoon-transition);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--mcoon-green); }
.back-to-top .mcoon-icon { width: 24px; height: 24px; transform: rotate(-90deg); }

@media (max-width: 1180px) {
  .main-header__inner { grid-template-columns: 220px minmax(0, 1fr); }
  .primary-menu { gap: 16px; }
  .primary-menu a { font-size: 16px; }
  .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-contact { grid-column: auto; }
  .guarantee-card { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 980px) {
  .main-header__inner { grid-template-columns: 1fr auto; min-height: 64px; }
  .nav-toggle { display: grid; grid-column: 2; }
  .primary-navigation { justify-self: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 36px 0; }
  .hero-image { min-height: 300px; max-height: 330px; }
  .hero-image img { min-height: 300px; }
  .marketplace-layout { grid-template-columns: 1fr; }
  .filter-panel { position: relative; top: auto; }
  .trust-row__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { min-height: 110px; border-bottom: 1px solid var(--mcoon-border); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .mcoon-container { width: min(calc(100% - 32px), var(--mcoon-container)); }
  .utility-bar__inner { justify-content: center; }
  .utility-trust { width: 100%; justify-content: center; }
  .utility-trust span:nth-child(n+2),
  .utility-social { display: none; }
  .brand-logo__mark { width: 38px; height: 46px; }
  .brand-logo__text strong { font-size: 22px; }
  .brand-logo__text small { font-size: 16px; }
  .hero-copy h1 { font-size: clamp(40px, 13vw, 52px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button-link { justify-content: flex-start; }
  .trust-row__grid,
  .testimonial-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .trust-item { justify-content: flex-start; border-right: 0; }
  .kitten-grid,
  .kitten-grid--three { grid-template-columns: 1fr; }
  .breeder-cta__copy { padding: 42px 24px; }
  .footer-bottom { flex-direction: column; }
  .guarantee-card { align-items: center; flex-wrap: wrap; text-align: center; }
  .back-to-top { right: 16px; bottom: 16px; }
}

/* --------------------------------------------------------------------------
   Version 1.2 — official brand mark, simplified hero and trust ticker
   -------------------------------------------------------------------------- */

/* Official logo lockup. */
.main-header__inner {
  grid-template-columns: minmax(310px, 360px) minmax(0, 1fr);
  min-height: 118px;
  gap: 30px;
}
.brand-logo {
  gap: 16px;
}
.brand-logo__mark {
  position: relative;
  display: block;
  width: auto;
  height: 100px;
  aspect-ratio: 870 / 1398;
  flex: 0 0 auto;
  color: var(--mcoon-forest);
  overflow: visible;
  transform-origin: 50% 55%;
  transform-style: preserve-3d;
  perspective: 850px;
  --mcoon-logo-surface: var(--mcoon-ivory);
}
.brand-logo__mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
  overflow: visible;
}
.brand-logo__text {
  justify-content: center;
  min-width: 0;
}
.brand-logo__text strong {
  font-size: clamp(30px, 2.35vw, 36px);
  line-height: .92;
  white-space: nowrap;
}
.brand-logo__text small {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: .06em;
  white-space: nowrap;
}

/* Larger editorial navigation with quiet separators. */
.primary-navigation {
  justify-self: end;
}
.primary-menu {
  gap: 0;
}
.primary-menu > li {
  display: flex;
  align-items: center;
}
.primary-menu > li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  margin-inline: clamp(15px, 1.55vw, 24px);
  background: rgba(1, 47, 34, .22);
}
.primary-menu a {
  font-family: var(--mcoon-font-display);
  font-size: clamp(19px, 1.45vw, 22px);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.1;
  text-transform: none;
}
.primary-menu a::after {
  bottom: -13px;
}

/* Hero: focused title, no eyebrow or action controls. */
.hero-grid {
  grid-template-columns: .72fr 1.28fr;
  min-height: 300px;
}
.hero-copy {
  padding: 34px 50px 34px 0;
}
.hero-copy h1 {
  max-width: 570px;
  margin: 0 0 12px;
  font-size: clamp(52px, 5vw, 72px);
  line-height: .88;
}
.hero-copy h1 em {
  color: var(--mcoon-green);
  font-style: normal;
}
.hero-subtitle {
  margin-top: 4px;
  font-size: 23px;
}
.hero-description {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 17px;
}
.hero-image,
.hero-image img {
  min-height: 300px;
  max-height: 320px;
}

/* Twenty-item slow, seamless trust carousel. */
.trust-row {
  position: relative;
  overflow: hidden;
  background: #b7d69e;
  border-top: 1px solid rgba(1, 47, 34, .14);
  border-bottom: 1px solid rgba(1, 47, 34, .18);
}
.trust-row::before,
.trust-row::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 2;
  width: 7vw;
  pointer-events: none;
}
.trust-row::before {
  left: 0;
  background: linear-gradient(90deg, #b7d69e, rgba(183, 214, 158, 0));
}
.trust-row::after {
  right: 0;
  background: linear-gradient(270deg, #b7d69e, rgba(183, 214, 158, 0));
}
.trust-row__viewport {
  width: 100%;
  overflow: hidden;
}
.trust-row__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: mcoonTrustTicker 118s linear infinite;
}
.trust-row:hover .trust-row__track,
.trust-row:focus-within .trust-row__track {
  animation-play-state: paused;
}
.trust-row__group {
  display: flex;
  flex: 0 0 auto;
  align-items: stretch;
}
.trust-item {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 76px;
  padding: 0 clamp(25px, 2.8vw, 46px);
  border-right: 1px solid rgba(1, 47, 34, .30) !important;
  color: var(--mcoon-forest);
  white-space: nowrap;
}
.trust-item > .mcoon-icon {
  width: 31px;
  height: 31px;
  color: var(--mcoon-forest);
  stroke-width: 1.9;
}
.trust-item strong {
  color: var(--mcoon-forest);
  font-family: var(--mcoon-font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: none;
}
@keyframes mcoonTrustTicker {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 1240px) {
  .main-header__inner {
    grid-template-columns: minmax(285px, 320px) minmax(0, 1fr);
    gap: 20px;
  }
  .brand-logo__mark { height: 92px; }
  .brand-logo__text strong { font-size: 30px; }
  .primary-menu > li:not(:last-child)::after { margin-inline: 13px; }
  .primary-menu a { font-size: 19px; }
}

@media (max-width: 980px) {
  .main-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 104px;
  }
  .brand-logo__mark { height: 84px; }
  .brand-logo__text strong { font-size: 29px; }
  .brand-logo__text small { font-size: 16px; }
  .primary-navigation {
    inset: 146px 0 auto;
  }
  .site-header.is-sticky .primary-navigation {
    inset: 104px 0 auto;
  }
  .primary-menu > li {
    display: block;
  }
  .primary-menu > li:not(:last-child)::after {
    display: none;
  }
  .primary-menu a {
    font-size: 22px;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 42px 0 32px; }
  .hero-image,
  .hero-image img { min-height: 300px; max-height: 340px; }
  .trust-row__track { animation-duration: 96s; }
}

@media (max-width: 680px) {
  .main-header__inner { min-height: 88px; }
  .brand-logo { gap: 10px; }
  .brand-logo__mark { height: 72px; }
  .brand-logo__text strong { font-size: 25px; }
  .brand-logo__text small { margin-top: 5px; font-size: 16px; letter-spacing: .02em; }
  .primary-navigation { top: 88px; inset-block-start: 88px; }
  .site-header.is-sticky .primary-navigation { inset-block-start: 88px; }
  .hero-copy h1 { font-size: clamp(46px, 15vw, 60px); }
  .hero-description { font-size: 16px; }
  .trust-item { min-height: 68px; padding-inline: 25px; }
  .trust-item strong { font-size: 19px; }
  .trust-item > .mcoon-icon { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo__mark,
  .trust-row__track {
    animation: none !important;
  }
  .trust-row__viewport {
    overflow-x: auto;
    scrollbar-width: thin;
  }
}

/* --------------------------------------------------------------------------
   Version 1.3 — aligned logo, refined motion, luxury trust and review carousels
   -------------------------------------------------------------------------- */

/* Slightly larger utility content and navigation. */
.utility-bar,
.utility-bar__inner {
  min-height: 46px;
}
.utility-bar {
  font-size: 17px;
  letter-spacing: .01em;
}
.utility-trust,
.utility-social {
  gap: 24px;
}
.utility-trust span {
  gap: 9px;
  white-space: nowrap;
}
.utility-trust .mcoon-icon {
  width: 20px;
  height: 20px;
  stroke-width: 1.9;
}
.utility-social a {
  font-size: 18px;
}

/* The SVG viewBox is cropped to the visible artwork, so the mark begins exactly
   at the same container edge as the page sections below it. */
.main-header__inner {
  grid-template-columns: minmax(330px, 390px) minmax(0, 1fr);
  min-height: 122px;
  padding-inline: 0;
}
.brand-logo {
  margin: 0;
  gap: 15px;
}
.brand-logo__mark {
  width: auto;
  height: 96px;
  aspect-ratio: 606 / 958;
  overflow: hidden;
  transform-origin: 50% 52%;
  transform-style: preserve-3d;
  backface-visibility: visible;
  will-change: transform;
}
.brand-logo__mark svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.brand-logo__text strong {
  font-size: clamp(32px, 2.45vw, 38px);
}
.brand-logo__text small {
  margin-top: 9px;
  font-size: 18px;
}
.primary-menu a {
  font-size: clamp(21px, 1.55vw, 24px);
}
.primary-menu > li:not(:last-child)::after {
  height: 32px;
  margin-inline: clamp(16px, 1.65vw, 26px);
}

/* One deliberate sequence only: heartbeat, settle, horizontal 3D rotation. */
.brand-logo__mark.is-heartbeat {
  animation: mcoonLogoHeartbeat 1.1s ease-in-out both;
}
@keyframes mcoonLogoHeartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.07); }
  29% { transform: scale(1); }
  46% { transform: scale(1.105); }
  67% { transform: scale(1); }
}

/* More luxurious trust ticker: layered green, glass capsules and medallion icons. */
.trust-row {
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 35%, rgba(255,255,255,.45), transparent 24%),
    radial-gradient(circle at 78% 70%, rgba(255,255,255,.24), transparent 27%),
    linear-gradient(115deg, #d9e9cb 0%, #b7d69e 44%, #c8e0b5 72%, #afcf97 100%);
  border-top: 1px solid rgba(183,155,88,.45);
  border-bottom: 1px solid rgba(1,47,34,.24);
  box-shadow: inset 0 1px rgba(255,255,255,.55), inset 0 -1px rgba(1,47,34,.08);
}
.trust-row::before,
.trust-row::after {
  width: clamp(48px, 8vw, 120px);
}
.trust-row::before {
  background: linear-gradient(90deg, #d8e8ca 14%, rgba(216,232,202,.76) 45%, rgba(216,232,202,0));
}
.trust-row::after {
  background: linear-gradient(270deg, #b3d09b 14%, rgba(179,208,155,.76) 45%, rgba(179,208,155,0));
}
.trust-row__viewport {
  padding-block: 12px;
}
.trust-row__group {
  gap: 13px;
  padding-right: 13px;
}
.trust-item {
  position: relative;
  min-height: 64px;
  margin: 0;
  padding: 9px 28px 9px 12px;
  gap: 13px;
  border: 1px solid rgba(255,255,255,.7) !important;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.27));
  box-shadow: 0 8px 24px rgba(1,47,34,.08), inset 0 1px rgba(255,255,255,.62);
  backdrop-filter: blur(8px);
}
.trust-item::after {
  content: "";
  position: absolute;
  right: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mcoon-gold);
  box-shadow: 0 0 0 3px rgba(183,155,88,.14);
}
.trust-item > .mcoon-icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(1,47,34,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.64);
  color: var(--mcoon-forest);
  box-shadow: inset 0 0 0 3px rgba(83,177,84,.08);
  stroke-width: 1.85;
}
.trust-item strong {
  font-size: 22px;
  letter-spacing: .005em;
}

/* Twenty-card seamless family carousel. */
.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(83,177,84,.08), transparent 36%),
    var(--mcoon-ivory);
}
.testimonials .section-heading {
  margin-bottom: 32px;
}
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}
.testimonial-carousel::before,
.testimonial-carousel::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 3;
  width: clamp(34px, 7vw, 110px);
  pointer-events: none;
}
.testimonial-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--mcoon-ivory), rgba(247,241,237,.78) 40%, rgba(247,241,237,0));
}
.testimonial-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--mcoon-ivory), rgba(247,241,237,.78) 40%, rgba(247,241,237,0));
}
.testimonial-carousel__viewport {
  overflow: hidden;
  padding-block: 8px 18px;
}
.testimonial-carousel__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: mcoonTestimonialsTicker 175s linear infinite;
}
.testimonial-carousel:hover .testimonial-carousel__track,
.testimonial-carousel:focus-within .testimonial-carousel__track {
  animation-play-state: paused;
}
.testimonial-carousel__group {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
}
.testimonial-carousel .testimonial-card {
  position: relative;
  flex: 0 0 365px;
  min-height: 286px;
  padding: 28px 28px 25px;
  overflow: hidden;
  border: 1px solid rgba(1,47,34,.12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.62));
  box-shadow: 0 13px 34px rgba(1,47,34,.07), inset 0 1px rgba(255,255,255,.85);
}
.testimonial-carousel .testimonial-card::before {
  content: "“";
  position: absolute;
  top: -21px;
  right: 18px;
  color: rgba(83,177,84,.12);
  font-family: var(--mcoon-font-display);
  font-size: 128px;
  line-height: 1;
}
.testimonial-carousel .testimonial-card .stars {
  position: relative;
  z-index: 1;
  font-size: 17px;
}
.testimonial-carousel .testimonial-card > p {
  position: relative;
  z-index: 1;
  min-height: 148px;
  margin: 14px 0 20px;
  font-family: var(--mcoon-font-display);
  font-size: 21px;
  line-height: 1.42;
}
.testimonial-carousel .testimonial-card footer {
  position: relative;
  z-index: 1;
  padding-top: 16px;
  border-top: 1px solid rgba(1,47,34,.1);
}
.testimonial-carousel .avatar-placeholder {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(83,177,84,.25);
  background: linear-gradient(145deg, #eff7eb, #dcebd3);
}
.testimonial-carousel .testimonial-card footer strong {
  color: var(--mcoon-forest);
  font-size: 16px;
}
.testimonial-carousel .testimonial-card footer small {
  font-size: 16px;
}
@keyframes mcoonTestimonialsTicker {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

/* Footer wordmark only; the cat mark now appears exclusively in the guarantee seal. */
.footer-wordmark {
  display: inline-block;
  color: #fff;
  font-family: var(--mcoon-font-display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.025em;
}
.footer-wordmark:hover {
  color: #fff;
}
.footer-brand > p {
  max-width: 310px;
  margin-top: 18px;
}

/* Luxury shield/stamp guarantee. */
.guarantee-card {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: minmax(70px, 1fr) auto minmax(70px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  min-height: 250px;
  padding: 24px 34px 34px;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 50%, rgba(83,177,84,.12), transparent 42%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.025), transparent);
  color: #fff;
}
.guarantee-card__rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183,155,88,.82));
}
.guarantee-card__rule:last-child {
  transform: scaleX(-1);
}
.guarantee-shield {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 244px;
  min-height: 220px;
  padding: 23px 28px 40px;
  background: linear-gradient(145deg, #f3dfa8 0%, #c9a75b 44%, #8d6929 100%);
  clip-path: polygon(50% 0, 90% 12%, 90% 56%, 84% 73%, 69% 89%, 50% 100%, 31% 89%, 16% 73%, 10% 56%, 10% 12%);
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.28));
  text-align: center;
}
.guarantee-shield::before {
  content: "";
  position: absolute;
  inset: 8px;
  clip-path: inherit;
  border: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.22), transparent 26%),
    linear-gradient(155deg, #62bc5e 0%, #2c8046 52%, #0c5138 100%);
  pointer-events: none;
}
.guarantee-shield::after {
  content: "ETHICAL • CARE";
  z-index: 2;
  position: absolute;
  left: 50%;
  bottom: 29px;
  width: 160px;
  transform: translateX(-50%);
  color: rgba(244,226,180,.86);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  white-space: nowrap;
}
.guarantee-shield__crown {
  position: relative;
  z-index: 2;
  color: #f0dba1;
  font-size: 23px;
  line-height: 1;
}
.guarantee-shield__mark {
  position: relative;
  z-index: 2;
  display: block;
  width: 38px;
  height: 58px;
  margin: 5px 0 2px;
  color: #fff;
}
.guarantee-shield__mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.guarantee-shield strong {
  position: relative;
  z-index: 2;
  font-family: var(--mcoon-font-display);
  font-size: 48px;
  line-height: .88;
  letter-spacing: -.035em;
}
.guarantee-shield b {
  position: relative;
  z-index: 2;
  max-width: 150px;
  margin-top: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: .07em;
  text-transform: uppercase;
}

@media (max-width: 1240px) {
  .main-header__inner {
    grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  }
  .brand-logo__mark { height: 90px; }
  .brand-logo__text strong { font-size: 32px; }
  .brand-logo__text small { font-size: 17px; }
  .primary-menu a { font-size: 20px; }
  .primary-menu > li:not(:last-child)::after { margin-inline: 13px; }
}

@media (max-width: 980px) {
  .main-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 106px;
  }
  .brand-logo__mark { height: 82px; }
  .brand-logo__text strong { font-size: 30px; }
  .brand-logo__text small { font-size: 16px; }
  .primary-navigation { inset-block-start: 152px; }
  .site-header.is-sticky .primary-navigation { inset-block-start: 106px; }
  .primary-menu a { font-size: 23px; }
  .trust-item strong { font-size: 20px; }
  .testimonial-carousel__track { animation-duration: 150s; }
  .guarantee-card { min-height: 238px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .utility-bar,
  .utility-bar__inner { min-height: 44px; }
  .utility-bar { font-size: 16px; }
  .main-header__inner { min-height: 90px; }
  .brand-logo__mark { height: 70px; }
  .brand-logo__text strong { font-size: 25px; }
  .brand-logo__text small { margin-top: 5px; font-size: 16px; }
  .primary-navigation,
  .site-header.is-sticky .primary-navigation { inset-block-start: 90px; }
  .trust-row__viewport { padding-block: 10px; }
  .trust-item { min-height: 58px; padding: 7px 25px 7px 9px; }
  .trust-item > .mcoon-icon { width: 38px; height: 38px; }
  .trust-item strong { font-size: 19px; }
  .testimonial-carousel::before,
  .testimonial-carousel::after { width: 30px; }
  .testimonial-carousel .testimonial-card {
    flex-basis: min(82vw, 340px);
    min-height: 278px;
    padding: 25px 23px 23px;
  }
  .testimonial-carousel .testimonial-card > p { font-size: 20px; }
  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 260px;
    padding-inline: 0;
  }
  .guarantee-card__rule { display: none; }
  .guarantee-shield { width: 226px; min-height: 210px; }
  .footer-brand { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo__mark,
  .testimonial-carousel__track {
    animation: none !important;
  }
  .testimonial-carousel__viewport {
    overflow-x: auto;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
  }
  .testimonial-carousel .testimonial-card {
    scroll-snap-align: start;
  }
}


/* --------------------------------------------------------------------------
   Version 1.4 — calm header motion, live filters and simplified trust styling
   -------------------------------------------------------------------------- */

/* The logo performs one restrained heartbeat; the five-second interval is controlled in theme.js. */
.brand-logo__mark {
  transform-style: flat;
  perspective: none;
  backface-visibility: visible;
  will-change: auto;
}
.brand-logo__mark.is-heartbeat {
  will-change: transform;
  animation: mcoonLogoHeartbeat 1.1s ease-in-out both;
}

/* The utility bar contains a single, properly drawn Instagram icon. */
.utility-social {
  gap: 0;
}
.utility-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: rgba(255,255,255,.88);
}
.utility-social .mcoon-icon {
  width: 22px;
  height: 22px;
  color: var(--mcoon-green);
  stroke-width: 1.7;
}

/* Under-hero carousel: the same dark green language as the utility bar. */
.trust-row {
  isolation: isolate;
  background: var(--mcoon-forest);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.10);
  box-shadow: none;
}
.trust-row::before,
.trust-row::after {
  width: clamp(42px, 7vw, 105px);
}
.trust-row::before {
  background: linear-gradient(90deg, var(--mcoon-forest) 12%, rgba(1,47,34,.78) 48%, rgba(1,47,34,0));
}
.trust-row::after {
  background: linear-gradient(270deg, var(--mcoon-forest) 12%, rgba(1,47,34,.78) 48%, rgba(1,47,34,0));
}
.trust-row__viewport {
  padding-block: 0;
}
.trust-row__group {
  gap: 0;
  padding-right: 0;
}
.trust-item {
  min-height: 76px;
  padding: 0 clamp(28px, 3vw, 48px);
  gap: 13px;
  border: 0 !important;
  border-right: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: rgba(255,255,255,.84);
}
.trust-item::after {
  display: none;
}
.trust-item > .mcoon-icon {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--mcoon-green);
  box-shadow: none;
  stroke-width: 1.8;
}
.trust-item strong {
  color: rgba(255,255,255,.84);
  font-family: var(--mcoon-font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .01em;
  text-transform: none;
}

/* Filter headings use the same editorial serif as the listing empty state. */
.filter-heading h2 {
  max-width: 245px;
  font-family: var(--mcoon-font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.015em;
  text-transform: none;
}
.filter-panel label,
.filter-panel legend,
.price-field > span {
  color: rgba(255,255,255,.92);
  font-family: var(--mcoon-font-display);
  font-size: 21px !important;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}
.filter-panel select,
.filter-panel input,
.filter-panel button,
.filter-help,
.dynamic-filter-note {
  font-family: var(--mcoon-font-body);
}
.filter-panel select,
.filter-panel input[type="text"],
.filter-panel input[type="number"] {
  font-size: 16px !important;
}
.colour-filter {
  display: grid;
  gap: 10px;
}
.colour-swatches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
}
.colour-swatch {
  position: relative;
  display: inline-flex !important;
  width: 31px;
  height: 31px;
  gap: 0 !important;
  cursor: pointer;
}
.colour-swatch input {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.colour-swatches .colour-swatch__dot {
  display: block;
  width: 31px;
  height: 31px;
  border: 2px solid rgba(255,255,255,.62);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 0 0 2px rgba(0,0,0,.11);
  transition: transform var(--mcoon-transition), box-shadow var(--mcoon-transition), border-color var(--mcoon-transition);
}
.colour-swatch:hover .colour-swatch__dot {
  transform: scale(1.08);
}
.colour-swatch input:focus-visible + .colour-swatch__dot {
  outline: 3px solid rgba(83,177,84,.45);
  outline-offset: 3px;
}
.colour-swatch input:checked + .colour-swatch__dot {
  border-color: #fff;
  box-shadow: 0 0 0 3px var(--mcoon-green), 0 0 0 5px rgba(255,255,255,.25);
  transform: scale(.92);
}
.filter-help,
.dynamic-filter-note {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: 16px;
  line-height: 1.45;
}
.dynamic-filter-note {
  text-align: center;
}
.price-field {
  position: relative;
}
.price-field__value {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: -33px;
  color: #fff !important;
}
.price-field__value output {
  color: var(--mcoon-green);
  font-size: 16px;
  font-weight: 700;
}
.listing-area {
  position: relative;
}
.listing-results-content {
  position: relative;
  min-height: 250px;
  transition: opacity 180ms ease;
}
.listing-area.is-filtering .listing-results-content {
  opacity: .34;
  pointer-events: none;
}
.listing-area.is-filtering::after {
  content: "";
  position: absolute;
  top: 150px;
  left: 50%;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 3px solid rgba(1,47,34,.16);
  border-top-color: var(--mcoon-green);
  border-radius: 50%;
  margin-left: -17px;
  animation: mcoonFilterSpin .7s linear infinite;
}
@keyframes mcoonFilterSpin {
  to { transform: rotate(360deg); }
}

/* Match the testimonial heading to the serif empty-state heading. */
.testimonials .section-heading h2 {
  font-family: var(--mcoon-font-display);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: none;
}

/* The breeder invitation no longer carries a decorative logo watermark. */
.brand-watermark {
  display: none !important;
}

/* Footer is intentionally text-led: no social icons and no guarantee badge. */
.footer-grid {
  grid-template-columns: 1.35fr repeat(4, minmax(150px, 1fr));
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .testimonials .section-heading h2 {
    font-size: 40px;
  }
}

@media (max-width: 680px) {
  .utility-social {
    display: flex;
  }
  .utility-social a {
    width: 30px;
    height: 30px;
  }
  .utility-social .mcoon-icon {
    width: 20px;
    height: 20px;
  }
  .trust-item {
    min-height: 68px;
    padding-inline: 25px;
  }
  .trust-item strong {
    font-size: 16px;
  }
  .filter-heading h2 {
    font-size: 24px;
  }
  .filter-panel label,
  .filter-panel legend,
  .price-field > span {
    font-size: 20px !important;
  }
  .testimonials .section-heading {
    gap: 11px;
  }
  .testimonials .section-heading span {
    width: 34px;
  }
  .testimonials .section-heading h2 {
    font-size: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .listing-area.is-filtering::after {
    animation: none;
  }
}


/* --------------------------------------------------------------------------
   Version 1.5 — signature paw icon, refined typography and elevated footer
   -------------------------------------------------------------------------- */

/* The uploaded Maine Coon paw becomes the shared visual signature. */
.mcoon-paw-icon {
  display: block;
  fill: currentColor;
  stroke: none !important;
  overflow: visible;
}

/* Instagram remains identifiable and now includes its label. */
.utility-social a {
  display: inline-flex;
  width: auto;
  min-height: 34px;
  padding-inline: 4px;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.utility-social a span { line-height: 1; }
.utility-social a:hover { color: #fff; }

/* A restrained hover lift makes the header identity feel responsive. */
.brand-logo__mark,
.brand-logo__text strong,
.brand-logo__text small {
  transition: transform 260ms ease, color 260ms ease, filter 260ms ease;
}
.brand-logo:hover .brand-logo__mark {
  transform: scale(1.055);
  color: var(--mcoon-green);
  filter: saturate(1.18) brightness(1.08);
}
.brand-logo:hover .brand-logo__text strong { color: var(--mcoon-green); }
.brand-logo:hover .brand-logo__text small { color: var(--mcoon-forest); }
.brand-logo__mark.is-heartbeat:hover { animation-play-state: paused; }

/* Benefit titles use the same editorial serif as the listing empty state. */
.benefit-item h3 {
  font-family: var(--mcoon-font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.015em;
  text-transform: none;
}

/* Review copy now matches the clean body type used by benefit descriptions. */
.testimonial-carousel .testimonial-card > p {
  font-family: var(--mcoon-font-body);
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
}

/* Footer: quieter information architecture with a signature paw divider. */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(83,177,84,.18), transparent 36%),
    linear-gradient(180deg, #013a2b 0%, var(--mcoon-forest) 52%, #01271d 100%);
}
.footer-ornament {
  display: grid;
  grid-template-columns: minmax(36px,1fr) auto minmax(36px,1fr);
  align-items: center;
  gap: 22px;
  padding-top: 34px;
}
.footer-ornament > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(175,216,136,.42));
}
.footer-ornament > span:last-child {
  background: linear-gradient(90deg, rgba(175,216,136,.42), transparent);
}
.footer-paw__icon {
  width: 48px;
  height: 54px;
  color: #afd888;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}
.footer-grid {
  grid-template-columns: 1.4fr repeat(3, minmax(150px, .85fr)) 1.15fr;
  gap: clamp(28px, 3vw, 48px);
  padding-block: 34px 40px;
}
.footer-wordmark { color: #fff; }
.footer-brand > p { max-width: 330px; line-height: 1.7; }
.footer-column h3 {
  color: #afd888;
  font-family: var(--mcoon-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-transform: none;
}
.footer-column li { margin-bottom: 10px; }
.footer-column a,
.footer-column p { line-height: 1.55; }
.footer-contact > p:first-of-type a {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.footer-contact__note {
  max-width: 265px;
  margin-top: 16px !important;
  color: rgba(255,255,255,.58) !important;
}
.footer-bottom { padding-block: 18px; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .utility-social a { padding-inline: 0; font-size: 15px; }
  .benefit-item h3 { font-size: 22px; }
  .testimonial-carousel .testimonial-card > p { font-size: 17px; }
  .footer-ornament { gap: 14px; }
  .footer-paw__icon { width: 40px; height: 45px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Version 1.6 — distinct icon language, cleaner filters and footer placement
   -------------------------------------------------------------------------- */
.utility-bar__inner { justify-content: center; }
.utility-trust { width: 100%; justify-content: space-between; }
.utility-trust .mcoon-icon { flex: 0 0 auto; }

/* Keep a maximum of four colour choices on each line. */
.colour-swatches {
  display: grid;
  grid-template-columns: repeat(4, 31px);
  justify-content: start;
  gap: 12px 14px;
}

/* Soft dividers establish a clearer rhythm between filter groups. */
.filter-panel form > fieldset,
.filter-panel form > label,
.filter-panel form > .price-field {
  position: relative;
  margin: 0;
  padding: 0 0 22px;
}
.filter-panel form > fieldset::after,
.filter-panel form > label::after,
.filter-panel form > .price-field::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.3), rgba(255,255,255,.06));
}
.dynamic-filter-note { text-align: left; }

/* Larger, individual symbols for the four marketplace promises. */
.benefit-item { align-items: flex-start; }
.benefit-item > .mcoon-icon {
  width: 62px;
  height: 62px;
  padding: 13px;
  border: 1px solid rgba(175,216,136,.34);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: #afd888;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.13));
}
.benefit-item h3 {
  font-family: var(--mcoon-font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
}

/* Review quotations inherit the same elegant editorial face as the hero copy. */
.testimonial-carousel .testimonial-card > p {
  font-family: var(--mcoon-font-display);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -.006em;
}

/* The signature paw now belongs to the footer identity itself. */
.footer-brand__mark {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 10px;
}
.footer-brand__mark .footer-paw__icon {
  width: 48px;
  height: 48px;
  color: #afd888;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
}
.back-to-top .mcoon-icon { transform: none; }

@media (max-width: 980px) {
  .utility-trust { justify-content: center; gap: 26px; }
}
@media (max-width: 680px) {
  .colour-swatches { grid-template-columns: repeat(4, 31px); gap: 10px 12px; }
  .benefit-item > .mcoon-icon { width: 54px; height: 54px; }
  .testimonial-carousel .testimonial-card > p { font-size: 19px; }
}


/* --------------------------------------------------------------------------
   Version 1.7.3 — removed paw icons and restored cinematic hero fade
   -------------------------------------------------------------------------- */

/* Top utility icons and the under-hero icon carousel share the pale leaf tone. */
.utility-trust .mcoon-icon,
.trust-item > .mcoon-icon,
.benefit-item > .mcoon-icon {
  color: #b7d69e;
}

/* The official mark adopts exactly the wordmark colour on hover. */
.brand-logo:hover .brand-logo__mark {
  color: var(--mcoon-forest);
  filter: none;
}
.brand-logo:hover .brand-logo__text strong {
  color: var(--mcoon-forest);
}

/* Cinematic hero built around the supplied portrait and its natural negative space. */
.hero-section--portrait {
  position: relative;
  isolation: isolate;
  min-height: clamp(440px, 42vw, 590px);
  overflow: hidden;
  background-image: var(--mcoon-hero-image);
  background-position: center center;
  background-size: cover;
  border-bottom: 1px solid rgba(1,47,34,.12);
}
.hero-section--portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(5,34,28,.88) 0%,
      rgba(5,34,28,.73) 27%,
      rgba(5,34,28,.24) 52%,
      rgba(5,34,28,0) 72%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.18));
}
.hero-section--portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(2,28,22,.24));
  pointer-events: none;
}
.hero-portrait__inner {
  display: flex;
  align-items: center;
  min-height: inherit;
}
.hero-copy--portrait {
  width: min(600px, 48vw);
  padding: 58px 0 62px;
  color: #fff;
  text-shadow: 0 2px 26px rgba(0,0,0,.18);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #d9e9ce;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: #b7d69e;
}
.hero-copy--portrait h1 {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 5.45vw, 82px);
  line-height: .88;
  letter-spacing: -.04em;
}
.hero-copy--portrait h1 span {
  font-size: .56em;
  font-weight: 500;
  letter-spacing: -.025em;
}
.hero-copy--portrait h1 strong {
  margin-top: 5px;
  color: #b7d69e;
  font-family: var(--mcoon-font-display);
  font-size: .93em;
  font-weight: 600;
  letter-spacing: -.025em;
  white-space: nowrap;
}
.hero-copy--portrait h1 em {
  max-width: 520px;
  margin-top: 11px;
  color: #fff;
  font-size: .58em;
  font-style: italic;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.hero-copy--portrait .hero-subtitle {
  max-width: 510px;
  margin: 25px 0 0;
  color: rgba(255,255,255,.88);
  font-family: var(--mcoon-font-body);
  font-size: 18px;
  line-height: 1.55;
}

/* Uploaded signature paw is used consistently in filters, empty states and footer. */
.mcoon-signature-paw {
  display: block;
  object-fit: contain;
}
.filter-signature-paw {
  width: 46px;
  height: 52px;
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 14px rgba(0,0,0,.16));
}
.empty-state-signature-paw {
  width: 72px;
  height: 80px;
  margin-bottom: 10px;
  filter: drop-shadow(0 10px 22px rgba(1,47,34,.12));
}
.footer-brand__mark .footer-paw__icon {
  width: 54px;
  height: 60px;
}

/* Testimonials use the same clean sans-serif family as footer navigation items. */
.testimonial-carousel .testimonial-card,
.testimonial-carousel .testimonial-card > p,
.testimonial-carousel .testimonial-card footer,
.testimonial-carousel .testimonial-card footer strong,
.testimonial-carousel .testimonial-card footer small {
  font-family: var(--mcoon-font-body);
}
.testimonial-carousel .testimonial-card > p {
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .hero-section--portrait {
    min-height: 500px;
    background-position: 62% center;
  }
  .hero-copy--portrait {
    width: min(560px, 58vw);
  }
}

@media (max-width: 680px) {
  .hero-section--portrait {
    min-height: 610px;
    background-position: 64% center;
  }
  .hero-section--portrait::before {
    background:
      linear-gradient(180deg,
        rgba(3,31,24,.89) 0%,
        rgba(3,31,24,.72) 45%,
        rgba(3,31,24,.14) 75%,
        rgba(3,31,24,.22) 100%);
  }
  .hero-portrait__inner {
    align-items: flex-start;
  }
  .hero-copy--portrait {
    width: 100%;
    padding: 42px 0 34px;
  }
  .hero-copy--portrait h1 {
    max-width: 92%;
    font-size: clamp(46px, 15vw, 64px);
  }
  .hero-copy--portrait h1 strong {
    white-space: normal;
  }
  .hero-copy--portrait .hero-subtitle {
    max-width: 88%;
    font-size: 16px;
  }
  .filter-signature-paw {
    width: 40px;
    height: 46px;
  }
  .empty-state-signature-paw {
    width: 62px;
    height: 70px;
  }
}


/* --------------------------------------------------------------------------
   Version 1.7.3 — removed paw icons and restored cinematic hero fade
   -------------------------------------------------------------------------- */
.hero-section--portrait {
  background-image: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-copy--portrait {
  width: min(520px, 46vw);
  padding: 58px 0 62px;
}
.hero-copy--portrait h1 {
  max-width: 520px;
  font-size: clamp(48px, 5vw, 76px);
}
.hero-copy--portrait h1 span,
.hero-copy--portrait h1 em {
  color: #ffffff;
}
.hero-copy--portrait h1 strong {
  color: #b7d69e;
  letter-spacing: -.02em;
}
.hero-copy--portrait h1 em {
  margin-top: 8px;
  font-size: .54em;
  line-height: 1.02;
}
.mcoon-signature-paw {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.filter-heading {
  align-items: center;
}
.filter-signature-paw {
  width: 38px;
  max-width: 38px;
  height: auto;
  flex: 0 0 38px;
  aspect-ratio: 1433 / 1608;
}
.empty-state-signature-paw {
  width: 144px;
  max-width: min(26vw, 144px);
  height: auto;
  margin: 0 auto 18px;
  aspect-ratio: 1433 / 1608;
}
.footer-brand__mark {
  width: 72px;
}
.footer-brand__mark .footer-paw__icon {
  width: 72px;
  max-width: 72px;
  height: auto;
  aspect-ratio: 1433 / 1608;
}
@media (max-width: 980px) {
  .hero-copy--portrait {
    width: min(500px, 58vw);
  }
}
@media (max-width: 680px) {
  .hero-section--portrait {
    background-position: 60% center;
  }
  .hero-copy--portrait {
    width: 100%;
    padding: 42px 0 34px;
  }
  .hero-copy--portrait h1 {
    max-width: 92%;
    font-size: clamp(40px, 13vw, 58px);
  }
  .filter-signature-paw {
    width: 32px;
    max-width: 32px;
    flex-basis: 32px;
  }
  .empty-state-signature-paw {
    width: 110px;
    max-width: 110px;
  }
  .footer-brand__mark,
  .footer-brand__mark .footer-paw__icon {
    width: 60px;
    max-width: 60px;
  }
}


/* --------------------------------------------------------------------------
   Version 1.7.3 — removed paw icons and restored cinematic hero fade
   -------------------------------------------------------------------------- */
.hero-section--portrait {
  position: relative;
  isolation: isolate;
  min-height: clamp(360px, 34vw, 460px);
  background-color: #e7ebe6;
  background-position: right center !important;
  background-repeat: no-repeat !important;
  background-size: auto 100% !important;
  overflow: hidden;
}
.hero-section--portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg,
    rgba(244,241,234,.96) 0%,
    rgba(244,241,234,.94) 28%,
    rgba(244,241,234,.86) 42%,
    rgba(244,241,234,.55) 56%,
    rgba(244,241,234,.14) 72%,
    rgba(244,241,234,0) 84%);
  pointer-events: none;
}
.hero-section--portrait::after {
  content: none;
}
.hero-portrait__inner {
  position: relative;
  z-index: 1;
  align-items: center;
  min-height: inherit;
}
.hero-copy--portrait {
  width: min(520px, 45vw);
  padding: 46px 0 44px;
  color: var(--mcoon-charcoal);
  text-shadow: none;
}
.hero-kicker {
  color: #557467;
}
.hero-kicker::before {
  background: var(--mcoon-green);
}
.hero-copy--portrait h1 {
  max-width: 520px;
  color: var(--mcoon-charcoal);
  font-size: clamp(46px, 4.5vw, 72px);
  line-height: .9;
}
.hero-copy--portrait h1 span {
  color: var(--mcoon-charcoal);
}
.hero-copy--portrait h1 strong {
  color: var(--mcoon-green);
}
.hero-copy--portrait h1 em {
  color: var(--mcoon-green);
  font-style: normal;
}
.hero-copy--portrait .hero-subtitle {
  max-width: 460px;
  margin-top: 18px;
  color: rgba(22, 36, 30, .76);
}
.filter-signature-paw {
  width: auto;
  max-width: none;
  height: 26px;
  max-height: 26px;
  flex: 0 0 auto;
}
.empty-state-signature-paw {
  width: auto;
  max-width: none;
  height: 54px;
  max-height: 54px;
  margin: 0 auto 14px;
}
.footer-brand__mark,
.footer-brand__mark .footer-paw__icon {
  display: none !important;
}
.back-to-top .mcoon-icon {
  transform: none !important;
}
@media (max-width: 980px) {
  .hero-section--portrait {
    min-height: 380px;
    background-size: auto 100% !important;
    background-position: 72% center !important;
  }
  .hero-copy--portrait {
    width: min(470px, 56vw);
    padding: 40px 0;
  }
}
@media (max-width: 680px) {
  .hero-section--portrait {
    min-height: 440px;
    background-size: cover !important;
    background-position: 60% center !important;
  }
  .hero-section--portrait::before {
    background: linear-gradient(180deg,
      rgba(244,241,234,.95) 0%,
      rgba(244,241,234,.88) 38%,
      rgba(244,241,234,.42) 70%,
      rgba(244,241,234,.12) 100%);
  }
  .hero-copy--portrait {
    width: 100%;
    padding: 36px 0 30px;
  }
  .hero-copy--portrait h1 {
    max-width: 94%;
    font-size: clamp(38px, 12vw, 56px);
  }
  .hero-copy--portrait .hero-subtitle {
    max-width: 92%;
    font-size: 16px;
  }
  .filter-signature-paw {
    height: 22px;
    max-height: 22px;
  }
  .empty-state-signature-paw {
    height: 44px;
    max-height: 44px;
  }
}

.hero-copy--portrait h1 em { color: var(--mcoon-charcoal); }


/* --------------------------------------------------------------------------
   Version 1.7.4 — panoramic hero polish and cleaner trust row
   -------------------------------------------------------------------------- */
.filter-signature-paw,
.empty-state-signature-paw {
  display: none !important;
}
.hero-section--portrait {
  position: relative;
  isolation: isolate;
  min-height: clamp(440px, 42vw, 590px);
  overflow: hidden;
  background-color: #17372f;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-bottom: 1px solid rgba(1,47,34,.12);
}
.hero-section--portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg,
      rgba(5,34,28,.90) 0%,
      rgba(5,34,28,.78) 25%,
      rgba(5,34,28,.48) 43%,
      rgba(5,34,28,.18) 58%,
      rgba(5,34,28,0) 76%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.14));
  pointer-events: none;
}
.hero-section--portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(2,28,22,.18));
  pointer-events: none;
}
.hero-portrait__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
}
.hero-copy--portrait {
  width: min(560px, 48vw);
  padding: 58px 0 62px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.22);
}
.hero-kicker {
  color: #d9e9ce;
}
.hero-kicker::before {
  background: #b7d69e;
}
.hero-copy--portrait h1,
.hero-copy--portrait h1 span,
.hero-copy--portrait h1 em {
  color: #fff;
}
.hero-copy--portrait h1 strong {
  color: #b7d69e;
}
.hero-copy--portrait .hero-subtitle {
  color: rgba(255,255,255,.88);
}
@media (max-width: 980px) {
  .hero-section--portrait {
    min-height: 500px;
    background-position: 62% center !important;
  }
  .hero-copy--portrait {
    width: min(540px, 58vw);
  }
}
@media (max-width: 680px) {
  .hero-section--portrait {
    min-height: 610px;
    background-position: 64% center !important;
  }
  .hero-section--portrait::before {
    background: linear-gradient(180deg,
      rgba(3,31,24,.90) 0%,
      rgba(3,31,24,.74) 44%,
      rgba(3,31,24,.20) 75%,
      rgba(3,31,24,.18) 100%);
  }
  .hero-copy--portrait {
    width: 100%;
    padding: 42px 0 34px;
  }
}


/* --------------------------------------------------------------------------
   Version 1.7.4 — panoramic hero polish and cleaner trust row
   -------------------------------------------------------------------------- */
.hero-section--portrait {
  position: relative;
  isolation: isolate;
  min-height: clamp(450px, 42vw, 580px);
  overflow: hidden;
  background-color: #f6f3ee;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border-bottom: 0 !important;
}
.hero-section--portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(102deg,
      rgba(247,243,238,.98) 0%,
      rgba(247,243,238,.96) 22%,
      rgba(247,243,238,.90) 34%,
      rgba(247,243,238,.70) 46%,
      rgba(247,243,238,.38) 58%,
      rgba(247,243,238,.12) 70%,
      rgba(247,243,238,0) 80%),
    linear-gradient(180deg,
      rgba(255,255,255,.08) 0%,
      rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.hero-section--portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.06));
  pointer-events: none;
}
.hero-portrait__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: inherit;
}
.hero-copy--portrait {
  width: min(560px, 48vw);
  padding: 58px 0 62px;
  color: var(--mcoon-charcoal);
  text-shadow: none;
}
.hero-kicker {
  color: #647a70;
}
.hero-kicker::before {
  background: #9fcf83;
}
.hero-copy--portrait h1,
.hero-copy--portrait h1 span,
.hero-copy--portrait h1 em {
  color: var(--mcoon-charcoal);
}
.hero-copy--portrait h1 strong {
  color: #7dcb71;
}
.hero-copy--portrait h1 em {
  color: var(--mcoon-charcoal) !important;
  font-style: normal;
}
.hero-copy--portrait .hero-subtitle {
  color: rgba(31, 49, 43, .78);
  max-width: 500px;
}
.trust-row {
  border-top: 0 !important;
}
.trust-row,
.trust-row .mcoon-container,
.trust-row .marquee-track,
.trust-row .marquee {
  box-shadow: none !important;
}
@media (max-width: 980px) {
  .hero-section--portrait {
    min-height: 470px;
    background-position: 66% center !important;
  }
  .hero-copy--portrait {
    width: min(520px, 56vw);
  }
}
@media (max-width: 680px) {
  .hero-section--portrait {
    min-height: 560px;
    background-position: 62% center !important;
  }
  .hero-section--portrait::before {
    background: linear-gradient(180deg,
      rgba(247,243,238,.96) 0%,
      rgba(247,243,238,.92) 26%,
      rgba(247,243,238,.74) 50%,
      rgba(247,243,238,.26) 76%,
      rgba(247,243,238,.08) 100%);
  }
  .hero-copy--portrait {
    width: 100%;
    padding: 42px 0 34px;
  }
}


/* --------------------------------------------------------------------------
   Version 1.8.0 — mcoon identity and enhanced panoramic hero
   -------------------------------------------------------------------------- */
.hero-section--portrait {
  min-height: clamp(500px, 43vw, 620px);
  background-color: #f8f5f0;
  background-position: right center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border: 0 !important;
}
.hero-section--portrait::before {
  background:
    linear-gradient(103deg,
      rgba(250,248,244,.995) 0%,
      rgba(250,248,244,.985) 21%,
      rgba(250,248,244,.94) 34%,
      rgba(250,248,244,.78) 46%,
      rgba(250,248,244,.50) 58%,
      rgba(250,248,244,.20) 70%,
      rgba(250,248,244,0) 82%),
    radial-gradient(circle at 18% 50%, rgba(255,255,255,.38), transparent 44%);
}
.hero-section--portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(1,47,34,.04), transparent 20%, transparent 82%, rgba(1,47,34,.06)),
    linear-gradient(90deg, transparent 0 73%, rgba(0,0,0,.06) 100%);
  pointer-events: none;
}
.hero-portrait__inner {
  min-height: inherit;
}
.hero-copy--portrait {
  width: min(590px, 49vw);
  padding: 64px 0 68px;
}
.hero-kicker {
  margin-bottom: 20px;
  color: #557467;
  font-size: 14px;
  letter-spacing: .14em;
}
.hero-copy--portrait h1 {
  max-width: 570px;
  margin: 0;
  font-size: clamp(55px, 5.25vw, 84px);
  line-height: .88;
  letter-spacing: -.045em;
}
.hero-copy--portrait h1 span {
  font-size: .52em;
  font-weight: 500;
  letter-spacing: -.02em;
}
.hero-copy--portrait h1 strong {
  margin-top: 7px;
  color: #65b85f;
  font-size: .92em;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255,255,255,.45);
}
.hero-copy--portrait h1 em {
  margin-top: 9px;
  color: var(--mcoon-charcoal) !important;
  font-size: .56em;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.025em;
}
.hero-copy--portrait .hero-subtitle {
  max-width: 495px;
  margin-top: 24px;
  color: rgba(30,47,41,.78);
  font-size: 18px;
  line-height: 1.6;
}
.hero-actions--portrait {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}
.hero-actions--portrait .button {
  min-height: 50px;
  padding-inline: 24px;
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(48,117,62,.16);
}
.hero-actions--portrait .button .mcoon-icon,
.hero-text-link .mcoon-icon {
  width: 18px;
  height: 18px;
}
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mcoon-forest);
  font-size: 16px;
  font-weight: 700;
}
.hero-text-link:hover {
  color: var(--mcoon-green);
}
.trust-row {
  border-top: 0 !important;
  border-bottom: 0 !important;
}
@media (max-width: 1100px) {
  .hero-section--portrait {
    min-height: 500px;
    background-position: 64% center !important;
  }
  .hero-copy--portrait {
    width: min(540px, 55vw);
  }
}
@media (max-width: 760px) {
  .hero-section--portrait {
    min-height: 610px;
    background-position: 61% center !important;
  }
  .hero-section--portrait::before {
    background: linear-gradient(180deg,
      rgba(250,248,244,.985) 0%,
      rgba(250,248,244,.95) 31%,
      rgba(250,248,244,.72) 53%,
      rgba(250,248,244,.28) 76%,
      rgba(250,248,244,.06) 100%);
  }
  .hero-section--portrait::after {
    background: linear-gradient(180deg, transparent 70%, rgba(1,47,34,.08));
  }
  .hero-copy--portrait {
    width: 100%;
    padding: 40px 0 36px;
  }
  .hero-copy--portrait h1 {
    max-width: 95%;
    font-size: clamp(44px, 14vw, 64px);
  }
  .hero-copy--portrait .hero-subtitle {
    max-width: 92%;
    font-size: 16px;
  }
  .hero-actions--portrait {
    gap: 16px;
    margin-top: 24px;
  }
}


/* --------------------------------------------------------------------------
   Version 1.8.3 — refined logo hover
   -------------------------------------------------------------------------- */
.hero-section--portrait {
  min-height: 0 !important;
  height: auto;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.hero-section--portrait::before {
  content: none !important;
  display: none !important;
  background: none !important;
}
.hero-section--portrait::after {
  background: linear-gradient(90deg, rgba(255,255,255,.08), transparent 42%) !important;
}
.hero-portrait__inner {
  min-height: 0 !important;
  align-items: center;
}
.hero-copy--portrait {
  width: min(570px, 48vw);
  padding: 48px 0 52px;
  text-shadow: 0 1px 18px rgba(255,255,255,.42);
}
.hero-copy--portrait h1 {
  max-width: 560px;
  font-size: clamp(50px, 5vw, 78px);
  line-height: .9;
}
.hero-copy--portrait h1 span,
.hero-copy--portrait h1 em {
  color: var(--mcoon-charcoal) !important;
}
.hero-copy--portrait h1 strong {
  color: var(--mcoon-green) !important;
}
.hero-copy--portrait h1 em {
  margin-top: 8px;
  font-style: normal;
}
.hero-copy--portrait .hero-subtitle {
  margin-top: 20px;
}
.hero-kicker,
.hero-actions--portrait {
  display: none !important;
}
.utility-bar__inner {
  justify-content: flex-start !important;
}
.utility-trust {
  justify-content: flex-start !important;
  gap: 0 !important;
  width: auto !important;
}
.utility-trust span {
  position: relative;
  padding: 0 18px;
}
.utility-trust span:first-child {
  padding-left: 0;
}
.utility-trust span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(183,214,158,.38);
  transform: translateY(-50%);
}
.brand-logo__mark,
.brand-logo__text strong,
.brand-logo__text small {
  transition: color 220ms ease, filter 220ms ease !important;
}
.brand-logo:hover .brand-logo__mark,
.brand-logo:hover .brand-logo__text strong,
.brand-logo:hover .brand-logo__text small {
  transform: none !important;
  color: var(--mcoon-green) !important;
  filter: none !important;
}
.colour-filter legend {
  margin-bottom: 12px !important;
}
.site-footer {
  background: var(--mcoon-forest) !important;
}
@media (max-width: 980px) {
  .hero-section--portrait {
    min-height: 0 !important;
  }
  .hero-copy--portrait {
    width: min(520px, 56vw);
    padding: 44px 0 48px;
  }
}
@media (max-width: 680px) {
  .hero-section--portrait {
    min-height: 0 !important;
    background-position: 62% center !important;
  }
  .hero-copy--portrait {
    width: 100%;
    padding: 36px 0 40px;
  }
  .utility-trust span {
    padding: 0 12px;
  }
}


/* --------------------------------------------------------------------------
   Version 1.8.3 — refined logo hover
   -------------------------------------------------------------------------- */
.hero-section--portrait {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.hero-section--portrait::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg,
    rgba(250,248,244,.98) 0%,
    rgba(250,248,244,.97) 16%,
    rgba(250,248,244,.93) 30%,
    rgba(250,248,244,.82) 42%,
    rgba(250,248,244,.58) 52%,
    rgba(250,248,244,.28) 62%,
    rgba(250,248,244,.08) 70%,
    rgba(250,248,244,0) 78%) !important;
  pointer-events: none;
}
.hero-section--portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.05)) !important;
  pointer-events: none;
}
.hero-portrait__inner {
  position: relative;
  z-index: 1;
  min-height: 0 !important;
}
.hero-copy--portrait {
  width: min(560px, 47vw);
  padding: 52px 0 56px;
  text-shadow: none !important;
}
.hero-copy--portrait h1,
.hero-copy--portrait .hero-subtitle {
  position: relative;
  z-index: 1;
}
.hero-copy--portrait .hero-subtitle {
  color: rgba(24, 38, 33, .76) !important;
  max-width: 500px;
}
@media (max-width: 980px) {
  .hero-section--portrait::before {
    background: linear-gradient(90deg,
      rgba(250,248,244,.97) 0%,
      rgba(250,248,244,.94) 24%,
      rgba(250,248,244,.80) 42%,
      rgba(250,248,244,.42) 58%,
      rgba(250,248,244,.10) 72%,
      rgba(250,248,244,0) 82%) !important;
  }
  .hero-copy--portrait {
    width: min(520px, 56vw);
  }
}
@media (max-width: 680px) {
  .hero-section--portrait::before {
    background: linear-gradient(180deg,
      rgba(250,248,244,.96) 0%,
      rgba(250,248,244,.90) 28%,
      rgba(250,248,244,.66) 54%,
      rgba(250,248,244,.22) 78%,
      rgba(250,248,244,.06) 100%) !important;
  }
  .hero-copy--portrait {
    width: 100%;
    padding: 34px 0 38px;
  }
}


/* Version 1.8.3 — only the mcoon.co.uk wordmark changes colour on hover. */
.brand-logo:hover .brand-logo__mark,
.brand-logo:hover .brand-logo__text small {
  color: inherit !important;
  filter: none !important;
  transform: none !important;
}
.brand-logo:hover .brand-logo__text strong {
  color: var(--mcoon-green) !important;
}


/* --------------------------------------------------------------------------
   Version 1.8.5 — editorial breeder banner and fixed logo hover
   -------------------------------------------------------------------------- */
.brand-logo:hover .brand-logo__mark,
.brand-logo:hover .brand-logo__text strong,
.brand-logo:hover .brand-logo__text small {
  color: inherit !important;
  filter: none !important;
  transform: none !important;
}
.breeder-cta {
  padding: 0;
  background: var(--mcoon-cream);
}
.breeder-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  min-height: 470px;
  overflow: hidden;
  background: rgba(255,255,255,.46);
  border: 1px solid rgba(1,47,34,.08);
  border-radius: 0;
  box-shadow: 0 22px 55px rgba(1,47,34,.06);
}
.breeder-cta__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5vw, 76px);
}
.breeder-cta__copy .eyebrow {
  margin-bottom: 14px;
  letter-spacing: .11em;
}
.breeder-cta__copy h2 {
  max-width: 560px;
  margin: 0 0 20px;
  font-size: clamp(42px, 3.7vw, 58px);
  line-height: .98;
  letter-spacing: -.025em;
}
.breeder-cta__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 0 20px;
  color: var(--mcoon-muted);
  line-height: 1.7;
}
.breeder-cta__copy .check-list {
  margin: 0 0 24px;
}
.breeder-cta__copy .button {
  width: min(100%, 340px);
}
.breeder-cta__image {
  min-height: 470px;
  overflow: hidden;
  background: #1e2834;
}
.breeder-cta__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 980px) {
  .breeder-cta__grid {
    grid-template-columns: 1fr;
  }
  .breeder-cta__copy {
    padding: 52px clamp(24px, 7vw, 64px);
  }
  .breeder-cta__image,
  .breeder-cta__image img {
    min-height: 420px;
  }
}
@media (max-width: 680px) {
  .breeder-cta__copy {
    padding: 42px 20px;
  }
  .breeder-cta__copy h2 {
    font-size: clamp(38px, 12vw, 50px);
  }
  .breeder-cta__image,
  .breeder-cta__image img {
    min-height: 310px;
  }
}


/* --------------------------------------------------------------------------
   Version 1.8.5 — editorial breeder banner and fixed logo hover
   -------------------------------------------------------------------------- */
.brand-logo,
.brand-logo:hover,
.brand-logo:focus-visible {
  color: var(--mcoon-forest) !important;
}
.brand-logo .brand-logo__mark,
.brand-logo:hover .brand-logo__mark,
.brand-logo:focus-visible .brand-logo__mark {
  color: var(--mcoon-forest) !important;
  filter: none !important;
  transform: none !important;
}
.brand-logo .brand-logo__text strong,
.brand-logo:hover .brand-logo__text strong,
.brand-logo:focus-visible .brand-logo__text strong {
  color: var(--mcoon-forest) !important;
  transform: none !important;
}
.brand-logo .brand-logo__text small,
.brand-logo:hover .brand-logo__text small,
.brand-logo:focus-visible .brand-logo__text small {
  color: #557467 !important;
  transform: none !important;
}
.brand-logo:hover svg,
.brand-logo:focus-visible svg {
  transform: none !important;
}
.breeder-cta {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  padding: 0;
  overflow: hidden;
  background-color: #f8f5f0;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
}
.breeder-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(96deg,
    rgba(250,248,244,1) 0%,
    rgba(250,248,244,.99) 24%,
    rgba(250,248,244,.96) 36%,
    rgba(250,248,244,.84) 46%,
    rgba(250,248,244,.56) 56%,
    rgba(250,248,244,.22) 66%,
    rgba(250,248,244,0) 76%);
  pointer-events: none;
}
.breeder-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(1,47,34,.04));
  pointer-events: none;
}
.breeder-cta__grid {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 500px;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.breeder-cta__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(570px, 48vw);
  min-height: 500px;
  padding: 58px 0 62px;
}
.breeder-cta__copy .eyebrow {
  margin: 0 0 14px;
  color: var(--mcoon-forest-2);
}
.breeder-cta__copy h2 {
  max-width: 570px;
  margin: 0 0 20px;
  font-size: clamp(44px, 4vw, 62px);
  line-height: .98;
  letter-spacing: -.028em;
}
.breeder-cta__copy > p:not(.eyebrow) {
  max-width: 535px;
  margin-bottom: 20px;
  color: rgba(25,45,38,.72);
}
.breeder-cta__copy .check-list {
  margin-bottom: 26px;
}
.breeder-cta__copy .button {
  width: min(100%, 340px);
}
.breeder-cta__image {
  display: none !important;
}
@media (max-width: 980px) {
  .breeder-cta {
    min-height: 480px;
    background-position: 68% center;
  }
  .breeder-cta::before {
    background: linear-gradient(90deg,
      rgba(250,248,244,.99) 0%,
      rgba(250,248,244,.96) 32%,
      rgba(250,248,244,.80) 48%,
      rgba(250,248,244,.38) 64%,
      rgba(250,248,244,.05) 80%);
  }
  .breeder-cta__grid,
  .breeder-cta__copy {
    min-height: 480px;
  }
  .breeder-cta__copy {
    width: min(520px, 58vw);
    padding: 50px 0;
  }
}
@media (max-width: 680px) {
  .breeder-cta {
    min-height: 620px;
    background-position: 58% bottom;
    background-size: cover;
  }
  .breeder-cta::before {
    background: linear-gradient(180deg,
      rgba(250,248,244,.99) 0%,
      rgba(250,248,244,.97) 38%,
      rgba(250,248,244,.78) 58%,
      rgba(250,248,244,.24) 78%,
      rgba(250,248,244,.04) 100%);
  }
  .breeder-cta__grid {
    min-height: 620px;
  }
  .breeder-cta__copy {
    width: 100%;
    min-height: 0;
    padding: 42px 0 300px;
  }
  .breeder-cta__copy h2 {
    font-size: clamp(38px, 11vw, 50px);
  }
}


/* --------------------------------------------------------------------------
   Version 1.8.6 — hero-style breeder section and completely static brand hover
   -------------------------------------------------------------------------- */
.brand-logo,
.brand-logo:hover,
.brand-logo:focus,
.brand-logo:focus-visible,
.brand-logo:active {
  color: var(--mcoon-forest) !important;
  transform: none !important;
  filter: none !important;
}
.brand-logo .brand-logo__mark,
.brand-logo:hover .brand-logo__mark,
.brand-logo:focus .brand-logo__mark,
.brand-logo:focus-visible .brand-logo__mark,
.brand-logo:active .brand-logo__mark,
.brand-logo .brand-logo__mark svg,
.brand-logo:hover .brand-logo__mark svg,
.brand-logo:focus .brand-logo__mark svg,
.brand-logo:focus-visible .brand-logo__mark svg,
.brand-logo:active .brand-logo__mark svg {
  color: var(--mcoon-forest) !important;
  transform: none !important;
  filter: none !important;
}
.brand-logo .brand-logo__text strong,
.brand-logo:hover .brand-logo__text strong,
.brand-logo:focus .brand-logo__text strong,
.brand-logo:focus-visible .brand-logo__text strong,
.brand-logo:active .brand-logo__text strong {
  color: var(--mcoon-forest) !important;
  transform: none !important;
}
.brand-logo .brand-logo__text small,
.brand-logo:hover .brand-logo__text small,
.brand-logo:focus .brand-logo__text small,
.brand-logo:focus-visible .brand-logo__text small,
.brand-logo:active .brand-logo__text small {
  color: #557467 !important;
  transform: none !important;
}
.brand-logo__mark.is-heartbeat:hover,
.brand-logo:hover .brand-logo__mark.is-heartbeat {
  animation: none !important;
}

.breeder-cta--hero {
  position: relative;
  isolation: isolate;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background-color: #f8f5f0;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border: 0;
}
.breeder-cta--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg,
    rgba(250,248,244,.99) 0%,
    rgba(250,248,244,.98) 18%,
    rgba(250,248,244,.94) 31%,
    rgba(250,248,244,.84) 42%,
    rgba(250,248,244,.60) 53%,
    rgba(250,248,244,.30) 63%,
    rgba(250,248,244,.09) 72%,
    rgba(250,248,244,0) 80%);
  pointer-events: none;
}
.breeder-cta--hero::after {
  content: none;
}
.breeder-cta--hero .breeder-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.breeder-cta--hero .breeder-cta__copy {
  width: min(570px, 48vw);
  min-height: 0;
  padding: 54px 0 58px;
  background: transparent;
}
.breeder-cta--hero .breeder-cta__copy .eyebrow {
  margin: 0 0 12px;
  color: var(--mcoon-forest-2);
  letter-spacing: .11em;
}
.breeder-cta--hero .breeder-cta__copy h2 {
  max-width: 570px;
  margin: 0 0 18px;
  color: var(--mcoon-forest);
  font-size: clamp(42px, 3.7vw, 58px);
  line-height: .98;
  letter-spacing: -.028em;
}
.breeder-cta--hero .breeder-cta__copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 18px;
  color: rgba(25,45,38,.74);
  line-height: 1.65;
}
.breeder-cta--hero .check-list {
  margin: 0 0 24px;
}
.breeder-cta--hero .breeder-cta__copy .button {
  width: min(100%, 340px);
}
.breeder-cta--hero .breeder-cta__grid,
.breeder-cta--hero .breeder-cta__image {
  display: none !important;
}
@media (max-width: 980px) {
  .breeder-cta--hero {
    background-position: 62% center !important;
  }
  .breeder-cta--hero::before {
    background: linear-gradient(90deg,
      rgba(250,248,244,.99) 0%,
      rgba(250,248,244,.96) 30%,
      rgba(250,248,244,.78) 48%,
      rgba(250,248,244,.36) 64%,
      rgba(250,248,244,.04) 80%);
  }
  .breeder-cta--hero .breeder-cta__copy {
    width: min(520px, 58vw);
    padding: 48px 0 52px;
  }
}
@media (max-width: 680px) {
  .breeder-cta--hero {
    min-height: 600px;
    background-position: 58% bottom !important;
  }
  .breeder-cta--hero::before {
    background: linear-gradient(180deg,
      rgba(250,248,244,.99) 0%,
      rgba(250,248,244,.97) 35%,
      rgba(250,248,244,.78) 57%,
      rgba(250,248,244,.24) 78%,
      rgba(250,248,244,.04) 100%);
  }
  .breeder-cta--hero .breeder-cta__inner {
    align-items: flex-start;
  }
  .breeder-cta--hero .breeder-cta__copy {
    width: 100%;
    padding: 40px 0 290px;
  }
  .breeder-cta--hero .breeder-cta__copy h2 {
    font-size: clamp(38px, 11vw, 50px);
  }
}


/* --------------------------------------------------------------------------
   Version 1.8.7 — taller kitten photography and prominent pricing
   -------------------------------------------------------------------------- */
.kitten-card__media {
  aspect-ratio: 16 / 17.2 !important;
  min-height: 420px;
}
.kitten-card__media > a {
  display: block;
  width: 100%;
  height: 100%;
}
.kitten-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kitten-card__price-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background: rgba(1,47,34,.94);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  box-shadow: 0 10px 26px rgba(1,47,34,.28);
  backdrop-filter: blur(8px);
}
.kitten-price {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 12px 0 10px !important;
  padding: 6px 13px;
  border-radius: 7px;
  background: rgba(83,177,84,.12);
  color: var(--mcoon-forest) !important;
  font-size: 25px !important;
  font-weight: 800 !important;
  line-height: 1;
}
@media (max-width: 980px) {
  .kitten-card__media {
    min-height: 360px;
  }
}
@media (max-width: 680px) {
  .kitten-card__media {
    aspect-ratio: 4 / 5 !important;
    min-height: 0;
  }
  .kitten-card__price-badge {
    right: 11px;
    bottom: 11px;
    min-height: 42px;
    padding: 7px 13px;
    font-size: 21px;
  }
  .kitten-price {
    font-size: 22px !important;
  }
}


/* --------------------------------------------------------------------------
   Version 2.0.0 — enhanced editorial marketplace concept
   -------------------------------------------------------------------------- */
:root {
  --mcoon-page: #faf7f2;
  --mcoon-panel: #fffdf9;
  --mcoon-soft: #f1ece5;
  --mcoon-leaf: #74bd69;
  --mcoon-leaf-pale: #b7d69e;
  --mcoon-deep: #003e2f;
  --mcoon-copy: #23372f;
  --mcoon-premium-shadow: 0 22px 60px rgba(16, 55, 43, .10);
}
body {
  background: var(--mcoon-page);
}
.main-header {
  background: rgba(255,253,249,.96) !important;
  border-bottom: 1px solid rgba(1,47,34,.08) !important;
  box-shadow: 0 5px 24px rgba(1,47,34,.035);
}
.brand-logo,
.brand-logo:hover,
.brand-logo:focus,
.brand-logo:active {
  transform: none !important;
  filter: none !important;
}
.brand-logo__mark,
.brand-logo:hover .brand-logo__mark,
.brand-logo:focus .brand-logo__mark,
.brand-logo__mark svg,
.brand-logo:hover .brand-logo__mark svg {
  color: var(--mcoon-forest) !important;
  transform: none !important;
  filter: none !important;
}
.brand-logo__text strong,
.brand-logo:hover .brand-logo__text strong,
.brand-logo:focus .brand-logo__text strong {
  color: var(--mcoon-forest) !important;
}
.brand-logo__text small,
.brand-logo:hover .brand-logo__text small,
.brand-logo:focus .brand-logo__text small {
  color: #668077 !important;
}

.hero-section--portrait {
  position: relative;
  isolation: isolate;
  min-height: clamp(470px, 43vw, 620px) !important;
  overflow: hidden;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border: 0 !important;
}
.hero-section--portrait::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(92deg,
    rgba(255,253,249,.99) 0%,
    rgba(255,253,249,.98) 19%,
    rgba(255,253,249,.94) 33%,
    rgba(255,253,249,.82) 45%,
    rgba(255,253,249,.52) 57%,
    rgba(255,253,249,.18) 69%,
    rgba(255,253,249,0) 79%) !important;
  pointer-events: none;
}
.hero-section--portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(255,253,249,.14)) !important;
  pointer-events: none;
}
.hero-portrait__inner {
  position: relative;
  z-index: 1;
  min-height: inherit !important;
  display: flex;
  align-items: center;
}
.hero-copy--portrait {
  width: min(610px, 49vw);
  padding: 68px 0 72px;
  text-shadow: none !important;
}
.hero-copy--portrait h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(56px, 5.3vw, 86px);
  line-height: .88;
  letter-spacing: -.045em;
}
.hero-copy--portrait h1 span {
  color: var(--mcoon-deep) !important;
  font-size: .52em;
  letter-spacing: -.015em;
}
.hero-copy--portrait h1 strong {
  color: var(--mcoon-leaf) !important;
  font-size: .94em;
  letter-spacing: -.025em;
}
.hero-copy--portrait h1 em {
  margin-top: 10px;
  color: var(--mcoon-deep) !important;
  font-size: .52em;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}
.hero-copy--portrait .hero-subtitle {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(35,55,47,.74) !important;
  font-size: 18px;
  line-height: 1.65;
}

.trust-row {
  position: relative;
  z-index: 5;
  border: 0 !important;
  background: var(--mcoon-deep) !important;
  box-shadow: 0 10px 30px rgba(0,62,47,.12);
}
.trust-item {
  min-height: 72px;
  border-right-color: rgba(183,214,158,.18) !important;
}
.trust-item > .mcoon-icon {
  color: var(--mcoon-leaf-pale) !important;
}

.marketplace-section {
  padding-top: 52px !important;
  padding-bottom: 68px !important;
}
.marketplace-layout {
  gap: 28px;
  align-items: start;
}
.filter-panel {
  top: 128px;
  padding: 30px 24px 24px;
  border: 1px solid rgba(183,214,158,.14);
  border-radius: 14px;
  background: linear-gradient(160deg, #064b39, #003e2f 72%);
  box-shadow: var(--mcoon-premium-shadow);
}
.filter-heading h2 {
  max-width: 230px;
  font-family: var(--mcoon-font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.02;
  text-transform: none;
}
.listing-area {
  padding: 0;
}
.listing-toolbar {
  margin-bottom: 18px;
  padding: 0 4px;
}
.kitten-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.kitten-card {
  border: 1px solid rgba(1,47,34,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 28px rgba(1,47,34,.065);
}
.kitten-card:hover {
  transform: translateY(-5px);
  border-color: rgba(83,177,84,.34);
  box-shadow: 0 20px 45px rgba(1,47,34,.13);
}
.kitten-card__media {
  aspect-ratio: 4 / 4.7 !important;
  min-height: 360px !important;
}
.kitten-card__media img {
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.kitten-card:hover .kitten-card__media img {
  transform: scale(1.035);
}
.kitten-card__price-badge {
  right: 14px;
  bottom: 14px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,62,47,.94);
  font-size: 22px;
}
.kitten-card__body {
  padding: 20px 20px 18px;
}
.kitten-card__body h3 {
  font-size: 25px;
  line-height: 1.05;
}
.kitten-card__colour {
  margin-top: 5px;
  color: #6b7b74;
}
.kitten-price {
  display: none !important;
}
.kitten-badges span {
  border-radius: 999px;
  background: #f2eee7;
}
.card-action {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(1,47,34,.08);
}

.benefits-strip {
  border: 0 !important;
  background: var(--mcoon-deep) !important;
}
.benefit-item {
  padding: 28px 26px;
}

.breeder-cta--hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(470px, 38vw, 560px);
  overflow: hidden;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  border: 0 !important;
}
.breeder-cta--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(92deg,
    rgba(255,253,249,.99) 0%,
    rgba(255,253,249,.98) 20%,
    rgba(255,253,249,.94) 35%,
    rgba(255,253,249,.80) 47%,
    rgba(255,253,249,.48) 59%,
    rgba(255,253,249,.14) 70%,
    rgba(255,253,249,0) 80%);
}
.breeder-cta--hero .breeder-cta__inner {
  min-height: inherit;
}
.breeder-cta--hero .breeder-cta__copy {
  width: min(610px, 49vw);
  padding: 62px 0 66px;
}
.breeder-cta--hero .breeder-cta__copy h2 {
  max-width: 600px;
  font-size: clamp(46px, 4vw, 64px);
  line-height: .95;
}
.breeder-cta--hero .breeder-cta__copy > p:not(.eyebrow) {
  max-width: 520px;
}
.breeder-cta--hero .breeder-cta__copy .button {
  width: auto;
  min-width: 230px;
}

.testimonials {
  background: linear-gradient(180deg, #fbf8f3, #f5efe8) !important;
}
.testimonials .section-heading h2 {
  font-size: clamp(42px, 4vw, 58px);
}
.testimonial-carousel .testimonial-card {
  border-color: rgba(1,47,34,.09);
  background: rgba(255,255,255,.90);
  box-shadow: 0 10px 32px rgba(1,47,34,.055);
}
.site-footer {
  background: var(--mcoon-deep) !important;
  border-top: 0 !important;
}

@media (max-width: 1180px) {
  .kitten-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kitten-card__media { min-height: 340px !important; }
}
@media (max-width: 980px) {
  .hero-section--portrait { min-height: 500px !important; background-position: 63% center !important; }
  .hero-copy--portrait { width: min(530px, 58vw); }
  .breeder-cta--hero { background-position: 62% center !important; }
  .breeder-cta--hero .breeder-cta__copy { width: min(530px, 58vw); }
}
@media (max-width: 680px) {
  .hero-section--portrait { min-height: 610px !important; background-position: 64% center !important; }
  .hero-section--portrait::before,
  .breeder-cta--hero::before {
    background: linear-gradient(180deg,
      rgba(255,253,249,.98) 0%,
      rgba(255,253,249,.94) 34%,
      rgba(255,253,249,.70) 58%,
      rgba(255,253,249,.22) 80%,
      rgba(255,253,249,.04) 100%) !important;
  }
  .hero-copy--portrait {
    width: 100%;
    padding: 42px 0 290px;
  }
  .hero-copy--portrait h1 { font-size: clamp(46px, 14vw, 64px); }
  .marketplace-section { padding-top: 34px !important; }
  .kitten-grid { grid-template-columns: 1fr; }
  .kitten-card__media { min-height: 0 !important; aspect-ratio: 4 / 5 !important; }
  .breeder-cta--hero { min-height: 650px; background-position: 60% bottom !important; }
  .breeder-cta--hero .breeder-cta__copy { width: 100%; padding: 40px 0 300px; }
}


/* --------------------------------------------------------------------------
   Version 2.0.1 — static header, focused logo hover and footer contrast
   -------------------------------------------------------------------------- */
.site-header,
.main-header,
.site-header.is-sticky .main-header {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  animation: none !important;
  box-shadow: none;
}
.brand-logo,
.brand-logo:hover,
.brand-logo:focus,
.brand-logo:focus-visible,
.brand-logo:active,
.brand-logo__mark,
.brand-logo:hover .brand-logo__mark,
.brand-logo:focus .brand-logo__mark,
.brand-logo:focus-visible .brand-logo__mark,
.brand-logo:active .brand-logo__mark,
.brand-logo__mark svg,
.brand-logo:hover .brand-logo__mark svg,
.brand-logo:focus .brand-logo__mark svg,
.brand-logo:focus-visible .brand-logo__mark svg,
.brand-logo:active .brand-logo__mark svg,
.brand-logo__text small,
.brand-logo:hover .brand-logo__text small,
.brand-logo:focus .brand-logo__text small,
.brand-logo:focus-visible .brand-logo__text small,
.brand-logo:active .brand-logo__text small {
  color: inherit !important;
  fill: currentColor !important;
  filter: none !important;
  transform: none !important;
}
.brand-logo__text strong {
  transition: color 220ms ease !important;
}
.brand-logo:hover .brand-logo__text strong,
.brand-logo:focus-visible .brand-logo__text strong {
  color: var(--mcoon-green) !important;
}
.brand-logo__mark {
  overflow: visible !important;
}
.brand-logo__mark svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}
.footer-column h3,
.footer-contact h3 {
  color: #ffffff !important;
}


/* --------------------------------------------------------------------------
   Version 2.0.2 — focused utility message, compact hero and card refinements
   -------------------------------------------------------------------------- */
.utility-bar__inner {
  justify-content: flex-start !important;
}
.utility-message {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 38px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .015em;
  white-space: nowrap;
}
.utility-message .utility-message__icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: #b7d69e;
  opacity: .88;
}
.hero-section--portrait {
  min-height: 350px !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.hero-portrait__inner {
  min-height: 350px !important;
}
.hero-copy--portrait {
  padding: 34px 0 38px !important;
}
.hero-copy--portrait h1 em {
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: -.015em;
}
.hero-copy--portrait .hero-subtitle {
  display: none !important;
}
.footer-brand__paw {
  display: inline-flex;
  width: 56px;
  height: 62px;
  margin: 0 0 14px;
  color: #85958f;
  opacity: .86;
  transition: color 220ms ease, opacity 220ms ease, filter 220ms ease;
}
.footer-brand__paw:hover,
.footer-brand__paw:focus-visible {
  color: #fff;
  opacity: 1;
  filter: brightness(0) invert(1);
}
.footer-brand__paw-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(.9);
  transition: filter 220ms ease;
}
.footer-brand__paw:hover .footer-brand__paw-image,
.footer-brand__paw:focus-visible .footer-brand__paw-image {
  filter: grayscale(1) brightness(0) invert(1);
}
.kitten-card__price-badge {
  right: 12px !important;
  bottom: 12px !important;
  min-height: 40px !important;
  padding: 8px 13px 7px !important;
  border: 1px solid rgba(0,62,47,.18) !important;
  border-radius: 4px !important;
  background: rgba(255,253,249,.96) !important;
  color: var(--mcoon-deep) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  box-shadow: 0 9px 22px rgba(1,47,34,.18) !important;
  backdrop-filter: blur(10px);
}
.benefits-strip__grid {
  justify-items: stretch;
}
.benefit-item {
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left !important;
  padding-left: 0 !important;
  padding-right: 26px !important;
}
.benefit-item > .mcoon-icon {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.benefit-item > div {
  text-align: left !important;
}
@media (max-width: 980px) {
  .utility-message { font-size: 13px; gap: 9px; }
  .hero-section--portrait,
  .hero-portrait__inner { min-height: 240px !important; }
}
@media (max-width: 680px) {
  .utility-message {
    min-height: 44px;
    gap: 7px;
    overflow-x: auto;
    font-size: 12px;
    scrollbar-width: none;
  }
  .utility-message::-webkit-scrollbar { display: none; }
  .utility-message .utility-message__icon { width: 12px; height: 12px; flex-basis: 12px; }
  .hero-section--portrait,
  .hero-portrait__inner { min-height: 280px !important; }
  .hero-copy--portrait { padding: 30px 0 34px !important; }
  .footer-brand__paw { width: 48px; height: 54px; }
  .benefit-item { padding-right: 0 !important; }
}


/* Version 2.0.3 — utility CTA, expanded benefit icons and card gallery controls */
.utility-bar__inner { display:flex; align-items:center; justify-content:space-between !important; gap:24px; }
.utility-post-button { display:inline-flex; align-items:center; gap:8px; flex:0 0 auto; min-height:30px; padding:0 13px; border:1px solid rgba(183,214,158,.52); border-radius:4px; color:#fff; font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.045em; transition:background .2s ease,color .2s ease,border-color .2s ease; }
.utility-post-button:hover { background:#b7d69e; border-color:#b7d69e; color:var(--mcoon-forest); }
.utility-post-button .mcoon-icon { width:14px; height:14px; }
.footer-care { display:inline-flex; align-items:center; justify-content:flex-end; gap:10px; }
.footer-care .footer-brand__paw { display:inline-flex; width:27px; height:30px; margin:0; vertical-align:middle; }
.footer-care .footer-brand__paw-image { width:100%; height:100%; }
.benefit-item > .mcoon-icon { width:68px !important; height:68px !important; flex:0 0 68px !important; overflow:visible; transform:scale(1.18); transform-origin:center; }
.benefit-item { gap:22px !important; }
.kitten-meta { padding-bottom:12px !important; margin-bottom:2px !important; }
.kitten-card__gallery-arrow { position:absolute; top:50%; z-index:5; display:grid; place-items:center; width:36px; height:44px; padding:0; border:0; border-radius:4px; background:rgba(1,47,34,.64); color:#fff; opacity:1; transform:translateY(-50%); transition:background .2s ease,transform .2s ease; backdrop-filter:blur(8px); }
.kitten-card__gallery-arrow:focus-visible { outline:2px solid #fff; outline-offset:2px; }
.kitten-card__gallery-arrow:hover { background:rgba(1,47,34,.9); }
.kitten-card__gallery-arrow .mcoon-icon { width:20px; height:20px; }
.kitten-card__gallery-arrow--prev { left:10px; }
.kitten-card__gallery-arrow--prev .mcoon-icon { transform:rotate(180deg); }
.kitten-card__gallery-arrow--next { right:10px; }
.kitten-card__gallery-count { position:absolute; left:50%; bottom:12px; z-index:4; padding:4px 8px; border-radius:3px; background:rgba(1,47,34,.66); color:#fff; font-size:12px; font-weight:700; transform:translateX(-50%); backdrop-filter:blur(6px); }
.kitten-card__media img { transition:transform .45s cubic-bezier(.2,.8,.2,1),opacity .12s ease !important; }
.kitten-card__media img.is-changing { opacity:.25; }
@media(max-width:980px){ .utility-message{min-width:0;overflow-x:auto;} .utility-post-button{font-size:12px;padding-inline:10px;} .benefit-item > .mcoon-icon{width:60px !important;height:60px !important;flex-basis:60px !important;} }
@media(max-width:680px){ .utility-bar__inner{gap:12px;} .utility-post-button{min-height:28px;white-space:nowrap;} .utility-post-button .mcoon-icon{display:none;} .kitten-card__gallery-arrow{opacity:1;width:32px;height:40px;} .footer-care{justify-content:flex-start;} }


/* Version 2.0.4 — footer mark alignment, logo sequence and card polish */
.footer-care {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 9px !important;
  white-space: nowrap;
}
.footer-care .footer-brand__paw {
  display: inline-grid !important;
  place-items: center !important;
  width: 25px !important;
  height: 27px !important;
  margin: 0 !important;
  flex: 0 0 25px;
}
.footer-care .footer-brand__paw-image {
  display: block;
  width: 22px !important;
  height: 25px !important;
  object-fit: contain;
}
.footer-wordmark { transition: color .22s ease; }
.footer-wordmark:hover,
.footer-wordmark:focus-visible { color: #fff !important; }

.brand-logo__mark { transform-style: preserve-3d; transform-origin: center; }
.brand-logo__mark.is-flip-vertical {
  animation: mcoon-logo-vertical-flip .9s cubic-bezier(.22,.75,.25,1) both !important;
}
@keyframes mcoon-logo-vertical-flip {
  0% { transform: perspective(500px) rotateX(0deg); }
  48% { transform: perspective(500px) rotateX(180deg); }
  100% { transform: perspective(500px) rotateX(360deg); }
}
.brand-logo__mark.is-heartbeat {
  animation: mcoon-logo-heartbeat 1.05s ease-in-out both !important;
}
@keyframes mcoon-logo-heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.10); }
  28% { transform: scale(1); }
  42% { transform: scale(1.07); }
  62% { transform: scale(1); }
}

.utility-post-button {
  min-height: 32px !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #a3ff91 !important;
  color: #071b13 !important;
  box-shadow: 0 5px 14px rgba(0,0,0,.14);
}
.utility-post-button:hover,
.utility-post-button:focus-visible {
  background: #fff !important;
  color: var(--mcoon-forest) !important;
  transform: translateY(-1px);
}

.kitten-card__body { padding-top: 16px !important; }
.kitten-meta {
  margin: 5px 0 0 !important;
  padding: 0 0 14px !important;
  row-gap: 8px !important;
}
.kitten-price {
  margin: 0 0 12px !important;
  padding-top: 2px;
}
.kitten-badges {
  gap: 7px !important;
  margin: 2px 0 12px !important;
  padding-top: 2px;
}
.kitten-badges span { line-height: 1.2; }
.status-chip,
.status-chip.is-available,
.kitten-card__price-badge {
  background: #a3ff91 !important;
  color: #050b07 !important;
  border: 1px solid rgba(5,11,7,.12) !important;
  box-shadow: 0 5px 13px rgba(1,47,34,.14) !important;
}
.status-chip {
  min-height: 28px !important;
  gap: 5px;
  padding: 4px 9px !important;
  font-size: 12px !important;
  letter-spacing: .025em !important;
}
.status-chip .status-chip__icon {
  width: 15px !important;
  height: 15px !important;
  stroke-width: 2.1;
}
.kitten-card__price-badge {
  border-radius: 4px !important;
  padding: 6px 10px !important;
  font-weight: 800 !important;
}

.benefit-item {
  display: grid !important;
  grid-template-columns: 84px minmax(0,1fr) !important;
  align-items: center !important;
  gap: 18px !important;
}
.benefit-icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  overflow: visible;
  justify-self: start;
  align-self: center;
}
.benefit-icon > .mcoon-icon {
  width: 72px !important;
  height: 72px !important;
  max-width: none !important;
  max-height: none !important;
  overflow: visible !important;
  transform: scale(1.34);
  transform-origin: center;
  color: #b7d69e;
}
.benefit-item > .mcoon-icon { display:none !important; }

@media (max-width: 980px) {
  .benefit-item { grid-template-columns: 70px minmax(0,1fr) !important; }
  .benefit-icon { width:70px; height:70px; }
  .benefit-icon > .mcoon-icon { width:60px !important; height:60px !important; }
}
@media (max-width: 680px) {
  .footer-care { justify-content:flex-start !important; white-space:normal; flex-wrap:wrap; }
  .utility-post-button { padding-inline:12px !important; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-logo__mark.is-flip-vertical,
  .brand-logo__mark.is-heartbeat { animation:none !important; }
}


/* Version 2.0.5 — unified actions and editorial trust separator */
.filter-panel .button--primary,
.filter-panel button[type="submit"] {
  min-height: 42px !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #a3ff91 !important;
  color: #071b13 !important;
  font-weight: 800 !important;
  letter-spacing: .035em;
  box-shadow: 0 5px 14px rgba(0,0,0,.14) !important;
}
.filter-panel .button--primary:hover,
.filter-panel .button--primary:focus-visible,
.filter-panel button[type="submit"]:hover,
.filter-panel button[type="submit"]:focus-visible {
  background: #fff !important;
  color: var(--mcoon-forest) !important;
  transform: translateY(-1px);
}
.filter-panel .button--primary .mcoon-icon,
.filter-panel button[type="submit"] .mcoon-icon {
  width: 14px;
  height: 14px;
}

.benefits-strip--editorial {
  position: relative;
  overflow: hidden;
  padding: 48px 0 50px;
  background: #003e2d !important;
  color: #fff;
}
.benefits-strip--editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(163,255,145,.10), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.025), transparent 35%, rgba(255,255,255,.018));
}
.benefits-strip__inner {
  position: relative;
  z-index: 1;
}
.benefits-strip__intro {
  display: grid;
  grid-template-columns: 180px minmax(0,1fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.benefits-strip__eyebrow {
  margin: 0;
  color: #a3ff91;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.benefits-strip__intro h2 {
  margin: 0;
  color: #fff;
  font-family: var(--mcoon-font-display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
}
.benefits-strip--editorial .benefits-strip__grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 0;
}
.benefits-strip--editorial .benefit-item {
  position: relative;
  display: grid !important;
  grid-template-columns: 62px minmax(0,1fr) !important;
  align-items: center !important;
  gap: 18px !important;
  min-height: 116px;
  padding: 6px 28px 6px 0 !important;
  text-align: left !important;
}
.benefits-strip--editorial .benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 14px;
  bottom: 12px;
  width: 1px;
  background: rgba(255,255,255,.13);
}
.benefits-strip--editorial .benefit-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  justify-self: start;
}
.benefits-strip--editorial .benefit-icon > .mcoon-icon {
  width: 54px !important;
  height: 54px !important;
  transform: none !important;
  color: #a3ff91;
  stroke-width: 1.55;
}
.benefits-strip--editorial .benefit-item h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 18px;
}
.benefits-strip--editorial .benefit-item p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
}
.footer-wordmark {
  color: #b7d69e !important;
  transition: color .22s ease !important;
}
.footer-wordmark:hover,
.footer-wordmark:focus-visible {
  color: #fff !important;
}
@media (max-width: 980px) {
  .benefits-strip--editorial .benefits-strip__grid { grid-template-columns: repeat(2,minmax(0,1fr)); row-gap: 18px; }
  .benefits-strip--editorial .benefit-item:nth-child(2)::after { display:none; }
  .benefits-strip__intro { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 680px) {
  .benefits-strip--editorial { padding: 38px 0 40px; }
  .benefits-strip--editorial .benefits-strip__grid { grid-template-columns: 1fr; }
  .benefits-strip--editorial .benefit-item { padding-right: 0 !important; }
  .benefits-strip--editorial .benefit-item::after { display:none !important; }
}


/* --------------------------------------------------------------------------
   Version 2.0.6 — centred trust heading and cleaner benefit separator
   -------------------------------------------------------------------------- */
.benefits-strip__intro {
  align-items: center !important;
}
.benefits-strip--editorial .benefit-item:not(:last-child)::after {
  content: none !important;
  display: none !important;
}
.back-to-top {
  border: 0 !important;
}


/* --------------------------------------------------------------------------
   Version 2.0.8 — interactive confidence benefits
   -------------------------------------------------------------------------- */
.benefits-strip--editorial .benefits-strip__intro {
  display: block !important;
  text-align: left !important;
}
.benefits-strip--editorial .benefits-strip__intro h2 {
  width: 100%;
  text-align: left !important;
}
.benefits-strip--editorial .benefit-item {
  position: relative;
  grid-template-columns: 62px minmax(0,1fr) 22px !important;
  padding: 14px 24px !important;
  color: inherit;
  text-decoration: none !important;
  border-radius: 10px;
  transition: background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.benefits-strip--editorial .benefit-item:nth-child(n+2) {
  padding-left: 34px !important;
}
.benefits-strip--editorial .benefit-item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.24) 18%, rgba(255,255,255,.24) 82%, transparent);
}
.benefits-strip--editorial .benefit-item::after {
  content: none !important;
  display: none !important;
}
.benefits-strip--editorial .benefit-icon {
  display: block !important;
  width: 62px;
  height: 62px;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0;
  align-self: center;
}
.benefits-strip--editorial .benefit-icon > .mcoon-icon {
  display: block;
  width: 62px !important;
  height: 62px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.benefit-item__arrow {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: rgba(183,214,158,.62);
  transform: translateX(-3px);
  opacity: .7;
  transition: color .22s ease, transform .22s ease, opacity .22s ease;
}
.benefit-item__arrow .mcoon-icon {
  width: 18px !important;
  height: 18px !important;
}
.benefits-strip--editorial .benefit-item:hover,
.benefits-strip--editorial .benefit-item:focus-visible {
  background: rgba(255,255,255,.07);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.13);
  outline: none;
}
.benefits-strip--editorial .benefit-item:hover .benefit-icon > .mcoon-icon,
.benefits-strip--editorial .benefit-item:focus-visible .benefit-icon > .mcoon-icon {
  color: #c9efaa;
}
.benefits-strip--editorial .benefit-item:hover .benefit-item__arrow,
.benefits-strip--editorial .benefit-item:focus-visible .benefit-item__arrow {
  color: #c9efaa;
  opacity: 1;
  transform: translateX(2px);
}
@media (max-width: 980px) {
  .benefits-strip--editorial .benefit-item:nth-child(odd)::before { display: none; }
  .benefits-strip--editorial .benefit-item:nth-child(even) { padding-left: 34px !important; }
}
@media (max-width: 680px) {
  .benefits-strip--editorial .benefit-item,
  .benefits-strip--editorial .benefit-item:nth-child(n+2) {
    padding: 14px 10px !important;
  }
  .benefits-strip--editorial .benefit-item::before { display: none !important; }
}

/* --------------------------------------------------------------------------
   Version 2.0.9 — confidence cards, compact breeder title and hero sizing
   -------------------------------------------------------------------------- */
.hero-grid {
  min-height: 350px !important;
}
.hero-image,
.hero-image img {
  min-height: 350px !important;
}

.benefits-strip--editorial .benefits-strip__grid {
  gap: 14px !important;
}
.benefits-strip--editorial .benefit-item,
.benefits-strip--editorial .benefit-item:nth-child(n+2) {
  padding: 18px 22px !important;
  background: #ffffff0d;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 12px;
}
.benefits-strip--editorial .benefit-item::before,
.benefits-strip--editorial .benefit-item::after {
  content: none !important;
  display: none !important;
}
.benefits-strip--editorial .benefit-item:hover,
.benefits-strip--editorial .benefit-item:focus-visible {
  background: #ffffff24;
  border-color: rgba(201,239,170,.38) !important;
  box-shadow: 0 18px 38px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.1);
  transform: translateY(-4px);
}
@media (max-width: 980px) {
  .benefits-strip--editorial .benefits-strip__grid { gap: 12px !important; }
}
@media (max-width: 680px) {
  .hero-grid,
  .hero-image,
  .hero-image img { min-height: 350px !important; }
  .benefits-strip--editorial .benefit-item,
  .benefits-strip--editorial .benefit-item:nth-child(n+2) { padding: 16px !important; }
}


/* --------------------------------------------------------------------------
   Version 2.0.10 — locked v2.0.9 baseline, filter colour and logo timing
   -------------------------------------------------------------------------- */
.hero-grid,
.hero-image,
.hero-image img {
  min-height: 350px !important;
}

/* Match the maximum-price presentation to the Apply Filters action. */
.price-field__value output {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 3px 10px;
  border-radius: 5px;
  background: #a3ff91 !important;
  color: #071b13 !important;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.price-field input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #a3ff91;
  accent-color: #a3ff91;
  appearance: none;
  -webkit-appearance: none;
}
.price-field input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background: #a3ff91;
}
.price-field input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -6px;
  border: 3px solid #a3ff91;
  border-radius: 50%;
  background: #071b13;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  appearance: none;
  -webkit-appearance: none;
}
.price-field input[type="range"]::-moz-range-track {
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #a3ff91;
}
.price-field input[type="range"]::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: #a3ff91;
}
.price-field input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 3px solid #a3ff91;
  border-radius: 50%;
  background: #071b13;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}


/* --------------------------------------------------------------------------
   Version 2.0.12 — persistent kitten gallery arrows and simplified listing cards
   -------------------------------------------------------------------------- */
.hero-section--portrait,
.hero-portrait__inner,
.hero-grid,
.hero-image,
.hero-image img {
  min-height: 350px !important;
}

/* Make the price control feel visibly draggable. */
.price-field input[type="range"] {
  cursor: grab;
}
.price-field input[type="range"]:active {
  cursor: grabbing;
}
.price-field input[type="range"]:hover::-webkit-slider-thumb,
.price-field input[type="range"]:focus-visible::-webkit-slider-thumb {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(163,255,145,.22), 0 3px 10px rgba(0,0,0,.32);
}
.price-field input[type="range"]:hover::-moz-range-thumb,
.price-field input[type="range"]:focus-visible::-moz-range-thumb {
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(163,255,145,.22), 0 3px 10px rgba(0,0,0,.32);
}

/* Benefit-card titles now use the same family as their supporting copy. */
.benefits-strip--editorial .benefit-item h3 {
  font-family: var(--mcoon-font-body) !important;
  font-style: normal;
  letter-spacing: 0;
}

/* Give the two-line breeder heading comfortable vertical rhythm. */
.breeder-cta--hero .breeder-cta__copy h2 {
  line-height: 1.08 !important;
}


/* --------------------------------------------------------------------------
   Version 2.0.13 — instant card galleries, refined arrows and sentence case
   -------------------------------------------------------------------------- */
.kitten-card__gallery-arrow {
  border: 0 !important;
}
.kitten-card__media img {
  opacity: 1 !important;
  transition: transform .45s cubic-bezier(.2,.8,.2,1) !important;
}
.kitten-card__media img.is-changing {
  opacity: 1 !important;
}


/* --------------------------------------------------------------------------
   Version 2.0.14 — fully clickable kitten cards and proportional price range
   -------------------------------------------------------------------------- */
.kitten-card {
  position: relative;
  cursor: pointer;
}
.kitten-card__click-target {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  text-indent: -9999px;
  overflow: hidden;
}
.kitten-card__click-target:focus-visible {
  outline: 3px solid var(--mcoon-green);
  outline-offset: 3px;
}
.kitten-card__gallery-arrow,
.kitten-card__body a {
  position: relative;
  z-index: 5;
}

/* Fill only the selected portion; keep the remaining track softly faded. */
.price-field input[type="range"] {
  --range-progress: 100%;
  background: linear-gradient(
    to right,
    #a3ff91 0,
    #a3ff91 var(--range-progress),
    rgba(163,255,145,.20) var(--range-progress),
    rgba(163,255,145,.20) 100%
  ) !important;
}
.price-field input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(
    to right,
    #a3ff91 0,
    #a3ff91 var(--range-progress),
    rgba(163,255,145,.20) var(--range-progress),
    rgba(163,255,145,.20) 100%
  ) !important;
}
.price-field input[type="range"]::-moz-range-track {
  background: rgba(163,255,145,.20) !important;
}
.price-field input[type="range"]::-moz-range-progress {
  background: #a3ff91 !important;
}

/* --------------------------------------------------------------------------
   Version 2.0.15 — restore gallery controls, clearer colour selection and
   font-independent testimonial quote mark
   -------------------------------------------------------------------------- */
/* Keep gallery arrows above the full-card click target without losing their
   absolute positioning. */
.kitten-card__gallery-arrow {
  position: absolute !important;
  z-index: 8 !important;
  display: grid !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.kitten-card__gallery-arrow--prev { left: 10px !important; }
.kitten-card__gallery-arrow--next { right: 10px !important; }

/* Make selected coat colours unmistakable using the Apply Filters green. */
.colour-swatch input:checked + .colour-swatch__dot {
  border-color: #a3ff91 !important;
  box-shadow:
    0 0 0 3px #a3ff91,
    0 0 0 7px rgba(163,255,145,.30),
    0 5px 14px rgba(0,0,0,.22) !important;
  transform: scale(.88) !important;
}
.colour-swatch input:checked + .colour-swatch__dot::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px;
  height: 4px;
  border-left: 2px solid #071b13;
  border-bottom: 2px solid #071b13;
  transform: translate(-50%,-62%) rotate(-45deg);
}
.colour-swatches .colour-swatch__dot { position: relative; }

/* Draw the testimonial quotation mark as SVG so it never waits for a font. */
.testimonial-carousel .testimonial-card::before {
  content: "" !important;
  top: 18px !important;
  right: 20px !important;
  width: 58px;
  height: 46px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 48'%3E%3Cpath fill='%2353b154' fill-opacity='.14' d='M6 45V29C6 12 14 3 30 1v9c-8 2-12 7-12 14h12v21H6Zm34 0V29C40 12 48 3 64 1v9c-8 2-12 7-12 14h12v21H40Z'/%3E%3C/svg%3E");
  font-size: 0 !important;
  line-height: 0 !important;
}


/* --------------------------------------------------------------------------
   Version 2.0.16 — static actions, clearer listing toolbar and compact CTA
   -------------------------------------------------------------------------- */
/* Buttons change colour only: no vertical movement on hover or focus. */
.button,
.button:hover,
.button:focus-visible,
.utility-post-button,
.utility-post-button:hover,
.utility-post-button:focus-visible,
.filter-panel .button--primary,
.filter-panel .button--primary:hover,
.filter-panel .button--primary:focus-visible,
.filter-panel button[type="submit"],
.filter-panel button[type="submit"]:hover,
.filter-panel button[type="submit"]:focus-visible,
.breeder-cta--hero .button,
.breeder-cta--hero .button:hover,
.breeder-cta--hero .button:focus-visible {
  transform: none !important;
}

/* Keep the automatic-filter message stable and comfortably readable. */
.dynamic-filter-note {
  max-width: 320px;
  min-height: 2.8em;
  margin-top: 12px !important;
  line-height: 1.4;
  text-align: left !important;
}

/* Give the result count and archive action more visual authority. */
.listing-toolbar [data-kitten-count] {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 6px;
  background: rgba(1,47,34,.08);
  color: var(--mcoon-forest);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .01em;
}
.listing-toolbar .button-link {
  min-height: 38px;
  padding: 7px 12px 7px 14px;
  border: 1px solid rgba(1,47,34,.16);
  border-radius: 6px;
  background: #fff;
  color: var(--mcoon-forest);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .055em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.listing-toolbar .button-link:hover,
.listing-toolbar .button-link:focus-visible {
  border-color: #a3ff91;
  background: #a3ff91;
  color: #071b13;
}
.listing-toolbar .button-link .mcoon-icon {
  width: 26px;
  height: 26px;
}

/* Compact the breeder connection panel and keep its action content-sized. */
.breeder-cta--hero {
  min-height: 200px !important;
}
.breeder-cta--hero .breeder-cta__inner {
  min-height: 200px !important;
}
.breeder-cta--hero .breeder-cta__copy {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}
.breeder-cta--hero .check-list {
  display: none !important;
}
.breeder-cta--hero .breeder-cta__copy .button {
  display: inline-flex !important;
  width: max-content !important;
  min-width: 0 !important;
  max-width: 100%;
  align-self: flex-start;
}
@media (max-width: 680px) {
  .breeder-cta--hero {
    min-height: 200px !important;
  }
  .breeder-cta--hero .breeder-cta__copy {
    padding: 36px 0 250px !important;
  }
  .listing-toolbar {
    gap: 12px;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Version 2.0.18 — refined header typography, stronger filters and new CTA art
   -------------------------------------------------------------------------- */
/* Main header navigation uses the requested calm body typography. */
.primary-menu a {
  font-family: var(--mcoon-font-body) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
}

/* Give the marketplace filter clearer editorial hierarchy. */
.filter-heading h2 {
  max-width: none !important;
  font-size: 30px !important;
  line-height: 1.14 !important;
  text-transform: none !important;
}
.filter-panel label,
.filter-panel legend,
.price-field > span {
  font-size: 26px !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Match View All to the primary Create a Listing action. */
.listing-toolbar .listing-view-all {
  min-height: 46px;
  padding: 11px 18px;
  border: 0 !important;
  border-radius: 6px;
  background: var(--mcoon-green);
  color: #071b13;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.listing-toolbar .listing-view-all:hover,
.listing-toolbar .listing-view-all:focus-visible {
  background: var(--mcoon-forest);
  color: #fff;
}
.listing-toolbar .listing-view-all .mcoon-icon {
  width: 22px;
  height: 22px;
}

/* Keep the new wide breeder image framed with text-safe space on the left. */
.breeder-cta--hero {
  background-position: center center !important;
  background-size: cover !important;
}

@media (max-width: 1100px) {
  .filter-heading h2 { font-size: 27px !important; }
  .filter-panel label,
  .filter-panel legend,
  .price-field > span { font-size: 22px !important; }
}
@media (max-width: 980px) {
  .primary-menu a { font-size: 18px !important; }
}
@media (max-width: 680px) {
  .filter-heading h2 { font-size: 25px !important; }
  .filter-panel label,
  .filter-panel legend,
  .price-field > span { font-size: 20px !important; }
}

/* --------------------------------------------------------------------------
   Version 2.0.19 — dynamic kitten title and archive action
   -------------------------------------------------------------------------- */
.listing-toolbar {
  gap: 24px;
}
.listing-toolbar .listing-title-wrap {
  min-width: 0;
  color: var(--mcoon-forest);
  text-transform: none;
}
.listing-dynamic-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--mcoon-forest);
  font-family: var(--mcoon-font-heading);
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-transform: none;
}
.listing-toolbar .listing-dynamic-title [data-kitten-count] {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  min-height: 54px;
  padding: 7px 14px;
  border: 1px solid rgba(1,47,34,.12);
  border-radius: 999px;
  background: var(--mcoon-green);
  box-shadow: 0 8px 22px rgba(1,47,34,.12);
  color: #071b13;
  font-family: var(--mcoon-font-body);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}
.listing-toolbar .listing-view-all {
  flex: 0 0 auto;
  gap: 10px;
  white-space: nowrap;
}
@media (max-width: 680px) {
  .listing-toolbar {
    flex-wrap: wrap;
  }
  .listing-dynamic-title {
    font-size: 25px;
  }
  .listing-toolbar .listing-dynamic-title [data-kitten-count] {
    min-width: 48px;
    min-height: 48px;
    font-size: 23px;
  }
}


/* --------------------------------------------------------------------------
   Version 2.0.20 — refined marketplace controls and footer contact colour
   -------------------------------------------------------------------------- */
.listing-toolbar .listing-view-all,
.listing-toolbar .listing-view-all:hover,
.listing-toolbar .listing-view-all:focus-visible {
  color: #fff !important;
}

.listing-toolbar .listing-dynamic-title [data-kitten-count] {
  border-radius: 8px;
  color: #fff;
}

.price-field__value {
  padding-bottom: 10px;
}

.filter-select-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.filter-select-field > label {
  margin: 0;
}

.custom-select {
  position: relative;
  min-width: 0;
  font-family: var(--mcoon-font-body);
}

.custom-select__trigger,
.custom-select__menu {
  display: none;
}

.custom-select.is-enhanced .custom-select__native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-select.is-enhanced .custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 50px;
  padding: 0 15px 0 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.custom-select.is-enhanced .custom-select__trigger:hover {
  border-color: rgba(183,214,158,.62);
  background: rgba(255,255,255,.13);
}

.custom-select.is-enhanced .custom-select__trigger:focus-visible,
.custom-select.is-open .custom-select__trigger {
  border-color: #b7d69e;
  outline: none;
  box-shadow: 0 0 0 3px rgba(183,214,158,.18), inset 0 1px 0 rgba(255,255,255,.1);
}

.custom-select__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select__arrow {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: #b7d69e;
  transition: transform .2s ease;
}

.custom-select.is-open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select.is-enhanced .custom-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  gap: 4px;
  max-height: 240px;
  padding: 7px;
  overflow-y: auto;
  border: 1px solid rgba(1,47,34,.14);
  border-radius: 10px;
  background: #fffaf5;
  box-shadow: 0 18px 42px rgba(0,20,14,.26), 0 3px 10px rgba(0,20,14,.12);
}

.custom-select.is-enhanced .custom-select__menu[hidden] {
  display: none;
}

.custom-select__option {
  position: relative;
  width: 100%;
  min-height: 43px;
  padding: 9px 38px 9px 12px;
  border-radius: 7px;
  background: transparent;
  color: var(--mcoon-charcoal);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  transition: background .16s ease, color .16s ease;
}

.custom-select__option:hover,
.custom-select__option:focus-visible {
  outline: none;
  background: rgba(83,177,84,.13);
  color: var(--mcoon-forest);
}

.custom-select__option.is-selected {
  background: var(--mcoon-green);
  color: #fff;
}

.custom-select__option.is-selected::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}

.footer-contact > p:first-of-type a {
  color: #b7d69e !important;
  transition: color .22s ease;
}

.footer-contact > p:first-of-type a:hover,
.footer-contact > p:first-of-type a:focus-visible {
  color: #fff !important;
}

/* --------------------------------------------------------------------------
   Version 2.0.21 — filter heading divider and footer paw colour
   -------------------------------------------------------------------------- */
.marketplace-section .filter-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(183,214,158,.32);
}

/* The location field is the final input group, so it does not need another divider. */
.marketplace-section .filter-panel form > label::after {
  display: none;
}

/* Match the footer signature paw to the wordmark and contact link. */
.footer-care .footer-brand__paw {
  color: #b7d69e !important;
  opacity: 1 !important;
}
.footer-care .footer-brand__paw-image {
  filter: none !important;
  opacity: 1 !important;
}
.footer-care .footer-brand__paw:hover .footer-brand__paw-image,
.footer-care .footer-brand__paw:focus-visible .footer-brand__paw-image {
  filter: brightness(0) invert(1) !important;
}

/* --------------------------------------------------------------------------
   Version 2.0.22 — reliable six-second 3D header logo rotation
   -------------------------------------------------------------------------- */
.brand-logo__motion {
  display: block;
  width: 100%;
  height: 100%;
  transform: perspective(720px) rotateY(0deg);
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: visible;
  will-change: transform;
}

.brand-logo__motion svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.brand-logo__mark.is-logo-rotating .brand-logo__motion {
  animation: mcoon-logo-horizontal-3d-turn 1.15s cubic-bezier(.22,.72,.2,1) both;
}

@keyframes mcoon-logo-horizontal-3d-turn {
  0% { transform: perspective(720px) rotateY(0deg) scale(1); }
  45% { transform: perspective(720px) rotateY(170deg) scale(.96); }
  55% { transform: perspective(720px) rotateY(190deg) scale(.96); }
  100% { transform: perspective(720px) rotateY(360deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo__mark.is-logo-rotating .brand-logo__motion {
    animation: none !important;
  }
}


/* --------------------------------------------------------------------------
   Version 2.0.23 — gender badges and six-second logo heartbeat
   -------------------------------------------------------------------------- */
.kitten-meta__gender .mcoon-icon {
  width: 20px !important;
  height: 20px !important;
  padding: 3px;
  border-radius: 50%;
  stroke-width: 2.1;
}

.kitten-meta__gender--male .mcoon-icon {
  color: #3988b7;
  background: #dff2ff;
}

.kitten-meta__gender--female .mcoon-icon {
  color: #c65f82;
  background: #ffe3ed;
}

/* Retire the previous 3D rotation completely. */
.brand-logo__mark.is-logo-rotating .brand-logo__motion {
  animation: none !important;
  transform: none !important;
}

.brand-logo__motion {
  transform: none !important;
  transform-origin: center center;
  will-change: transform;
}

/* A restrained double heartbeat once every six seconds, controlled by theme.js. */
.brand-logo__mark.is-heartbeat {
  animation: none !important;
}

.brand-logo__mark.is-heartbeat .brand-logo__motion {
  animation: mcoon-logo-six-second-heartbeat 1.1s cubic-bezier(.22,.72,.2,1) both !important;
}

@keyframes mcoon-logo-six-second-heartbeat {
  0%, 100% { transform: scale(1) !important; }
  16% { transform: scale(1.09) !important; }
  30% { transform: scale(.98) !important; }
  44% { transform: scale(1.06) !important; }
  62% { transform: scale(1) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo__mark.is-heartbeat .brand-logo__motion {
    animation: none !important;
  }
}

/* --------------------------------------------------------------------------
   Version 2.0.24 — full-image two-column breeder CTA
   -------------------------------------------------------------------------- */
.breeder-cta.breeder-cta--hero {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #f8f5f0 !important;
  background-image: none !important;
}

.breeder-cta.breeder-cta--hero::before,
.breeder-cta.breeder-cta--hero::after {
  display: none !important;
}

.breeder-cta.breeder-cta--hero .breeder-cta__grid {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  width: min(100%, 1440px);
  min-height: 500px;
  margin-inline: auto;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.breeder-cta.breeder-cta--hero .breeder-cta__copy {
  position: relative;
  z-index: 2;
  width: auto;
  min-height: 500px;
  padding: clamp(52px, 5vw, 78px) clamp(34px, 5vw, 76px) clamp(52px, 5vw, 78px) 0;
}

.breeder-cta.breeder-cta--hero .breeder-cta__image {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  background: transparent;
}

.breeder-cta.breeder-cta--hero .breeder-cta__image::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: clamp(70px, 10vw, 150px);
  background: linear-gradient(90deg, #f8f5f0 0%, rgba(248,245,240,.82) 24%, rgba(248,245,240,.32) 68%, rgba(248,245,240,0) 100%);
  pointer-events: none;
}

.breeder-cta.breeder-cta--hero .breeder-cta__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center right;
}

@media (max-width: 980px) {
  .breeder-cta.breeder-cta--hero .breeder-cta__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .breeder-cta.breeder-cta--hero .breeder-cta__copy {
    min-height: 0;
    padding: 50px 0 34px;
  }

  .breeder-cta.breeder-cta--hero .breeder-cta__image {
    min-height: 0;
  }

  .breeder-cta.breeder-cta--hero .breeder-cta__image::before {
    inset: 0 0 auto;
    width: 100%;
    height: 90px;
    background: linear-gradient(180deg, #f8f5f0 0%, rgba(248,245,240,.72) 34%, rgba(248,245,240,0) 100%);
  }

  .breeder-cta.breeder-cta--hero .breeder-cta__image img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-position: center;
  }
}

@media (max-width: 680px) {
  .breeder-cta.breeder-cta--hero .breeder-cta__copy {
    padding: 42px 0 24px;
  }

  .breeder-cta.breeder-cta--hero .breeder-cta__image img {
    max-height: 380px;
  }
}

/* --------------------------------------------------------------------------
   Version 2.0.26 — 25/75 breeder CTA with soft white image fade
   -------------------------------------------------------------------------- */
@media (min-width: 981px) {
  .breeder-cta.breeder-cta--hero .breeder-cta__grid {
    width: calc(100vw - max(32px, (100vw - var(--mcoon-container)) / 2));
    max-width: none;
    margin-left: max(32px, (100vw - var(--mcoon-container)) / 2);
    margin-right: 0;
    grid-template-columns: minmax(320px, 1fr) minmax(0, 3fr);
    min-height: 520px;
  }

  .breeder-cta.breeder-cta--hero .breeder-cta__copy {
    min-height: 520px;
    padding: clamp(56px, 5vw, 82px) clamp(18px, 2vw, 28px) clamp(56px, 5vw, 82px) 0;
  }

  .breeder-cta.breeder-cta--hero .breeder-cta__copy h2,
  .breeder-cta.breeder-cta--hero .breeder-cta__copy > p:not(.eyebrow) {
    max-width: 360px;
  }

  .breeder-cta.breeder-cta--hero .breeder-cta__image {
    justify-content: flex-end;
    min-height: 520px;
  }

  .breeder-cta.breeder-cta--hero .breeder-cta__image::before {
    width: clamp(130px, 14vw, 230px);
    background: linear-gradient(
      90deg,
      #f8f5f0 0%,
      rgba(248,245,240,.96) 16%,
      rgba(248,245,240,.78) 38%,
      rgba(248,245,240,.42) 62%,
      rgba(248,245,240,.12) 82%,
      rgba(248,245,240,0) 100%
    );
  }

  .breeder-cta.breeder-cta--hero .breeder-cta__image img {
    object-fit: cover;
    object-position: center center;
  }
}


/* --------------------------------------------------------------------------
   Version 2.0.27 — refined kitten card meta separators
   -------------------------------------------------------------------------- */
.kitten-meta {
  align-items: center;
  gap: 0 !important;
  margin: 12px 0 14px !important;
  padding: 12px 0 13px !important;
  border-top: 1px solid rgba(1,47,34,.08);
  border-bottom: 1px solid rgba(1,47,34,.08);
}

.kitten-meta li {
  position: relative;
  min-height: 20px;
  padding: 0 12px;
  gap: 6px;
  line-height: 1.2;
}

.kitten-meta li:first-child {
  padding-left: 0;
}

.kitten-meta li:last-child {
  padding-right: 0;
}

.kitten-meta li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(1,47,34,.12);
  transform: translateY(-50%);
}

.kitten-meta .mcoon-icon {
  width: 14px !important;
  height: 14px !important;
  color: var(--mcoon-green);
  flex: 0 0 auto;
}

.kitten-meta__age .mcoon-icon {
  width: 15px !important;
  height: 15px !important;
}

.kitten-badges {
  padding-top: 2px;
}

@media (max-width: 640px) {
  .kitten-meta {
    gap: 8px 0 !important;
  }

  .kitten-meta li {
    padding: 0 10px;
  }
}


/* --------------------------------------------------------------------------
   Version 2.0.29 — gender icon in kitten title row
   -------------------------------------------------------------------------- */
.kitten-card__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.kitten-card__heading h3 {
  flex: 1 1 auto;
  min-width: 0;
}

.kitten-card__gender {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin-top: 1px;
  border-radius: 50%;
  border: 1px solid rgba(1,47,34,.08);
  box-shadow: 0 4px 12px rgba(1,47,34,.06);
}

.kitten-card__gender .mcoon-icon {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 2.15;
}

.kitten-card__gender--male {
  color: #3988b7;
  background: #dff2ff;
}

.kitten-card__gender--female {
  color: #c65f82;
  background: #ffe3ed;
}


/* --------------------------------------------------------------------------
   Version 2.0.30 — simplify pedigree label and move care badges below CTA
   -------------------------------------------------------------------------- */
.status-chip .status-chip__icon {
  width: 13px;
  height: 13px;
}

.kitten-badges--primary {
  margin-bottom: 2px;
}

.kitten-badges--care {
  justify-content: center;
  margin-top: 12px;
  padding-top: 2px;
}

.kitten-badges--care span {
  background: #f2eee7;
  color: #4d514e;
}


/* --------------------------------------------------------------------------
   Version 2.0.31 — clean media top and unified kitten trust badges
   -------------------------------------------------------------------------- */
.kitten-card__media .status-chip {
  display: none !important;
}

.kitten-badges--primary {
  display: none !important;
}

.kitten-badges--care {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  padding-top: 0;
}

.kitten-badges--care span,
.kitten-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 25px;
  padding: 4px 8px;
  border-radius: 0 !important;
  background: #a3ff91 !important;
  color: #123f31 !important;
  font-size: 12px;
  font-weight: 500 !important;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none !important;
}

.kitten-badges--care .mcoon-icon,
.kitten-badges .mcoon-icon {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  stroke-width: 1.9;
}


/* --------------------------------------------------------------------------
   Version 2.0.32 — simplify kitten card details area
   -------------------------------------------------------------------------- */
.kitten-card__body {
  padding-bottom: 16px;
}

.kitten-card__colour {
  margin: 4px 0 10px;
}

.kitten-meta {
  margin: 8px 0 12px !important;
  padding: 10px 0 11px !important;
  border-top: 1px solid rgba(1,47,34,.06);
  border-bottom: 1px solid rgba(1,47,34,.06);
}

.kitten-meta li {
  color: #7a8982;
}

.kitten-meta__location {
  white-space: nowrap;
}

.card-action {
  margin-top: 0;
  padding-top: 13px;
}

.kitten-badges,
.kitten-badges--primary,
.kitten-badges--care {
  display: none !important;
}


/* --------------------------------------------------------------------------
   Version 2.0.33 — non-scrollable filters and fixed kitten image height
   -------------------------------------------------------------------------- */
.marketplace-section .filter-panel,
.archive-layout .filter-panel {
  max-height: none !important;
  overflow: visible !important;
  overflow-y: visible !important;
}

.custom-select.is-enhanced .custom-select__menu {
  max-height: none !important;
  overflow: visible !important;
  overflow-y: visible !important;
}

.kitten-card__media {
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  aspect-ratio: auto !important;
}

.kitten-card__media > a,
.kitten-card__media img {
  width: 100%;
  height: 100% !important;
}

@media (max-width: 1180px) {
  .kitten-card__media {
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    aspect-ratio: auto !important;
  }
}

@media (max-width: 680px) {
  .kitten-card__media {
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    aspect-ratio: auto !important;
  }
}


/* --------------------------------------------------------------------------
   Version 2.0.34 — homepage kitten pagination
   -------------------------------------------------------------------------- */
.kitten-pagination {
  width: 100%;
  margin: 28px 0 0;
}

.kitten-pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(1,47,34,.12);
  border-radius: 4px;
  background: rgba(255,255,255,.72);
  color: var(--mcoon-forest);
  font-weight: 600;
  transition: background var(--mcoon-transition), color var(--mcoon-transition), border-color var(--mcoon-transition);
}

.kitten-pagination .page-numbers:hover,
.kitten-pagination .page-numbers:focus-visible,
.kitten-pagination .page-numbers.current {
  border-color: var(--mcoon-green);
  background: var(--mcoon-green);
  color: #fff;
}


/* --------------------------------------------------------------------------
   Version 2.0.35 — non-sticky marketplace filter
   -------------------------------------------------------------------------- */
.filter-panel {
  position: static !important;
  top: auto !important;
  align-self: start;
}


/* --------------------------------------------------------------------------
   Version 2.0.36 — typography, count badge, card CTA and gender refinements
   -------------------------------------------------------------------------- */
.hero-copy--portrait h1,
.hero-copy--portrait h1 span,
.hero-copy--portrait h1 strong,
.hero-copy--portrait h1 em {
  color: #37442d !important;
  font-weight: 500 !important;
}

.listing-dynamic-title {
  font-weight: 400 !important;
}

.listing-toolbar .listing-dynamic-title [data-kitten-count] {
  min-width: 34px !important;
  min-height: 34px !important;
  width: auto;
  height: 34px;
  padding: 4px 9px;
  font-size: 18px;
  font-weight: 700;
}

.kitten-card .card-action.button.button--primary.button--wide {
  display: flex;
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 4px;
  background: var(--mcoon-green);
  color: #fff !important;
  box-shadow: 0 7px 16px rgba(83,177,84,.16);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.kitten-card .card-action.button.button--primary.button--wide:hover,
.kitten-card .card-action.button.button--primary.button--wide:focus-visible {
  background: var(--mcoon-green-hover);
  color: #fff !important;
  box-shadow: 0 9px 20px rgba(83,177,84,.24);
  transform: translateY(-1px);
}

.kitten-card .card-action.button.button--primary.button--wide .mcoon-icon {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

.kitten-card__gender {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  border-width: 1px;
  box-shadow: 0 5px 14px rgba(1,47,34,.08);
}

.kitten-card__gender .mcoon-icon {
  width: 23px !important;
  height: 23px !important;
  stroke-width: 2.35;
}

.kitten-card__gender--male {
  color: #267cae;
  background: #d9f0ff;
  border-color: rgba(38,124,174,.18);
}

.kitten-card__gender--female {
  color: #bd5278;
  background: #ffe0eb;
  border-color: rgba(189,82,120,.18);
}

@media (max-width: 680px) {
  .listing-toolbar .listing-dynamic-title [data-kitten-count] {
    min-width: 34px !important;
    min-height: 34px !important;
    height: 34px;
    font-size: 18px;
  }
}


/* --------------------------------------------------------------------------
   Version 2.0.37 — locked two-line hero title and breed description
   -------------------------------------------------------------------------- */
.hero-copy--portrait h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 20px;
}

.hero-copy--portrait h1 span {
  color: #37442d !important;
  font-size: .42em !important;
  font-weight: 400 !important;
  line-height: 1.05;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero-copy--portrait h1 strong {
  color: #37442d !important;
  font-weight: 500 !important;
  line-height: .92;
  letter-spacing: -.025em;
}

.hero-copy--portrait .hero-description {
  max-width: 560px;
  margin: 0;
  color: #51604a;
  font-family: var(--mcoon-font-heading);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 400;
  line-height: 1.65;
}

@media (max-width: 680px) {
  .hero-copy--portrait h1 {
    margin-bottom: 14px;
  }

  .hero-copy--portrait h1 span {
    font-size: .46em !important;
  }

  .hero-copy--portrait .hero-description {
    max-width: 94%;
    font-size: 14px;
    line-height: 1.55;
  }
}


/* Version 2.0.38 — align the main hero title */
.hero-copy--portrait h1 strong {
  margin-left: -3px;
}

/* --------------------------------------------------------------------------
   Version 2.0.40 — fixed 300px kitten card media height
   -------------------------------------------------------------------------- */
.kitten-card__media {
  height: 300px !important;
  min-height: 300px !important;
  max-height: 300px !important;
  aspect-ratio: auto !important;
}


/* --------------------------------------------------------------------------
   Version 2.0.41 — consistent featured-image crop
   -------------------------------------------------------------------------- */
.kitten-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


/* --------------------------------------------------------------------------
   Version 2.0.42 — nine-card pages, load more and reservation CTA
   -------------------------------------------------------------------------- */
.kitten-listing-navigation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 28px;
}

.kitten-listing-navigation .kitten-pagination {
  margin: 0;
}

.kitten-load-more {
  min-width: 210px;
  justify-content: center;
}

.kitten-load-more.is-loading,
.kitten-load-more:disabled {
  cursor: wait;
  opacity: .65;
}

.kitten-card .card-action {
  letter-spacing: .015em;
}


/* --------------------------------------------------------------------------
   Version 2.0.43 — multi-select gender filter and card colour badge
   -------------------------------------------------------------------------- */
.gender-filter {
  margin: 0;
  padding: 0;
  border: 0;
}

.gender-filter legend {
  margin-bottom: 10px;
  font-family: var(--mcoon-font-heading);
  font-size: 16px;
  color: #fff;
}

.gender-filter__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gender-filter__option {
  cursor: pointer;
}

.gender-filter__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gender-filter__option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.88);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.gender-filter__option .mcoon-icon {
  width: 18px;
  height: 18px;
}

.gender-filter__option input:checked + span {
  background: #a3ff91;
  border-color: #a3ff91;
  color: #012f22;
}

.kitten-card__attribute-icons {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.kitten-card__colour-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #f2eee7;
  border: 1px solid rgba(1,47,34,.08);
  box-shadow: 0 4px 12px rgba(1,47,34,.06);
}

.kitten-card__colour-badge > span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--kitten-colour);
  border: 1px solid rgba(1,47,34,.2);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}

.kitten-card__gender {
  margin-top: 0 !important;
}


/* --------------------------------------------------------------------------
   Version 2.0.44 — gender filter typography, hover state and simplified nav
   -------------------------------------------------------------------------- */
.filter-panel .gender-filter legend {
  margin-bottom: 10px;
  font-family: var(--mcoon-font-heading) !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgba(255,255,255,.85) !important;
}

.gender-filter__option span {
  font-family: var(--mcoon-font-body) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  letter-spacing: -.01em;
  text-transform: none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.gender-filter__option:hover span,
.gender-filter__option:focus-within span {
  background: rgba(163,255,145,.16);
  border-color: rgba(163,255,145,.7);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0,0,0,.1);
}

.gender-filter__option input:checked + span,
.gender-filter__option:hover input:checked + span,
.gender-filter__option:focus-within input:checked + span {
  background: #a3ff91;
  border-color: #a3ff91;
  color: #012f22;
}

@media (max-width: 1100px) {
  .filter-panel .gender-filter legend {
    font-size: 22px !important;
  }
}

@media (max-width: 680px) {
  .filter-panel .gender-filter legend {
    font-size: 20px !important;
  }
}


/* --------------------------------------------------------------------------
   Version 2.0.45 — £2,000 filter cap, unified headings and contact phone
   -------------------------------------------------------------------------- */
.filter-panel .filter-heading h2,
.filter-panel fieldset > legend,
.filter-panel .filter-select-field > label,
.filter-panel .price-field > span {
  font-family: var(--mcoon-font-heading) !important;
  font-size: 26px !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgba(255,255,255,.85) !important;
}

.footer-column h3,
.footer-contact h3 {
  font-family: var(--mcoon-font-heading) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.utility-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.utility-phone,
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.utility-phone {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(163,255,145,.55);
  background: rgba(163,255,145,.08);
  color: #fff;
  font-family: var(--mcoon-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.utility-phone:hover,
.utility-phone:focus-visible {
  background: #a3ff91;
  border-color: #a3ff91;
  color: var(--mcoon-forest);
  transform: translateY(-1px);
}

.utility-phone .mcoon-icon,
.footer-phone .mcoon-icon {
  width: 16px;
  height: 16px;
}

.footer-phone {
  margin-top: 4px;
  padding: 8px 10px;
  background: #a3ff91;
  color: #012f22 !important;
  font-size: 16px;
  font-weight: 600;
}

.footer-phone:hover,
.footer-phone:focus-visible {
  background: #b7ffa8;
  color: #012f22 !important;
}

@media (max-width: 980px) {
  .filter-panel .filter-heading h2,
  .filter-panel fieldset > legend,
  .filter-panel .filter-select-field > label,
  .filter-panel .price-field > span {
    font-size: 22px !important;
  }

  .utility-actions { gap: 8px; }
  .utility-phone { font-size: 12px; padding-inline: 9px; }
}

@media (max-width: 680px) {
  .filter-panel .filter-heading h2,
  .filter-panel fieldset > legend,
  .filter-panel .filter-select-field > label,
  .filter-panel .price-field > span {
    font-size: 20px !important;
  }

  .utility-phone span { display: none; }
  .utility-phone { width: 30px; padding: 0; justify-content: center; }
}


/* --------------------------------------------------------------------------
   Version 2.0.46 — blue conversion buttons and animated contact launcher
   -------------------------------------------------------------------------- */
.card-action.button,
.listing-toolbar .listing-view-all,
.utility-phone {
  font-family: var(--mcoon-font-body) !important;
  background: #0077ff !important;
  color: #fff !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  border-color: #0077ff !important;
}
.card-action.button:hover,
.card-action.button:focus-visible,
.listing-toolbar .listing-view-all:hover,
.listing-toolbar .listing-view-all:focus-visible,
.utility-phone:hover,
.utility-phone:focus-visible {
  background: #005dcc !important;
  border-color: #005dcc !important;
  color: #fff !important;
}
.card-action.button { animation: reserve-breathe 5s ease-in-out infinite; }
@keyframes reserve-breathe {
  0%, 82%, 100% { transform: scale(1); box-shadow: 0 5px 14px rgba(0,119,255,.18); }
  88% { transform: scale(1.025); box-shadow: 0 8px 22px rgba(0,119,255,.32); }
  94% { transform: scale(1); box-shadow: 0 5px 14px rgba(0,119,255,.18); }
}
.cta-arrows { display:inline-flex; margin-left:8px; letter-spacing:-2px; }
.cta-arrows span { animation: arrow-flow 1.35s infinite; opacity:.25; transform:translateX(-2px); }
.cta-arrows span:nth-child(2){animation-delay:.18s}.cta-arrows span:nth-child(3){animation-delay:.36s}
@keyframes arrow-flow { 0%,100%{opacity:.2;transform:translateX(-2px)} 50%{opacity:1;transform:translateX(3px)} }
.utility-phone { padding: 6px 12px; border-radius: 3px; display:inline-flex; align-items:center; gap:7px; text-decoration:none; }
.utility-phone .mcoon-icon { width:14px; height:14px; }

.contact-launcher { position:fixed; right:24px; bottom:78px; z-index:9998; }
.contact-launcher__button { min-width:54px; height:54px; padding:0 16px; border:0; border-radius:27px; background:#0077ff; color:#fff; display:flex; align-items:center; justify-content:center; gap:0; box-shadow:0 10px 28px rgba(0,119,255,.34); cursor:pointer; overflow:hidden; transition:background .25s, min-width .35s, padding .35s, transform .25s; }
.contact-launcher__button:hover { background:#005dcc; transform:translateY(-2px); }
.contact-launcher__icons { position:relative; width:24px; height:24px; flex:0 0 24px; }
.contact-launcher__icon { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; opacity:0; animation:contact-icon-cycle 9s infinite; }
.contact-launcher__icon .mcoon-icon { width:23px; height:23px; }
.contact-launcher__icon--phone { animation-delay:0s; }
.contact-launcher__icon--message { animation-delay:3s; }
.contact-launcher__icon--wave { animation-delay:6s; font-size:21px; }
.contact-launcher__label { max-width:0; opacity:0; white-space:nowrap; margin-left:0; transition:max-width .35s, opacity .25s, margin-left .35s; }
.contact-launcher__button { animation:contact-expand-cycle 9s infinite; }
.contact-launcher__button .contact-launcher__label { animation:contact-label-cycle 9s infinite; }
@keyframes contact-icon-cycle { 0%,28%{opacity:1} 33%,100%{opacity:0} }
@keyframes contact-expand-cycle { 0%,63%,100%{min-width:54px} 69%,92%{min-width:174px} }
@keyframes contact-label-cycle { 0%,66%,96%,100%{max-width:0;opacity:0;margin-left:0} 71%,91%{max-width:120px;opacity:1;margin-left:9px} }
.quick-contact-panel { position:absolute; right:0; bottom:66px; width:min(340px, calc(100vw - 32px)); padding:18px; background:#fff; color:#123c31; border:1px solid rgba(1,47,34,.1); box-shadow:0 18px 55px rgba(1,47,34,.2); }
.quick-contact-panel__header { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; font-family:var(--mcoon-font-heading); font-size:20px; }
.quick-contact-panel__header button { border:0; background:none; font-size:26px; cursor:pointer; color:#123c31; }
.quick-contact-panel label { display:block; margin-bottom:7px; font-size:13px; font-weight:600; }
.quick-contact-panel textarea { width:100%; resize:vertical; min-height:96px; padding:12px; border:1px solid #ccd7d2; font-family:var(--mcoon-font-body); }
.quick-contact-panel__actions { display:grid; gap:9px; margin-top:12px; }
.quick-contact-action { display:flex; align-items:center; justify-content:center; min-height:42px; padding:10px 14px; text-decoration:none; font-family:var(--mcoon-font-body); font-weight:500; }
.quick-contact-action--whatsapp { background:#25D366; color:#fff; }
.quick-contact-action--call { background:#0077ff; color:#fff; }
.contact-launcher.is-open .contact-launcher__button { animation:none; min-width:54px; }
.contact-launcher.is-open .contact-launcher__label { display:none; }
@media (max-width:640px){ .contact-launcher{right:16px;bottom:74px}.utility-phone span{display:none}.utility-phone{padding:7px} }
@media (prefers-reduced-motion:reduce){ .card-action.button,.cta-arrows span,.contact-launcher__button,.contact-launcher__icon,.contact-launcher__label{animation:none!important} .contact-launcher__icon--phone{opacity:1} }


/* --------------------------------------------------------------------------
   Version 2.0.47 — refined contact modal, launcher and phone presentation
   -------------------------------------------------------------------------- */
.listing-toolbar .listing-view-all,
.kitten-card .card-action.button.button--primary.button--wide {
  font-size: 20px !important;
}

/* Keep the breathing motion clean, without a glow. */
@keyframes reserve-breathe {
  0%, 82%, 100% { transform: scale(1); box-shadow: none; }
  88% { transform: scale(1.025); box-shadow: none; }
  94% { transform: scale(1); box-shadow: none; }
}

/* Top-bar telephone is a simple text link, positioned after Post an Advert. */
.utility-phone,
.utility-phone:hover,
.utility-phone:focus-visible {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  font-family: var(--mcoon-font-body) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-transform: none !important;
}
.utility-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.utility-phone:hover,
.utility-phone:focus-visible { text-decoration: underline; }
.utility-phone .mcoon-icon {
  width: 13px;
  height: 13px;
  color: currentColor;
  flex: 0 0 auto;
}

/* Telephone now sits prominently beneath the footer brand copy. */
.footer-brand-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--mcoon-lime) !important;
  font-family: var(--mcoon-font-heading);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
.footer-brand-phone:hover,
.footer-brand-phone:focus-visible { text-decoration: underline; }
.footer-brand-phone .mcoon-icon { width: 22px; height: 22px; }

/* Raspberry contact launcher, positioned with extra space above back-to-top. */
.contact-launcher {
  right: 24px;
  bottom: 90px;
  margin-bottom: 12px;
  z-index: 10002;
}
.contact-launcher__button {
  min-width: 56px;
  height: 56px;
  padding: 0 17px;
  border-radius: 28px;
  background: #d7345d;
  color: #fff;
  box-shadow: none;
  transition: background .25s, min-width .35s, padding .35s, transform .25s;
  animation: contact-expand-cycle 6s infinite;
}
.contact-launcher__button:hover,
.contact-launcher__button:focus-visible {
  background: #b9254a;
  box-shadow: none;
}
.contact-launcher__icon { animation: contact-icon-cycle 6s infinite; }
.contact-launcher__icon--phone { animation-delay: 0s; }
.contact-launcher__icon--message { animation-delay: 1s; }
.contact-launcher__label {
  font-family: var(--mcoon-font-body);
  font-size: 17px;
  font-weight: 500;
  animation: contact-label-cycle 6s infinite;
}
@keyframes contact-icon-cycle {
  0%, 15% { opacity: 1; }
  18%, 100% { opacity: 0; }
}
@keyframes contact-expand-cycle {
  0%, 31%, 100% { min-width: 56px; }
  35%, 96% { min-width: 210px; }
}
@keyframes contact-label-cycle {
  0%, 31%, 100% { max-width: 0; opacity: 0; margin-left: 0; }
  35%, 96% { max-width: 145px; opacity: 1; margin-left: 11px; }
}
.contact-launcher.is-open .contact-launcher__button {
  animation: none;
  min-width: 56px;
}

/* Larger, centred contact modal with a blurred website backdrop. */
.quick-contact-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 24, 20, .32);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.quick-contact-backdrop[hidden] { display: none !important; }
body.contact-modal-open { overflow: hidden; }
.quick-contact-panel {
  position: fixed;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  z-index: 10001;
  width: min(560px, calc(100vw - 34px));
  max-height: calc(100vh - 42px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 36px);
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 28px 80px rgba(1, 32, 24, .28);
}
.quick-contact-panel__header {
  margin-bottom: 22px;
  font-size: clamp(27px, 3vw, 34px);
}
.quick-contact-panel label { font-size: 15px; margin-bottom: 9px; }
.quick-contact-panel textarea {
  min-height: 150px;
  padding: 16px;
  font-size: 16px;
}
.quick-contact-panel__actions {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.quick-contact-action { min-height: 50px; font-size: 16px; }

@media (max-width: 640px) {
  .contact-launcher { right: 16px; bottom: 86px; }
  .utility-phone span { display: inline; }
  .utility-phone { width: auto; }
  .quick-contact-panel__actions { grid-template-columns: 1fr; }
}


/* --------------------------------------------------------------------------
   Version 2.0.48 — synchronised contact launcher and simplified phone links
   -------------------------------------------------------------------------- */
.utility-phone {
  display: none !important;
}

.footer-brand-phone {
  display: inline-block !important;
  margin-top: 18px !important;
  color: #b7d69e !important;
  font-family: var(--mcoon-font-display) !important;
  font-size: clamp(25px, 2.15vw, 32px) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: -.025em !important;
  text-decoration: none !important;
  transition: color .22s ease !important;
}
.footer-brand-phone:hover,
.footer-brand-phone:focus-visible {
  color: #fff !important;
  text-decoration: none !important;
}
.footer-brand-phone .mcoon-icon { display: none !important; }

/* Four seconds visible, then six seconds fully collapsed. */
.contact-launcher__button {
  animation: mcoon-contact-button-cycle 10s infinite !important;
}
.contact-launcher__icons {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 auto !important;
  animation: mcoon-contact-icons-cycle 10s infinite !important;
}
.contact-launcher__icon {
  position: static !important;
  inset: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  animation: none !important;
}
.contact-launcher__icon--message {
  flex: 0 0 24px !important;
}
.contact-launcher__icon--phone {
  flex: 0 0 20px !important;
  animation: mcoon-contact-phone-cycle 10s infinite !important;
}
.contact-launcher__icon .mcoon-icon {
  width: 22px !important;
  height: 22px !important;
}
.contact-launcher__label {
  overflow: hidden !important;
  animation: mcoon-contact-label-sync 10s infinite !important;
}

@keyframes mcoon-contact-button-cycle {
  0%, 38% { min-width: 226px; padding-left: 17px; padding-right: 20px; }
  42%, 100% { min-width: 56px; padding-left: 16px; padding-right: 16px; }
}
@keyframes mcoon-contact-label-sync {
  0%, 38% { max-width: 150px; opacity: 1; margin-left: 11px; }
  42%, 100% { max-width: 0; opacity: 0; margin-left: 0; }
}
@keyframes mcoon-contact-icons-cycle {
  0%, 38% { width: 51px; }
  42%, 100% { width: 24px; }
}
@keyframes mcoon-contact-phone-cycle {
  0%, 38% { display: inline-flex; max-width: 20px; opacity: 1; }
  42%, 100% { display: none; max-width: 0; opacity: 0; }
}

.contact-launcher.is-open .contact-launcher__button,
.contact-launcher.is-open .contact-launcher__icons,
.contact-launcher.is-open .contact-launcher__icon--phone,
.contact-launcher.is-open .contact-launcher__label {
  animation: none !important;
}
.contact-launcher.is-open .contact-launcher__button { min-width: 56px !important; }
.contact-launcher.is-open .contact-launcher__icons { width: 24px !important; }
.contact-launcher.is-open .contact-launcher__icon--phone,
.contact-launcher.is-open .contact-launcher__label { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  .contact-launcher__button,
  .contact-launcher__icons,
  .contact-launcher__icon--phone,
  .contact-launcher__label { animation: none !important; }
  .contact-launcher__button { min-width: 56px !important; }
  .contact-launcher__icons { width: 24px !important; }
  .contact-launcher__icon--phone,
  .contact-launcher__label { display: none !important; }
}


/* --------------------------------------------------------------------------
   Version 2.0.49 — unified contact animation and premium modal
   -------------------------------------------------------------------------- */
.footer-brand-phone {
  font-family: var(--mcoon-font-body) !important;
}

/* Replace all earlier competing launcher animations with one synchronized cycle. */
.contact-launcher__button,
.contact-launcher__icons,
.contact-launcher__icon,
.contact-launcher__label {
  animation: none !important;
}

.contact-launcher__button {
  width: 56px !important;
  min-width: 56px !important;
  height: 56px !important;
  padding: 0 16px !important;
  gap: 0 !important;
  overflow: hidden !important;
  justify-content: flex-start !important;
  transition: width .48s cubic-bezier(.22,.8,.24,1),
              padding .48s cubic-bezier(.22,.8,.24,1),
              background .24s ease,
              transform .24s ease !important;
  animation: mcoon-launcher-reveal 10s cubic-bezier(.22,.8,.24,1) infinite !important;
}

.contact-launcher__icons {
  position: relative !important;
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
}

.contact-launcher__icon {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transform: scale(.72) rotate(-10deg) !important;
}

.contact-launcher__icon--message {
  animation: mcoon-message-swap 4s ease-in-out infinite !important;
}
.contact-launcher__icon--phone {
  animation: mcoon-phone-swap 4s ease-in-out infinite !important;
}

.contact-launcher__label {
  display: block !important;
  max-width: 0 !important;
  margin-left: 0 !important;
  opacity: 0 !important;
  transform: translateX(-12px) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  transition: none !important;
  animation: mcoon-launcher-label 10s cubic-bezier(.22,.8,.24,1) infinite !important;
}

@keyframes mcoon-message-swap {
  0%, 42% { opacity: 1; transform: scale(1) rotate(0); }
  48%, 92% { opacity: 0; transform: scale(.72) rotate(10deg); }
  98%, 100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes mcoon-phone-swap {
  0%, 42% { opacity: 0; transform: scale(.72) rotate(-10deg); }
  48%, 92% { opacity: 1; transform: scale(1) rotate(0); }
  98%, 100% { opacity: 0; transform: scale(.72) rotate(-10deg); }
}
@keyframes mcoon-launcher-reveal {
  0%, 56% { width: 56px; padding-right: 16px; }
  62%, 96% { width: 222px; padding-right: 20px; }
  100% { width: 56px; padding-right: 16px; }
}
@keyframes mcoon-launcher-label {
  0%, 56% { max-width: 0; margin-left: 0; opacity: 0; transform: translateX(-12px); }
  62%, 96% { max-width: 148px; margin-left: 12px; opacity: 1; transform: translateX(0); }
  100% { max-width: 0; margin-left: 0; opacity: 0; transform: translateX(-12px); }
}

.contact-launcher.is-open .contact-launcher__button,
.contact-launcher.is-open .contact-launcher__label,
.contact-launcher.is-open .contact-launcher__icon--message,
.contact-launcher.is-open .contact-launcher__icon--phone {
  animation: none !important;
}
.contact-launcher.is-open .contact-launcher__button {
  width: 56px !important;
  min-width: 56px !important;
  padding: 0 16px !important;
}
.contact-launcher.is-open .contact-launcher__label { display: none !important; }
.contact-launcher.is-open .contact-launcher__icon--message {
  opacity: 1 !important;
  transform: scale(1) rotate(0) !important;
}
.contact-launcher.is-open .contact-launcher__icon--phone { opacity: 0 !important; }

/* Larger, brand-consistent modal. */
.quick-contact-backdrop {
  background: rgba(0, 25, 18, .52) !important;
  backdrop-filter: blur(10px) saturate(.86) !important;
  -webkit-backdrop-filter: blur(10px) saturate(.86) !important;
}

.quick-contact-panel {
  position: fixed !important;
  left: 50% !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  width: min(680px, calc(100vw - 38px)) !important;
  max-height: min(760px, calc(100vh - 38px)) !important;
  overflow: auto !important;
  padding: clamp(28px, 4vw, 46px) !important;
  background: #fbf8f3 !important;
  border: 1px solid rgba(1,47,34,.12) !important;
  border-radius: 2px !important;
  box-shadow: 0 30px 90px rgba(0,24,17,.34) !important;
  color: #143f34 !important;
  z-index: 10005 !important;
}

.quick-contact-panel__header {
  align-items: flex-start !important;
  margin-bottom: 18px !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid rgba(1,47,34,.12) !important;
}
.quick-contact-panel__header > div {
  display: grid;
  gap: 5px;
}
.quick-contact-panel__eyebrow {
  font-family: var(--mcoon-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4f8a72;
}
.quick-contact-panel__header strong {
  font-family: var(--mcoon-font-heading);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 500;
  line-height: 1;
  color: #103f33;
}
.quick-contact-panel__close {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  padding: 0 !important;
  border: 1px solid rgba(1,47,34,.14) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #103f33 !important;
  font-family: Arial, sans-serif !important;
  font-size: 38px !important;
  font-weight: 300 !important;
  line-height: 46px !important;
  transition: background .2s ease, color .2s ease, transform .2s ease !important;
}
.quick-contact-panel__close:hover,
.quick-contact-panel__close:focus-visible {
  background: #d7345d !important;
  color: #fff !important;
  transform: rotate(6deg) scale(1.04);
}
.quick-contact-panel__intro {
  max-width: 560px;
  margin: 0 0 26px;
  font-family: var(--mcoon-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: #63766f;
}
.quick-contact-panel label {
  font-family: var(--mcoon-font-heading);
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #123f33;
}
.quick-contact-panel textarea {
  min-height: 180px !important;
  padding: 18px !important;
  border: 1px solid rgba(1,47,34,.18) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #153f34 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
}
.quick-contact-panel textarea:focus {
  outline: none !important;
  border-color: #0077ff !important;
  box-shadow: 0 0 0 4px rgba(0,119,255,.1) !important;
}
.quick-contact-panel__actions {
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  margin-top: 18px !important;
}
.quick-contact-action {
  min-height: 58px !important;
  gap: 11px !important;
  padding: 13px 18px !important;
  border-radius: 0 !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  transition: transform .2s ease, filter .2s ease !important;
}
.quick-contact-action:hover,
.quick-contact-action:focus-visible {
  transform: translateY(-2px);
  filter: brightness(.94);
}
.quick-contact-action .mcoon-icon {
  width: 23px !important;
  height: 23px !important;
  flex: 0 0 23px;
}
.quick-contact-action--call {
  background: #0077ff !important;
  color: #fff !important;
}
.quick-contact-action__number {
  font-family: var(--mcoon-font-body);
}

@media (max-width: 640px) {
  .quick-contact-panel {
    width: calc(100vw - 24px) !important;
    max-height: calc(100vh - 24px) !important;
    padding: 24px 20px !important;
  }
  .quick-contact-panel__actions { grid-template-columns: 1fr !important; }
  .quick-contact-panel__close {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    font-size: 34px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-launcher__button,
  .contact-launcher__label,
  .contact-launcher__icon--message,
  .contact-launcher__icon--phone { animation: none !important; }
  .contact-launcher__button { width: 56px !important; }
  .contact-launcher__icon--message { opacity: 1 !important; transform: none !important; }
  .contact-launcher__icon--phone { opacity: 0 !important; }
}


/* --------------------------------------------------------------------------
   Version 2.0.50 — reliable contact launcher and reservation modal refinements
   -------------------------------------------------------------------------- */
/* Disable the previous CSS-only launcher cycle; JS classes now control it. */
.contact-launcher__button,
.contact-launcher__label,
.contact-launcher__icon--message,
.contact-launcher__icon--phone {
  animation: none !important;
}

.contact-launcher__button {
  width: 56px !important;
  min-width: 56px !important;
  padding: 0 16px !important;
  transition: width .5s cubic-bezier(.22,.8,.24,1),
              padding .5s cubic-bezier(.22,.8,.24,1),
              background .22s ease,
              transform .22s ease !important;
}

.contact-launcher__icon {
  display: flex !important;
  opacity: 0 !important;
  transform: translateY(7px) scale(.72) rotate(-10deg) !important;
  transition: opacity .32s ease, transform .42s cubic-bezier(.22,.8,.24,1) !important;
}

.contact-launcher__icon--message {
  opacity: 1 !important;
  transform: translateY(0) scale(1) rotate(0) !important;
}
.contact-launcher.is-phone .contact-launcher__icon--message {
  opacity: 0 !important;
  transform: translateY(-7px) scale(.72) rotate(10deg) !important;
}
.contact-launcher.is-phone .contact-launcher__icon--phone {
  opacity: 1 !important;
  transform: translateY(0) scale(1) rotate(0) !important;
}

.contact-launcher__label {
  display: block !important;
  max-width: 0 !important;
  margin-left: 0 !important;
  opacity: 0 !important;
  transform: translateX(-14px) !important;
  overflow: hidden !important;
  transition: max-width .5s cubic-bezier(.22,.8,.24,1),
              margin-left .5s cubic-bezier(.22,.8,.24,1),
              opacity .28s ease .08s,
              transform .5s cubic-bezier(.22,.8,.24,1) !important;
}

.contact-launcher.is-expanded:not(.is-open) .contact-launcher__button {
  width: 224px !important;
  padding-right: 21px !important;
}
.contact-launcher.is-expanded:not(.is-open) .contact-launcher__label {
  max-width: 150px !important;
  margin-left: 12px !important;
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.contact-launcher.is-open .contact-launcher__icon--message,
.contact-launcher.is-open .contact-launcher__icon--phone {
  opacity: 0 !important;
}
.contact-launcher.is-open .contact-launcher__icon--message {
  opacity: 1 !important;
  transform: none !important;
}

.quick-contact-panel__close {
  background: #d7345d !important;
  border-color: #d7345d !important;
  color: #fff !important;
}
.quick-contact-panel__close:hover,
.quick-contact-panel__close:focus-visible {
  background: #b9274b !important;
  border-color: #b9274b !important;
  color: #fff !important;
}

.quick-contact-panel__header strong {
  max-width: 530px;
  font-size: clamp(31px, 4.4vw, 45px) !important;
  line-height: 1.06 !important;
}

.quick-contact-action--whatsapp .mcoon-icon--whatsapp {
  width: 25px !important;
  height: 25px !important;
  fill: currentColor !important;
  stroke: none !important;
}

.listing-toolbar .listing-dynamic-title [data-kitten-count] {
  background: #0077ff !important;
  border-color: #0077ff !important;
  color: #fff !important;
}


/* --------------------------------------------------------------------------
   Version 2.0.51 — delayed contact typing, restored Breeders and refined icons
   -------------------------------------------------------------------------- */
.contact-launcher:not(.is-expanded) .contact-launcher__label {
  visibility: hidden !important;
}
.contact-launcher.is-expanded .contact-launcher__label {
  visibility: visible !important;
  min-width: 104px;
}
.contact-launcher__label::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 3px;
  vertical-align: -.12em;
  background: currentColor;
  opacity: 0;
}
.contact-launcher.is-expanded .contact-launcher__label::after {
  opacity: 1;
  animation: mcoon-contact-caret .72s steps(1) infinite;
}
@keyframes mcoon-contact-caret { 50% { opacity: 0; } }
.kitten-load-more .mcoon-icon--arrow-down {
  transform: translateY(0);
  transition: transform .25s ease;
}
.kitten-load-more:hover .mcoon-icon--arrow-down,
.kitten-load-more:focus-visible .mcoon-icon--arrow-down {
  transform: translateY(4px);
}

/* Version 2.0.52 — refined utility strip and enquiry form */
.utility-message {
  display: flex;
  align-items: center;
  gap: 0;
}
.utility-message > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0 19px;
  white-space: nowrap;
}
.utility-message > span:first-child { padding-left: 0; }
.utility-message > span:last-child { padding-right: 0; }
.utility-message > span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(55,68,45,.25);
  transform: translateY(-50%);
}
.utility-message .utility-message__icon {
  order: -1;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

/* Hide the floating launcher while the modal itself is open. */
.contact-launcher.is-open > .contact-launcher__button {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(8px) scale(.9) !important;
}

.quick-contact-panel {
  width: min(760px, calc(100vw - 32px)) !important;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 36px !important;
  border-radius: 24px !important;
  background: linear-gradient(145deg, #fffdf8 0%, #f8f4ea 100%) !important;
  border: 1px solid rgba(55,68,45,.12) !important;
  box-shadow: 0 28px 90px rgba(20,35,27,.28) !important;
}
.quick-contact-panel__header {
  align-items: flex-start !important;
  gap: 22px;
}
.quick-contact-panel__header strong {
  display: block;
  max-width: 580px;
  color: #37442d;
  font-family: var(--mcoon-font-heading);
  font-size: clamp(34px, 4vw, 50px) !important;
  line-height: .98 !important;
  font-weight: 500;
}
.quick-contact-panel__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: #d7345d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.quick-contact-panel__intro {
  max-width: 650px;
  margin: 20px 0 25px !important;
  color: #65705e;
  font-size: 16px;
  line-height: 1.7;
}
.quick-contact-panel__close {
  width: 52px !important;
  min-width: 52px;
  height: 52px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #d7345d !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  transition: width .35s ease, min-width .35s ease, background .25s ease, transform .25s ease !important;
}
.quick-contact-panel__close:hover,
.quick-contact-panel__close:focus-visible {
  width: 104px !important;
  min-width: 104px;
  background: #b9274b !important;
  transform: translateY(-1px);
}
.quick-contact-panel__close-icon {
  font-size: 32px;
  line-height: 1;
  transition: transform .35s ease, opacity .25s ease;
}
.quick-contact-panel__close-text {
  max-width: 0;
  opacity: 0;
  font-family: var(--mcoon-font-body);
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width .35s ease, opacity .25s ease, margin-left .35s ease;
}
.quick-contact-panel__close:hover .quick-contact-panel__close-icon,
.quick-contact-panel__close:focus-visible .quick-contact-panel__close-icon {
  transform: rotate(90deg) scale(.8);
}
.quick-contact-panel__close:hover .quick-contact-panel__close-text,
.quick-contact-panel__close:focus-visible .quick-contact-panel__close-text {
  max-width: 48px;
  opacity: 1;
  margin-left: 7px;
}
.quick-contact-form label:not(.quick-contact-form__callback) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #37442d;
  font-size: 14px;
  font-weight: 600;
}
.quick-contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}
.quick-contact-form input[type="text"],
.quick-contact-form input[type="tel"],
.quick-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(55,68,45,.2);
  border-radius: 12px;
  background: rgba(255,255,255,.78);
  color: #283226;
  font: 400 16px/1.5 var(--mcoon-font-body);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.quick-contact-form input[type="text"],
.quick-contact-form input[type="tel"] { min-height: 52px; padding: 0 15px; }
.quick-contact-form textarea { min-height: 132px; padding: 14px 15px; resize: vertical; }
.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
  border-color: #d7345d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(215,52,93,.11);
}
.quick-contact-form__callback {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0 18px;
  color: #4f5b49;
  font-size: 15px;
  cursor: pointer;
}
.quick-contact-form__callback input {
  width: 19px;
  height: 19px;
  accent-color: #d7345d;
}
.quick-contact-submit {
  min-width: 250px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  background: #d7345d;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 400 17px/1 var(--mcoon-font-body);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.quick-contact-submit:hover { background: #b9274b; transform: translateY(-2px); }
.quick-contact-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.quick-contact-submit .mcoon-icon { width: 20px; height: 20px; }
.quick-contact-submit.is-loading .mcoon-icon { animation: mcoon-contact-send 1s ease-in-out infinite; }
@keyframes mcoon-contact-send { 50% { transform: translate(4px,-4px); opacity: .45; } }
.quick-contact-form__status { min-height: 22px; margin: 12px 0 0; font-size: 14px; }
.quick-contact-form__status.is-success { color: #23723d; }
.quick-contact-form__status.is-error { color: #b9274b; }
.quick-contact-panel__separator {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 16px;
  color: #899181;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.quick-contact-panel__separator::before,
.quick-contact-panel__separator::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(55,68,45,.14);
}
.quick-contact-panel__actions {
  display: flex !important;
  gap: 12px !important;
  justify-content: flex-start;
}
.quick-contact-panel__actions .quick-contact-action {
  width: auto !important;
  min-width: 205px;
  min-height: 52px;
  border-radius: 12px !important;
  justify-content: center;
  font-family: var(--mcoon-font-body);
  font-size: 16px;
}
.quick-contact-action--call { background: #0077ff !important; color: #fff !important; }
.quick-contact-action--call:hover { background: #005dcc !important; }
.quick-contact-action--whatsapp .mcoon-icon--whatsapp { width: 22px; height: 22px; }

@media (max-width: 760px) {
  .utility-message > span { padding-inline: 11px; font-size: 11px; }
  .utility-message > span:nth-child(3) { display: none; }
  .quick-contact-panel { padding: 25px 20px !important; }
  .quick-contact-form__grid { grid-template-columns: 1fr; }
  .quick-contact-submit { width: 100%; }
  .quick-contact-panel__actions { flex-direction: column; }
  .quick-contact-panel__actions .quick-contact-action { width: 100% !important; }
}


/* --------------------------------------------------------------------------
   Version 2.0.53 — anchored pagination and full-view enquiry modal
   -------------------------------------------------------------------------- */
@media (min-width: 761px) {
  .quick-contact-panel {
    width: min(1060px, calc(100vw - 52px)) !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 28px 30px 30px !important;
  }
  .quick-contact-panel__header { margin-bottom: 14px !important; }
  .quick-contact-panel__header strong {
    max-width: 820px !important;
    font-size: clamp(32px, 3.4vw, 46px) !important;
    line-height: 1.02 !important;
  }
  .quick-contact-panel__body {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
    gap: 28px;
    align-items: stretch;
  }
  .quick-contact-panel__form-column { min-width: 0; }
  .quick-contact-panel__intro {
    margin: 0 0 18px !important;
    max-width: 690px;
    font-size: 15px;
    line-height: 1.58;
  }
  .quick-contact-form textarea {
    min-height: 112px !important;
    max-height: 140px;
    resize: vertical;
  }
  .quick-contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 14px;
  }
  .quick-contact-form__callback { margin: 0 !important; }
  .quick-contact-submit { min-width: 230px; }
  .quick-contact-form__status { margin-bottom: 0; }
  .quick-contact-panel__direct {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px;
    border: 1px solid rgba(55,68,45,.11);
    border-radius: 18px;
    background: rgba(55,68,45,.055);
  }
  .quick-contact-panel__direct-eyebrow {
    color: #d7345d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
  }
  .quick-contact-panel__direct h3 {
    margin: 8px 0 10px;
    color: #37442d;
    font-family: var(--mcoon-font-heading);
    font-size: clamp(25px, 2.4vw, 34px);
    font-weight: 500;
    line-height: 1.05;
  }
  .quick-contact-panel__direct p {
    margin: 0 0 20px;
    color: #65705e;
    font-size: 14px;
    line-height: 1.6;
  }
  .quick-contact-panel__actions {
    flex-direction: column;
    width: 100%;
  }
  .quick-contact-panel__actions .quick-contact-action {
    width: 100% !important;
    min-width: 0;
  }
}

@media (min-width: 761px) and (max-height: 720px) {
  .quick-contact-panel {
    padding-top: 22px !important;
    padding-bottom: 22px !important;
  }
  .quick-contact-panel__eyebrow { margin-bottom: 5px; }
  .quick-contact-panel__header strong { font-size: 31px !important; }
  .quick-contact-panel__intro { margin-bottom: 12px !important; line-height: 1.45; }
  .quick-contact-form textarea { min-height: 88px !important; }
  .quick-contact-panel__direct { padding: 20px; }
}

@media (max-width: 760px) {
  .quick-contact-panel__body { display: block; }
  .quick-contact-panel__direct {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(55,68,45,.14);
  }
  .quick-contact-panel__direct-eyebrow {
    color: #d7345d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .quick-contact-panel__direct h3 {
    margin: 7px 0 8px;
    color: #37442d;
    font-family: var(--mcoon-font-heading);
    font-size: 26px;
    font-weight: 500;
  }
  .quick-contact-panel__direct p { color: #65705e; line-height: 1.55; }
}

/* Version 2.0.54 — filter, trust strip and contact refinements */
.utility-message > span:not(:last-child)::after {
  width: 2px !important;
  height: 22px !important;
  background: rgba(55,68,45,.48) !important;
}

.back-to-top {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
  border-radius: 50% !important;
}

.quick-contact-form__callback {
  min-height: 54px;
  padding: 11px 16px;
  border: 1px solid rgba(215,52,93,.22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(215,52,93,.07), rgba(255,255,255,.82));
  color: #37442d !important;
  box-shadow: 0 8px 22px rgba(55,68,45,.06);
  transition: border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}
.quick-contact-form__callback:hover {
  border-color: rgba(215,52,93,.48);
  background: rgba(215,52,93,.1);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(55,68,45,.09);
}
.quick-contact-form__callback input {
  appearance: none;
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px;
  border: 2px solid #d7345d;
  border-radius: 7px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.quick-contact-form__callback input::before {
  content: "✓";
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transform: scale(0);
  transition: transform .18s ease;
}
.quick-contact-form__callback input:checked { background: #d7345d; }
.quick-contact-form__callback input:checked::before { transform: scale(1); }
.quick-contact-form__callback span { font-weight: 600; }

.quick-contact-action--whatsapp:hover,
.quick-contact-action--whatsapp:focus-visible,
.quick-contact-action--whatsapp:hover span,
.quick-contact-action--whatsapp:focus-visible span,
.quick-contact-action--whatsapp:hover .mcoon-icon,
.quick-contact-action--whatsapp:focus-visible .mcoon-icon {
  color: #fff !important;
  fill: currentColor !important;
}

.quick-contact-success {
  min-height: 270px;
  padding: 34px;
  border: 1px solid rgba(35,114,61,.2);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(237,248,240,.98), rgba(255,255,255,.96));
  color: #174d2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 45px rgba(35,114,61,.1);
  opacity: 0;
  transform: translateY(10px) scale(.985);
}
.quick-contact-success[hidden] { display: none !important; }
.quick-contact-success.is-visible {
  animation: mcoon-success-reveal .45s ease forwards;
}
.quick-contact-success__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #23723d;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 34px;
  box-shadow: 0 12px 30px rgba(35,114,61,.22);
}
.quick-contact-success strong {
  margin-bottom: 10px;
  font-family: var(--mcoon-font-heading);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.15;
  color: #174d2a;
}
.quick-contact-success p {
  max-width: 520px;
  margin: 0;
  font-family: var(--mcoon-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #356243;
}
@keyframes mcoon-success-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}


/* --------------------------------------------------------------------------
   Version 2.0.56 — mobile presentation and navigation refinements
   -------------------------------------------------------------------------- */
.footer-brand-phone {
  font-weight: 100 !important;
}

/* Keep the expanded launcher compact around its animated label. */
.contact-launcher.is-expanded:not(.is-open) .contact-launcher__button {
  width: 188px !important;
  min-width: 188px !important;
  padding-inline: 15px !important;
}
.contact-launcher.is-expanded:not(.is-open) .contact-launcher__label {
  max-width: 112px !important;
  margin-left: 9px !important;
}

.breeder-cta__image--mobile { display: none; }
.mobile-menu-close { display: none; }

@media (max-width: 760px) {
  /* The contact control remains a clean icon-only circle on phones. */
  .contact-launcher.is-expanded:not(.is-open) .contact-launcher__button,
  .contact-launcher__button {
    width: 56px !important;
    min-width: 56px !important;
    padding: 0 !important;
  }
  .contact-launcher__label,
  .contact-launcher.is-expanded .contact-launcher__label {
    display: none !important;
    max-width: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
  }

  /* Mobile hero is intentionally title-only. */
  .hero-copy--portrait .hero-description,
  .hero-copy--portrait .hero-subtitle {
    display: none !important;
  }

  /* Vertically centre every trust message within the moving strip. */
  .trust-row__viewport,
  .trust-row__track,
  .trust-row__group,
  .trust-item {
    align-items: center !important;
  }
  .trust-row__group {
    min-height: 100% !important;
  }
  .trust-item {
    align-self: center !important;
    justify-content: center !important;
    min-height: 62px !important;
    margin-block: 0 !important;
    padding-block: 0 !important;
  }
  .trust-item strong {
    display: flex !important;
    align-items: center !important;
    min-height: 42px !important;
    line-height: 1.2 !important;
  }

  /* Always show four coat colours on each mobile row. */
  .colour-swatches {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 11px !important;
    width: 100% !important;
  }
  .colour-swatch {
    width: 100% !important;
    justify-content: center !important;
  }

  /* A slightly portrait image stage preserves ears and the full head. */
  .kitten-card__media {
    aspect-ratio: 10 / 11 !important;
    min-height: 0 !important;
  }
  .kitten-card__media img {
    object-position: center 35% !important;
  }

  /* Mobile breeder CTA: comfortable side spacing and image between title/copy. */
  .breeder-cta.breeder-cta--hero {
    padding-inline: 18px !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__grid {
    width: 100% !important;
    padding-inline: 0 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy {
    padding-inline: 0 !important;
  }
  .breeder-cta__image--desktop { display: none !important; }
  .breeder-cta__image--mobile {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 22px 0 20px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }
  .breeder-cta__image--mobile::before,
  .breeder-cta__image--mobile::after {
    display: none !important;
    content: none !important;
  }
  .breeder-cta__image--mobile img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    object-fit: cover !important;
    opacity: 1 !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  /* Full-screen, fixed, non-scrollable mobile navigation. */
  body.nav-open { overflow: hidden !important; }
  .primary-navigation,
  .site-header.is-sticky .primary-navigation {
    position: fixed !important;
    inset: 0 !important;
    z-index: 10020 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    padding: 84px 26px 34px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255,253,248,.98) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 0 !important;
    transform: translateY(-18px) scale(.985) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity .28s ease, transform .38s cubic-bezier(.22,.8,.24,1), visibility .28s ease !important;
  }
  .nav-open .primary-navigation {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .primary-navigation .primary-menu {
    width: min(420px, 100%) !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    overflow: visible !important;
  }
  .primary-navigation .primary-menu li { width: 100% !important; }
  .primary-navigation .primary-menu a {
    width: 100% !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 18px !important;
    border: 0 !important;
    color: #37442d !important;
    font-family: var(--mcoon-font-heading) !important;
    font-size: clamp(23px, 6.2vw, 31px) !important;
    font-weight: 500 !important;
    text-align: center !important;
  }
  .primary-navigation .primary-menu a:hover,
  .primary-navigation .primary-menu a:focus-visible {
    color: #d7345d !important;
    background: transparent !important;
  }
  .mobile-menu-close {
    position: absolute !important;
    top: 22px !important;
    right: 20px !important;
    width: 54px !important;
    min-width: 54px !important;
    height: 54px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #d7345d !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: width .35s ease, min-width .35s ease, background .22s ease !important;
  }
  .mobile-menu-close:hover,
  .mobile-menu-close:focus-visible {
    width: 112px !important;
    min-width: 112px !important;
    background: #b9274b !important;
  }
  .mobile-menu-close__icon {
    font-size: 34px !important;
    line-height: 1 !important;
    transition: transform .35s ease !important;
  }
  .mobile-menu-close__text {
    max-width: 0 !important;
    margin-left: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    font-family: var(--mcoon-font-body) !important;
    font-size: 16px !important;
    transition: max-width .35s ease, margin-left .35s ease, opacity .25s ease !important;
  }
  .mobile-menu-close:hover .mobile-menu-close__icon,
  .mobile-menu-close:focus-visible .mobile-menu-close__icon { transform: rotate(90deg) scale(.82) !important; }
  .mobile-menu-close:hover .mobile-menu-close__text,
  .mobile-menu-close:focus-visible .mobile-menu-close__text {
    max-width: 50px !important;
    margin-left: 8px !important;
    opacity: 1 !important;
  }
}


/* --------------------------------------------------------------------------
   Version 2.0.57 — launcher, filters, desktop CTA and mobile card refinements
   -------------------------------------------------------------------------- */
@media (min-width: 761px) {
  /* Give the contact pill a visibly smooth reveal as well as a smooth collapse. */
  .contact-launcher__button {
    transition: width .82s cubic-bezier(.22,.8,.24,1),
                min-width .82s cubic-bezier(.22,.8,.24,1),
                padding .82s cubic-bezier(.22,.8,.24,1),
                background .22s ease,
                transform .22s ease !important;
  }
  .contact-launcher__label {
    transition: max-width .76s cubic-bezier(.22,.8,.24,1),
                margin-left .76s cubic-bezier(.22,.8,.24,1),
                opacity .34s ease .18s,
                transform .76s cubic-bezier(.22,.8,.24,1) !important;
  }
  .contact-launcher.is-expanded:not(.is-open) .contact-launcher__button {
    width: 164px !important;
    min-width: 164px !important;
    padding-inline: 15px !important;
  }
  .contact-launcher.is-expanded:not(.is-open) .contact-launcher__label {
    max-width: 86px !important;
    min-width: 0 !important;
    margin-left: 9px !important;
  }

  /* Restore the approved desktop 25/75 breeder CTA layout. */
  .breeder-cta.breeder-cta--hero {
    padding: 0 !important;
    overflow: hidden !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__grid {
    display: grid !important;
    grid-template-columns: minmax(320px, 1fr) minmax(0, 3fr) !important;
    align-items: stretch !important;
    width: calc(100vw - max(32px, (100vw - var(--mcoon-container)) / 2)) !important;
    max-width: none !important;
    min-height: 520px !important;
    margin-left: max(32px, (100vw - var(--mcoon-container)) / 2) !important;
    margin-right: 0 !important;
    padding: 0 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy {
    min-height: 520px !important;
    padding: clamp(56px,5vw,82px) clamp(18px,2vw,28px) clamp(56px,5vw,82px) 0 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__image--desktop {
    display: flex !important;
    min-height: 520px !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__image--desktop img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  .breeder-cta__image--mobile { display: none !important; }
}

/* Unchecked gender choices always return to the true neutral state after click. */
.gender-filter__option input:not(:checked) + span,
.gender-filter__option:focus-within input:not(:checked) + span {
  background: rgba(255,255,255,.055) !important;
  border-color: rgba(255,255,255,.14) !important;
  color: rgba(255,255,255,.88) !important;
  transform: none !important;
  box-shadow: none !important;
}
.gender-filter__option:hover input:not(:checked) + span {
  background: rgba(163,255,145,.16) !important;
  border-color: rgba(163,255,145,.7) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 15px rgba(0,0,0,.1) !important;
}

@media (max-width: 760px) {
  /* Testimonials are intentionally hidden on phones. */
  .testimonials,
  .wp-block-mcoon-testimonials {
    display: none !important;
  }

  /* Clear separators between stacked footer columns. */
  .site-footer .footer-grid > .footer-column {
    width: 100% !important;
    padding-top: 24px !important;
    margin-top: 24px !important;
    border-top: 1px solid rgba(255,255,255,.24) !important;
  }

  /* Keep the active contact icon exactly centred inside the 56px circle. */
  .contact-launcher__button,
  .contact-launcher.is-expanded:not(.is-open) .contact-launcher__button {
    display: grid !important;
    place-items: center !important;
    gap: 0 !important;
  }
  .contact-launcher__icons {
    position: relative !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 !important;
    flex: none !important;
    justify-self: center !important;
  }
  .contact-launcher__icon {
    position: absolute !important;
    inset: 0 !important;
    width: 24px !important;
    height: 24px !important;
    display: grid !important;
    place-items: center !important;
  }

  /* Taller full-bleed kitten image stage with no right-side gap. */
  .kitten-card__media {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4 / 5 !important;
    overflow: hidden !important;
  }
  .kitten-card__media > a,
  .kitten-card__media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
  }
  .kitten-card__media img {
    object-fit: cover !important;
    object-position: center 28% !important;
  }
}

/* --------------------------------------------------------------------------
   Version 2.0.58 — definitive desktop breeder CTA and mobile testimonials
   -------------------------------------------------------------------------- */
@media (min-width: 761px) {
  .breeder-cta.breeder-cta--hero {
    position: relative !important;
    display: block !important;
    min-height: 520px !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #f8f5f0 !important;
  }
  .breeder-cta.breeder-cta--hero::before,
  .breeder-cta.breeder-cta--hero::after {
    content: none !important;
    display: none !important;
  }
  .breeder-cta.breeder-cta--hero > .breeder-cta__grid {
    display: grid !important;
    grid-template-columns: minmax(340px, 25%) minmax(0, 75%) !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 520px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 520px !important;
    padding: 64px clamp(34px, 3vw, 58px) 64px max(32px, calc((100vw - var(--mcoon-container)) / 2)) !important;
    background: #f8f5f0 !important;
    overflow: visible !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy h2 {
    max-width: 470px !important;
    margin: 0 0 20px !important;
    color: var(--mcoon-forest) !important;
    font-size: clamp(42px, 3.4vw, 58px) !important;
    line-height: 1 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy p {
    max-width: 470px !important;
    margin: 0 0 26px !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__image--desktop {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    min-height: 520px !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__image--desktop::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 auto 0 0 !important;
    z-index: 1 !important;
    width: 18% !important;
    display: block !important;
    background: linear-gradient(90deg, #f8f5f0 0%, rgba(248,245,240,.72) 42%, rgba(248,245,240,0) 100%) !important;
    pointer-events: none !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__image--desktop img {
    display: block !important;
    width: 100% !important;
    height: 520px !important;
    min-height: 520px !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__image--mobile {
    display: none !important;
  }
}

@media (max-width: 760px) {
  body .testimonials,
  body .wp-block-mcoon-testimonials,
  body section.testimonials,
  body [class*="wp-block-mcoon-testimonials"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}

/* --------------------------------------------------------------------------
   Version 2.0.59 — mobile CTA, gallery controls, badges and filter refinements
   -------------------------------------------------------------------------- */

/* Colour and gender attributes use exactly the same outer dimensions. */
.kitten-card__colour-badge,
.kitten-card__gender {
  box-sizing: border-box !important;
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  border-radius: 9px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.kitten-card__colour-badge > span {
  width: 22px !important;
  height: 22px !important;
}

/* More breathing room before the price control on every viewport. */
.filter-panel .price-field {
  margin-top: 28px !important;
  padding-top: 4px !important;
}

@media (max-width: 760px) {
  /* Only the intentionally inserted mobile image may appear in the CTA.
     The desktop image after the button is completely removed on phones. */
  .breeder-cta.breeder-cta--hero .breeder-cta__image--desktop,
  .breeder-cta.breeder-cta--hero .breeder-cta__grid > .breeder-cta__image:last-child {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__image--mobile {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Absolute centring prevents either animated icon drifting to an edge. */
  .contact-launcher,
  .contact-launcher__button,
  .contact-launcher.is-expanded:not(.is-open) .contact-launcher__button {
    width: 56px !important;
    min-width: 56px !important;
    height: 56px !important;
  }
  .contact-launcher__button,
  .contact-launcher.is-expanded:not(.is-open) .contact-launcher__button {
    position: relative !important;
    display: block !important;
    padding: 0 !important;
  }
  .contact-launcher__icons {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 26px !important;
    height: 26px !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
  }
  .contact-launcher__icon {
    position: absolute !important;
    inset: 0 !important;
    width: 26px !important;
    height: 26px !important;
    margin: 0 !important;
  }
  .contact-launcher__icon .mcoon-icon,
  .contact-launcher__icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  /* Larger, easier-to-use controls over mobile kitten photographs. */
  .kitten-card__gallery-count {
    bottom: 15px !important;
    min-width: 54px !important;
    padding: 7px 11px !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    line-height: 1 !important;
    text-align: center !important;
  }
  .kitten-card__gallery-arrow {
    width: 42px !important;
    min-width: 42px !important;
    height: 68px !important;
    border-radius: 7px !important;
  }
  .kitten-card__gallery-arrow .mcoon-icon,
  .kitten-card__gallery-arrow svg {
    width: 25px !important;
    height: 25px !important;
  }
  .kitten-card__gallery-arrow--prev { left: 8px !important; }
  .kitten-card__gallery-arrow--next { right: 8px !important; }

  /* Keep four colours per row while giving the two rows visible separation. */
  .colour-swatches {
    row-gap: 20px !important;
    column-gap: 11px !important;
    margin-bottom: 3px !important;
  }

  /* Clearer separation between Maximum age and Maximum Price. */
  .filter-panel .price-field {
    margin-top: 36px !important;
    padding-top: 8px !important;
  }
}

/* --------------------------------------------------------------------------
   Version 2.0.60 — compact spacing and simplified mobile contact experience
   -------------------------------------------------------------------------- */

/* Keep the price control visually connected to the age control. */
.filter-panel .price-field {
  margin-top: 14px !important;
  padding-top: 0 !important;
}

@media (min-width: 761px) {
  /* Size the revealed launcher closely around the icon and short label. */
  .contact-launcher.is-expanded:not(.is-open) .contact-launcher__button {
    width: 132px !important;
    min-width: 132px !important;
    padding-left: 13px !important;
    padding-right: 8px !important;
  }
  .contact-launcher.is-expanded:not(.is-open) .contact-launcher__label {
    max-width: 64px !important;
    margin-left: 8px !important;
  }
}

@media (max-width: 760px) {
  .filter-panel .price-field {
    margin-top: 18px !important;
    padding-top: 0 !important;
  }

  /* Remove all residual space beneath the CTA button on mobile. */
  .breeder-cta.breeder-cta--hero,
  .breeder-cta.breeder-cta--hero .breeder-cta__grid,
  .breeder-cta.breeder-cta--hero .breeder-cta__copy {
    min-height: 0 !important;
  }
  .breeder-cta.breeder-cta--hero {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__grid {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy {
    padding-bottom: 28px !important;
    margin-bottom: 0 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy .button {
    margin-bottom: 0 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__image--desktop,
  .breeder-cta.breeder-cta--hero .breeder-cta__grid > .breeder-cta__image:last-child {
    display: none !important;
  }

  /* Mobile popup opens as a clean three-action choice. */
  .quick-contact-panel {
    width: min(430px, calc(100vw - 28px)) !important;
    padding: 22px 18px 20px !important;
  }
  .quick-contact-panel__eyebrow,
  .quick-contact-panel__intro,
  .quick-contact-panel__direct-eyebrow,
  .quick-contact-panel__direct h3,
  .quick-contact-panel__direct > p {
    display: none !important;
  }
  .quick-contact-panel__header {
    margin-bottom: 18px !important;
  }
  .quick-contact-panel__body {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
  .quick-contact-panel__form-column,
  .quick-contact-panel__direct {
    display: contents !important;
  }
  .quick-contact-form {
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important;
  }
  .quick-contact-form__grid,
  .quick-contact-form > label,
  .quick-contact-form__status,
  .quick-contact-success {
    display: none !important;
  }
  .quick-contact-form__footer {
    order: 1 !important;
    margin: 0 !important;
  }
  .quick-contact-submit,
  .quick-contact-action {
    width: 100% !important;
    min-height: 52px !important;
    justify-content: center !important;
    border-radius: 8px !important;
  }
  .quick-contact-panel__direct {
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }
  .quick-contact-panel__actions {
    display: grid !important;
    gap: 10px !important;
    margin: 0 !important;
    padding-top: 10px !important;
    border-top: 1px solid rgba(1,47,34,.14) !important;
  }

  /* After choosing Send your message, reveal the form fields cleanly. */
  .quick-contact-panel.mobile-form-expanded .quick-contact-form__grid,
  .quick-contact-panel.mobile-form-expanded .quick-contact-form > label {
    display: grid !important;
  }
  .quick-contact-panel.mobile-form-expanded .quick-contact-form__grid {
    gap: 10px !important;
    margin-bottom: 10px !important;
  }
  .quick-contact-panel.mobile-form-expanded .quick-contact-form > label {
    margin-bottom: 10px !important;
  }
  .quick-contact-panel.mobile-form-expanded .quick-contact-form__footer {
    margin-top: 2px !important;
  }
}

/* --------------------------------------------------------------------------
   Version 2.0.61 — filter reset, desktop breeder CTA and mobile contact form
   -------------------------------------------------------------------------- */

/* Gender controls must always return to the true neutral state when unchecked. */
.gender-filter__option input:not(:checked) + span {
  background: #fff !important;
  border-color: rgba(1, 47, 34, .16) !important;
  color: var(--mcoon-ink) !important;
  box-shadow: none !important;
  transform: none !important;
}
@media (hover: hover) and (pointer: fine) {
  .gender-filter__option:hover input:not(:checked) + span,
  .gender-filter__option:focus-within input:not(:checked) + span {
    background: rgba(83, 177, 84, .08) !important;
    border-color: rgba(83, 177, 84, .58) !important;
    color: var(--mcoon-green-dark) !important;
  }
}

.filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.filter-actions .button { margin: 0 !important; }
.filter-actions .button--secondary {
  background: #fff !important;
  border: 1px solid rgba(1, 47, 34, .2) !important;
  color: var(--mcoon-green-dark) !important;
}
.filter-actions .button--secondary:hover,
.filter-actions .button--secondary:focus-visible {
  background: var(--mcoon-cream) !important;
  border-color: var(--mcoon-green-dark) !important;
}

/* Restore the desktop CTA as one background-image composition: copy on the
   left, photograph on the right, with a soft fade beginning near 25%. */
@media (min-width: 761px) {
  .breeder-cta.breeder-cta--hero {
    position: relative !important;
    min-height: 410px !important;
    overflow: hidden !important;
    background-color: #f8f5ef !important;
    background-image: url('../images/join.jpg') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 66% center !important;
  }
  .breeder-cta.breeder-cta--hero::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    display: block !important;
    background: linear-gradient(90deg,
      #f8f5ef 0%,
      #f8f5ef 24%,
      rgba(248,245,239,.98) 31%,
      rgba(248,245,239,.82) 38%,
      rgba(248,245,239,.38) 48%,
      rgba(248,245,239,0) 60%) !important;
    pointer-events: none !important;
  }
  .breeder-cta.breeder-cta--hero::after { display: none !important; }
  .breeder-cta.breeder-cta--hero .breeder-cta__grid {
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    grid-template-columns: minmax(320px, 38%) 1fr !important;
    min-height: 410px !important;
    padding: 0 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy {
    width: auto !important;
    max-width: 520px !important;
    min-height: 410px !important;
    padding: 58px 28px 58px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    background: transparent !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy h2 {
    max-width: 430px !important;
    margin: 0 0 20px !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy > p:not(.eyebrow) {
    max-width: 390px !important;
    margin: 0 0 24px !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__image--desktop,
  .breeder-cta.breeder-cta--hero .breeder-cta__image--mobile {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .filter-actions { grid-template-columns: 1fr; }

  /* The mobile popup immediately presents the complete enquiry form again. */
  .quick-contact-panel .quick-contact-form__grid,
  .quick-contact-panel .quick-contact-form > label,
  .quick-contact-panel .quick-contact-form__status {
    display: grid !important;
  }
  .quick-contact-panel .quick-contact-form__grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
  }
  .quick-contact-panel .quick-contact-form > label {
    margin-bottom: 10px !important;
  }
  .quick-contact-panel .quick-contact-form__footer { order: initial !important; }
  .quick-contact-panel .quick-contact-panel__actions {
    padding-top: 12px !important;
    margin-top: 4px !important;
  }
}

/* v2.0.62 — desktop CTA alignment and filter controls */
.gender-filter__options {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}
.gender-filter__option {
  display: block !important;
  min-width: 0 !important;
}
.gender-filter__option > span,
.gender-filter__option input + span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  width: 100% !important;
  min-height: 42px !important;
  padding: 9px 8px !important;
  background: #fff !important;
  border: 1px solid rgba(1,47,34,.18) !important;
  border-radius: 5px !important;
  color: var(--mcoon-ink) !important;
  font-family: var(--mcoon-font-body) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.gender-filter__option input + span .mcoon-icon {
  width: 17px !important;
  height: 17px !important;
  flex: 0 0 17px !important;
  color: currentColor !important;
}
.gender-filter__option input:checked + span {
  background: var(--mcoon-fresh-green, #53b154) !important;
  border-color: var(--mcoon-fresh-green, #53b154) !important;
  color: #fff !important;
  box-shadow: 0 5px 14px rgba(16,92,52,.18) !important;
}
.gender-filter__option input:not(:checked) + span {
  background: #fff !important;
  border-color: rgba(1,47,34,.18) !important;
  color: var(--mcoon-ink) !important;
  box-shadow: none !important;
  transform: none !important;
}
@media (hover:hover) and (pointer:fine) {
  .gender-filter__option:hover input:not(:checked) + span {
    background: rgba(83,177,84,.08) !important;
    border-color: rgba(83,177,84,.6) !important;
    color: var(--mcoon-green-dark) !important;
  }
}

.filter-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 9px !important;
  width: 100% !important;
}
.filter-actions .button {
  width: 100% !important;
  min-width: 0 !important;
  color: #fff !important;
}
.filter-actions .button--primary {
  grid-row: 1 !important;
}
.filter-actions .button--secondary {
  grid-row: 2 !important;
  background: #0b6b4b !important;
  border-color: #0b6b4b !important;
  color: #fff !important;
}
.filter-actions .button--secondary:hover,
.filter-actions .button--secondary:focus-visible {
  background: #074d37 !important;
  border-color: #074d37 !important;
  color: #fff !important;
}
.filter-actions .button .mcoon-icon { color: currentColor !important; }

@media (min-width: 761px) {
  .breeder-cta.breeder-cta--hero > .breeder-cta__grid {
    width: min(calc(100% - 64px), var(--mcoon-container)) !important;
    max-width: var(--mcoon-container) !important;
    margin-inline: auto !important;
    grid-template-columns: minmax(330px, 34%) minmax(0, 66%) !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__copy {
    padding: 64px clamp(24px, 3vw, 50px) 64px 0 !important;
  }
  .breeder-cta.breeder-cta--hero .breeder-cta__image--desktop {
    margin-right: calc((100vw - min(calc(100vw - 64px), var(--mcoon-container))) / -2) !important;
    width: calc(100% + max(32px, (100vw - var(--mcoon-container)) / 2)) !important;
  }
}


/* v2.0.63 — simplified filter actions and definitive gender interaction states */
.filter-actions .button .mcoon-icon {
  display: none !important;
}

/* Base state: clean white button. */
.gender-filter__option input + span,
.gender-filter__option input:not(:checked) + span,
.gender-filter__option:focus-within input:not(:checked) + span {
  background: #ffffff !important;
  border-color: rgba(1, 47, 34, 0.22) !important;
  color: var(--mcoon-ink) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Hover exists only on devices that genuinely support hover. */
@media (hover: hover) and (pointer: fine) {
  .gender-filter__option:hover input:not(:checked) + span,
  .gender-filter__option:focus-within:hover input:not(:checked) + span {
    background: rgba(83, 177, 84, 0.11) !important;
    border-color: var(--mcoon-fresh-green, #53b154) !important;
    color: var(--mcoon-green-dark) !important;
    box-shadow: 0 4px 12px rgba(16, 92, 52, 0.10) !important;
    transform: translateY(-1px) !important;
  }
}

/* Selected state remains distinct until the checkbox is unticked. */
.gender-filter__option input:checked + span,
.gender-filter__option:hover input:checked + span,
.gender-filter__option:focus-within input:checked + span {
  background: var(--mcoon-fresh-green, #53b154) !important;
  border-color: var(--mcoon-fresh-green, #53b154) !important;
  color: #ffffff !important;
  box-shadow: 0 5px 14px rgba(16, 92, 52, 0.18) !important;
  transform: none !important;
}

/* On touch devices, an unticked option must immediately look neutral again. */
@media (hover: none), (pointer: coarse) {
  .gender-filter__option:hover input:not(:checked) + span,
  .gender-filter__option:focus-within input:not(:checked) + span,
  .gender-filter__option:active input:not(:checked) + span {
    background: #ffffff !important;
    border-color: rgba(1, 47, 34, 0.22) !important;
    color: var(--mcoon-ink) !important;
    box-shadow: none !important;
    transform: none !important;
  }
}

/* v2.0.64 — stationary contact hover and larger, clearer gender controls */
.contact-launcher__button:hover,
.contact-launcher__button:focus-visible,
.contact-launcher__button:active,
.contact-launcher:hover .contact-launcher__button {
  transform: none !important;
}
.contact-launcher__button:hover,
.contact-launcher__button:focus-visible {
  background: #b8274d !important;
}

.gender-filter__options {
  gap: 10px !important;
}
.gender-filter__option > span,
.gender-filter__option input + span,
.gender-filter__option input:not(:checked) + span,
.gender-filter__option:focus-within input:not(:checked) + span {
  min-height: 52px !important;
  padding: 12px 10px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  gap: 9px !important;
}
.gender-filter__option input + span .mcoon-icon,
.gender-filter__option > span .mcoon-icon {
  width: 21px !important;
  height: 21px !important;
  flex: 0 0 21px !important;
}
@media (hover: hover) and (pointer: fine) {
  .gender-filter__option:hover input:not(:checked) + span,
  .gender-filter__option:focus-within:hover input:not(:checked) + span {
    background: rgba(83, 177, 84, 0.13) !important;
    border-color: var(--mcoon-fresh-green, #53b154) !important;
    color: var(--mcoon-green-dark) !important;
    box-shadow: 0 4px 12px rgba(16, 92, 52, 0.10) !important;
    transform: none !important;
  }
}
.gender-filter__option input:checked + span,
.gender-filter__option:hover input:checked + span,
.gender-filter__option:focus-within input:checked + span {
  background: var(--mcoon-fresh-green, #53b154) !important;
  border-color: var(--mcoon-fresh-green, #53b154) !important;
  color: #fff !important;
  box-shadow: 0 5px 14px rgba(16, 92, 52, 0.18) !important;
  transform: none !important;
}

/* v2.0.65 — gender-specific blue/pink controls */
.gender-filter__option input + span,
.gender-filter__option input:not(:checked) + span,
.gender-filter__option:focus-within input:not(:checked) + span {
  min-height: 58px !important;
  padding: 14px 12px !important;
  border-width: 2px !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  gap: 10px !important;
  box-shadow: none !important;
  transform: none !important;
}
.gender-filter__option input + span .mcoon-icon,
.gender-filter__option > span .mcoon-icon {
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  color: #fff !important;
}

/* Male mirrors the View All Kittens blue. */
.gender-filter__option--male input + span,
.gender-filter__option--male input:not(:checked) + span,
.gender-filter__option--male:focus-within input:not(:checked) + span {
  background: #0077ff !important;
  border-color: #0077ff !important;
}

/* Female mirrors the Contact / Reserve pink. */
.gender-filter__option--female input + span,
.gender-filter__option--female input:not(:checked) + span,
.gender-filter__option--female:focus-within input:not(:checked) + span {
  background: #d7345d !important;
  border-color: #d7345d !important;
}

@media (hover: hover) and (pointer: fine) {
  .gender-filter__option--male:hover input:not(:checked) + span,
  .gender-filter__option--male:focus-within:hover input:not(:checked) + span {
    background: #005fce !important;
    border-color: #005fce !important;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(0,119,255,.22) !important;
    transform: none !important;
  }
  .gender-filter__option--female:hover input:not(:checked) + span,
  .gender-filter__option--female:focus-within:hover input:not(:checked) + span {
    background: #b8274d !important;
    border-color: #b8274d !important;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(215,52,93,.22) !important;
    transform: none !important;
  }
}

/* Selected states retain the gender colour but become visibly deeper. */
.gender-filter__option--male input:checked + span,
.gender-filter__option--male:hover input:checked + span,
.gender-filter__option--male:focus-within input:checked + span {
  background: #004fae !important;
  border-color: #fff !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(0,119,255,.26), 0 7px 18px rgba(0,79,174,.25) !important;
  transform: none !important;
}
.gender-filter__option--female input:checked + span,
.gender-filter__option--female:hover input:checked + span,
.gender-filter__option--female:focus-within input:checked + span {
  background: #a91f45 !important;
  border-color: #fff !important;
  color: #fff !important;
  box-shadow: 0 0 0 3px rgba(215,52,93,.24), 0 7px 18px rgba(169,31,69,.25) !important;
  transform: none !important;
}

/* On touch, deselection returns immediately to each button's normal colour. */
@media (hover: none), (pointer: coarse) {
  .gender-filter__option--male:hover input:not(:checked) + span,
  .gender-filter__option--male:focus-within input:not(:checked) + span,
  .gender-filter__option--male:active input:not(:checked) + span {
    background: #0077ff !important;
    border-color: #0077ff !important;
    color: #fff !important;
    box-shadow: none !important;
  }
  .gender-filter__option--female:hover input:not(:checked) + span,
  .gender-filter__option--female:focus-within input:not(:checked) + span,
  .gender-filter__option--female:active input:not(:checked) + span {
    background: #d7345d !important;
    border-color: #d7345d !important;
    color: #fff !important;
    box-shadow: none !important;
  }
}


/* v2.0.66 — named colour choices and gender-coloured card badges */

/* Present filter colours as compact labelled choices rather than unexplained dots. */
.filter-panel .colour-swatches {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
  width: 100% !important;
}
.filter-panel .colour-swatch {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-width: 0 !important;
}
.filter-panel .colour-swatch input {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
}
.filter-panel .colour-swatch__content {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 40px !important;
  padding: 7px 8px !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease !important;
}
.filter-panel .colour-swatches .colour-swatch__dot {
  position: relative !important;
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  border: 2px solid rgba(255,255,255,.82) !important;
  border-radius: 50% !important;
  background: var(--swatch) !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,.18) !important;
  transform: none !important;
}
.filter-panel .colour-swatch__name {
  min-width: 0 !important;
  overflow: hidden !important;
  color: #fff !important;
  font-family: var(--mcoon-font-body) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  line-height: 1.1 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
@media (hover:hover) and (pointer:fine) {
  .filter-panel .colour-swatch:hover .colour-swatch__content {
    background: rgba(255,255,255,.15) !important;
    border-color: rgba(255,255,255,.56) !important;
  }
}
.filter-panel .colour-swatch input:focus-visible + .colour-swatch__content {
  outline: 3px solid rgba(163,255,145,.58) !important;
  outline-offset: 2px !important;
}
.filter-panel .colour-swatch input:checked + .colour-swatch__content {
  background: #fff !important;
  border-color: #fff !important;
  box-shadow: 0 5px 14px rgba(0,0,0,.16) !important;
}
.filter-panel .colour-swatch input:checked + .colour-swatch__content .colour-swatch__name {
  color: var(--mcoon-green-dark) !important;
  font-weight: 700 !important;
}
.filter-panel .colour-swatch input:checked + .colour-swatch__content .colour-swatch__dot::after {
  content: "✓" !important;
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.65) !important;
}

/* Card attributes: named colour pill plus gender-coloured icon badge. */
.kitten-card__attribute-icons {
  gap: 6px !important;
}
.kitten-card__colour-badge {
  width: auto !important;
  min-width: 0 !important;
  height: 38px !important;
  min-height: 38px !important;
  max-width: 112px !important;
  padding: 0 9px 0 7px !important;
  gap: 6px !important;
  border-radius: 9px !important;
  background: #f3f0ea !important;
  border: 1px solid rgba(1,47,34,.10) !important;
  box-shadow: 0 4px 12px rgba(1,47,34,.06) !important;
}
.kitten-card__colour-badge > .kitten-card__colour-dot {
  flex: 0 0 20px !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: var(--kitten-colour) !important;
  border: 1px solid rgba(1,47,34,.22) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.32) !important;
}
.kitten-card__colour-label {
  overflow: hidden !important;
  color: var(--mcoon-green-dark) !important;
  font-family: var(--mcoon-font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.kitten-card__gender {
  width: 38px !important;
  min-width: 38px !important;
  height: 38px !important;
  min-height: 38px !important;
  border: 1px solid transparent !important;
  border-radius: 9px !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(1,47,34,.10) !important;
}
.kitten-card__gender--male {
  background: #0077ff !important;
  border-color: #0077ff !important;
}
.kitten-card__gender--female {
  background: #d7345d !important;
  border-color: #d7345d !important;
}
.kitten-card__gender .mcoon-icon,
.kitten-card__gender svg {
  width: 20px !important;
  height: 20px !important;
  color: #fff !important;
}
@media (max-width:760px) {
  .filter-panel .colour-swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 10px !important;
  }
  .filter-panel .colour-swatch__name {
    font-size: 14px !important;
  }
  .kitten-card__colour-badge {
    max-width: 124px !important;
  }
  .kitten-card__colour-label {
    font-size: 13px !important;
  }
}

/* v2.0.67 — final colour selection clarity and compact gender controls */

/* Selected colours: strong, readable marketplace-green state. */
.filter-panel .colour-swatch input:checked + .colour-swatch__content {
  background: #0f6f52 !important;
  border-color: #9cff87 !important;
  color: #fff !important;
  box-shadow: 0 0 0 2px rgba(156,255,135,.20), 0 5px 14px rgba(0,0,0,.18) !important;
}
.filter-panel .colour-swatch input:checked + .colour-swatch__content .colour-swatch__name {
  color: #fff !important;
  font-weight: 700 !important;
}
.filter-panel .colour-swatch input:checked + .colour-swatch__content .colour-swatch__dot {
  border-color: #fff !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,.22), 0 0 0 3px rgba(1,47,34,.18) !important;
}
.filter-panel .colour-swatch input:checked + .colour-swatch__content::after {
  content: "✓" !important;
  margin-left: auto !important;
  color: #b8ff9e !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}
/* Keep the swatch itself clean; the tick is displayed at the right edge. */
.filter-panel .colour-swatch input:checked + .colour-swatch__content .colour-swatch__dot::after {
  content: none !important;
}

/* Male/Female now use the exact same footprint as each colour option. */
.filter-panel .gender-filter__options {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
  width: 100% !important;
}
.filter-panel .gender-filter__option,
.filter-panel .gender-filter__option > span,
.filter-panel .gender-filter__option input + span {
  width: 100% !important;
  min-width: 0 !important;
}
.filter-panel .gender-filter__option input + span {
  min-height: 40px !important;
  height: 40px !important;
  padding: 7px 8px !important;
  gap: 7px !important;
  border-radius: 8px !important;
  font-family: var(--mcoon-font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  justify-content: center !important;
}
.filter-panel .gender-filter__option input + span .mcoon-icon,
.filter-panel .gender-filter__option input + span svg {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
}

@media (max-width:760px) {
  .filter-panel .gender-filter__option input + span {
    min-height: 42px !important;
    height: 42px !important;
    font-size: 14px !important;
  }
  .filter-panel .gender-filter__option input + span .mcoon-icon,
  .filter-panel .gender-filter__option input + span svg {
    width: 19px !important;
    height: 19px !important;
    flex-basis: 19px !important;
  }
}


/* v2.0.69 — restored premium Maine Coon utility-bar messaging */

/* Gender controls keep an identical footprint in every state. */
.filter-panel .gender-filter__option,
.filter-panel .gender-filter__option input + span {
  box-sizing: border-box !important;
}
.filter-panel .gender-filter__option input + span {
  position: relative !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  padding: 7px 27px 7px 8px !important;
  border-width: 1px !important;
  transform: none !important;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease !important;
}
.filter-panel .gender-filter__option input + span::after {
  content: "" !important;
  position: absolute !important;
  right: 7px !important;
  top: 50% !important;
  display: grid !important;
  place-items: center !important;
  width: 17px !important;
  height: 17px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.20) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  opacity: 0 !important;
  transform: translateY(-50%) scale(.72) !important;
  transition: opacity .18s ease, transform .18s ease !important;
}
.filter-panel .gender-filter__option--male input:not(:checked) + span {
  background: #0077ff !important;
  border-color: #0077ff !important;
  box-shadow: none !important;
}
.filter-panel .gender-filter__option--female input:not(:checked) + span {
  background: #d7345d !important;
  border-color: #d7345d !important;
  box-shadow: none !important;
}
@media (hover:hover) and (pointer:fine) {
  .filter-panel .gender-filter__option--male:hover input:not(:checked) + span {
    background: #0067dc !important;
    border-color: #0067dc !important;
  }
  .filter-panel .gender-filter__option--female:hover input:not(:checked) + span {
    background: #bd294f !important;
    border-color: #bd294f !important;
  }
}
.filter-panel .gender-filter__option--male input:checked + span,
.filter-panel .gender-filter__option--male:hover input:checked + span,
.filter-panel .gender-filter__option--male:focus-within input:checked + span {
  background: #005fc9 !important;
  border-color: #fff !important;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.38), 0 0 0 2px rgba(0,119,255,.28) !important;
}
.filter-panel .gender-filter__option--female input:checked + span,
.filter-panel .gender-filter__option--female:hover input:checked + span,
.filter-panel .gender-filter__option--female:focus-within input:checked + span {
  background: #b52148 !important;
  border-color: #fff !important;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.38), 0 0 0 2px rgba(215,52,93,.28) !important;
}
.filter-panel .gender-filter__option input:checked + span::after {
  content: "✓" !important;
  opacity: 1 !important;
  transform: translateY(-50%) scale(1) !important;
}
@media (max-width:760px) {
  .filter-panel .gender-filter__option input + span {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }
}

/* Show the complete colour name beside its swatch on every kitten card. */
.kitten-card__heading {
  align-items: flex-start !important;
}
.kitten-card__attribute-icons {
  flex: 0 1 auto !important;
  min-width: 0 !important;
  max-width: 70% !important;
}
.kitten-card__colour-badge {
  flex: 0 1 auto !important;
  width: auto !important;
  min-width: 76px !important;
  max-width: 150px !important;
  padding-right: 10px !important;
  overflow: visible !important;
}
.kitten-card__colour-label {
  display: block !important;
  min-width: 0 !important;
  max-width: none !important;
  overflow: visible !important;
  text-overflow: clip !important;
  white-space: nowrap !important;
}
@media (max-width:760px) {
  .kitten-card__attribute-icons {
    max-width: 74% !important;
  }
  .kitten-card__colour-badge {
    min-width: 82px !important;
    max-width: 160px !important;
  }
}

/* v2.0.70 — fixed gender footprint, trophy utility icon and clean colour badges */

/* Keep both gender controls absolutely identical in size in every state. */
.filter-panel .gender-filter__options {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr) !important;
  gap: 9px !important;
  width: 100% !important;
  align-items: stretch !important;
}
.filter-panel .gender-filter__option {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 1 0 !important;
  box-sizing: border-box !important;
}
.filter-panel .gender-filter__option input {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.filter-panel .gender-filter__option input + span,
.filter-panel .gender-filter__option:hover input + span,
.filter-panel .gender-filter__option:active input + span,
.filter-panel .gender-filter__option:focus-within input + span,
.filter-panel .gender-filter__option input:checked + span,
.filter-panel .gender-filter__option input:not(:checked) + span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  margin: 0 !important;
  padding: 7px 27px 7px 8px !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  transform: none !important;
  line-height: 1 !important;
}
.filter-panel .gender-filter__option input + span::before {
  content: none !important;
}
@media (max-width:760px) {
  .filter-panel .gender-filter__option,
  .filter-panel .gender-filter__option input + span,
  .filter-panel .gender-filter__option:hover input + span,
  .filter-panel .gender-filter__option:active input + span,
  .filter-panel .gender-filter__option:focus-within input + span,
  .filter-panel .gender-filter__option input:checked + span,
  .filter-panel .gender-filter__option input:not(:checked) + span {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
  }
}

/* Colour badge: one clean swatch, centred full label, no legacy pseudo-icons. */
.kitten-card__colour-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  min-width: 0 !important;
  width: auto !important;
  max-width: 148px !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 10px 0 8px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  vertical-align: middle !important;
}
.kitten-card__colour-badge::before,
.kitten-card__colour-badge::after,
.kitten-card__colour-dot::before,
.kitten-card__colour-dot::after,
.kitten-card__colour-label::before,
.kitten-card__colour-label::after {
  content: none !important;
  display: none !important;
}
.kitten-card__colour-badge > .kitten-card__colour-dot {
  display: block !important;
  flex: 0 0 18px !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 50% !important;
  line-height: 0 !important;
}
.kitten-card__colour-label {
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  color: var(--mcoon-green-dark) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
}

/* v2.0.71 — refined gender selector and premium kitten colour badge */

/* Gender options now follow the compact labelled-swatch language used by Colour. */
.filter-panel .gender-filter__options {
  gap: 7px !important;
}
.filter-panel .gender-filter__option,
.filter-panel .gender-filter__option input + span,
.filter-panel .gender-filter__option:hover input + span,
.filter-panel .gender-filter__option:focus-within input + span,
.filter-panel .gender-filter__option input:checked + span,
.filter-panel .gender-filter__option input:not(:checked) + span {
  height: 38px !important;
  min-height: 38px !important;
  max-height: 38px !important;
}
.filter-panel .gender-filter__option input + span {
  justify-content: flex-start !important;
  gap: 7px !important;
  padding: 5px 27px 5px 7px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  border-radius: 7px !important;
  background: rgba(255,255,255,.075) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .01em !important;
}
.filter-panel .gender-filter__option input + span .mcoon-icon,
.filter-panel .gender-filter__option input + span svg {
  display: grid !important;
  place-items: center !important;
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  padding: 4px !important;
  border-radius: 50% !important;
  color: #fff !important;
  box-sizing: border-box !important;
}
.filter-panel .gender-filter__option--male input + span .mcoon-icon,
.filter-panel .gender-filter__option--male input + span svg {
  background: #0077ff !important;
}
.filter-panel .gender-filter__option--female input + span .mcoon-icon,
.filter-panel .gender-filter__option--female input + span svg {
  background: #d7345d !important;
}
.filter-panel .gender-filter__option input + span::after {
  right: 7px !important;
  width: 17px !important;
  height: 17px !important;
  background: #9cff88 !important;
  color: #083b2d !important;
  font-size: 11px !important;
  box-shadow: 0 0 0 2px rgba(156,255,136,.14) !important;
}
@media (hover:hover) and (pointer:fine) {
  .filter-panel .gender-filter__option:hover input:not(:checked) + span {
    background: rgba(255,255,255,.14) !important;
    border-color: rgba(156,255,136,.55) !important;
  }
}
.filter-panel .gender-filter__option--male input:checked + span,
.filter-panel .gender-filter__option--male:hover input:checked + span,
.filter-panel .gender-filter__option--male:focus-within input:checked + span {
  background: rgba(0,119,255,.24) !important;
  border-color: #55a6ff !important;
  box-shadow: inset 0 0 0 1px rgba(85,166,255,.20) !important;
}
.filter-panel .gender-filter__option--female input:checked + span,
.filter-panel .gender-filter__option--female:hover input:checked + span,
.filter-panel .gender-filter__option--female:focus-within input:checked + span {
  background: rgba(215,52,93,.25) !important;
  border-color: #f07595 !important;
  box-shadow: inset 0 0 0 1px rgba(240,117,149,.20) !important;
}
@media (max-width:760px) {
  .filter-panel .gender-filter__option,
  .filter-panel .gender-filter__option input + span,
  .filter-panel .gender-filter__option:hover input + span,
  .filter-panel .gender-filter__option:focus-within input + span,
  .filter-panel .gender-filter__option input:checked + span,
  .filter-panel .gender-filter__option input:not(:checked) + span {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
  }
  .filter-panel .gender-filter__option input + span {
    font-size: 13px !important;
  }
}

/* Refined colour pill on listing cards: compact, legible and visually balanced. */
.kitten-card__attribute-icons {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 6px !important;
  max-width: 72% !important;
}
.kitten-card__colour-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 126px !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 9px 0 6px !important;
  border: 1px solid rgba(20,74,57,.12) !important;
  border-radius: 9px !important;
  background: linear-gradient(180deg,#fffefb 0%,#f6f1e8 100%) !important;
  box-shadow: 0 2px 8px rgba(31,65,53,.08) !important;
}
.kitten-card__colour-badge > .kitten-card__colour-dot {
  flex: 0 0 19px !important;
  width: 19px !important;
  height: 19px !important;
  min-width: 19px !important;
  min-height: 19px !important;
  border: 2px solid #fff !important;
  box-shadow: 0 0 0 1px rgba(25,63,51,.18), 0 1px 3px rgba(25,63,51,.14) !important;
}
.kitten-card__colour-label {
  display: block !important;
  height: auto !important;
  color: #214a3d !important;
  font-family: var(--mcoon-font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  letter-spacing: .01em !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.kitten-card__gender {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  border-radius: 9px !important;
  box-shadow: 0 2px 8px rgba(31,65,53,.10) !important;
}
.kitten-card__gender .mcoon-icon,
.kitten-card__gender svg {
  width: 17px !important;
  height: 17px !important;
}
@media (max-width:760px) {
  .kitten-card__attribute-icons { max-width: 76% !important; }
  .kitten-card__colour-badge { max-width: 138px !important; height: 34px !important; min-height: 34px !important; }
  .kitten-card__colour-label { font-size: 12px !important; }
  .kitten-card__gender { width: 34px !important; height: 34px !important; min-width: 34px !important; min-height: 34px !important; }
}


/* ==========================================================================
   v2.0.72 — isolated gender controls, coat identity chip and compliance matrix
   ========================================================================== */

/* New gender control namespace intentionally avoids all legacy gender rules. */
.mcoon-sex-filter {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.mcoon-sex-filter legend {
  display: block;
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  color: #fff;
  font-family: var(--mcoon-font-heading);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.15;
}
.mcoon-sex-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
}
.mcoon-sex-choice {
  display: block;
  min-width: 0;
  margin: 0;
  cursor: pointer;
}
.mcoon-sex-choice input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.mcoon-sex-choice__surface {
  box-sizing: border-box !important;
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) 18px !important;
  align-items: center !important;
  gap: 7px !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  margin: 0 !important;
  padding: 0 10px !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 8px !important;
  color: #fff !important;
  font-family: var(--mcoon-font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-transform: capitalize !important;
  transform: none !important;
  transition: background-color .22s ease, border-color .22s ease, box-shadow .22s ease !important;
}
.mcoon-sex-choice--male .mcoon-sex-choice__surface { background: #0077ff !important; }
.mcoon-sex-choice--female .mcoon-sex-choice__surface { background: #d7345d !important; }
.mcoon-sex-choice--male:hover .mcoon-sex-choice__surface { background: #0065d9 !important; }
.mcoon-sex-choice--female:hover .mcoon-sex-choice__surface { background: #ba254a !important; }
.mcoon-sex-choice__icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}
.mcoon-sex-choice__icon .mcoon-icon { width: 22px !important; height: 22px !important; }
.mcoon-sex-choice__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.mcoon-sex-choice__check {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: transparent;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.mcoon-sex-choice input:checked + .mcoon-sex-choice__surface {
  border-color: #fff !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,.3), inset 0 0 0 1px rgba(255,255,255,.25) !important;
}
.mcoon-sex-choice--male input:checked + .mcoon-sex-choice__surface { background: #005fcf !important; }
.mcoon-sex-choice--female input:checked + .mcoon-sex-choice__surface { background: #ac1f43 !important; }
.mcoon-sex-choice input:checked + .mcoon-sex-choice__surface .mcoon-sex-choice__check {
  background: #fff;
  color: var(--mcoon-forest);
}
.mcoon-sex-choice input:focus-visible + .mcoon-sex-choice__surface {
  outline: 3px solid rgba(163,255,130,.9) !important;
  outline-offset: 2px !important;
}

/* Completely new coat chip namespace, isolated from legacy colour badge rules. */
.mcoon-coat-chip {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  max-width: 112px;
  height: 34px;
  padding: 0 9px 0 6px;
  overflow: hidden;
  border: 1px solid rgba(29,71,54,.14);
  border-radius: 10px;
  background: linear-gradient(180deg,#fffdf8 0%,#f4efe5 100%);
  box-shadow: 0 3px 10px rgba(20,54,42,.08), inset 0 1px 0 rgba(255,255,255,.9);
  color: #183d30;
  font-family: var(--mcoon-font-body);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  vertical-align: middle;
}
.mcoon-coat-chip__swatch {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--mcoon-coat-colour, #b7b8b7);
  box-shadow: 0 0 0 1px rgba(20,54,42,.22), 0 2px 4px rgba(20,54,42,.12);
}
.mcoon-coat-chip__name {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.1;
}
.kitten-card__attribute-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}
.kitten-card__attribute-icons .kitten-card__gender {
  flex: 0 0 34px;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
}

/* Premium verification matrix. */
.mcoon-compliance-standard {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 7vw, 108px) 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(117,255,101,.10), transparent 32%),
    linear-gradient(145deg, #073d30 0%, #004d3d 52%, #06382d 100%);
  color: #fff;
}
.mcoon-compliance-standard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
.mcoon-compliance-standard .mcoon-container { position: relative; z-index: 1; }
.mcoon-compliance-standard__header {
  max-width: 820px;
  margin: 0 auto clamp(34px,4vw,52px);
  text-align: center;
}
.mcoon-compliance-standard__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: #9cff82;
  font-family: var(--mcoon-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.mcoon-compliance-standard__header h2 {
  margin: 0;
  color: #fff;
  font-family: var(--mcoon-font-heading);
  font-size: clamp(39px,5vw,66px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
}
.mcoon-compliance-standard__header p {
  max-width: 680px;
  margin: 20px auto 0;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  line-height: 1.7;
}
.mcoon-compliance-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
.mcoon-compliance-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(156,255,130,.2);
  border-radius: 18px;
  background: linear-gradient(155deg,rgba(255,255,255,.10),rgba(255,255,255,.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12),0 22px 50px rgba(0,20,15,.18);
  backdrop-filter: blur(10px);
}
.mcoon-compliance-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(156,255,130,.13);
  border-radius: 50%;
}
.mcoon-compliance-card__topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #9cff82;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.mcoon-compliance-card__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(156,255,130,.35);
  border-radius: 11px;
  background: rgba(156,255,130,.09);
}
.mcoon-compliance-card__icon .mcoon-icon { width: 21px; height: 21px; }
.mcoon-compliance-card h3 {
  margin: 0 0 15px;
  color: #fff;
  font-family: var(--mcoon-font-heading);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.05;
}
.mcoon-compliance-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.72;
}
.mcoon-compliance-card__seal {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mcoon-compliance-card__seal::before { content: "✓"; margin-right: 7px; color: #9cff82; }
.mcoon-compliance-warning {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 22px 25px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
  background: #fff8ec;
  color: #173d30;
  box-shadow: 0 16px 40px rgba(0,20,15,.18);
}
.mcoon-compliance-warning__shield { flex: 0 0 auto; font-size: 29px; line-height: 1; }
.mcoon-compliance-warning p { margin: 0; font-size: 14px; line-height: 1.55; }
.mcoon-compliance-warning strong { color: #b72249; letter-spacing: .04em; }

@media (max-width: 920px) {
  .mcoon-compliance-grid { grid-template-columns: 1fr; }
  .mcoon-compliance-card { min-height: 0; }
}
@media (max-width: 640px) {
  .mcoon-sex-choice__surface {
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    font-size: 15px !important;
  }
  .mcoon-compliance-standard { padding: 58px 0; }
  .mcoon-compliance-standard__header { text-align: left; }
  .mcoon-compliance-standard__header h2 { font-size: 42px; }
  .mcoon-compliance-standard__header p { font-size: 14px; }
  .mcoon-compliance-card { padding: 24px; }
  .mcoon-compliance-card h3 { font-size: 29px; }
  .mcoon-compliance-warning { align-items: flex-start; padding: 19px; }
  .mcoon-compliance-warning p { font-size: 13px; }
  .mcoon-coat-chip { max-width: 126px; }
}

/* Version 2.0.73 — standalone MCOON compliance block. */
.mcoon-compliance-standard--standalone {
  background:
    radial-gradient(circle at 8% 6%, rgba(156,255,130,.12), transparent 28%),
    linear-gradient(145deg, #063c2f 0%, #004e3d 55%, #06382d 100%);
}
.mcoon-compliance-standard__intro-grid {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.55fr);
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
  margin-bottom: clamp(40px, 5vw, 68px);
}
.mcoon-compliance-standard--standalone .mcoon-compliance-standard__header {
  max-width: none;
  margin: 0;
  text-align: left;
}
.mcoon-compliance-standard--standalone .mcoon-compliance-standard__header h2 {
  max-width: 850px;
}
.mcoon-compliance-standard--standalone .mcoon-compliance-standard__header > p {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
}
.mcoon-compliance-standard__poster {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px;
  background: #e9dfd0;
  box-shadow: 0 28px 70px rgba(0,18,13,.32);
}
.mcoon-compliance-standard__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,38,29,.94), rgba(1,38,29,0) 58%);
  pointer-events: none;
}
.mcoon-compliance-standard__poster img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 50% 50%;
}
.mcoon-compliance-standard__poster figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 14px;
  align-items: center;
  color: #fff;
}
.mcoon-compliance-standard__poster-shield {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(156,255,130,.55);
  border-radius: 15px;
  background: rgba(0,73,56,.86);
  color: #9cff82;
}
.mcoon-compliance-standard__poster-shield .mcoon-icon { width: 27px; height: 27px; }
.mcoon-compliance-standard__poster strong {
  font-family: var(--mcoon-font-heading);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}
.mcoon-compliance-standard__poster small {
  color: rgba(255,255,255,.75);
  font-size: 12px;
  line-height: 1.45;
}
.mcoon-compliance-standard__platform-promise {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 760px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(156,255,130,.24);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
}
.mcoon-compliance-standard__platform-promise > span {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #9cff82;
  color: #06382d;
}
.mcoon-compliance-standard__platform-promise .mcoon-icon { width: 18px; height: 18px; }
.mcoon-compliance-standard__platform-promise p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.6;
}
.mcoon-compliance-standard__platform-promise strong { color: #fff; }

@media (max-width: 920px) {
  .mcoon-compliance-standard__intro-grid { grid-template-columns: 1fr; }
  .mcoon-compliance-standard__poster { min-height: 360px; }
  .mcoon-compliance-standard__poster img { min-height: 360px; }
}
@media (max-width: 640px) {
  .mcoon-compliance-standard__intro-grid { gap: 30px; }
  .mcoon-compliance-standard__poster { min-height: 330px; border-radius: 18px; }
  .mcoon-compliance-standard__poster img { min-height: 330px; }
  .mcoon-compliance-standard__poster figcaption { right: 18px; bottom: 18px; left: 18px; }
  .mcoon-compliance-standard__poster strong { font-size: 22px; }
  .mcoon-compliance-standard__platform-promise { padding: 16px; }
}

/* Version 2.0.74 — location discovery, collapsible filter and compliance refinements. */
.marketplace-layout { transition: grid-template-columns .42s cubic-bezier(.22,.8,.24,1), gap .42s ease; }
.filter-heading { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.filter-heading h2 { margin:0; }
.filter-fold-toggle {
  display:inline-grid; place-items:center; flex:0 0 42px; width:42px; height:42px; padding:0;
  border:1px solid rgba(255,255,255,.18); border-radius:12px; background:rgba(255,255,255,.08); color:#fff;
  cursor:pointer; transition:background .2s ease,border-color .2s ease;
}
.filter-fold-toggle:hover { background:rgba(255,255,255,.15); border-color:rgba(255,255,255,.35); }
.filter-fold-toggle__arrows { display:flex; align-items:center; justify-content:center; width:26px; overflow:hidden; }
.filter-fold-toggle__arrows span { font-size:25px; line-height:1; margin-left:-5px; animation:mcoon-fold-chevron 1.35s infinite ease-in-out; }
.filter-fold-toggle__arrows span:first-child { margin-left:0; animation-delay:-.25s; }
.filter-fold-toggle__arrows span:nth-child(2) { animation-delay:-.12s; }
@keyframes mcoon-fold-chevron { 0%,100%{opacity:.28;transform:translateX(2px)} 50%{opacity:1;transform:translateX(-2px)} }
.marketplace-layout.is-filter-collapsed { grid-template-columns:64px minmax(0,1fr) !important; gap:18px !important; }
.marketplace-layout.is-filter-collapsed .filter-panel { min-width:64px; padding:12px 10px; overflow:hidden; }
.marketplace-layout.is-filter-collapsed .filter-panel form,
.marketplace-layout.is-filter-collapsed .filter-heading h2 { opacity:0; visibility:hidden; width:0; height:0; overflow:hidden; pointer-events:none; margin:0; }
.marketplace-layout.is-filter-collapsed .filter-heading { justify-content:center; }
.marketplace-layout.is-filter-collapsed .filter-fold-toggle__arrows { transform:rotate(180deg); }
.marketplace-layout.is-filter-collapsed .kitten-grid { grid-template-columns:repeat(4,minmax(0,1fr)) !important; }

.listing-location-button {
  display:inline-flex; align-items:center; justify-content:center; gap:9px; min-height:48px; padding:0 20px;
  border:0; border-radius:8px; background:#0077ff; color:#fff !important; font-family:var(--mcoon-font-body); font-size:17px; font-weight:500;
  box-shadow:none; cursor:pointer; transition:background .2s ease, transform .2s ease;
}
.listing-location-button:hover { background:#005fd1; color:#fff !important; transform:none; }
.listing-location-button .mcoon-icon { width:20px; height:20px; }
.kitten-location-search[hidden] { display:none !important; }
.kitten-location-search {
  margin:18px 0 26px; padding:24px; border:1px solid rgba(18,76,60,.14); border-radius:18px;
  background:linear-gradient(135deg,#f7fbf7 0%,#fff 58%,#eef8f3 100%); box-shadow:0 16px 40px rgba(28,61,48,.09);
  opacity:0; transform:translateY(-8px); transition:opacity .25s ease,transform .25s ease;
}
.kitten-location-search.is-visible { opacity:1; transform:none; }
.kitten-location-search__header { display:flex; justify-content:space-between; align-items:flex-start; gap:20px; margin-bottom:18px; }
.kitten-location-search__eyebrow { display:block; margin-bottom:4px; color:#d7345d; font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.kitten-location-search__header h3 { margin:0; color:#124c3c; font-family:var(--mcoon-font-heading); font-size:32px; font-weight:500; }
.kitten-location-search__close { width:42px; height:42px; border:0; border-radius:50%; background:#d7345d; color:#fff; font-size:28px; line-height:1; cursor:pointer; }
.kitten-location-form { display:grid; grid-template-columns:minmax(180px,1.2fr) minmax(160px,.8fr) auto; gap:12px; align-items:end; }
.kitten-location-form label span { display:block; margin-bottom:7px; color:#124c3c; font-size:13px; font-weight:700; }
.kitten-location-form input,.kitten-location-form select { width:100%; height:48px; padding:0 14px; border:1px solid #cbdcd3; border-radius:9px; background:#fff; color:#153e34; font:500 15px var(--mcoon-font-body); }
.kitten-location-form .button { height:48px; display:inline-flex; align-items:center; gap:8px; white-space:nowrap; }
.kitten-location-search__status { margin:16px 0 12px; color:#50665d; font-size:14px; }
.kitten-location-search__status strong { color:#124c3c; }
.kitten-location-map { width:100%; height:360px; border-radius:13px; overflow:hidden; background:#dfece5; z-index:1; }
.kitten-card__distance { display:flex; align-items:center; gap:5px; margin:0 0 7px; color:#0077ff; font-size:12px; font-weight:700; }
.kitten-card__distance .mcoon-icon { width:14px; height:14px; }

.mcoon-compliance-standard__proof-row { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin:28px 0 18px; }
.mcoon-compliance-standard__proof-row span { display:flex; align-items:center; gap:10px; min-height:64px; padding:12px 14px; border:1px solid rgba(156,255,130,.2); border-radius:12px; background:rgba(255,255,255,.055); color:rgba(255,255,255,.82); font-size:12px; text-transform:uppercase; letter-spacing:.06em; }
.mcoon-compliance-standard__proof-row strong { display:grid; place-items:center; flex:0 0 34px; width:34px; height:34px; border-radius:50%; background:#9cff82; color:#06382d; font-size:12px; }
.mcoon-compliance-card { transition:transform .25s ease,border-color .25s ease,background .25s ease; }
.mcoon-compliance-card:hover { transform:translateY(-4px); border-color:rgba(156,255,130,.42); background:rgba(255,255,255,.09); }

@media (max-width:1100px) {
  .marketplace-layout.is-filter-collapsed .kitten-grid { grid-template-columns:repeat(3,minmax(0,1fr)) !important; }
  .mcoon-compliance-standard__proof-row { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:780px) {
  .filter-fold-toggle { display:none; }
  .marketplace-layout.is-filter-collapsed { grid-template-columns:1fr !important; }
  .kitten-location-form { grid-template-columns:1fr; }
  .kitten-location-map { height:300px; }
  .listing-location-button { width:100%; }
  .mcoon-compliance-standard__proof-row { grid-template-columns:1fr 1fr; }
}
@media (max-width:520px) {
  .kitten-location-search { padding:18px 14px; border-radius:14px; }
  .kitten-location-search__header h3 { font-size:27px; }
  .kitten-location-map { height:275px; }
  .mcoon-compliance-standard__proof-row { grid-template-columns:1fr; }
}


/* Version 2.0.75 — enhanced fold toolbar, map panel and nearby results. */
.filter-heading {
  width:100%; min-height:64px; margin:-24px -24px 20px; padding:14px 18px;
  display:grid; grid-template-columns:1fr auto; grid-template-areas:"title arrows" "cue arrows";
  align-items:center; gap:2px 14px; border:0; border-bottom:1px solid rgba(255,255,255,.12);
  border-radius:16px 16px 0 0; background:rgba(255,255,255,.055); color:#fff; text-align:left;
  cursor:pointer; box-shadow:none; transition:background .25s ease,color .25s ease;
}
.filter-heading:hover,.filter-heading:focus-visible { background:rgba(255,255,255,.10); color:#fff; transform:none; }
.filter-heading__title { grid-area:title; font-family:var(--mcoon-font-heading); font-size:22px; line-height:1.1; font-weight:500; }
.filter-heading__cue { grid-area:cue; font-family:var(--mcoon-font-body); font-size:11px; line-height:1.2; font-weight:600; letter-spacing:.04em; color:#a8ef9c; text-transform:uppercase; }
.filter-fold-toggle__arrows { grid-area:arrows; display:inline-flex; align-items:center; gap:0; color:#a8ef9c; font-size:22px; line-height:1; }
.filter-fold-toggle__arrows span { display:block; animation:mcoonFoldArrow 1.35s ease-in-out infinite; }
.filter-fold-toggle__arrows span:nth-child(2){ animation-delay:.14s; }
.filter-fold-toggle__arrows span:nth-child(3){ animation-delay:.28s; }
@keyframes mcoonFoldArrow { 0%,100%{opacity:.25;transform:translateX(-2px)} 50%{opacity:1;transform:translateX(2px)} }

.marketplace-layout.is-filter-collapsed { grid-template-columns:minmax(0,1fr) !important; gap:0 !important; }
.marketplace-layout.is-filter-collapsed .filter-panel { display:none !important; }
.marketplace-layout.is-filter-collapsed .listing-area { width:100%; min-width:0; }
.marketplace-layout.is-filter-collapsed .listing-toolbar { display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; gap:18px; }
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading {
  width:auto; min-width:210px; min-height:52px; margin:0; padding:9px 14px; border:1px solid rgba(18,76,60,.16); border-radius:10px;
  background:#075b47; box-shadow:0 8px 20px rgba(18,76,60,.08);
}
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading__title { font-size:17px; }
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading__cue { font-size:10px; }
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-fold-toggle__arrows { transform:rotate(180deg); }
.marketplace-layout.is-filter-collapsed .kitten-grid { grid-template-columns:repeat(4,minmax(0,1fr)) !important; width:100%; }

.kitten-location-search {
  border:1px solid rgba(255,255,255,.10); border-radius:16px; background:#075b47; color:#fff;
  box-shadow:0 22px 55px rgba(4,42,33,.18); overflow:hidden;
}
.kitten-location-search__header { margin:-24px -24px 18px; padding:22px 24px 18px; border-bottom:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.045); }
.kitten-location-search__eyebrow { color:#a8ef9c; }
.kitten-location-search__header h3 { color:#fff; }
.kitten-location-search__close { background:#d7345d; color:#fff; transition:background .2s ease; }
.kitten-location-search__close:hover { background:#b9274b; transform:none; }
.kitten-location-form { padding:2px 0 4px; }
.kitten-location-form label span { color:#fff; }
.kitten-location-form input,.kitten-location-form select { border-color:rgba(255,255,255,.22); background:#fff; color:#124c3c; box-shadow:none; }
.kitten-location-form input:focus,.kitten-location-form select:focus { outline:3px solid rgba(156,255,130,.28); border-color:#9cff82; }
.kitten-location-search__status {
  display:flex; align-items:center; gap:14px; min-height:72px; margin:18px 0 14px; padding:13px 16px;
  border:1px solid rgba(156,255,130,.26); border-radius:12px; background:rgba(255,255,255,.075); color:#fff;
}
.nearby-status__count { display:grid; place-items:center; flex:0 0 46px; width:46px; height:46px; border-radius:12px; background:#0077ff; color:#fff; font-size:23px; font-weight:700; }
.nearby-status__copy { display:flex; flex-direction:column; gap:2px; }
.nearby-status__copy strong { color:#fff; font-size:17px; line-height:1.15; }
.nearby-status__copy small { color:rgba(255,255,255,.78); font-size:13px; }
.nearby-status__lead,.nearby-status__error { color:#fff; font-weight:650; }
.kitten-location-map { height:390px; border:4px solid rgba(255,255,255,.16); border-radius:14px; background:#e8ecef; }
.mcoon-map-user-pin { background:transparent !important; border:0 !important; }
.mcoon-map-user-pin__pulse { position:absolute; inset:3px; border-radius:50%; background:rgba(0,119,255,.22); animation:mcoonMapPulse 1.7s ease-out infinite; }
.mcoon-map-user-pin__dot { position:absolute; inset:9px; border:3px solid #fff; border-radius:50%; background:#0077ff; box-shadow:0 2px 9px rgba(0,65,150,.35); }
@keyframes mcoonMapPulse { 0%{transform:scale(.65);opacity:1} 100%{transform:scale(1.45);opacity:0} }
.map-popup-distance { color:#0077ff; font-weight:750; }
.kitten-card__distance { display:inline-flex; align-items:center; gap:6px; margin:0 0 8px; padding:6px 9px; border-radius:999px; background:#eaf3ff; color:#006be6; font-size:13px; font-weight:800; box-shadow:inset 0 0 0 1px rgba(0,119,255,.13); }
.kitten-card__distance .mcoon-icon { width:15px; height:15px; }

@media (max-width:1100px) {
  .marketplace-layout.is-filter-collapsed .kitten-grid { grid-template-columns:repeat(3,minmax(0,1fr)) !important; }
  .marketplace-layout.is-filter-collapsed .listing-toolbar { grid-template-columns:1fr auto; }
  .marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading { grid-column:1 / -1; }
}
@media (max-width:780px) {
  .filter-heading { margin:-18px -18px 18px; }
  .marketplace-layout.is-filter-collapsed .kitten-grid { grid-template-columns:1fr !important; }
  .kitten-location-search__header { margin:-18px -14px 16px; padding:18px 14px 15px; }
  .kitten-location-search__status { align-items:flex-start; }
}


/* Version 2.0.76 — full-width filter heading and featured nearest kitten. */
.filter-heading {
  width:calc(100% + 48px) !important;
  max-width:none !important;
  box-sizing:border-box;
}
.filter-fold-toggle__arrows {
  width:auto !important;
  min-width:0 !important;
  max-width:none !important;
  overflow:visible !important;
  flex:none !important;
  white-space:nowrap;
}
.filter-fold-toggle__arrows span { margin-left:0 !important; }
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading {
  width:auto !important;
  max-width:none !important;
}
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading__title { font-size:26px !important; }
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading__cue { font-size:14px !important; }

.kitten-location-search__visual {
  display:grid;
  grid-template-columns:minmax(0,1.65fr) minmax(245px,.75fr);
  gap:18px;
  align-items:stretch;
}
.kitten-location-featured {
  min-width:0;
  padding:14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  background:rgba(255,255,255,.075);
}
.kitten-location-featured[hidden] { display:none !important; }
.kitten-location-featured__label {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:0 0 10px;
  color:#fff;
}
.kitten-location-featured__label span {
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#a8ef9c;
}
.kitten-location-featured__label strong {
  padding:6px 9px;
  border-radius:999px;
  background:#0077ff;
  color:#fff;
  font-size:12px;
  white-space:nowrap;
}
.kitten-location-featured .kitten-card {
  height:calc(100% - 38px);
  margin:0;
  box-shadow:0 14px 30px rgba(0,0,0,.16);
}
.kitten-location-featured .kitten-card__media { min-height:235px; }
.kitten-location-more {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  margin:14px 0 0;
  color:#fff;
  text-align:center;
  font-weight:700;
}
.kitten-location-more[hidden] { display:none !important; }
.kitten-location-more__arrows { display:flex; flex-direction:column; height:28px; line-height:8px; color:#a8ef9c; }
.kitten-location-more__arrows i { font-style:normal; font-size:22px; animation:mcoonMoreBelow 1.4s ease-in-out infinite; }
.kitten-location-more__arrows i:nth-child(2){animation-delay:.14s}.kitten-location-more__arrows i:nth-child(3){animation-delay:.28s}
@keyframes mcoonMoreBelow { 0%,100%{opacity:.25;transform:translateY(-2px)} 50%{opacity:1;transform:translateY(2px)} }

@media (max-width:980px) {
  .kitten-location-search__visual { grid-template-columns:1fr; }
  .kitten-location-featured { max-width:430px; width:100%; justify-self:center; }
}
@media (max-width:780px) {
  .filter-heading { width:calc(100% + 36px) !important; }
  .kitten-location-featured { padding:10px; }
  .kitten-location-featured .kitten-card__media { min-height:300px; }
}


/* Version 2.0.77 — animated filter fold, refined heading typography, and adaptive map layout. */
.filter-panel {
  transform-origin:top center;
  transition:opacity .32s ease, transform .32s ease, max-height .32s ease, margin .32s ease, padding .32s ease;
}
.filter-panel.is-filter-folding-out {
  opacity:0;
  transform:translateY(-12px) scaleY(.96);
  max-height:0 !important;
  margin-bottom:0 !important;
  overflow:hidden;
  pointer-events:none;
}
.filter-panel.is-filter-folding-in {
  animation:mcoonFilterReveal .32s cubic-bezier(.2,.75,.25,1) both;
}
@keyframes mcoonFilterReveal {
  from { opacity:0; transform:translateY(-12px) scaleY(.96); }
  to { opacity:1; transform:translateY(0) scaleY(1); }
}
.marketplace-layout,
.listing-area,
.kitten-grid { transition:grid-template-columns .32s ease, gap .32s ease, width .32s ease; }

.filter-heading {
  margin-top:-28px !important;
  gap:0 14px !important;
}
.filter-heading__title {
  font-size:26px !important;
  font-weight:300 !important;
  line-height:1.18 !important;
}
.filter-heading__cue {
  padding-left:2px !important;
  font-weight:200 !important;
}
.filter-fold-toggle__arrows {
  width:auto !important;
  min-width:0 !important;
  max-width:none !important;
  overflow:visible !important;
}
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading__title { font-size:26px !important; font-weight:300 !important; }
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading__cue { font-size:14px !important; padding-left:2px !important; font-weight:200 !important; }

.kitten-location-search__visual {
  grid-template-columns:minmax(0,1fr) !important;
}
.kitten-location-search__visual.has-featured-kitten {
  grid-template-columns:minmax(0,1.65fr) minmax(245px,.75fr) !important;
}
@media (max-width:780px) {
  .filter-heading { margin-top:-22px !important; }
  .kitten-location-search__visual.has-featured-kitten { grid-template-columns:1fr !important; }
}
@media (prefers-reduced-motion:reduce) {
  .filter-panel, .marketplace-layout, .listing-area, .kitten-grid { transition:none !important; animation:none !important; }
}


/* Version 2.0.78 — aligned filter heading, coordinated fold animation, and responsive map/card split. */
.marketplace-layout { align-items:start; }
.filter-panel {
  padding:0 24px 24px !important;
  overflow:visible;
}
.filter-heading {
  width:calc(100% + 48px) !important;
  min-height:88px;
  margin:0 -24px 18px !important;
  padding:17px 24px 16px !important;
  gap:0 18px !important;
  border-radius:16px 16px 0 0;
  box-sizing:border-box;
}
.filter-heading__title {
  font-size:26px !important;
  font-weight:200 !important;
  line-height:1.08 !important;
}
.filter-heading__cue {
  padding-left:2px !important;
  font-size:14px !important;
  font-weight:200 !important;
  opacity:1;
  transition:opacity .14s ease;
}
.filter-heading.is-filter-transitioning .filter-heading__cue { opacity:0; }
.filter-fold-toggle__arrows {
  width:auto !important;
  min-width:max-content !important;
  max-width:none !important;
  overflow:visible !important;
  justify-self:end;
  padding:0 !important;
}
.filter-fold-toggle__arrows span { margin:0 !important; }
.filter-panel form { margin-top:0 !important; }

.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading {
  width:auto !important;
  min-width:285px;
  min-height:88px;
  margin:0 !important;
  padding:17px 24px 16px !important;
  border-radius:16px;
  background:rgba(7,91,71,.96);
}
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading__title {
  font-size:26px !important;
  font-weight:200 !important;
}
.marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading__cue {
  font-size:14px !important;
  font-weight:200 !important;
}

.filter-panel.is-filter-folding-out {
  max-height:1200px;
  animation:mcoonFilterRollUp .36s cubic-bezier(.4,0,.2,1) forwards;
}
.filter-panel.is-filter-folding-in {
  animation:mcoonFilterRollDown .38s cubic-bezier(.2,.72,.22,1) both;
}
@keyframes mcoonFilterRollUp {
  0% { opacity:1; transform:translateY(0) scaleY(1); max-height:1200px; }
  100% { opacity:0; transform:translateY(-10px) scaleY(.94); max-height:0; }
}
@keyframes mcoonFilterRollDown {
  0% { opacity:0; transform:translateY(-10px) scaleY(.94); }
  100% { opacity:1; transform:translateY(0) scaleY(1); }
}

.kitten-location-search__visual {
  display:grid;
  grid-template-columns:minmax(0,1fr) !important;
  gap:18px;
  align-items:stretch;
}
.kitten-location-search__visual.has-featured-kitten {
  grid-template-columns:minmax(0,1fr) clamp(280px,28%,370px) !important;
}
.kitten-location-featured { width:100%; box-sizing:border-box; }
.kitten-location-featured .kitten-card { width:100%; height:100%; }

@media (max-width:980px) {
  .kitten-location-search__visual.has-featured-kitten { grid-template-columns:1fr !important; }
  .kitten-location-featured { max-width:430px; justify-self:center; }
}
@media (max-width:780px) {
  .filter-panel { padding:0 18px 18px !important; }
  .filter-heading { width:calc(100% + 36px) !important; margin:0 -18px 18px !important; padding:15px 18px !important; }
}
@media (prefers-reduced-motion:reduce) {
  .filter-panel.is-filter-folding-out,
  .filter-panel.is-filter-folding-in { animation:none !important; }
  .filter-heading__cue { transition:none !important; }
}

/* Version 2.0.79 — true accordion filter and map/control split layout. */
.filter-panel {
  overflow:hidden !important;
}
.filter-accordion-body {
  display:grid;
  grid-template-rows:1fr;
  opacity:1;
  transition:grid-template-rows .42s cubic-bezier(.22,.8,.24,1), opacity .24s ease, transform .42s cubic-bezier(.22,.8,.24,1);
  transform:translateY(0);
}
.filter-accordion-body__inner {
  min-height:0;
  overflow:hidden;
}
.filter-panel.is-accordion-closing .filter-accordion-body,
.filter-panel.is-accordion-opening .filter-accordion-body {
  grid-template-rows:0fr;
  opacity:0;
  transform:translateY(-8px);
}
.filter-panel.is-accordion-closing {
  animation:none !important;
}
.filter-panel.is-accordion-opening {
  animation:none !important;
}
.filter-heading__cue {
  transition:opacity .16s ease;
}
.filter-heading.is-filter-transitioning .filter-heading__cue {
  opacity:0;
}

/* Nearby search: controls on the left, map on the right; results stay in the normal grid below. */
.kitten-location-search {
  display:grid;
  grid-template-columns:minmax(280px, .72fr) minmax(0, 1.55fr);
  grid-template-areas:
    "header header"
    "controls map"
    "status map";
  column-gap:22px;
  row-gap:16px;
  align-items:start;
}
.kitten-location-search[hidden] { display:none !important; }
.kitten-location-search__header {
  grid-area:header;
  margin-bottom:0 !important;
}
.kitten-location-form {
  grid-area:controls;
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:14px !important;
  align-content:start;
  padding:18px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  background:rgba(255,255,255,.055);
}
.kitten-location-form > * { width:100%; min-width:0; }
.kitten-location-form .button { min-height:52px; justify-content:center; }
.kitten-location-search__status {
  grid-area:status;
  margin:0 !important;
  min-height:70px;
}
.kitten-location-search__visual {
  grid-area:map;
  display:block !important;
  width:100%;
  min-width:0;
  height:100%;
}
.kitten-location-map {
  width:100%;
  min-height:430px;
  height:100%;
}
.kitten-location-featured,
.kitten-location-more { display:none !important; }

@media (max-width:980px) {
  .kitten-location-search {
    grid-template-columns:1fr;
    grid-template-areas:
      "header"
      "controls"
      "status"
      "map";
  }
  .kitten-location-map { min-height:380px; }
}
@media (max-width:780px) {
  .filter-accordion-body { transition-duration:.34s; }
  .kitten-location-form { padding:14px; }
  .kitten-location-map { min-height:330px; }
}
@media (prefers-reduced-motion:reduce) {
  .filter-accordion-body { transition:none !important; }
}

/* Version 2.0.80 — mirrored accordion reveal, animated result cards, reliable map pins and delivery guidance. */
.filter-accordion-body {
  height:auto;
  overflow:hidden;
  transition:height .44s cubic-bezier(.22,.8,.24,1), opacity .28s ease, transform .44s cubic-bezier(.22,.8,.24,1) !important;
  will-change:height, opacity, transform;
}
.filter-panel.is-accordion-closing .filter-accordion-body,
.filter-panel.is-accordion-opening .filter-accordion-body {
  grid-template-rows:unset !important;
}

.listing-results-content .kitten-card.is-card-entering {
  animation:mcoonCardEnter .54s cubic-bezier(.2,.8,.2,1) both;
  animation-delay:var(--card-enter-delay, 0ms);
}
@keyframes mcoonCardEnter {
  0% { opacity:0; transform:translateY(18px) scale(.975); filter:blur(2px); }
  65% { opacity:1; filter:blur(0); }
  100% { opacity:1; transform:translateY(0) scale(1); filter:blur(0); }
}

.kitten-delivery-note {
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:2px;
  padding:13px 14px;
  border:1px solid rgba(168,239,156,.38);
  border-radius:12px;
  background:linear-gradient(135deg,rgba(168,239,156,.14),rgba(255,255,255,.055));
  color:rgba(255,255,255,.84);
  font-size:13px;
  line-height:1.45;
}
.kitten-delivery-note strong { color:#fff; font-weight:700; }
.kitten-delivery-note__icon {
  display:grid;
  place-items:center;
  flex:0 0 28px;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#a8ef9c;
  color:#064b39;
  font-size:17px;
  font-weight:800;
}

.mcoon-map-user-pin,
.mcoon-map-kitten-pin { background:transparent !important; border:0 !important; overflow:visible !important; }
.mcoon-map-user-pin__label {
  position:absolute;
  left:50%;
  top:31px;
  transform:translateX(-50%);
  padding:2px 6px;
  border-radius:999px;
  background:#0077ff;
  color:#fff;
  font:700 10px/1.2 var(--mcoon-font-body);
  white-space:nowrap;
  box-shadow:0 3px 10px rgba(0,65,150,.28);
}
.mcoon-map-kitten-pin__shape {
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border:3px solid #fff;
  border-radius:50% 50% 50% 8px;
  background:#d7345d;
  color:#fff;
  font-size:19px;
  line-height:1;
  transform:rotate(-45deg);
  box-shadow:0 5px 14px rgba(85,10,35,.34);
}
.mcoon-map-kitten-pin__shape::first-letter { transform:rotate(45deg); }

@media (prefers-reduced-motion:reduce) {
  .filter-accordion-body { transition:none !important; }
  .listing-results-content .kitten-card.is-card-entering { animation:none !important; }
}


/* Version 2.0.81 — nearby-search guidance order, delivery callout, consistent select and responsive map refresh. */
.kitten-location-search {
  grid-template-areas:
    "header header"
    "controls map" !important;
}
.kitten-location-form {
  align-self:stretch;
}
.kitten-location-search__status--guidance {
  display:flex;
  align-items:flex-start;
  gap:10px;
  min-height:0 !important;
  margin:0 !important;
  padding:14px 15px !important;
  border:1px solid rgba(255,255,255,.16) !important;
  border-radius:12px !important;
  background:rgba(255,255,255,.075) !important;
  color:#fff !important;
  font-size:14px !important;
  line-height:1.5;
  font-weight:500;
}
.kitten-location-search__status--guidance::before {
  content:"⌖";
  display:grid;
  place-items:center;
  flex:0 0 28px;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#fff;
  color:#0b654d;
  font-size:17px;
  font-weight:800;
}
.kitten-location-form select[name="radius"] {
  min-height:42px !important;
  height:42px !important;
  padding:0 38px 0 13px !important;
  border:1px solid rgba(255,255,255,.15) !important;
  border-radius:7px !important;
  background-color:rgba(255,255,255,.035) !important;
  color:#fff !important;
  font:400 16px/1 var(--mcoon-font-body) !important;
  box-shadow:none !important;
  color-scheme:dark;
}
.kitten-location-form select[name="radius"] option {
  color:#222;
  background:#fff;
}
.kitten-delivery-note {
  margin-top:0 !important;
  padding:14px 15px !important;
  border:1px solid rgba(255,206,108,.46) !important;
  border-left:4px solid #ffd166 !important;
  border-radius:12px !important;
  background:linear-gradient(135deg,rgba(255,209,102,.18),rgba(255,255,255,.055)) !important;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
}
.kitten-delivery-note__icon {
  background:#ffd166 !important;
  color:#064b39 !important;
}
.kitten-delivery-note > span:last-child {
  display:flex;
  flex-direction:column;
  gap:3px;
}
.kitten-delivery-note strong {
  color:#fff !important;
  font-size:14px;
  letter-spacing:.01em;
}
.kitten-delivery-note small {
  color:rgba(255,255,255,.78);
  font-size:12px;
  line-height:1.42;
}
@media (max-width:980px) {
  .kitten-location-search {
    grid-template-areas:
      "header"
      "controls"
      "map" !important;
  }
}

/* Version 2.0.82 — repaired nearby-search layout with isolated classes. */
.kitten-location-search {
  grid-template-columns:minmax(300px, .8fr) minmax(0, 1.7fr) !important;
  grid-template-areas:"header header" "controls map" !important;
  align-items:stretch !important;
}
.nearby-search-form-v82 {
  grid-area:controls;
  display:flex !important;
  flex-direction:column !important;
  gap:14px !important;
  width:100% !important;
  min-width:0 !important;
  padding:18px !important;
  box-sizing:border-box !important;
  border:1px solid rgba(255,255,255,.14) !important;
  border-radius:14px !important;
  background:rgba(255,255,255,.055) !important;
}
.nearby-search-fields-v82 {
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:12px !important;
  width:100% !important;
  min-width:0 !important;
}
.nearby-search-field-v82,
.nearby-search-field-v82 > span,
.nearby-search-field-v82 input,
.nearby-search-field-v82 select,
.nearby-search-submit-v82,
.nearby-search-guidance-v82,
.nearby-delivery-v82 {
  width:100% !important;
  min-width:0 !important;
  box-sizing:border-box !important;
}
.nearby-search-field-v82 { display:block !important; }
.nearby-search-field-v82 > span {
  display:block !important;
  margin:0 0 7px !important;
  color:#fff !important;
  font-size:13px !important;
  font-weight:700 !important;
}
.nearby-search-field-v82 input,
.nearby-search-field-v82 select {
  display:block !important;
  height:48px !important;
  padding:0 14px !important;
  border:1px solid rgba(255,255,255,.24) !important;
  border-radius:9px !important;
  background:#fff !important;
  color:#124c3c !important;
  font:500 15px/1 var(--mcoon-font-body) !important;
}
.nearby-search-submit-v82 {
  min-height:50px !important;
  justify-content:center !important;
  white-space:nowrap !important;
}
.nearby-search-guidance-v82,
.nearby-delivery-v82 {
  display:flex !important;
  overflow:visible !important;
  writing-mode:horizontal-tb !important;
  word-break:normal !important;
  overflow-wrap:break-word !important;
  white-space:normal !important;
}
.nearby-search-guidance-v82 { order:2; }
.nearby-delivery-v82 { order:3; }
.kitten-location-search__visual {
  grid-area:map !important;
  display:block !important;
  width:100% !important;
  min-width:0 !important;
  height:100% !important;
}
.kitten-location-map {
  width:100% !important;
  min-height:430px !important;
  height:100% !important;
  border-radius:14px !important;
  overflow:hidden !important;
}
@media (max-width:980px) {
  .kitten-location-search {
    grid-template-columns:1fr !important;
    grid-template-areas:"header" "controls" "map" !important;
  }
  .kitten-location-map { min-height:360px !important; }
}


/* Version 2.0.83 — slider edge protection, cleaner nearby status and radius-aware filtering. */
.price-field {
  overflow: visible !important;
}
.price-field input[type="range"] {
  box-sizing: border-box !important;
  width: calc(100% - 10px) !important;
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.kitten-location-search__status--guidance::before,
.nearby-search-guidance-v82::before {
  content: none !important;
  display: none !important;
}
.kitten-location-search__status--guidance,
.nearby-search-guidance-v82 {
  gap: 0 !important;
}
.marketplace-layout[data-nearby-active="true"] .dynamic-filter-note::after {
  content: " Nearby mode is active — filters refine kittens inside your selected postcode radius.";
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.82);
}

/* Version 2.0.84 — nearby-mode status card and compact result count. */
.nearby-delivery-v82,
.kitten-delivery-note {
  display: none !important;
}
.nearby-mode-card-v84 {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(142, 255, 185, .34);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(83,177,84,.22), rgba(255,255,255,.065));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 22px rgba(0,0,0,.08);
  color: #fff;
}
.nearby-mode-card-v84[hidden] { display: none !important; }
.nearby-mode-card-v84__signal {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #8df58d;
  box-shadow: 0 0 0 5px rgba(141,245,141,.12);
}
.nearby-mode-card-v84__signal::before,
.nearby-mode-card-v84__signal::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 50%;
  animation: nearbyModePulseV84 2.1s ease-out infinite;
}
.nearby-mode-card-v84__signal::before { inset: 7px; }
.nearby-mode-card-v84__signal::after { inset: 2px; animation-delay: .7s; }
.nearby-mode-card-v84__signal > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #07543f;
  box-shadow: 0 0 0 3px rgba(7,84,63,.14);
  z-index: 1;
}
.nearby-mode-card-v84__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.nearby-mode-card-v84__copy strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: .01em;
}
.nearby-mode-card-v84__copy small {
  color: rgba(255,255,255,.82);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}
.kitten-location-search__status--guidance,
.nearby-search-guidance-v82 {
  align-items: center !important;
  gap: 10px !important;
}
.nearby-status__count {
  flex: 0 0 34px !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 9px !important;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
}
.nearby-status__copy { gap: 1px !important; min-width: 0; }
.nearby-status__copy strong { font-size: 15px !important; line-height: 1.1 !important; }
.nearby-status__copy small { font-size: 11.5px !important; line-height: 1.35 !important; }
@keyframes nearbyModePulseV84 {
  0% { opacity: .8; transform: scale(.5); }
  75%,100% { opacity: 0; transform: scale(1.35); }
}
@media (prefers-reduced-motion: reduce) {
  .nearby-mode-card-v84__signal::before,
  .nearby-mode-card-v84__signal::after { animation: none !important; }
}


/* Version 2.0.86 — styled radius selector, grouped postcode markers, single nearby-mode notice. */
.nearby-radius-select-v86 {
  width: 100% !important;
  min-height: 48px !important;
  padding: 0 44px 0 14px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 9px !important;
  background-color: rgba(255,255,255,.055) !important;
  background-image:
    linear-gradient(45deg, transparent 50%, #a3ff91 50%),
    linear-gradient(135deg, #a3ff91 50%, transparent 50%) !important;
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 13px) 21px !important;
  background-size: 6px 6px, 6px 6px !important;
  background-repeat: no-repeat !important;
  color: #fff !important;
  font: 500 15px/1 var(--mcoon-font-body) !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05) !important;
}
.nearby-radius-select-v86:hover,
.nearby-radius-select-v86:focus-visible {
  border-color: rgba(163,255,145,.62) !important;
  background-color: rgba(255,255,255,.085) !important;
  outline: none !important;
}
.nearby-radius-select-v86 option { color: #123f34 !important; background: #fff !important; }

/* Nearby mode is communicated only in the map panel, not repeated in the main filter. */
.marketplace-layout[data-nearby-active="true"] .dynamic-filter-note::after {
  content: none !important;
  display: none !important;
}

.mcoon-map-kitten-pin__shape {
  position: relative;
  overflow: visible;
}
.mcoon-map-kitten-pin__paw {
  display: inline-block;
  transform: rotate(45deg);
  line-height: 1;
}
.mcoon-map-kitten-pin__count {
  position: absolute;
  top: -9px;
  right: -9px;
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #0077ff;
  color: #fff;
  font: 800 12px/1 var(--mcoon-font-body);
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0,63,145,.35);
}
.mcoon-map-location-popup { min-width: 190px; }
.mcoon-map-location-popup > strong {
  display: block;
  margin-bottom: 8px;
  color: #07543f;
  font: 700 15px/1.25 var(--mcoon-font-body);
}
.mcoon-map-location-popup ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mcoon-map-location-popup li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 7px;
  border-top: 1px solid rgba(7,84,63,.12);
}
.mcoon-map-location-popup a {
  color: #0077ff;
  font-weight: 700;
  text-decoration: none;
}
.mcoon-map-location-popup span {
  color: #5b6e67;
  font-size: 11px;
  white-space: nowrap;
}


/* Version 2.0.87 — custom distance dropdown, visible counts on every pin, privacy-safe approximate breeder markers. */
.nearby-search-field-v82 .custom-select {
  width: 100%;
}
.nearby-search-field-v82 .custom-select.is-enhanced .custom-select__trigger {
  min-height: 48px;
  border-color: rgba(255,255,255,.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.nearby-search-field-v82 .custom-select.is-enhanced .custom-select__menu {
  z-index: 1100;
  min-width: 100%;
}
.nearby-search-field-v82 .custom-select__option {
  font-size: 16px;
}
.nearby-radius-select-v87.custom-select__native {
  appearance: none !important;
}
.mcoon-map-kitten-pin__count {
  display: grid !important;
}
.mcoon-map-location-popup__privacy {
  display: block;
  margin: -2px 0 9px;
  color: #6b7d76;
  font: 500 11px/1.35 var(--mcoon-font-body);
}
.leaflet-container {
  background: #dcecf0;
}


/* Version 2.0.88 — larger nearby-search labels and live distance refresh. */
.kitten-location-form label span {
  margin-bottom: 0 !important;
  font-size: 20px !important;
}


/* Version 2.0.89 — final mobile toolbar, map title and postcode-entry refinements. */
.kitten-location-search__header h3 .kitten-location-search__title-breed {
  display:inline;
}

@media (max-width:780px) {
  html,
  body {
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
  }

  .site-page,
  .site-main,
  .marketplace-section,
  .marketplace-layout,
  .listing-area,
  .listing-toolbar,
  .kitten-location-search,
  .kitten-location-form,
  .nearby-search-fields-v82,
  .nearby-search-field-v82,
  .kitten-location-search__visual,
  .kitten-location-map {
    min-width:0 !important;
    max-width:100% !important;
    box-sizing:border-box !important;
  }

  /* When the filter is collapsed, give every toolbar item its own full-width row. */
  .marketplace-layout.is-filter-collapsed .listing-toolbar {
    display:grid !important;
    grid-template-columns:minmax(0,1fr) !important;
    gap:12px !important;
    width:100% !important;
    align-items:start !important;
  }
  .marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading,
  .marketplace-layout.is-filter-collapsed .listing-toolbar .listing-title-wrap,
  .marketplace-layout.is-filter-collapsed .listing-toolbar .listing-location-button {
    grid-column:1 !important;
    min-width:0 !important;
  }
  .marketplace-layout.is-filter-collapsed .listing-toolbar .filter-heading {
    width:100% !important;
    min-width:0 !important;
  }
  .marketplace-layout.is-filter-collapsed .listing-toolbar .listing-title-wrap {
    width:100% !important;
  }
  .marketplace-layout.is-filter-collapsed .listing-toolbar .listing-dynamic-title {
    display:flex !important;
    flex-wrap:nowrap !important;
    align-items:center !important;
    gap:7px !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    white-space:nowrap !important;
    font-size:clamp(20px,6vw,26px) !important;
    line-height:1.15 !important;
  }
  .marketplace-layout.is-filter-collapsed .listing-toolbar .listing-dynamic-title > span,
  .marketplace-layout.is-filter-collapsed .listing-toolbar .listing-dynamic-title > strong {
    flex:0 0 auto !important;
  }
  .marketplace-layout.is-filter-collapsed .listing-toolbar .listing-location-button {
    justify-self:start !important;
    width:auto !important;
    max-width:100% !important;
  }

  /* Deliberate two-line mobile title: Find your nearest / Maine Coon. */
  .kitten-location-search__header h3 {
    display:block !important;
    max-width:100% !important;
    font-size:clamp(25px,7.1vw,31px) !important;
    line-height:1.08 !important;
  }
  .kitten-location-search__header h3 > span:first-child,
  .kitten-location-search__header h3 .kitten-location-search__title-breed {
    display:block !important;
  }
  .kitten-location-search__header h3 .kitten-location-search__title-breed {
    white-space:nowrap !important;
  }

  /* 16px prevents iOS Safari from zooming the page when postcode entry receives focus. */
  .kitten-location-form input[type="text"],
  .nearby-search-field-v82 input[type="text"] {
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    box-sizing:border-box !important;
    font-size:16px !important;
    line-height:1.25 !important;
    transform:none !important;
  }
  .kitten-location-form input[type="text"]:focus,
  .nearby-search-field-v82 input[type="text"]:focus {
    font-size:16px !important;
  }
}

/* --------------------------------------------------------------------------
   Version 2.0.90 — dedicated purchased mobile hero artwork
   Desktop hero remains unchanged.
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  .hero-section--portrait {
    position: relative !important;
    min-height: 330px !important;
    height: 330px !important;
    overflow: hidden !important;
    background-image: url('../images/heromobile.jpg') !important;
    background-size: cover !important;
    background-position: 67% 48% !important;
    background-repeat: no-repeat !important;
    border-bottom: 0 !important;
  }

  /* Soft ivory text zone that fades naturally into the purchased portrait. */
  .hero-section--portrait::before {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    background: linear-gradient(
      90deg,
      rgba(249, 246, 239, .98) 0%,
      rgba(249, 246, 239, .92) 31%,
      rgba(249, 246, 239, .62) 48%,
      rgba(249, 246, 239, .12) 69%,
      rgba(249, 246, 239, 0) 82%
    ) !important;
  }

  .hero-section--portrait::after {
    display: none !important;
  }

  .hero-portrait__inner {
    position: relative !important;
    z-index: 1 !important;
    min-height: 330px !important;
    height: 330px !important;
    display: flex !important;
    align-items: center !important;
    padding-inline: 22px !important;
  }

  .hero-copy--portrait {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .hero-copy--portrait h1 {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 5px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .hero-copy--portrait h1 span {
    font-size: clamp(20px, 5.6vw, 25px) !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    letter-spacing: .12em !important;
  }

  .hero-copy--portrait h1 strong {
    margin-left: -2px !important;
    color: #37442d !important;
    font-size: clamp(40px, 11.5vw, 56px) !important;
    font-weight: 500 !important;
    line-height: .94 !important;
    letter-spacing: -.04em !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 390px) {
  .hero-section--portrait,
  .hero-portrait__inner {
    min-height: 310px !important;
    height: 310px !important;
  }
  .hero-section--portrait {
    background-position: 64% 48% !important;
  }
  .hero-copy--portrait h1 strong {
    font-size: clamp(37px, 11vw, 45px) !important;
  }
}

/* --------------------------------------------------------------------------
   Version 2.0.91 — compact mobile hero using the original desktop artwork.
   Desktop remains unchanged.
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  .hero-section--portrait {
    position: relative !important;
    min-height: 250px !important;
    height: 250px !important;
    overflow: hidden !important;
    background-image: var(--mcoon-hero-image) !important;
    background-size: cover !important;
    background-position: 72% center !important;
    background-repeat: no-repeat !important;
  }

  .hero-section--portrait::before {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none !important;
    background: linear-gradient(
      90deg,
      rgba(249, 246, 239, .98) 0%,
      rgba(249, 246, 239, .92) 30%,
      rgba(249, 246, 239, .68) 47%,
      rgba(249, 246, 239, .14) 67%,
      rgba(249, 246, 239, 0) 80%
    ) !important;
  }

  .hero-section--portrait::after {
    display: none !important;
  }

  .hero-portrait__inner {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    min-height: 250px !important;
    height: 250px !important;
    padding: 0 20px !important;
  }

  .hero-copy--portrait {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 250px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .hero-copy--portrait h1 {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 7px !important;
    width: auto !important;
    max-width: 57% !important;
    margin: 0 !important;
    transform: translateY(2px) !important;
  }

  .hero-copy--portrait h1 span {
    font-size: clamp(16px, 4.5vw, 20px) !important;
    font-weight: 300 !important;
    line-height: 1 !important;
    letter-spacing: .13em !important;
  }

  .hero-copy--portrait h1 strong {
    margin: 0 !important;
    color: #37442d !important;
    font-size: clamp(27px, 8vw, 36px) !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: -.035em !important;
    white-space: nowrap !important;
  }

  .hero-copy--portrait .hero-subtitle {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .hero-section--portrait,
  .hero-portrait__inner,
  .hero-copy--portrait {
    min-height: 230px !important;
    height: 230px !important;
  }

  .hero-section--portrait {
    background-position: 70% center !important;
  }

  .hero-copy--portrait h1 strong {
    font-size: clamp(25px, 7.7vw, 31px) !important;
  }
}

/* --------------------------------------------------------------------------
   Version 2.0.92 — mobile hero restoration and isolated card gallery updates.
   Desktop hero remains unchanged.
   -------------------------------------------------------------------------- */
@media (max-width: 760px) {
  .hero-section--portrait {
    /* Use the exact desktop hero artwork on mobile. The explicit URL avoids an
       undefined custom-property override hiding the inline background image. */
    background-image: url('../images/hero.jpg') !important;
    background-size: cover !important;
    background-position: 72% center !important;
  }

  .hero-portrait__inner,
  .hero-copy--portrait,
  .hero-copy--portrait h1 {
    text-align: left !important;
    justify-content: center !important;
  }

  .hero-copy--portrait {
    align-items: flex-start !important;
  }

  .hero-copy--portrait h1 {
    align-items: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

/* MCOON v3 — premium individual kitten page */
.kitten-detail-page { background: linear-gradient(180deg,#f8f3eb 0,#fffaf4 52%,#f6efe6 100%); }
.kitten-product { grid-template-columns: minmax(0,1.18fr) minmax(390px,.82fr); gap: 28px; align-items: start; }
.kitten-gallery { position: sticky; top: 104px; }
.gallery-main { aspect-ratio: 1.05; border: 1px solid rgba(1,71,53,.12); border-radius: 20px; background: linear-gradient(145deg,#efe7dc,#f9f5ef); box-shadow: 0 24px 60px rgba(27,47,39,.12); }
.gallery-main img { object-fit: contain; object-position: center; padding: 12px; transition: opacity .24s ease, transform .35s ease; }
.gallery-main:hover img { transform: scale(1.015); }
.gallery-count { position:absolute; left:18px; bottom:18px; z-index:2; padding:8px 12px; border-radius:999px; background:rgba(1,47,34,.78); color:#fff; font-size:14px; font-weight:700; backdrop-filter:blur(8px); }
.gallery-thumbs { grid-template-columns: repeat(6,minmax(0,1fr)); gap: 10px; margin-top: 12px; }
.gallery-thumb { aspect-ratio: 1; border-radius: 12px; background:#eee7dd; }
.gallery-thumb img { object-fit: contain; background:#f5efe7; }
.gallery-thumb.is-active { border-color:#53b154; box-shadow:0 0 0 3px rgba(83,177,84,.18); }
.kitten-summary { padding: 30px; border-radius: 20px; background: linear-gradient(160deg,rgba(255,255,255,.96),rgba(250,245,237,.94)); box-shadow: 0 24px 60px rgba(27,47,39,.1); }
.summary-heading h1 { font-size: clamp(54px,5vw,72px); }
.detail-quick-facts { margin-top:18px; border:1px solid var(--mcoon-border); border-radius:14px; overflow:hidden; }
.certification-grid { grid-template-columns: repeat(2,1fr); }
.certification-grid span { justify-content:flex-start; min-height:48px; background:rgba(255,255,255,.7); }
.reservation-box { margin-top:22px; padding:24px; border-radius:18px; background:linear-gradient(145deg,#073f31,#0b5b45); color:#fff; box-shadow:0 18px 40px rgba(1,47,34,.2); }
.reservation-eyebrow { margin:0 0 6px; color:#a6f08d; font-size:12px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.reservation-box h2 { margin:0; color:#fff; font-size:32px; }
.reservation-intro { margin:9px 0 18px; color:rgba(255,255,255,.76); line-height:1.55; }
.reservation-form { display:grid; gap:12px; }
.reservation-form__row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.reservation-form label { display:grid; gap:6px; }
.reservation-form label span { color:#fff; font-size:13px; font-weight:700; }
.reservation-form input,.reservation-form textarea { width:100%; min-height:46px; padding:11px 13px; border:1px solid rgba(255,255,255,.2); border-radius:11px; background:rgba(255,255,255,.96); color:#12352a; font:inherit; }
.reservation-form textarea { min-height:104px; resize:vertical; }
.reservation-submit { width:100%; min-height:52px; margin-top:2px; background:#53b154 !important; }
.reservation-quick-actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px; }
.reservation-quick-actions a { display:flex; align-items:center; justify-content:center; min-height:44px; border:1px solid rgba(255,255,255,.22); border-radius:10px; color:#fff; font-weight:700; }
.reservation-safety { margin:16px 0 0; padding:13px 14px; border-left:3px solid #b8f28e; border-radius:8px; background:rgba(255,255,255,.08); color:rgba(255,255,255,.78); font-size:13px; line-height:1.5; }
.reservation-safety strong { display:block; margin-bottom:3px; color:#fff; }
.detail-card { border-radius:18px; background:rgba(255,252,247,.88); box-shadow:0 14px 36px rgba(27,47,39,.06); }
.detail-card > h2 { color:var(--mcoon-forest); font-size:18px; letter-spacing:.04em; }
@media (max-width: 900px) {
  .kitten-product { grid-template-columns:1fr; }
  .kitten-gallery { position:static; }
}
@media (max-width: 600px) {
  .gallery-main { aspect-ratio:.92; border-radius:16px; }
  .gallery-main img { padding:6px; }
  .gallery-thumbs { grid-template-columns:repeat(4,1fr); }
  .reservation-form__row,.reservation-quick-actions { grid-template-columns:1fr; }
  .reservation-box { padding:20px 16px; margin-inline:-2px; }
  .kitten-summary { padding:22px 16px; }
}


/* =========================================================
   MCOON Signature 3.0.1 — Individual kitten page refinement
   ========================================================= */
.kitten-detail-page {
  padding-top: 0;
  overflow-x: clip;
}
.kitten-detail-page > .mcoon-container {
  padding-top: 22px;
}
.kitten-detail-hero {
  position: relative;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(1,71,53,.11);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 18%, rgba(151,255,119,.18), transparent 30%),
    linear-gradient(128deg,#fffaf2 0%,#f4ecdf 58%,#e8f0e6 100%);
  box-shadow: 0 18px 48px rgba(30,55,45,.08);
}
.kitten-detail-hero::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -78px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(1,71,53,.08);
  box-shadow: 0 0 0 36px rgba(255,255,255,.16),0 0 0 72px rgba(1,71,53,.025);
  pointer-events: none;
}
.kitten-detail-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(350px,.65fr);
  gap: 30px;
  align-items: end;
  min-height: 190px;
  padding: 24px 30px 28px;
}
.kitten-detail-hero .breadcrumbs {
  margin: 0 0 20px;
  color: rgba(1,71,53,.66);
}
.kitten-detail-hero__eyebrow {
  margin: 0 0 5px;
  color: #4e9b46;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kitten-detail-hero h1 {
  margin: 0;
  color: var(--mcoon-forest);
  font-family: var(--mcoon-font-heading);
  font-size: clamp(38px,4vw,62px);
  font-weight: 500;
  line-height: .98;
}
.kitten-detail-hero__copy > p:last-child {
  max-width: 680px;
  margin: 13px 0 0;
  color: #59665f;
  font-size: 16px;
  line-height: 1.65;
}
.kitten-detail-hero__facts {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}
.kitten-detail-hero__facts span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid rgba(1,71,53,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.62);
  color: var(--mcoon-forest);
  backdrop-filter: blur(8px);
}
.kitten-detail-hero__facts span.is-available {
  background: rgba(151,255,119,.22);
}
.kitten-detail-hero__facts .mcoon-icon { width: 19px; height: 19px; color: #16805f; }
.kitten-detail-hero__facts b { font-size: 14px; font-weight: 600; }

.kitten-product {
  grid-template-columns: minmax(0,1.18fr) minmax(400px,.82fr);
  gap: 30px;
  align-items: start;
}
.kitten-gallery {
  position: static !important;
  min-width: 0;
}
.gallery-main {
  aspect-ratio: 1.18;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg,#eadfd3,#f8f2e9);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}
.gallery-thumbs {
  gap: 10px;
  margin-top: 12px;
  overflow: visible;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 92px;
  height: 76px;
  flex: 0 0 92px;
  border-radius: 11px;
  background: #efe7dc;
}
.gallery-thumb img { object-fit: contain; background: #efe7dc; }
.kitten-summary {
  position: static;
  padding: 28px;
  overflow: visible;
  border: 1px solid rgba(1,71,53,.11);
  border-radius: 20px;
  background: linear-gradient(160deg,#fffdf9,#f7efe4);
  box-shadow: 0 22px 55px rgba(26,48,39,.11);
}
.reservation-box {
  overflow: visible;
  max-height: none;
  background:
    radial-gradient(circle at 100% 0,rgba(151,255,119,.16),transparent 34%),
    linear-gradient(145deg,#073f31,#0a5b45);
}
.reservation-form,
.reservation-form label,
.reservation-form input,
.reservation-form textarea { min-width: 0; max-width: 100%; }
.reservation-form textarea { resize: vertical; min-height: 110px; }
.detail-grid { margin-top: 26px; }
.detail-card {
  border-color: rgba(1,71,53,.11);
  background: linear-gradient(150deg,rgba(255,253,249,.97),rgba(248,241,232,.9));
  box-shadow: 0 14px 38px rgba(29,51,43,.07);
}
.detail-card h2 {
  position: relative;
  padding-bottom: 12px;
  font-size: 18px;
}
.detail-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  border-radius: 2px;
  background: #72be57;
}
.kitten-detail-page + .site-footer,
.kitten-detail-page ~ .site-footer { margin-top: 0; }

@media (max-width: 980px) {
  .kitten-detail-hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .kitten-detail-hero__facts { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .kitten-product { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .kitten-detail-page > .mcoon-container { padding-top: 12px; }
  .kitten-detail-hero { margin-bottom: 16px; border-radius: 16px; }
  .kitten-detail-hero__inner { padding: 18px 16px 20px; gap: 18px; }
  .kitten-detail-hero .breadcrumbs { margin-bottom: 14px; }
  .kitten-detail-hero h1 { font-size: 38px; }
  .kitten-detail-hero__copy > p:last-child { font-size: 14px; }
  .kitten-detail-hero__facts { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
  .kitten-detail-hero__facts span { min-height: 44px; padding: 8px 10px; }
  .gallery-main { aspect-ratio: 1 / 1.08; border-radius: 16px; }
  .gallery-thumbs { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
  .gallery-thumb { width: 100%; height: 68px; min-width: 0; }
  .kitten-summary { padding: 20px 14px; }
  .reservation-form__row { grid-template-columns: 1fr; }
}

/* =========================================================
   MCOON Signature 3.0.2 — Simplified kitten detail layout
   ========================================================= */
.kitten-detail-hero__inner {
  grid-template-columns: minmax(0,1fr) minmax(420px,.72fr);
  align-items: center;
}
.kitten-detail-hero__facts {
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.kitten-detail-hero__facts .is-price {
  background: rgba(255,255,255,.76);
}
.kitten-detail-hero__facts .is-price b {
  font-family: var(--mcoon-font-heading);
  font-size: 19px;
  color: var(--mcoon-forest);
}
.kitten-share-button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(1,71,53,.14);
  border-radius: 12px;
  background: var(--mcoon-forest);
  color: #fff;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}
.kitten-share-button:hover,
.kitten-share-button:focus-visible { background:#083d30; border-color:#083d30; }
.kitten-share-button .mcoon-icon { width:19px; height:19px; color:#b8f28e; }
.kitten-share-button b { font-size:14px; font-weight:600; }
.kitten-share-button.is-copied::after { content:'Copied'; font-size:12px; color:#b8f28e; }

.kitten-product {
  grid-template-columns: minmax(0,1.2fr) minmax(390px,.8fr);
  gap: 28px;
  align-items: start;
}
.kitten-enquiry-column {
  min-width: 0;
  border: 1px solid rgba(1,71,53,.11);
  border-radius: 20px;
  background: linear-gradient(160deg,#fffdf9,#f6ede0);
  box-shadow: 0 22px 55px rgba(26,48,39,.1);
  overflow: hidden;
}
.enquiry-listing-summary {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  padding:24px 26px 14px;
}
.enquiry-listing-summary__eyebrow {
  margin:0 0 3px;
  color:#4e9b46;
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.enquiry-listing-summary h2 {
  margin:0;
  color:var(--mcoon-forest);
  font-family:var(--mcoon-font-heading);
  font-size:34px;
  line-height:1;
  font-weight:500;
}
.enquiry-listing-summary > strong {
  color:var(--mcoon-forest);
  font-family:var(--mcoon-font-heading);
  font-size:26px;
  line-height:1;
}
.enquiry-mini-facts {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  margin:0 26px 18px;
  overflow:hidden;
  border:1px solid rgba(1,71,53,.1);
  border-radius:11px;
  background:rgba(1,71,53,.08);
}
.enquiry-mini-facts span {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  min-height:44px;
  padding:8px;
  background:rgba(255,255,255,.82);
  color:var(--mcoon-forest);
  font-size:13px;
  font-weight:600;
}
.enquiry-mini-facts .mcoon-icon { width:17px; height:17px; color:#16805f; }
.kitten-enquiry-column .reservation-box {
  margin:0;
  border-radius:0;
  box-shadow:none;
  padding:25px 26px 26px;
}
.kitten-gallery .gallery-main {
  min-height:560px;
  aspect-ratio:auto;
}
.kitten-gallery .gallery-main img {
  object-fit:contain;
  width:100%;
  height:100%;
}

.detail-grid.two-up {
  grid-template-columns:minmax(0,.86fr) minmax(0,1.14fr);
  align-items:stretch;
}
.detail-grid.two-up .detail-card { height:100%; }
.key-information__care {
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(1,71,53,.1);
}
.key-information__care h3 {
  margin:0 0 12px;
  color:var(--mcoon-forest);
  font-family:var(--mcoon-font-heading);
  font-size:18px;
  font-weight:500;
}
.care-chip-grid {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.care-chip-grid span {
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:36px;
  padding:7px 11px;
  border:1px solid rgba(1,71,53,.11);
  border-radius:999px;
  background:#edf6ea;
  color:var(--mcoon-forest);
  font-size:13px;
  font-weight:600;
}
.care-chip-grid .mcoon-icon { width:16px; height:16px; color:#16805f; }

@media (max-width: 980px) {
  .kitten-detail-hero__inner { grid-template-columns:1fr; }
  .kitten-detail-hero__facts { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .kitten-product { grid-template-columns:1fr; }
  .kitten-gallery .gallery-main { min-height:0; aspect-ratio:1.05; }
}
@media (max-width: 760px) {
  .kitten-detail-hero__facts { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .kitten-share-button { width:100%; }
  .enquiry-listing-summary { padding:20px 16px 12px; }
  .enquiry-listing-summary h2 { font-size:30px; }
  .enquiry-listing-summary > strong { font-size:22px; }
  .enquiry-mini-facts { margin:0 16px 14px; grid-template-columns:1fr; }
  .kitten-enquiry-column .reservation-box { padding:20px 16px 22px; }
  .detail-grid.two-up { grid-template-columns:1fr; }
}
