/**
 * Site Header — Waggles.
 *
 * Boutique top bar: hamburger + logo (left), phone + address-with-directions
 * (center, desktop), and account / cart / Reserve CTA (right). On mobile,
 * the center contact block hides and we show a directions icon + call icon
 * + Reserve button on the right.
 *
 * All new styles live under .wg-header to override / coexist with the
 * legacy `.top-header-bar`, `.btn-book-appointment`, `.header-phone-number`,
 * `.header-icon`, etc. rules in style.css.
 */

.wg-header {
	--wg-header-bg: #eabfbd;
	--wg-header-secondary: #b8c3be;
	--wg-header-stroke: rgba(61, 81, 85, 0.12);
	--wg-header-shadow: 0 2px 16px rgba(61, 81, 85, 0.08);
	--wg-header-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================================
   Top bar
   ========================================================================= */
.wg-header .wg-header__bar {
	background: var(--wg-header-bg);
	border-bottom: 1px solid var(--wg-header-stroke);
	box-shadow: var(--wg-header-shadow);
	padding: 0.75rem 0;
}
.wg-header .wg-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	min-height: 64px;
}

/* =========================================================================
   Brand: hamburger + logo
   ========================================================================= */
.wg-header .wg-header__brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
}
.wg-header .wg-header__toggler {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 12px;
	color: var(--color-primary-dark-teal);
	cursor: pointer;
	transition: background 0.25s var(--wg-header-ease);
}
.wg-header .wg-header__toggler:hover,
.wg-header .wg-header__toggler:focus-visible {
	background: rgba(61, 81, 85, 0.06);
	outline: none;
}
.wg-header .wg-header__toggler-icon {
	display: inline-block;
	width: 22px;
	height: 16px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='16' viewBox='0 0 22 16'><path stroke='%233D5155' stroke-width='2' stroke-linecap='round' d='M1 1h20M1 8h20M1 15h20'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
}

.wg-header .wg-header__logo {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	text-decoration: none;
}
.wg-header .wg-header__logo img,
.wg-header .wg-header__logo .custom-logo,
.wg-header .wg-header__logo .custom-logo-link img {
	max-height: 74px;
	width: auto;
	height: auto;
	display: block;
}

/* =========================================================================
   Center: phone + address (desktop only)
   ========================================================================= */
.wg-header .wg-header__contact {
	display: none;
	align-items: center;
	gap: 0.4rem;
	flex: 1;
	justify-content: center;
	min-width: 0;
}
@media (min-width: 992px) {
	.wg-header .wg-header__contact {
		display: flex;
	}
}
.wg-header .wg-header__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.45rem 0.85rem;
	border-radius: 14px;
	color: var(--color-primary-dark-teal);
	text-decoration: none;
	background: transparent;
	border: 1px solid transparent;
	transition: background 0.25s var(--wg-header-ease), border-color 0.25s var(--wg-header-ease), transform 0.25s var(--wg-header-ease);
	max-width: 100%;
	min-width: 0;
}
.wg-header .wg-header__contact-item:hover,
.wg-header .wg-header__contact-item:focus-visible {
	background: rgba(184, 195, 190, 0.32);
	border-color: rgba(184, 195, 190, 0.6);
	color: var(--color-primary-dark-teal);
	transform: translateY(-1px);
	outline: none;
}
.wg-header .wg-header__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--wg-header-secondary);
	color: var(--color-primary-dark-teal);
	font-size: 0.95rem;
	transition: background 0.25s var(--wg-header-ease), transform 0.25s var(--wg-header-ease);
}
.wg-header .wg-header__contact-item--address .wg-header__contact-icon {
	background: var(--wg-header-secondary);
}
.wg-header .wg-header__contact-item:hover .wg-header__contact-icon {
	background: #a4b3ad;
	transform: scale(1.04);
}
.wg-header .wg-header__contact-copy {
	display: inline-flex;
	flex-direction: column;
	gap: 0.05rem;
	min-width: 0;
}
.wg-header .wg-header__contact-eyebrow {
	font: 600 0.66rem var(--font-primary, var(--font-primary));
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary-dark-grey);
	line-height: 1;
}
.wg-header .wg-header__contact-value {
	font: 700 0.92rem var(--font-primary, var(--font-primary));
	color: var(--color-primary-dark-teal);
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.wg-header .wg-header__contact-sep {
	color: var(--color-primary-dark-grey);
	margin: 0 0.15rem;
	opacity: 0.6;
}
.wg-header .wg-header__contact-arrow {
	color: var(--color-primary-dark-grey);
	font-size: 0.9rem;
	opacity: 0;
	margin-left: 0.15rem;
	transition: opacity 0.25s var(--wg-header-ease), transform 0.25s var(--wg-header-ease);
	flex-shrink: 0;
}
.wg-header .wg-header__contact-item--address:hover .wg-header__contact-arrow {
	opacity: 1;
	transform: translate(2px, -2px);
	color: var(--color-primary-dark-teal);
}

/* On medium-large screens, drop the long address line to its first part only */
@media (min-width: 992px) and (max-width: 1199.98px) {
	.wg-header .wg-header__contact-item--address .wg-header__contact-sep,
	.wg-header .wg-header__contact-item--address .wg-header__contact-value > span:not(.wg-header__contact-sep):nth-of-type(2) {
		display: none;
	}
}

/* =========================================================================
   Right: action icons + Reserve CTA
   ========================================================================= */
.wg-header .wg-header__actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.wg-header .wg-header__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	color: var(--color-primary-dark-teal);
	background: transparent;
	border: 1px solid transparent;
	text-decoration: none;
	font-size: 1.25rem;
	transition: background 0.25s var(--wg-header-ease), border-color 0.25s var(--wg-header-ease), transform 0.25s var(--wg-header-ease), color 0.25s var(--wg-header-ease);
}

/* Account icon — larger to feel like a primary identity affordance */
.wg-header .wg-header__icon-btn--account {
	font-size: 1.65rem;
	width: 48px;
	height: 48px;
}
.wg-header .wg-header__icon-btn:hover,
.wg-header .wg-header__icon-btn:focus-visible {
	background: rgba(184, 195, 190, 0.4);
	border-color: rgba(184, 195, 190, 0.7);
	color: var(--color-primary-dark-teal);
	transform: translateY(-1px);
	outline: none;
}

/* Hide mobile-only icons on desktop */
.wg-header .wg-header__icon-btn--mobile { display: none; }
@media (max-width: 991.98px) {
	.wg-header .wg-header__icon-btn--mobile { display: inline-flex; }
}

/* Hide desktop-only icons on mobile */
@media (max-width: 991.98px) {
	.wg-header .wg-header__icon-btn--desktop { display: none; }
}

/* Special highlight on the mobile call icon — sage tint for separation from the rosy header bg */
.wg-header .wg-header__icon-btn--phone {
	background: rgba(184, 195, 190, 0.45);
	border-color: rgba(184, 195, 190, 0.7);
}
.wg-header .wg-header__icon-btn--phone:hover {
	background: var(--wg-header-secondary);
}

/* =========================================================================
   Reserve CTA
   ========================================================================= */
.wg-header .wg-header__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.7rem 1.25rem;
	background: var(--color-primary-dark-teal);
	color: #fff;
	border: 0;
	border-radius: 999px;
	font: 700 0.9rem var(--font-primary, var(--font-primary));
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(61, 81, 85, 0.28);
	transition: transform 0.25s var(--wg-header-ease), box-shadow 0.25s var(--wg-header-ease), background 0.25s var(--wg-header-ease), color 0.25s var(--wg-header-ease);
}
.wg-header .wg-header__cta:hover,
.wg-header .wg-header__cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(61, 81, 85, 0.4);
	background: #2f4044;
	color: #fff;
	outline: none;
}
.wg-header .wg-header__cta i {
	font-size: 1rem;
}

@media (max-width: 575.98px) {
	.wg-header .wg-header__cta { padding: 0.55rem 0.95rem; font-size: 0.82rem; }
	.wg-header .wg-header__cta-text { display: none; }
	.wg-header .wg-header__cta i { font-size: 1.1rem; margin: 0; }
}

/* =========================================================================
   Main navigation (horizontal menu)
   ========================================================================= */
.wg-header .main-navbar,
.main-navbar {
	background: #fff !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: block;
}
.wg-header .main-navbar > .container,
.main-navbar > .container {
	padding-top: 0;
	padding-bottom: 0;
}
.wg-header .navbar-horizontal-menu,
.main-navbar .navbar-horizontal-menu {
	padding: 0;
	margin: 0;
}
.wg-header .navbar-horizontal-menu {
	display: flex;
	justify-content: center;
	width: 100%;
}
.wg-header .navbar-nav-horizontal,
.main-navbar .navbar-nav-horizontal {
	gap: 0.4rem;
}
.wg-header .navbar-nav-horizontal a,
.main-navbar .navbar-nav-horizontal a {
	font: 600 0.82rem var(--font-primary, var(--font-primary)) !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-primary-dark-teal) !important;
	padding: 0.55rem 0.95rem !important;
	border-radius: 999px;
	transition: background 0.25s var(--wg-header-ease), color 0.25s var(--wg-header-ease);
}
.wg-header .navbar-nav-horizontal a:hover,
.main-navbar .navbar-nav-horizontal a:hover {
	background: rgba(238, 204, 170, 0.25) !important;
	color: var(--color-primary-dark-teal) !important;
}
.wg-header .navbar-nav-horizontal .current-menu-item > a,
.main-navbar .navbar-nav-horizontal .current-menu-item > a {
	background: var(--color-secondary-light-pink) !important;
	color: var(--color-primary-dark-teal) !important;
	border-bottom: 0 !important;
}

@media (max-width: 991.98px) {
	.wg-header .main-navbar,
	.main-navbar {
		padding: 0 !important;
	}
	.wg-header .navbar-horizontal-menu {
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.wg-header .navbar-horizontal-menu::-webkit-scrollbar { display: none; }
	.wg-header .navbar-nav-horizontal {
		flex-wrap: nowrap;
		padding: 0 0.5rem;
	}
	.wg-header .navbar-nav-horizontal a,
	.main-navbar .navbar-nav-horizontal a {
		font-size: 0.72rem !important;
		padding: 0.45rem 0.75rem !important;
		white-space: nowrap;
	}
}

/* =========================================================================
   Mobile compaction
   ========================================================================= */
@media (max-width: 991.98px) {
	.wg-header .wg-header__bar {
		padding: 0.55rem 0;
	}
	.wg-header .wg-header__row {
		min-height: 56px;
		gap: 0.6rem;
	}
	.wg-header .wg-header__brand {
		gap: 0.4rem;
	}
	.wg-header .wg-header__toggler {
		width: 40px;
		height: 40px;
		border-radius: 10px;
	}
	.wg-header .wg-header__logo img,
	.wg-header .wg-header__logo .custom-logo,
	.wg-header .wg-header__logo .custom-logo-link img {
		max-height: 58px;
	}
	.wg-header .wg-header__icon-btn {
		width: 40px;
		height: 40px;
		border-radius: 12px;
		font-size: 1.15rem;
	}
	.wg-header .wg-header__icon-btn--account {
		width: 44px;
		height: 44px;
		font-size: 1.45rem;
	}
}

@media (max-width: 419px) {
	.wg-header .wg-header__row { gap: 0.4rem; }
	.wg-header .wg-header__brand { gap: 0.3rem; }
	.wg-header .wg-header__logo img,
	.wg-header .wg-header__logo .custom-logo,
	.wg-header .wg-header__logo .custom-logo-link img {
		max-height: 50px;
	}
	.wg-header .wg-header__actions { gap: 0.3rem; }
	.wg-header .wg-header__icon-btn { width: 38px; height: 38px; font-size: 1.05rem; }
	.wg-header .wg-header__icon-btn--account { width: 42px; height: 42px; font-size: 1.35rem; }
}

/* =========================================================================
   Front-page hero — full-bleed background image, boutique CTAs
   ========================================================================= */
.wg-hero {
	position: relative;
	width: 100%;
	min-height: clamp(560px, 78vh, 820px);
	overflow: hidden;
	color: #fff;
	display: flex;
	align-items: center;
	isolation: isolate;
}

/* Background image fills the section */
.wg-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
}
.wg-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	display: block;
}

/* Soft warm gradient overlay so the type stays readable on any photo */
.wg-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(120deg, rgba(61, 81, 85, 0.62) 0%, rgba(61, 81, 85, 0.35) 45%, rgba(61, 81, 85, 0.0) 75%),
		linear-gradient(180deg, rgba(61, 81, 85, 0.0) 30%, rgba(61, 81, 85, 0.45) 100%);
	pointer-events: none;
}

.wg-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 4rem 0 5rem;
}

.wg-hero__content {
	max-width: 640px;
}

/* Eyebrow pill */
.wg-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #fff;
	font: 600 0.72rem var(--font-primary, var(--font-primary));
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
}
.wg-hero__eyebrow i { color: var(--color-primary-light-peach); font-size: 0.85rem; }

/* Headline — Mermaid display serif for that playful boutique signature */
.wg-hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.75rem, 6vw, 5rem);
	color: #fff;
	margin: 0 0 1rem;
	font-weight: normal;
	line-height: 1.04;
	letter-spacing: -0.005em;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.wg-hero__lede {
	font-family: var(--font-primary);
	font-style: italic;
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	color: rgba(255, 255, 255, 0.92);
	max-width: 540px;
	margin: 0 0 2rem;
	line-height: 1.55;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

/* CTAs */
.wg-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 2rem;
}
.wg-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.85rem 1.6rem 0.85rem 0.85rem;
	min-height: 68px;
	min-width: 240px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--color-primary-dark-teal);
	text-decoration: none;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
	transition: transform 0.3s var(--wg-header-ease, cubic-bezier(0.4,0,0.2,1)), box-shadow 0.3s var(--wg-header-ease, cubic-bezier(0.4,0,0.2,1)), background 0.3s var(--wg-header-ease, cubic-bezier(0.4,0,0.2,1));
	position: relative;
	overflow: hidden;
}
.wg-hero__btn:hover,
.wg-hero__btn:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
	background: #fff;
	color: var(--color-primary-dark-teal);
	outline: none;
}

.wg-hero__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	color: var(--color-primary-dark-teal);
	font-size: 1.25rem;
	flex-shrink: 0;
	transition: transform 0.35s var(--wg-header-ease, cubic-bezier(0.4,0,0.2,1));
	overflow: hidden;
	padding: 6px;
}
.wg-hero__btn-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.wg-hero__btn--puppies .wg-hero__btn-icon {
	background: linear-gradient(135deg, var(--color-secondary-light-pink) 0%, #efc4c1 100%);
}
.wg-hero__btn--kittens .wg-hero__btn-icon {
	background: linear-gradient(135deg, var(--color-primary-light-peach) 0%, #f4d4b1 100%);
}
.wg-hero__btn:hover .wg-hero__btn-icon {
	transform: scale(1.06) rotate(-4deg);
}

.wg-hero__btn-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	flex: 1;
}
.wg-hero__btn-label {
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.15;
	letter-spacing: 0.005em;
	color: var(--color-primary-dark-teal);
}
.wg-hero__btn-sub {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.78rem;
	color: var(--color-primary-dark-grey);
	line-height: 1.2;
	margin-top: 0.1rem;
}
.wg-hero__btn-arrow {
	color: var(--color-primary-dark-teal);
	font-size: 1.05rem;
	flex-shrink: 0;
	opacity: 0.55;
	transition: transform 0.35s var(--wg-header-ease, cubic-bezier(0.4,0,0.2,1)), opacity 0.35s var(--wg-header-ease, cubic-bezier(0.4,0,0.2,1));
}
.wg-hero__btn:hover .wg-hero__btn-arrow {
	transform: translateX(4px);
	opacity: 1;
}

/* Trust row */
.wg-hero__trust {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 0.7rem 1.15rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: #fff;
	font: 500 0.85rem var(--font-primary, var(--font-primary));
	border: 1px solid rgba(255, 255, 255, 0.22);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.wg-hero__trust-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
}
.wg-hero__trust-item i { color: var(--color-primary-light-peach); }
.wg-hero__trust-stars {
	display: inline-flex;
	gap: 0.1rem;
	color: #fbd14b;
	font-size: 0.92rem;
}
.wg-hero__trust-text strong { font-weight: 700; margin-right: 0.15rem; }
.wg-hero__trust-divider {
	width: 1px;
	height: 1.1rem;
	background: rgba(255, 255, 255, 0.35);
}

/* "Show me the cuties" floating scroll cue */
.wg-hero__scroll {
	position: absolute;
	bottom: 1.75rem;
	right: 1.75rem;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.5rem 0.5rem 0.5rem 1.25rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(14px) saturate(1.2);
	-webkit-backdrop-filter: blur(14px) saturate(1.2);
	color: #fff !important;
	text-decoration: none;
	font: 600 0.9rem var(--font-primary);
	letter-spacing: 0.005em;
	border: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
	animation: wg-hero-float 3.4s ease-in-out infinite;
	transition: background 0.3s var(--wg-header-ease, cubic-bezier(0.4,0,0.2,1)), transform 0.3s var(--wg-header-ease, cubic-bezier(0.4,0,0.2,1)), box-shadow 0.3s var(--wg-header-ease, cubic-bezier(0.4,0,0.2,1));
}
.wg-hero__scroll:hover,
.wg-hero__scroll:focus-visible {
	background: rgba(255, 255, 255, 0.28);
	color: #fff !important;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
	outline: none;
}
.wg-hero__scroll-text {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.95rem;
	color: #fff;
	white-space: nowrap;
}
.wg-hero__scroll-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--color-primary-light-peach);
	color: var(--color-primary-dark-teal);
	font-size: 1.1rem;
	flex-shrink: 0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
	animation: wg-hero-arrow 1.6s ease-in-out infinite;
}
.wg-hero__scroll:hover .wg-hero__scroll-icon {
	background: var(--color-secondary-light-pink);
}
@keyframes wg-hero-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-6px); }
}
@keyframes wg-hero-arrow {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(3px); }
}
@media (max-width: 767.98px) {
	.wg-hero__scroll { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.wg-hero__scroll,
	.wg-hero__scroll-icon { animation: none !important; }
}

/* Smooth-scroll for in-page anchors + give the featured section a comfortable
   landing pad so the heading isn't flush against the top. */
html { scroll-behavior: smooth; }
#featured-pets { scroll-margin-top: 1.5rem; }

/* =========================================================================
   Viewport hygiene — kill any horizontal scroll on mobile and make sure
   every section has comfortable padding on small screens.
   ========================================================================= */
html, body {
	overflow-x: hidden;
	max-width: 100%;
}
body { position: relative; }

/* Bump the Bootstrap container side-padding on mobile so headings/text
   never sit flush against the edge of the screen. */
@media (max-width: 767.98px) {
	.wg-hero .container,
	.wg-dreaming .container,
	.wg-featured .container,
	.wg-tails .container,
	.wg-concierge .container,
	.wg-blog .container,
	.wg-footer .container,
	.wg-product .container,
	main > .container,
	main .container {
		padding-left: 0.25rem !important;
		padding-right: 0.25rem !important;
	}
	/* Carousel tracks: pull edges inside so they don't graze the screen */
	.wg-featured__track,
	.wg-tails__track,
	.wg-related__track {
		margin-left: -0.4rem !important;
		margin-right: -0.4rem !important;
		padding-left: 0.4rem !important;
		padding-right: 0.4rem !important;
	}
}
@media (max-width: 419px) {
	.wg-hero .container,
	.wg-dreaming .container,
	.wg-featured .container,
	.wg-tails .container,
	.wg-concierge .container,
	.wg-blog .container,
	.wg-footer .container,
	.wg-product .container {
		padding-left: 0.25rem !important;
		padding-right: 0.25rem !important;
	}
}

/* Lock away anything that might leak — make sure no hero/section produces
   a wider-than-viewport child via positioning or transform. */
.wg-hero,
.wg-featured,
.wg-tails,
.wg-blog,
.wg-concierge,
.wg-dreaming {
	overflow: hidden;
	max-width: 100%;
}

/* Tablet */
@media (max-width: 991.98px) {
	.wg-hero { min-height: clamp(540px, 86vh, 760px); }
	.wg-hero__inner { padding: 3rem 0 4rem; }
	.wg-hero__overlay {
		background:
			linear-gradient(180deg, rgba(61, 81, 85, 0.45) 0%, rgba(61, 81, 85, 0.55) 60%, rgba(61, 81, 85, 0.78) 100%);
	}
	.wg-hero__content { max-width: 100%; }
}

/* Mobile — hero hugs its content (image is just the visual frame, not full-screen) */
@media (max-width: 767.98px) {
	.wg-hero {
		min-height: 0 !important;
		display: block;
	}
	.wg-hero__inner {
		display: block;
		padding: 1.75rem 0 2rem;
	}
	.wg-hero__overlay {
		background:
			linear-gradient(180deg, rgba(61, 81, 85, 0.72) 0%, rgba(61, 81, 85, 0.45) 60%, rgba(61, 81, 85, 0.6) 100%);
	}
	.wg-hero__bg img { object-position: center 35%; }
	.wg-hero__content {
		max-width: 100%;
	}
	.wg-hero__eyebrow {
		font-size: 0.66rem;
		padding: 0.32rem 0.8rem;
		margin-bottom: 0.85rem;
	}
	.wg-hero__title {
		font-size: clamp(2.4rem, 9vw, 3.4rem);
		margin-bottom: 0.65rem;
	}
	.wg-hero__lede {
		font-size: 0.95rem;
		margin-bottom: 1.4rem;
	}
	.wg-hero__cta {
		flex-direction: column;
		gap: 0.7rem;
		margin-bottom: 1.25rem;
	}
	.wg-hero__btn {
		width: 100%;
		min-width: 0;
		min-height: 64px;
		padding: 0.7rem 1.25rem 0.7rem 0.7rem;
		border-radius: 16px;
	}
	.wg-hero__btn-icon { width: 48px; height: 48px; font-size: 1.15rem; padding: 5px; }
	.wg-hero__btn-label { font-size: 0.95rem; }
	.wg-hero__btn-sub { font-size: 0.74rem; }
	.wg-hero__trust {
		flex-wrap: wrap;
		gap: 0.6rem 0.85rem;
		font-size: 0.78rem;
		padding: 0.55rem 0.95rem;
	}
	.wg-hero__trust-divider { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.wg-hero__btn,
	.wg-hero__btn-icon,
	.wg-hero__btn-arrow {
		transition: none !important;
	}
	.wg-hero__btn:hover { transform: none !important; }
}

/* =========================================================================
   Shared boutique section base
   ========================================================================= */
.wg-dreaming,
.wg-featured,
.wg-tails,
.wg-concierge {
	--wg-fp-radius: 18px;
	--wg-fp-radius-lg: 22px;
	--wg-fp-shadow: 0 6px 20px rgba(61, 81, 85, 0.06);
	--wg-fp-shadow-lift: 0 14px 36px rgba(61, 81, 85, 0.12);
	--wg-fp-stroke: rgba(61, 81, 85, 0.1);
	--wg-fp-cream: #FFF6F4;
	--wg-fp-ease: cubic-bezier(0.4, 0, 0.2, 1);
	padding: 5rem 0;
}
@media (max-width: 991.98px) {
	.wg-dreaming,
	.wg-featured,
	.wg-tails,
	.wg-concierge { padding: 3.5rem 0; }
}
@media (max-width: 575.98px) {
	.wg-dreaming,
	.wg-featured,
	.wg-tails,
	.wg-concierge { padding: 2.75rem 0; }
}

/* =========================================================================
   "Three ways to begin" — Dreaming cards
   ========================================================================= */
.wg-dreaming { background: linear-gradient(180deg, #fff 0%, var(--wg-fp-cream) 100%); }
.wg-dreaming__header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.wg-dreaming__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font: 600 0.72rem var(--font-primary, var(--font-primary));
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-primary-dark-grey);
	margin-bottom: 0.5rem;
}
.wg-dreaming__eyebrow i { color: var(--color-secondary-light-pink); font-size: 0.85rem; }
.wg-dreaming__title {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3.5vw, 2.6rem);
	color: var(--color-primary-dark-teal);
	margin: 0;
	font-weight: normal;
	line-height: 1.1;
}
.wg-dreaming__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}
.wg-dreaming__card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	padding: 1.4rem 1.5rem;
	background: #fff;
	border-radius: var(--wg-fp-radius);
	border: 1px solid var(--wg-fp-stroke);
	box-shadow: var(--wg-fp-shadow);
	color: var(--color-primary-dark-teal);
	text-decoration: none;
	transition: transform 0.3s var(--wg-fp-ease), box-shadow 0.3s var(--wg-fp-ease), border-color 0.3s var(--wg-fp-ease);
	position: relative;
	overflow: hidden;
}
.wg-dreaming__card::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	background: linear-gradient(135deg, transparent 50%, rgba(238, 204, 170, 0.18) 100%);
	opacity: 0;
	transition: opacity 0.3s var(--wg-fp-ease);
}
.wg-dreaming__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--wg-fp-shadow-lift);
	border-color: var(--color-primary-light-peach);
	color: var(--color-primary-dark-teal);
}
.wg-dreaming__card:hover::before { opacity: 1; }

.wg-dreaming__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	flex-shrink: 0;
	padding: 8px;
	transition: transform 0.4s var(--wg-fp-ease);
}
.wg-dreaming__icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.wg-dreaming__card--puppy .wg-dreaming__icon {
	background: linear-gradient(135deg, var(--color-secondary-light-pink) 0%, #efc4c1 100%);
}
.wg-dreaming__card--kitten .wg-dreaming__icon {
	background: linear-gradient(135deg, var(--color-primary-light-peach) 0%, #f4d4b1 100%);
}
.wg-dreaming__card--concierge .wg-dreaming__icon {
	background: linear-gradient(135deg, #b8c3be 0%, #cbd5d0 100%);
}
.wg-dreaming__card:hover .wg-dreaming__icon { transform: scale(1.05) rotate(-3deg); }

.wg-dreaming__card-text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
	z-index: 1;
}
.wg-dreaming__card-title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-primary-dark-teal);
}
.wg-dreaming__card-sub {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.85rem;
	color: var(--color-primary-dark-grey);
	line-height: 1.35;
}
.wg-dreaming__card-arrow {
	color: var(--color-primary-dark-teal);
	font-size: 1.05rem;
	opacity: 0.55;
	transition: transform 0.35s var(--wg-fp-ease), opacity 0.35s var(--wg-fp-ease);
	flex-shrink: 0;
	z-index: 1;
}
.wg-dreaming__card:hover .wg-dreaming__card-arrow {
	opacity: 1;
	transform: translateX(4px);
}

@media (max-width: 991.98px) {
	.wg-dreaming__grid { gap: 0.85rem; }
}
@media (max-width: 767.98px) {
	.wg-dreaming { padding: 1.75rem 0 !important; }
	.wg-dreaming__header { margin-bottom: 1.1rem; }
	.wg-dreaming__eyebrow { font-size: 0.66rem; margin-bottom: 0.3rem; }
	.wg-dreaming__title { font-size: clamp(1.4rem, 5vw, 1.85rem); }
	.wg-dreaming__card {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 0.5rem;
		padding: 1rem 0.75rem 1.1rem;
	}
	.wg-dreaming__icon { width: 50px; height: 50px; padding: 5px; }
	.wg-dreaming__card-title { font-size: 0.78rem; line-height: 1.2; }
	.wg-dreaming__card-sub { display: none; }
	.wg-dreaming__card-arrow { display: none; }
}
@media (max-width: 575.98px) {
	.wg-dreaming { padding: 1.5rem 0 !important; }
}

/* =========================================================================
   Featured Pets carousel
   ========================================================================= */
.wg-featured {
	background: linear-gradient(180deg, var(--wg-fp-cream) 0%, rgba(217, 178, 175, 0.18) 100%);
	overflow: hidden;
}
.wg-featured__header {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2.25rem;
}
@media (min-width: 768px) {
	.wg-featured__header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
}
.wg-featured__heading { display: flex; flex-direction: column; gap: 0.4rem; }
.wg-featured__eyebrow {
	font: 600 0.72rem var(--font-primary, var(--font-primary));
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-primary-dark-grey);
}
.wg-featured__title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.85rem);
	color: var(--color-primary-dark-teal);
	margin: 0;
	font-weight: normal;
	line-height: 1.05;
}
.wg-featured__controls {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.wg-featured__view-all {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font: 600 0.92rem var(--font-primary, var(--font-primary));
	color: var(--color-primary-dark-teal);
	text-decoration: underline;
	text-decoration-color: var(--color-primary-light-peach);
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
	white-space: nowrap;
}
.wg-featured__view-all:hover {
	color: var(--color-primary-dark-teal);
	text-decoration-color: var(--color-secondary-light-pink);
}
.wg-featured__nav { display: none; gap: 0.55rem; }
@media (min-width: 768px) { .wg-featured__nav { display: flex; } }
.wg-featured__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--color-primary-light-peach);
	color: var(--color-primary-dark-teal);
	border: 0;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.25s var(--wg-fp-ease), background 0.25s var(--wg-fp-ease), opacity 0.25s var(--wg-fp-ease);
}
.wg-featured__nav-btn:hover {
	background: #f4d4b1;
	transform: translateY(-2px);
}
.wg-featured__nav-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

.wg-featured__track {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 0.5rem 0 1.5rem;
	margin: 0 -1rem;
	padding-left: 1rem;
	padding-right: 1rem;
	scrollbar-width: thin;
	scrollbar-color: var(--color-secondary-light-pink) transparent;
}
.wg-featured__track::-webkit-scrollbar { height: 6px; }
.wg-featured__track::-webkit-scrollbar-thumb {
	background: var(--color-secondary-light-pink);
	border-radius: 999px;
}
.wg-featured__slide {
	flex: 0 0 calc(85% - 1rem);
	scroll-snap-align: start;
}
@media (min-width: 576px) { .wg-featured__slide { flex-basis: calc(50% - 0.625rem); } }
@media (min-width: 768px) { .wg-featured__slide { flex-basis: calc(50% - 0.625rem); } }
@media (min-width: 992px) { .wg-featured__slide { flex-basis: calc(33.333% - 0.835rem); } }
@media (min-width: 1280px) { .wg-featured__slide { flex-basis: calc(25% - 0.94rem); } }
.wg-featured__slide > * { height: 100%; }
.wg-featured__sentinel {
	flex: 0 0 1px;
	width: 1px;
	height: 1px;
	pointer-events: none;
}
.wg-featured__empty {
	font-family: var(--font-display);
	font-style: italic;
	color: var(--color-primary-dark-grey);
	text-align: center;
	padding: 2rem 0;
}

/* =========================================================================
   Happy Tails — testimonials carousel
   ========================================================================= */
.wg-tails {
	background: linear-gradient(180deg, rgba(238, 204, 170, 0.14) 0%, var(--wg-fp-cream) 100%);
	overflow: hidden;
}
.wg-tails__header {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2.5rem;
	align-items: center;
	text-align: center;
}
@media (min-width: 992px) {
	.wg-tails__header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		text-align: left;
	}
}
.wg-tails__heading {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	align-items: center;
}
@media (min-width: 992px) { .wg-tails__heading { align-items: flex-start; } }
.wg-tails__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font: 600 0.72rem var(--font-primary, var(--font-primary));
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary-dark-grey);
}
.wg-tails__eyebrow i { color: var(--color-secondary-light-pink); }
.wg-tails__title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.85rem);
	color: var(--color-primary-dark-teal);
	margin: 0;
	font-weight: normal;
	line-height: 1.05;
}
.wg-tails__rating {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font: 500 0.9rem var(--font-primary, var(--font-primary));
	color: var(--color-primary-dark-grey);
	margin: 0;
}
.wg-tails__rating-stars { display: inline-flex; gap: 0.1rem; color: #f4b400; font-size: 0.95rem; }
.wg-tails__rating strong { color: var(--color-primary-dark-teal); font-weight: 700; }
.wg-tails__nav { display: none; gap: 0.55rem; }
@media (min-width: 992px) { .wg-tails__nav { display: flex; } }
.wg-tails__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--color-secondary-light-pink);
	color: var(--color-primary-dark-teal);
	border: 0;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.25s var(--wg-fp-ease), background 0.25s var(--wg-fp-ease), opacity 0.25s var(--wg-fp-ease);
}
.wg-tails__nav-btn:hover { background: #ceabaa; transform: translateY(-2px); }
.wg-tails__nav-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

.wg-tails__track {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 0.5rem 0 1.5rem;
	margin: 0 -1rem;
	padding-left: 1rem;
	padding-right: 1rem;
	scrollbar-width: thin;
	scrollbar-color: var(--color-secondary-light-pink) transparent;
}
.wg-tails__track::-webkit-scrollbar { height: 6px; }
.wg-tails__track::-webkit-scrollbar-thumb {
	background: var(--color-secondary-light-pink);
	border-radius: 999px;
}
.wg-tails__card {
	flex: 0 0 calc(85% - 1rem);
	scroll-snap-align: start;
	position: relative;
	background: #fff;
	border-radius: var(--wg-fp-radius-lg);
	padding: 2rem 1.85rem 1.65rem;
	box-shadow: var(--wg-fp-shadow);
	border: 1px solid var(--wg-fp-stroke);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transition: transform 0.3s var(--wg-fp-ease), box-shadow 0.3s var(--wg-fp-ease);
}
.wg-tails__card:hover {
	transform: translateY(-3px);
	box-shadow: var(--wg-fp-shadow-lift);
}
@media (min-width: 576px) { .wg-tails__card { flex-basis: calc(60% - 0.5rem); } }
@media (min-width: 768px) { .wg-tails__card { flex-basis: calc(50% - 0.625rem); } }
@media (min-width: 1100px) { .wg-tails__card { flex-basis: calc(33.333% - 0.835rem); } }

.wg-tails__quote-mark {
	position: absolute;
	top: -0.4rem;
	left: 1.25rem;
	font-family: var(--font-display);
	font-size: 5rem;
	line-height: 1;
	color: var(--color-secondary-light-pink);
	pointer-events: none;
	font-weight: 700;
}
.wg-tails__stars {
	display: inline-flex;
	gap: 0.1rem;
	color: #f4b400;
	font-size: 0.95rem;
	z-index: 1;
}
.wg-tails__quote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.02rem;
	line-height: 1.6;
	color: var(--color-primary-dark-teal);
	margin: 0;
	padding: 0;
	border: 0;
	z-index: 1;
}
.wg-tails__quote p { margin: 0 0 0.5rem; }
.wg-tails__quote p:last-child { margin: 0; }

.wg-tails__footer {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px dashed var(--wg-fp-stroke);
}
.wg-tails__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-secondary-light-pink) 0%, var(--color-primary-light-peach) 100%);
	color: var(--color-primary-dark-teal);
	font-family: var(--font-display);
	font-size: 1.25rem;
	flex-shrink: 0;
}
.wg-tails__author { display: flex; flex-direction: column; gap: 0.05rem; flex: 1; min-width: 0; }
.wg-tails__author-name {
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--color-primary-dark-teal);
	line-height: 1.2;
}
.wg-tails__author-meta {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.78rem;
	color: var(--color-primary-dark-grey);
	line-height: 1.2;
}
.wg-tails__verified { flex-shrink: 0; opacity: 0.85; }

@media (max-width: 575.98px) {
	.wg-tails__card { padding: 1.65rem 1.4rem 1.4rem; }
	.wg-tails__quote { font-size: 0.95rem; }
}

/* =========================================================================
   Concierge Level Care
   ========================================================================= */
.wg-concierge {
	background: linear-gradient(180deg, var(--wg-fp-cream) 0%, #fff 100%);
}
.wg-concierge__header {
	max-width: 720px;
	margin: 0 auto 3rem;
	text-align: center;
}
.wg-concierge__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font: 600 0.72rem var(--font-primary, var(--font-primary));
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-primary-dark-grey);
	margin-bottom: 0.6rem;
}
.wg-concierge__eyebrow i { color: var(--color-primary-light-peach); font-size: 0.85rem; }
.wg-concierge__title {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.2vw, 3rem);
	color: var(--color-primary-dark-teal);
	margin: 0 0 0.85rem;
	font-weight: normal;
	line-height: 1.05;
}
.wg-concierge__lede {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.05rem;
	color: var(--color-primary-dark-grey);
	margin: 0;
	line-height: 1.55;
}

.wg-concierge__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
	.wg-concierge__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.wg-concierge__feature {
	background: #fff;
	border: 1px solid var(--wg-fp-stroke);
	border-radius: var(--wg-fp-radius-lg);
	padding: 2rem 1.75rem;
	box-shadow: var(--wg-fp-shadow);
	text-align: center;
	transition: transform 0.3s var(--wg-fp-ease), box-shadow 0.3s var(--wg-fp-ease), border-color 0.3s var(--wg-fp-ease);
}
.wg-concierge__feature:hover {
	transform: translateY(-4px);
	box-shadow: var(--wg-fp-shadow-lift);
	border-color: var(--color-primary-light-peach);
}
.wg-concierge__feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-primary-light-peach) 0%, rgba(217, 178, 175, 0.6) 100%);
	color: var(--color-primary-dark-teal);
	font-size: 1.6rem;
	margin: 0 auto 1.1rem;
	transition: transform 0.4s var(--wg-fp-ease);
}
.wg-concierge__feature:hover .wg-concierge__feature-icon { transform: scale(1.06) rotate(-4deg); }
.wg-concierge__feature-title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-primary-dark-teal);
	margin: 0 0 0.55rem;
}
.wg-concierge__feature-text {
	font-family: var(--font-primary);
	font-size: 0.95rem;
	color: var(--color-primary-dark-grey);
	line-height: 1.6;
	margin: 0;
}

.wg-concierge__footer { text-align: center; }
.wg-concierge__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.9rem 1.5rem 0.9rem 0.9rem;
	background: var(--color-primary-dark-teal);
	color: #fff;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(61, 81, 85, 0.25);
	transition: transform 0.25s var(--wg-fp-ease), box-shadow 0.25s var(--wg-fp-ease), background 0.25s var(--wg-fp-ease);
}
.wg-concierge__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(61, 81, 85, 0.32);
	background: #2f4044;
	color: #fff;
}
.wg-concierge__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--color-secondary-light-pink);
	color: var(--color-primary-dark-teal);
	font-size: 0.95rem;
	flex-shrink: 0;
}
.wg-concierge__cta-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.wg-concierge__cta-label {
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 0.95rem;
}
.wg-concierge__cta-sub {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.78rem;
	opacity: 0.85;
	margin-top: 0.1rem;
}
@media (max-width: 575.98px) {
	.wg-concierge__feature { padding: 1.5rem 1.25rem; }
	.wg-concierge__cta { padding: 0.7rem 1.25rem 0.7rem 0.7rem; gap: 0.6rem; }
	.wg-concierge__cta-icon { width: 32px; height: 32px; font-size: 0.85rem; }
}

/* =========================================================================
   Blog — "Latest from the boutique"
   ========================================================================= */
.wg-blog {
	padding: 5rem 0;
	background: linear-gradient(180deg, var(--wg-fp-cream, #FFF6F4) 0%, #fff 100%);
}
.wg-blog__header {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 2.75rem;
}
@media (min-width: 768px) {
	.wg-blog__header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
}
.wg-blog__heading { display: flex; flex-direction: column; gap: 0.5rem; max-width: 640px; }
.wg-blog__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font: 600 0.72rem var(--font-primary);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-primary-dark-grey);
}
.wg-blog__eyebrow i { color: var(--color-secondary-light-pink); font-size: 0.85rem; }
.wg-blog__title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.85rem);
	color: var(--color-primary-dark-teal);
	margin: 0;
	font-weight: normal;
	line-height: 1.05;
}
.wg-blog__lede {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--color-primary-dark-grey);
	margin: 0;
	line-height: 1.55;
}
.wg-blog__view-all {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.7rem 1.25rem;
	background: var(--color-primary-dark-teal);
	color: #fff;
	border-radius: 999px;
	font: 700 0.88rem var(--font-primary);
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(61, 81, 85, 0.22);
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
	flex-shrink: 0;
}
.wg-blog__view-all:hover {
	background: #2f4044;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(61, 81, 85, 0.32);
}
.wg-blog__view-all i { transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
.wg-blog__view-all:hover i { transform: translateX(3px); }

/* Asymmetric grid: featured (large left) + 2 stacked right */
.wg-blog__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 992px) {
	.wg-blog__grid {
		grid-template-columns: 1.5fr 1fr;
		grid-template-rows: 1fr 1fr;
		gap: 1.5rem;
	}
	.wg-blog__card--featured {
		grid-row: 1 / span 2;
	}
	.wg-blog__card--featured .wg-blog__card-media { aspect-ratio: 4 / 3; }
	.wg-blog__card--featured .wg-blog__card-title { font-size: 1.6rem; }
	.wg-blog__card--featured .wg-blog__card-excerpt { -webkit-line-clamp: 4; line-clamp: 4; }
}

.wg-blog__card {
	background: #fff;
	border: 1px solid rgba(61, 81, 85, 0.08);
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 6px 22px rgba(61, 81, 85, 0.06);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}
@media (min-width: 992px) {
	.wg-blog__card:not(.wg-blog__card--featured) {
		flex-direction: row;
	}
	.wg-blog__card:not(.wg-blog__card--featured) .wg-blog__card-media {
		flex: 0 0 40%;
		aspect-ratio: auto;
	}
	.wg-blog__card:not(.wg-blog__card--featured) .wg-blog__card-body {
		flex: 1 1 auto;
		padding: 1.25rem 1.5rem;
	}
	.wg-blog__card:not(.wg-blog__card--featured) .wg-blog__card-excerpt {
		-webkit-line-clamp: 2;
		line-clamp: 2;
	}
}
.wg-blog__card:hover {
	transform: translateY(-4px);
	border-color: rgba(238, 204, 170, 0.6);
	box-shadow: 0 18px 40px rgba(61, 81, 85, 0.12);
}

.wg-blog__card-media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--wg-fp-cream, #FFF6F4);
	aspect-ratio: 16 / 10;
}
.wg-blog__card-media img,
.wg-blog__card-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block;
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.wg-blog__card:hover .wg-blog__card-image,
.wg-blog__card:hover .wg-blog__card-media img {
	transform: scale(1.05);
}
.wg-blog__card-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--color-secondary-light-pink) 0%, var(--color-primary-light-peach) 100%);
	color: rgba(61, 81, 85, 0.55);
	font-size: 3rem;
}
.wg-blog__card-cat {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--color-primary-dark-teal);
	font: 700 0.66rem var(--font-primary);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	box-shadow: 0 2px 10px rgba(61, 81, 85, 0.15);
	backdrop-filter: blur(8px);
}

.wg-blog__card-body {
	padding: 1.5rem 1.5rem 1.65rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	flex: 1 1 auto;
}
.wg-blog__card-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	font: 500 0.78rem var(--font-primary);
	color: var(--color-primary-dark-grey);
}
.wg-blog__card-meta i { color: var(--color-secondary-light-pink); margin-right: 0.3rem; font-size: 0.85rem; }
.wg-blog__card-meta-sep { color: var(--color-primary-dark-grey); opacity: 0.4; }

.wg-blog__card-title {
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--color-primary-dark-teal);
	margin: 0;
	line-height: 1.25;
}
.wg-blog__card-title a {
	color: inherit;
	text-decoration: none;
	background-image: linear-gradient(var(--color-primary-light-peach), var(--color-primary-light-peach));
	background-position: 0 100%;
	background-size: 0% 2px;
	background-repeat: no-repeat;
	transition: background-size 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.wg-blog__card-title a:hover {
	color: var(--color-primary-dark-teal);
	background-size: 100% 2px;
}

.wg-blog__card-excerpt {
	font-family: var(--font-primary);
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--color-primary-dark-grey);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.wg-blog__card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: auto;
	padding-top: 0.5rem;
	font: 700 0.85rem var(--font-primary);
	color: var(--color-primary-dark-teal);
	text-decoration: underline;
	text-decoration-color: var(--color-primary-light-peach);
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
}
.wg-blog__card-link i { color: var(--color-secondary-light-pink); transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
.wg-blog__card-link:hover {
	color: var(--color-primary-dark-teal);
	text-decoration-color: var(--color-secondary-light-pink);
}
.wg-blog__card-link:hover i { transform: translateX(3px); }

@media (max-width: 991.98px) {
	.wg-blog { padding: 3.5rem 0; }
}
@media (max-width: 575.98px) {
	.wg-blog { padding: 2.75rem 0; }
	.wg-blog__card-body { padding: 1.15rem 1.25rem 1.4rem; }
	.wg-blog__card-title { font-size: 1.1rem; }
	.wg-blog__view-all { width: 100%; justify-content: center; }
}

/* =========================================================================
   Footer — Waggles boutique
   ========================================================================= */
.wg-footer {
	--wg-footer-bg: #235868;
	--wg-footer-bg-alt: #19414C;
	--wg-footer-stroke: rgba(255, 255, 255, 0.1);
	--wg-footer-text: rgba(255, 255, 255, 0.78);
	--wg-footer-heading: #fff;
	--wg-footer-accent: var(--color-primary-light-peach);
	--wg-footer-pink: var(--color-secondary-light-pink);
	--wg-footer-ease: cubic-bezier(0.4, 0, 0.2, 1);
	background: var(--wg-footer-bg);
	color: var(--wg-footer-text);
	padding: 0;
	position: relative;
}
.wg-footer * { box-sizing: border-box; }
.wg-footer a { color: inherit; }

/* CTA strip — sits at top of footer, calls users to action */
.wg-footer__cta {
	background: linear-gradient(135deg, var(--wg-footer-pink) 0%, #efc4c1 50%, var(--wg-footer-accent) 100%);
	padding: 3rem 0;
	color: var(--color-primary-dark-teal);
	position: relative;
	overflow: hidden;
}
.wg-footer__cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
	pointer-events: none;
}
.wg-footer__cta-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	text-align: center;
	position: relative;
	z-index: 1;
}
@media (min-width: 992px) {
	.wg-footer__cta-inner {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}
.wg-footer__cta-text { display: flex; flex-direction: column; gap: 0.4rem; max-width: 640px; }
.wg-footer__cta-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font: 700 0.72rem var(--font-primary);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-primary-dark-teal);
	opacity: 0.78;
	justify-content: center;
}
@media (min-width: 992px) { .wg-footer__cta-eyebrow { justify-content: flex-start; } }
.wg-footer__cta-eyebrow i { font-size: 0.85rem; }
.wg-footer__cta-title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 3.5vw, 2.6rem);
	color: var(--color-primary-dark-teal);
	margin: 0;
	font-weight: normal;
	line-height: 1.05;
}
.wg-footer__cta-lede {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--color-primary-dark-teal);
	opacity: 0.85;
	margin: 0;
}
.wg-footer__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}
.wg-footer__cta-primary,
.wg-footer__cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 1.5rem;
	border-radius: 999px;
	font: 700 0.92rem var(--font-primary);
	text-decoration: none;
	letter-spacing: 0.005em;
	transition: transform 0.25s var(--wg-footer-ease), box-shadow 0.25s var(--wg-footer-ease), background 0.25s var(--wg-footer-ease);
	white-space: nowrap;
}
.wg-footer a.wg-footer__cta-primary,
.wg-footer .wg-footer__cta-primary {
	background: var(--color-primary-dark-teal) !important;
	color: #fff !important;
	box-shadow: 0 8px 22px rgba(61, 81, 85, 0.3);
}
.wg-footer a.wg-footer__cta-primary:hover,
.wg-footer .wg-footer__cta-primary:hover {
	transform: translateY(-2px);
	background: #2f4044 !important;
	color: #fff !important;
	box-shadow: 0 14px 30px rgba(61, 81, 85, 0.4);
}
.wg-footer a.wg-footer__cta-secondary,
.wg-footer .wg-footer__cta-secondary {
	background: rgba(255, 255, 255, 0.85) !important;
	color: var(--color-primary-dark-teal) !important;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.wg-footer a.wg-footer__cta-secondary:hover,
.wg-footer .wg-footer__cta-secondary:hover {
	background: #fff !important;
	color: var(--color-primary-dark-teal) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.wg-footer .wg-footer__cta-primary i,
.wg-footer .wg-footer__cta-primary span { color: #fff !important; }
.wg-footer .wg-footer__cta-secondary i,
.wg-footer .wg-footer__cta-secondary span { color: var(--color-primary-dark-teal) !important; }

/* Main footer body */
.wg-footer__main {
	padding: 4rem 0 1.5rem;
}
.wg-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 576px) { .wg-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) {
	.wg-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
		gap: 3rem;
	}
}

.wg-footer__col { display: flex; flex-direction: column; gap: 1rem; }

.wg-footer__heading {
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 700;
	color: var(--wg-footer-heading);
	margin: 0;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.wg-footer__heading::after {
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, var(--wg-footer-stroke) 0%, transparent 100%);
}

/* Brand column */
.wg-footer__logo { display: inline-block; max-width: 230px; line-height: 0; background: #fff; padding: 14px 20px; border-radius: var(--wg-radius-lg); box-shadow: var(--wg-shadow-soft); }
.wg-footer__logo img {
	max-width: 100%;
	height: auto;
}
.wg-footer__tagline {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.95rem;
	color: var(--wg-footer-text);
	line-height: 1.6;
	margin: 0;
}
.wg-footer__socials {
	display: flex;
	gap: 0.55rem;
	margin-top: 0.4rem;
}
.wg-footer__social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff !important;
	font-size: 1.05rem;
	border: 1px solid var(--wg-footer-stroke);
	transition: transform 0.25s var(--wg-footer-ease), background 0.25s var(--wg-footer-ease), border-color 0.25s var(--wg-footer-ease);
	text-decoration: none;
}
.wg-footer__social:hover {
	transform: translateY(-2px);
	background: var(--wg-footer-pink);
	color: var(--color-primary-dark-teal) !important;
	border-color: transparent;
}

/* Visit + contact column */
.wg-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.wg-footer__link-row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: flex-start;
	padding: 0.75rem;
	margin: -0.75rem;
	border-radius: 14px;
	color: var(--wg-footer-text);
	text-decoration: none;
	transition: background 0.25s var(--wg-footer-ease);
}
.wg-footer__link-row:hover {
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
}
.wg-footer__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(238, 204, 170, 0.18);
	color: var(--wg-footer-accent);
	font-size: 0.95rem;
	flex-shrink: 0;
	transition: background 0.25s var(--wg-footer-ease), color 0.25s var(--wg-footer-ease);
}
.wg-footer__link-row:hover .wg-footer__icon {
	background: var(--wg-footer-accent);
	color: var(--color-primary-dark-teal);
}
.wg-footer__copy { display: flex; flex-direction: column; min-width: 0; }
.wg-footer__copy-line {
	font: 600 0.92rem var(--font-primary);
	color: #fff;
	line-height: 1.4;
}
.wg-footer__copy-action {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font: 500 0.74rem var(--font-primary);
	color: var(--wg-footer-accent);
	margin-top: 0.15rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.wg-footer__copy-action i { font-size: 0.8rem; transition: transform 0.25s var(--wg-footer-ease); }
.wg-footer__link-row:hover .wg-footer__copy-action i { transform: translate(2px, -2px); }

/* Hours column */
.wg-footer__open-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: rgba(109, 209, 109, 0.18);
	color: #a3e0a3;
	font: 700 0.74rem var(--font-primary);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	width: fit-content;
}
.wg-footer__open-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #6dd16d;
	box-shadow: 0 0 0 3px rgba(109, 209, 109, 0.25);
	animation: wg-footer-pulse 2.4s ease-in-out infinite;
}
@keyframes wg-footer-pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(109, 209, 109, 0.25); }
	50% { box-shadow: 0 0 0 6px rgba(109, 209, 109, 0.08); }
}
.wg-footer__hours { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.wg-footer__hours-row {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: baseline;
	gap: 0.6rem;
	font: 500 0.88rem var(--font-primary);
}
.wg-footer__hours-day { color: var(--wg-footer-text); }
.wg-footer__hours-time { color: #fff; font-weight: 600; }
.wg-footer__hours-dots {
	border-bottom: 2px dotted rgba(255, 255, 255, 0.18);
	transform: translateY(-3px);
}
.wg-footer__hours-row.is-today {
	padding: 0.45rem 0.65rem;
	margin: -0.45rem -0.65rem;
	background: rgba(238, 204, 170, 0.1);
	border-radius: 10px;
	border: 1px solid rgba(238, 204, 170, 0.18);
}
.wg-footer__hours-row.is-today .wg-footer__hours-day,
.wg-footer__hours-row.is-today .wg-footer__hours-time {
	color: var(--wg-footer-accent);
	font-weight: 700;
}
.wg-footer__hours-row.is-today .wg-footer__hours-dots {
	border-bottom-color: rgba(238, 204, 170, 0.35);
}

/* Nav menu column */
.wg-footer__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.wg-footer__menu li { margin: 0; padding: 0; }
.wg-footer__menu a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--wg-footer-text);
	text-decoration: none;
	font: 500 0.92rem var(--font-primary);
	transition: color 0.2s var(--wg-footer-ease), transform 0.2s var(--wg-footer-ease);
	padding: 0.15rem 0;
}
.wg-footer__menu a::before {
	content: '';
	width: 0;
	height: 1px;
	background: var(--wg-footer-accent);
	transition: width 0.25s var(--wg-footer-ease);
}
.wg-footer__menu a:hover {
	color: #fff;
	transform: translateX(4px);
}
.wg-footer__menu a:hover::before {
	width: 14px;
	margin-right: 0.4rem;
}
.wg-footer__nav-extra {
	font-family: var(--font-primary);
	font-size: 0.88rem;
	color: var(--wg-footer-text);
	margin-top: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px dashed var(--wg-footer-stroke);
}
.wg-footer__nav-extra p { margin: 0 0 0.4rem; }
.wg-footer__nav-extra p:last-child { margin: 0; }

/* Bottom bar */
.wg-footer__bottom {
	padding-top: 1.75rem;
	margin-top: 1rem;
	border-top: 1px solid var(--wg-footer-stroke);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	text-align: center;
}
@media (min-width: 768px) {
	.wg-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		text-align: left;
	}
}
.wg-footer__copyright,
.wg-footer__credit {
	margin: 0;
	font: 500 0.82rem var(--font-primary);
	color: var(--wg-footer-text);
}
.wg-footer__credit a {
	color: var(--wg-footer-accent);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s var(--wg-footer-ease);
}
.wg-footer__credit a:hover { color: var(--wg-footer-pink); }
.wg-footer__credit i {
	color: var(--wg-footer-pink);
	font-size: 0.85em;
	margin-left: 0.2rem;
	animation: wg-footer-heart 1.6s ease-in-out infinite;
}
@keyframes wg-footer-heart {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.18); }
}

@media (max-width: 991.98px) {
	.wg-footer__cta { padding: 2.5rem 0; }
	.wg-footer__main { padding: 3rem 0 1.25rem; }
	.wg-footer__grid { gap: 2rem; margin-bottom: 2rem; }
}
@media (max-width: 575.98px) {
	.wg-footer__cta-actions { width: 100%; flex-direction: column; }
	.wg-footer__cta-primary,
	.wg-footer__cta-secondary { width: 100%; justify-content: center; }
	.wg-footer__main { padding: 2.5rem 0 1rem; }
}

/* =========================================================================
   Pet card v2 — boutique rebuild (.wg-pet)
   Square portrait image with bottom gradient title, soft cream body with
   meta + trust + a clean two-button CTA row + view-profile link.
   ========================================================================= */
.pet-card.wg-pet {
	--wg-pet-radius: 22px;
	--wg-pet-cream: #FFF6F4;
	--wg-pet-stroke: rgba(61, 81, 85, 0.08);
	--wg-pet-shadow: 0 6px 22px rgba(61, 81, 85, 0.06);
	--wg-pet-shadow-lift: 0 18px 38px rgba(61, 81, 85, 0.14);
	--wg-pet-ease: cubic-bezier(0.4, 0, 0.2, 1);
	background: #fff !important;
	border: 1px solid var(--wg-pet-stroke) !important;
	border-radius: var(--wg-pet-radius) !important;
	box-shadow: var(--wg-pet-shadow) !important;
	overflow: hidden;
	display: flex !important;
	flex-direction: column;
	height: 100%;
	transition: transform 0.4s var(--wg-pet-ease), box-shadow 0.4s var(--wg-pet-ease), border-color 0.4s var(--wg-pet-ease);
	position: relative;
	isolation: isolate;
}
.pet-card.wg-pet:hover {
	transform: translateY(-5px);
	box-shadow: var(--wg-pet-shadow-lift) !important;
	border-color: rgba(238, 204, 170, 0.6) !important;
}

/* ======== Media (square, with overlays) ======== */
.pet-card .wg-pet__media {
	position: relative;
	background: var(--wg-pet-cream);
	overflow: hidden;
}
.pet-card .wg-pet__media-link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.pet-card .pet-card-image,
.pet-card .wg-pet__media img {
	transition: transform 0.8s var(--wg-pet-ease) !important;
}
.pet-card.wg-pet:hover .pet-card-image,
.pet-card.wg-pet:hover .wg-pet__media img {
	transform: scale(1.06) !important;
}

/* Top-left badge stack — frosted pills stack vertically from the top with
   no gaps regardless of which ones render. */
.pet-card .wg-pet__badges {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
	pointer-events: none;
	max-width: calc(100% - 1.7rem);
}
.pet-card .wg-pet__badges > * { pointer-events: auto; }

.pet-card .wg-pet__badge,
.pet-card .wg-pet__status {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.32rem 0.75rem;
	border-radius: 999px;
	font: 700 0.66rem var(--font-primary);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.95);
	color: var(--color-primary-dark-teal);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 2px 10px rgba(61, 81, 85, 0.12);
	border: 0;
	white-space: nowrap;
}
.pet-card .wg-pet__badge i { font-size: 0.78rem; }

/* Status variants */
.pet-card .wg-pet__status--coming {
	background: var(--color-primary-light-yellow);
	color: var(--color-primary-dark-teal);
}
.pet-card .wg-pet__status--sold {
	background: rgba(80, 59, 61, 0.92);
	color: #fff;
}
.pet-card .wg-pet__status--sale {
	background: var(--color-secondary-light-pink);
	color: #6e3c43;
}

/* Freshness variants */
.pet-card .wg-pet__badge--new {
	background: linear-gradient(135deg, var(--color-primary-light-peach) 0%, #f4d4b1 100%);
	color: var(--color-primary-dark-teal);
}
.pet-card .wg-pet__badge--new i { color: var(--color-primary-dark-teal); }
.pet-card .wg-pet__badge--popular {
	background: var(--color-primary-light-yellow);
	color: var(--color-primary-dark-teal);
}

/* Top-right heart favorite */
.pet-card .favorite-toggle.wg-pet__heart,
.pet-card .wg-pet__heart {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	z-index: 4;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95) !important;
	border: 0 !important;
	color: var(--color-primary-dark-teal) !important;
	font-size: 1rem;
	cursor: pointer;
	box-shadow: 0 3px 14px rgba(61, 81, 85, 0.18);
	transition: transform 0.25s var(--wg-pet-ease), background 0.25s var(--wg-pet-ease), color 0.25s var(--wg-pet-ease);
}
.pet-card .wg-pet__heart:hover {
	background: var(--color-secondary-light-pink) !important;
	transform: scale(1.08);
	color: #6e3c43 !important;
}
.pet-card .wg-pet__heart .bi-heart-fill { display: none; }
.pet-card .wg-pet__heart.is-active .bi-heart { display: none; }
.pet-card .wg-pet__heart.is-active .bi-heart-fill {
	display: inline-block;
	color: var(--color-secondary-light-pink);
}

/* Top-right credibility seals — small white circles */
.pet-card .wg-pet__seals {
	position: absolute;
	right: 0.75rem;
	top: 0.75rem;
	z-index: 4;
	display: flex;
	gap: 0.4rem;
	pointer-events: none;
}

/* Bottom-right: "View" cue — small peach pill that hints clicking goes
   to the pet details page. The image itself is already a link. */
.pet-card .wg-pet__view-cue {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.3rem 0.7rem;
	background: rgba(255, 255, 255, 0.95);
	color: var(--color-primary-dark-teal);
	border-radius: 999px;
	font: 700 0.7rem var(--font-primary);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 4px 14px rgba(61, 81, 85, 0.18);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	pointer-events: none;
	transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
}
.pet-card .wg-pet__view-cue i {
	font-size: 0.75rem;
	color: var(--color-secondary-light-pink);
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.pet-card.wg-pet:hover .wg-pet__view-cue {
	background: var(--color-primary-light-peach);
	color: var(--color-primary-dark-teal);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(238, 204, 170, 0.55);
}
.pet-card.wg-pet:hover .wg-pet__view-cue i {
	color: var(--color-primary-dark-teal);
	transform: translate(2px, -2px);
}
@media (max-width: 575.98px) {
	.pet-card .wg-pet__view-cue {
		right: 0.55rem;
		bottom: 0.55rem;
		padding: 0.25rem 0.6rem;
		font-size: 0.65rem;
	}
}
.pet-card .wg-pet__seal {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 4px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 4px 14px rgba(61, 81, 85, 0.22);
	transition: transform 0.25s var(--wg-pet-ease);
	overflow: hidden;
}
.pet-card .wg-pet__seal img {
	max-width: 100%;
	max-height: 100%;
	width: auto !important;
	height: auto !important;
	object-fit: contain !important;
	margin: 0 !important;
}
.pet-card .wg-pet__seal:hover { transform: translateY(-2px) scale(1.08); }

/* Bottom: gradient overlay with breed eyebrow + Mermaid pet name (boutique signature) */
.pet-card .wg-pet__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	padding: 2.5rem 1.15rem 1rem;
	background: linear-gradient(180deg, rgba(61, 81, 85, 0) 0%, rgba(61, 81, 85, 0.88) 100%);
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	pointer-events: none;
}
.pet-card .wg-pet__eyebrow {
	font: 600 0.66rem var(--font-primary);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary-light-peach);
	line-height: 1;
}
.pet-card .wg-pet__name {
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 2.2vw, 2rem);
	color: #fff;
	line-height: 1;
	letter-spacing: -0.005em;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* ======== Multi-image gallery (when product has 2+ photos) ======== */
.pet-card .wg-pet__media--gallery {
	display: block;
}
.pet-card .wg-pet__gallery-track {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	height: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
}
.pet-card .wg-pet__gallery-track::-webkit-scrollbar { display: none; }

.pet-card .wg-pet__gallery-slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	display: block;
	position: relative;
	overflow: hidden;
	text-decoration: none;
}
.pet-card .wg-pet__gallery-slide img,
.pet-card .wg-pet__gallery-slide .pet-card-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.pet-card.wg-pet:hover .wg-pet__gallery-slide.is-active img {
	transform: scale(1.04) !important;
}

/* Swipe indicators — small subtle chevrons on the left/right edge of every
   multi-image card. Always visible (no background pill) so the swipe
   affordance is constant on both touch and desktop. */
.pet-card .wg-pet__gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0.9;
	filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.55));
	transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-tap-highlight-color: transparent;
}
.pet-card .wg-pet__gallery-nav--prev { left: 0.35rem; }
.pet-card .wg-pet__gallery-nav--next { right: 0.35rem; }
.pet-card .wg-pet__gallery-nav:hover,
.pet-card .wg-pet__gallery-nav:focus-visible {
	opacity: 1;
	transform: translateY(-50%) scale(1.15);
	outline: none;
}
.pet-card .wg-pet__gallery-nav:active {
	transform: translateY(-50%) scale(0.92);
}
.pet-card .wg-pet__gallery-nav:disabled {
	opacity: 0;
	pointer-events: none;
}

/* Subtle scroll progress — a slim 2px line at the very bottom of the image
   that fills as the visitor scrolls through the gallery. No counter pills,
   no dots. Just a quiet hint that there's more to see. */
.pet-card .wg-pet__gallery-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	z-index: 4;
	background: rgba(255, 255, 255, 0.18);
	pointer-events: none;
	overflow: hidden;
}
.pet-card .wg-pet__gallery-progress-bar {
	display: block;
	height: 100%;
	width: 33%;
	background: rgba(255, 255, 255, 0.85);
	border-radius: 999px;
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Google reviews — slim single-line footer at the bottom of the card */
.pet-card .wg-pet__reviews,
.pet-card a.wg-pet__reviews {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 0.4rem;
	margin-top: 0.65rem;
	padding-top: 0.65rem;
	border-top: 1px dashed rgba(61, 81, 85, 0.08);
	font: 500 0.74rem var(--font-primary);
	color: var(--color-primary-dark-grey);
	line-height: 1;
	text-decoration: none !important;
	white-space: nowrap;
	transition: color 0.2s ease;
}
.pet-card a.wg-pet__reviews:hover {
	color: var(--color-primary-dark-teal);
}
.pet-card .wg-pet__reviews-google {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}
.pet-card .wg-pet__reviews-stars {
	display: inline-flex;
	gap: 0.05rem;
	color: #f4b400;
	font-size: 0.78rem;
}
.pet-card .wg-pet__reviews-rating {
	font-weight: 700;
	color: var(--color-primary-dark-teal);
}
@media (max-width: 575.98px) {
	.pet-card .wg-pet__reviews { font-size: 0.7rem; gap: 0.32rem; margin-top: 0.5rem; padding-top: 0.5rem; }
	.pet-card .wg-pet__reviews-stars { font-size: 0.72rem; }
}

/* ======== Body ======== */
.pet-card .wg-pet__body {
	padding: 1.05rem 1.15rem 1.15rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	flex: 1 1 auto;
}

/* Meta line: gender / age / color — small inline pills */
/* Meta chip row — single row, horizontal scroll on overflow */
.pet-card .wg-pet__meta {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.35rem;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-snap-type: x proximity;
	margin: 0 -0.25rem;
	padding: 0 0.25rem 0.15rem;
	mask-image: linear-gradient(to right, black 0, black calc(100% - 18px), transparent 100%);
	-webkit-mask-image: linear-gradient(to right, black 0, black calc(100% - 18px), transparent 100%);
}
.pet-card .wg-pet__meta::-webkit-scrollbar { display: none; }
.pet-card .wg-pet__meta-item {
	flex-shrink: 0;
	scroll-snap-align: start;
}
.pet-card .wg-pet__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.22rem 0.6rem;
	border-radius: 999px;
	background: rgba(184, 195, 190, 0.22);
	color: var(--color-primary-dark-teal);
	font: 600 0.74rem var(--font-primary);
	white-space: nowrap;
	border: 1px solid rgba(184, 195, 190, 0.45);
	letter-spacing: 0.005em;
}
.pet-card .wg-pet__meta-item i { font-size: 0.8rem; opacity: 0.85; }
.pet-card .wg-pet__meta-item--gender-female {
	background: rgba(217, 178, 175, 0.3);
	color: #8a4f56;
	border-color: rgba(217, 178, 175, 0.6);
}
.pet-card .wg-pet__meta-item--gender-male {
	background: rgba(61, 81, 85, 0.08);
	color: var(--color-primary-dark-teal);
	border-color: rgba(61, 81, 85, 0.15);
}
.pet-card .wg-pet__meta-item--ref {
	background: rgba(61, 81, 85, 0.06);
	color: var(--color-primary-dark-teal);
	border-color: rgba(61, 81, 85, 0.14);
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
}
.pet-card .wg-pet__meta-item--ref i { opacity: 0.7; }

/* Trust line — single row that scrolls horizontally if it overflows */
.pet-card .wg-pet__trust {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.35rem;
	margin: 0 -0.25rem;
	padding: 0 0.25rem;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.82rem;
	color: var(--color-primary-dark-grey);
	line-height: 1.35;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	white-space: nowrap;
	mask-image: linear-gradient(to right, black 0, black calc(100% - 18px), transparent 100%);
	-webkit-mask-image: linear-gradient(to right, black 0, black calc(100% - 18px), transparent 100%);
}
.pet-card .wg-pet__trust::-webkit-scrollbar { display: none; }
.pet-card .wg-pet__trust > * { flex-shrink: 0; }
.pet-card .wg-pet__trust i {
	color: var(--color-secondary-light-pink);
	font-size: 0.92rem;
	font-style: normal;
}
.pet-card .wg-pet__trust-sep {
	color: rgba(61, 81, 85, 0.35);
	margin: 0 0.1rem;
}

/* Coming soon arrival hint */
.pet-card .wg-pet__expected {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0.35rem 0.7rem;
	background: var(--color-primary-light-yellow);
	color: var(--color-primary-dark-teal);
	border-radius: 999px;
	font: 700 0.74rem var(--font-primary);
	align-self: flex-start;
}

/* CTA layout: three full-width pills stacked vertically. Same size, same shape.
   Call Us → Get My Details → Meet Me. */
.pet-card .wg-pet__cta {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
	margin-top: 0.35rem;
}

/* Base button — used by all three CTA pills */
.pet-card .wg-pet__btn,
.pet-card a.pet-cta-call.wg-pet__btn,
.pet-card a.pet-cta-interest.wg-pet__btn,
.pet-card a.pet-cta-visit.wg-pet__btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.65rem 0.85rem !important;
	min-height: 44px;
	border-radius: 999px !important;
	font: 700 0.82rem var(--font-primary) !important;
	letter-spacing: 0.005em;
	text-decoration: none !important;
	border: 0 !important;
	transition: transform 0.25s var(--wg-pet-ease), box-shadow 0.25s var(--wg-pet-ease), background 0.25s var(--wg-pet-ease), color 0.25s var(--wg-pet-ease), border-color 0.25s var(--wg-pet-ease);
	margin: 0 !important;
	white-space: nowrap;
	box-shadow: none;
	width: 100%;
}
.pet-card .wg-pet__btn i { font-size: 0.95rem; flex-shrink: 0; }
.pet-card .wg-pet__btn-text {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* All three buttons share a filled, theme-colored treatment so the card has
   a confident, boutique feel — no white backgrounds. */

/* CALL — dark teal (the most "act now" color) */
.pet-card .wg-pet__btn--call {
	background: linear-gradient(135deg, var(--color-primary-dark-teal) 0%, #4a6367 100%) !important;
	color: #fff !important;
	border: 0 !important;
	box-shadow: 0 6px 16px rgba(61, 81, 85, 0.28) !important;
}
.pet-card .wg-pet__btn--call i { color: var(--color-primary-light-peach); }
.pet-card .wg-pet__btn--call:hover {
	background: linear-gradient(135deg, #2f4044 0%, #235868 100%) !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(61, 81, 85, 0.42) !important;
}

/* GET MY DETAILS — soft pink primary (the conversion CTA) */
.pet-card .wg-pet__btn--inquire {
	background: linear-gradient(135deg, var(--color-secondary-light-pink) 0%, #efc4c1 100%) !important;
	color: var(--color-primary-dark-teal) !important;
	border: 0 !important;
	box-shadow: 0 6px 16px rgba(217, 178, 175, 0.5) !important;
}
.pet-card .wg-pet__btn--inquire i { color: var(--color-primary-dark-teal); }
.pet-card .wg-pet__btn--inquire:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #d8aaa8 0%, #e9bdba 100%) !important;
	box-shadow: 0 12px 26px rgba(217, 178, 175, 0.65) !important;
	color: var(--color-primary-dark-teal) !important;
}

/* MEET / VIEW DETAILS — peach (warm, inviting) */
.pet-card .wg-pet__btn--visit {
	background: linear-gradient(135deg, var(--color-primary-light-peach) 0%, #f4d4b1 100%) !important;
	color: var(--color-primary-dark-teal) !important;
	border: 0 !important;
	margin-top: 0.5rem !important;
	box-shadow: 0 6px 16px rgba(238, 204, 170, 0.55) !important;
}
.pet-card .wg-pet__btn--visit i { color: var(--color-primary-dark-teal); }
.pet-card .wg-pet__btn--visit:hover {
	background: linear-gradient(135deg, #e6bc94 0%, #f0c896 100%) !important;
	color: var(--color-primary-dark-teal) !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(238, 204, 170, 0.7) !important;
}

/* Hide all the legacy .pet-cta-call inner elements when used inside .wg-pet */
.pet-card.wg-pet .pet-cta-call .pet-cta-call-icon,
.pet-card.wg-pet .pet-cta-call .pet-cta-call-content,
.pet-card.wg-pet .pet-cta-call .pet-cta-call-status { display: none !important; }
.pet-card.wg-pet .pet-cta-call > i { display: inline-block !important; }

/* Hide legacy nodes that may render on this card if any 3rd-party hook pushes
   them in. Our new markup doesn't include them. */
.pet-card .pet-google-reviews-under-image,
.pet-card .gender-ribbon,
.pet-card .sale-badge,
.pet-card .coming-soon-badge,
.pet-card .pet-headline,
.pet-card .pet-chips,
.pet-card .pet-identity .expected-date-badge,
.pet-card .trust-checklist,
.pet-card .urgency-strip,
.pet-card .favorite-toggle,
.pet-card .wg-pet__heart {
	display: none !important;
}

/* Mobile compaction — cards must fit in narrow viewports without clipping.
   All three CTAs stack as full-width pills on mobile so each label has room. */
@media (max-width: 767.98px) {
	.pet-card.wg-pet { border-radius: 18px !important; }
	.pet-card .wg-pet__body { padding: 0.95rem 1rem 1.05rem; gap: 0.6rem; }
	.pet-card .wg-pet__overlay { padding: 1.85rem 1rem 0.85rem; }
	.pet-card .wg-pet__name { font-size: 1.5rem; }
	.pet-card .wg-pet__seal { width: 32px; height: 32px; padding: 3px; }
	.pet-card .wg-pet__meta-item { font-size: 0.74rem; padding: 0.22rem 0.6rem; gap: 0.3rem; }
	.pet-card .wg-pet__trust { font-size: 0.78rem; }

	/* Stack the row of buttons into a single column */
	.pet-card .wg-pet__cta {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	/* Each pill: full-width, smaller and tighter on mobile */
	.pet-card .wg-pet__btn,
	.pet-card a.pet-cta-call.wg-pet__btn,
	.pet-card a.pet-cta-interest.wg-pet__btn,
	.pet-card a.pet-cta-visit.wg-pet__btn {
		width: 100%;
		font-size: 0.78rem !important;
		padding: 0.55rem 0.9rem !important;
		min-height: 40px;
		gap: 0.45rem;
		letter-spacing: 0.005em;
	}
	.pet-card .wg-pet__btn i { font-size: 0.88rem; }

	.pet-card .wg-pet__btn--visit {
		margin-top: 0.4rem !important;
		font-size: 0.78rem !important;
	}
}
@media (max-width: 419px) {
	.pet-card .wg-pet__btn,
	.pet-card a.pet-cta-call.wg-pet__btn,
	.pet-card a.pet-cta-interest.wg-pet__btn,
	.pet-card a.pet-cta-visit.wg-pet__btn {
		font-size: 0.74rem !important;
		padding: 0.5rem 0.8rem !important;
		min-height: 38px;
	}
	.pet-card .wg-pet__btn i { font-size: 0.82rem; }
}

/* Carousel slides — show one card at a time on small phones (no peek)
   so cards don't get cut off. */
@media (max-width: 575.98px) {
	.wg-featured__slide,
	.wg-related__slide {
		flex: 0 0 calc(100% - 0.4rem) !important;
	}
}
@media (min-width: 576px) and (max-width: 767.98px) {
	.wg-featured__slide,
	.wg-related__slide {
		flex: 0 0 calc(85% - 0.5rem) !important;
	}
}

/* =========================================================================
   Product card image normalization — hard-crop ALL pet card images square
   so everything lines up no matter what dimensions were uploaded.
   Applies globally (archive, single-product related, homepage featured).
   ========================================================================= */
.pet-card .pet-card-image-wrapper,
.wg-featured__slide .pet-card-image-wrapper,
.wg-related__slide .pet-card-image-wrapper {
	aspect-ratio: 1 / 1 !important;
	width: 100% !important;
	height: auto !important;
	overflow: hidden !important;
	contain: layout paint !important;
	contain-intrinsic-size: auto !important;
	background: var(--wg-fp-cream, #FFF6F4);
}
.pet-card .pet-card-image-wrapper > a,
.wg-featured__slide .pet-card-image-wrapper > a,
.wg-related__slide .pet-card-image-wrapper > a {
	display: block;
	width: 100%;
	height: 100%;
}
.pet-card .pet-card-image,
.pet-card .pet-card-image-wrapper img,
.wg-featured__slide .pet-card-image,
.wg-featured__slide .pet-card-image-wrapper img,
.wg-related__slide .pet-card-image,
.wg-related__slide .pet-card-image-wrapper img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	display: block !important;
	max-width: 100%;
	max-height: 100%;
	contain-intrinsic-size: auto !important;
}

/* =========================================================================
   Testimonials — line-clamp the quote so cards stay roughly equal-height
   even when one review is way longer than the others.
   ========================================================================= */
.wg-tails__card {
	min-height: 320px;
}
.wg-tails__quote {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: calc(1.6em * 5);
}
.wg-tails__quote p {
	display: inline;
}
.wg-tails__quote p + p::before {
	content: ' ';
}
@media (min-width: 1100px) {
	.wg-tails__card { min-height: 340px; }
	.wg-tails__quote {
		-webkit-line-clamp: 6;
		line-clamp: 6;
		max-height: calc(1.6em * 6);
	}
}
@media (max-width: 575.98px) {
	.wg-tails__card { min-height: 280px; }
	.wg-tails__quote {
		-webkit-line-clamp: 6;
		line-clamp: 6;
		max-height: calc(1.55em * 6);
	}
}

/* =========================================================================
   Floating "Time running out — Book now" CTA
   Sits bottom-right on every page, gentle pulse to add urgency.
   ========================================================================= */
.wg-floating-cta {
	position: fixed;
	right: clamp(1rem, 2.5vw, 1.75rem);
	bottom: clamp(1rem, 2.5vw, 1.75rem);
	z-index: 1040;
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.6rem 0.7rem 0.6rem 0.85rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-secondary-light-pink) 0%, #efc4c1 50%, var(--color-primary-light-peach) 100%);
	color: var(--color-primary-dark-teal) !important;
	text-decoration: none !important;
	box-shadow: 0 14px 32px rgba(217, 178, 175, 0.55), 0 4px 14px rgba(61, 81, 85, 0.18);
	border: 0;
	font-family: var(--font-primary);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: wg-floating-cta-bob 3.6s ease-in-out infinite;
	overflow: visible;
}
.wg-floating-cta:hover,
.wg-floating-cta:focus-visible {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 22px 44px rgba(217, 178, 175, 0.65), 0 6px 18px rgba(61, 81, 85, 0.22);
	color: var(--color-primary-dark-teal) !important;
	outline: none;
}

.wg-floating-cta__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-primary-dark-teal);
	color: #fff;
	font-size: 1.15rem;
	flex-shrink: 0;
	box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.18);
	animation: wg-floating-cta-tick 2.4s ease-in-out infinite;
}
@keyframes wg-floating-cta-tick {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(-6deg); }
	50% { transform: rotate(0deg); }
	75% { transform: rotate(6deg); }
}

.wg-floating-cta__text {
	display: flex;
	flex-direction: column;
	gap: 0.05rem;
	min-width: 0;
	padding-right: 0.4rem;
}
.wg-floating-cta__eyebrow {
	font: 700 0.66rem var(--font-primary);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6e3c43;
	line-height: 1;
}
.wg-floating-cta__label {
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--color-primary-dark-teal);
	line-height: 1;
	letter-spacing: -0.005em;
}

.wg-floating-cta__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	color: var(--color-primary-dark-teal);
	font-size: 0.95rem;
	flex-shrink: 0;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wg-floating-cta:hover .wg-floating-cta__arrow {
	background: #fff;
	transform: translateX(3px);
}

/* Outer ping ring — soft pulsing halo for urgency */
.wg-floating-cta__ping {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: 0 0 0 0 rgba(217, 178, 175, 0.55);
	pointer-events: none;
	animation: wg-floating-cta-ping 2.6s ease-out infinite;
}
@keyframes wg-floating-cta-ping {
	0%   { box-shadow: 0 0 0 0 rgba(217, 178, 175, 0.45); }
	70%  { box-shadow: 0 0 0 16px rgba(217, 178, 175, 0); }
	100% { box-shadow: 0 0 0 0 rgba(217, 178, 175, 0); }
}

/* Gentle bob animation */
@keyframes wg-floating-cta-bob {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-4px); }
}

/* Mobile: tighten + collapse to icon + label only */
@media (max-width: 575.98px) {
	.wg-floating-cta {
		right: 1rem;
		bottom: 1rem;
		gap: 0.55rem;
		padding: 0.5rem 0.6rem 0.5rem 0.6rem;
	}
	.wg-floating-cta__icon { width: 38px; height: 38px; font-size: 1rem; }
	.wg-floating-cta__label { font-size: 0.95rem; }
	.wg-floating-cta__eyebrow { font-size: 0.62rem; }
	.wg-floating-cta__arrow { width: 28px; height: 28px; font-size: 0.85rem; }
}

/* Single-product mobile already has its own sticky bottom bar — hide
   the floating CTA there to avoid stacking two competing actions. */
@media (max-width: 991.98px) {
	body.single-product .wg-floating-cta { display: none; }
}

/* Push the floating CTA above the WP admin bar if present */
body.admin-bar .wg-floating-cta { bottom: calc(1rem + 32px); }
@media (max-width: 782px) {
	body.admin-bar .wg-floating-cta { bottom: calc(1rem + 46px); }
}

/* Reduced motion — kill the pulse */
@media (prefers-reduced-motion: reduce) {
	.wg-floating-cta,
	.wg-floating-cta__icon,
	.wg-floating-cta__ping {
		animation: none !important;
	}
}

/* =========================================================================
   Archive title (Puppies for Sale, Kittens for Sale, Shop, etc.)
   ========================================================================= */
/* Trim the heavy "py-5" main padding on archive pages so the title sits up
   closer to the navigation. */
body.archive .site-main.py-5,
body.tax-product_cat .site-main.py-5,
body.woocommerce-shop .site-main.py-5,
body.post-type-archive-product .site-main.py-5 {
	padding-top: 1rem !important;
	padding-bottom: 2rem !important;
}

.wg-archive-header {
	position: relative;
	margin: 0 0 1rem;
	padding-bottom: 0.75rem;
	padding-right: 130px;
	border-bottom: 1px dashed rgba(61, 81, 85, 0.12);
}
.wg-archive-header__title { margin: 0; }

/* The JS-injected wrapper resets to normal block flow so the description
   sits below the title; the toggle pulls itself absolutely to the
   top-right of the header so it sits inline with the title row. */
.wg-archive-header .term-description-wrapper {
	position: static !important;
	margin: 0 !important;
	overflow: visible !important;
	padding: 0 !important;
}
.wg-archive-header .term-description-wrapper > div[style*="clear"] { display: none !important; }

.wg-archive-header .term-description-toggle {
	position: absolute !important;
	top: 0 !important;
	right: 0 !important;
	float: none !important;
	margin: 0 !important;
	padding: 0.45rem 0.85rem !important;
	background: transparent !important;
	border: 1.5px solid rgba(238, 204, 170, 0.7) !important;
	border-radius: 999px !important;
	font: 700 0.78rem var(--font-primary) !important;
	letter-spacing: 0.04em !important;
	color: var(--color-primary-dark-teal) !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
	z-index: 2;
}
.wg-archive-header .term-description-toggle:hover {
	background: var(--color-primary-light-peach) !important;
	border-color: var(--color-primary-light-peach) !important;
	color: var(--color-primary-dark-teal) !important;
	transform: translateY(-1px);
	text-decoration: none !important;
}
.wg-archive-header .term-description {
	clear: both;
}
.wg-archive-header__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font: 600 0.72rem var(--font-primary);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-primary-dark-grey);
	margin-bottom: 0.4rem;
}
.wg-archive-header__eyebrow i {
	color: var(--color-secondary-light-pink);
	font-size: 0.85rem;
}
.wg-archive-header__title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.85rem);
	color: var(--color-primary-dark-teal);
	font-weight: normal;
	line-height: 1.05;
	margin: 0;
}
@media (max-width: 575.98px) {
	body.archive .site-main.py-5,
	body.tax-product_cat .site-main.py-5,
	body.woocommerce-shop .site-main.py-5,
	body.post-type-archive-product .site-main.py-5 {
		padding-top: 0.5rem !important;
		padding-bottom: 1.25rem !important;
	}
	.wg-archive-header {
		margin-bottom: 0.75rem;
		padding-bottom: 0.6rem;
		padding-right: 105px;
	}
	.wg-archive-header__title { font-size: clamp(1.4rem, 6vw, 1.85rem); }
	.wg-archive-header .term-description-toggle {
		font-size: 0.7rem !important;
		padding: 0.32rem 0.65rem !important;
	}
}

/* =========================================================================
   Archive total-count badge (top of pet listings)
   ========================================================================= */
.wg-archive-count {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 1rem;
	padding: 0.5rem 0.95rem;
	background: rgba(217, 178, 175, 0.16);
	border: 1px solid rgba(217, 178, 175, 0.45);
	border-radius: 999px;
	font: 600 0.875rem var(--font-primary);
	color: var(--color-primary-dark-teal);
	letter-spacing: 0.01em;
}
.wg-archive-count i {
	color: var(--color-secondary-light-pink, #F49DA3);
	font-size: 0.85em;
}
.wg-archive-count strong {
	color: var(--color-primary-dark-teal);
	font-weight: 800;
}

/* =========================================================================
   Archive end-of-list message
   ========================================================================= */
.wg-archive-end {
	max-width: 580px;
	margin: 4rem auto 2rem;
	padding: 2.5rem 2rem;
	text-align: center;
	background: linear-gradient(135deg, rgba(217, 178, 175, 0.18) 0%, rgba(238, 204, 170, 0.22) 100%);
	border: 1px dashed rgba(217, 178, 175, 0.55);
	border-radius: 22px;
	box-shadow: 0 6px 24px rgba(61, 81, 85, 0.06);
	animation: wg-archive-end-in 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.wg-archive-end[hidden] { display: none !important; }
@keyframes wg-archive-end-in {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}
.wg-archive-end__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--color-secondary-light-pink) 0%, var(--color-primary-light-peach) 100%);
	color: var(--color-primary-dark-teal);
	font-size: 1.5rem;
	margin: 0 auto 1.1rem;
	box-shadow: 0 6px 18px rgba(217, 178, 175, 0.4);
	animation: wg-archive-end-bob 2.6s ease-in-out infinite;
}
@keyframes wg-archive-end-bob {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-4px); }
}
.wg-archive-end__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 3.2vw, 2.1rem);
	color: var(--color-primary-dark-teal);
	font-weight: normal;
	margin: 0 0 0.65rem;
	line-height: 1.1;
}
.wg-archive-end__text {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--color-primary-dark-grey);
	line-height: 1.6;
	margin: 0 0 1.5rem;
}
.wg-archive-end__actions {
	display: flex;
	gap: 0.65rem;
	justify-content: center;
	flex-wrap: wrap;
}
.wg-archive-end__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	font: 700 0.85rem var(--font-primary);
	letter-spacing: 0.01em;
	text-decoration: none;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
}
.wg-archive-end__btn--call {
	background: var(--color-primary-dark-teal);
	color: #fff;
	box-shadow: 0 6px 18px rgba(61, 81, 85, 0.28);
}
.wg-archive-end__btn--call:hover {
	background: #2f4044;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(61, 81, 85, 0.4);
}
.wg-archive-end__btn--home {
	background: #fff;
	color: var(--color-primary-dark-teal);
	border: 1.5px solid var(--color-primary-dark-teal);
}
.wg-archive-end__btn--home:hover {
	background: var(--color-primary-dark-teal);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(61, 81, 85, 0.28);
}
@media (max-width: 575.98px) {
	.wg-archive-end { margin: 2.5rem 1rem 1.5rem; padding: 2rem 1.25rem; }
	.wg-archive-end__btn { width: 100%; justify-content: center; }
}

/* =========================================================================
   Pet filter sidebar (offcanvas + inline) — boutique
   ========================================================================= */
.wg-filters {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	font-family: var(--font-primary);
	color: var(--color-primary-dark-teal);
}
.wg-filters__active {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	padding: 0.7rem 0.95rem;
	background: linear-gradient(135deg, rgba(217, 178, 175, 0.22) 0%, rgba(238, 204, 170, 0.18) 100%);
	border: 1px dashed rgba(217, 178, 175, 0.5);
	border-radius: 14px;
	font: 600 0.82rem var(--font-primary);
}
.wg-filters__active-label {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--color-primary-dark-teal);
}
.wg-filters__active-label i { color: var(--color-secondary-light-pink); }
.wg-filters__clear {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	color: var(--color-primary-dark-teal);
	text-decoration: underline;
	text-decoration-color: var(--color-primary-light-peach);
	text-underline-offset: 3px;
	text-decoration-thickness: 2px;
	font-weight: 700;
}
.wg-filters__clear:hover {
	color: var(--color-primary-dark-teal);
	text-decoration-color: var(--color-secondary-light-pink);
}

.wg-filters__group {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px dashed rgba(61, 81, 85, 0.1);
}
.wg-filters__group:last-child { border-bottom: 0; padding-bottom: 0; }

.wg-filters__heading {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font: 700 0.78rem var(--font-primary);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary-dark-grey);
	margin: 0;
}
.wg-filters__heading i { color: var(--color-secondary-light-pink); font-size: 0.95rem; }

/* Lists */
.wg-filters__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.wg-filters__list--scroll {
	max-height: 280px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: var(--color-secondary-light-pink) transparent;
	padding-right: 0.25rem;
}
.wg-filters__list--scroll::-webkit-scrollbar { width: 6px; }
.wg-filters__list--scroll::-webkit-scrollbar-thumb {
	background: var(--color-secondary-light-pink);
	border-radius: 999px;
}

/* Browse-by-cat link rows */
.wg-filters__cat-link {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.65rem 0.85rem;
	border-radius: 12px;
	color: var(--color-primary-dark-teal);
	text-decoration: none;
	font: 600 0.92rem var(--font-primary);
	background: transparent;
	border: 1px solid transparent;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.wg-filters__cat-link i {
	color: var(--color-secondary-light-pink);
	font-size: 1rem;
	flex-shrink: 0;
}
.wg-filters__cat-link:hover {
	background: rgba(238, 204, 170, 0.18);
	color: var(--color-primary-dark-teal);
	transform: translateX(2px);
}
.wg-filters__cat-link.is-active {
	background: var(--color-secondary-light-pink);
	border-color: rgba(217, 178, 175, 0.85);
	color: var(--color-primary-dark-teal);
}
.wg-filters__cat-link.is-active i { color: var(--color-primary-dark-teal); }
.wg-filters__count {
	margin-left: auto;
	font: 600 0.74rem var(--font-primary);
	color: var(--color-primary-dark-grey);
	background: rgba(184, 195, 190, 0.25);
	padding: 0.1rem 0.5rem;
	border-radius: 999px;
}
.wg-filters__cat-link.is-active .wg-filters__count {
	background: rgba(255, 255, 255, 0.55);
	color: var(--color-primary-dark-teal);
}

/* Option rows (breed list) */
.wg-filters__option {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.55rem 0.7rem;
	border-radius: 10px;
	color: var(--color-primary-dark-teal);
	text-decoration: none;
	font: 500 0.88rem var(--font-primary);
	transition: background 0.2s ease;
}
.wg-filters__option:hover {
	background: rgba(238, 204, 170, 0.18);
	color: var(--color-primary-dark-teal);
}
.wg-filters__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 6px;
	background: #fff;
	border: 1.5px solid rgba(61, 81, 85, 0.18);
	color: transparent;
	font-size: 0.78rem;
	flex-shrink: 0;
	transition: all 0.2s ease;
}
.wg-filters__option.is-active {
	background: linear-gradient(135deg, rgba(217, 178, 175, 0.22) 0%, rgba(238, 204, 170, 0.2) 100%);
	color: var(--color-primary-dark-teal);
	font-weight: 700;
}
.wg-filters__option.is-active .wg-filters__check {
	background: var(--color-secondary-light-pink);
	border-color: var(--color-secondary-light-pink);
	color: var(--color-primary-dark-teal);
}
.wg-filters__option-label { flex: 1; min-width: 0; }

/* Chips (gender, color, sort) */
.wg-filters__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.wg-filters__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.85rem;
	border-radius: 999px;
	background: rgba(184, 195, 190, 0.22);
	color: var(--color-primary-dark-teal);
	border: 1px solid rgba(184, 195, 190, 0.5);
	font: 500 0.82rem var(--font-primary);
	text-decoration: none;
	transition: all 0.2s ease;
}
.wg-filters__chip:hover {
	background: rgba(184, 195, 190, 0.4);
	transform: translateY(-1px);
	color: var(--color-primary-dark-teal);
}
.wg-filters__chip i { font-size: 0.85rem; opacity: 0.85; }
.wg-filters__chip.is-active {
	background: var(--color-primary-dark-teal);
	color: #fff;
	border-color: var(--color-primary-dark-teal);
}
.wg-filters__chip.is-active i { color: #fff; opacity: 1; }
.wg-filters__chip-x { font-size: 0.7rem !important; opacity: 0.85 !important; }

.wg-filters__chip--female {
	background: rgba(217, 178, 175, 0.3);
	color: #8a4f56;
	border-color: rgba(217, 178, 175, 0.6);
}
.wg-filters__chip--female.is-active {
	background: var(--color-secondary-light-pink);
	color: #6e3c43;
	border-color: var(--color-secondary-light-pink);
}
.wg-filters__chip--male {
	background: rgba(61, 81, 85, 0.08);
	color: var(--color-primary-dark-teal);
	border-color: rgba(61, 81, 85, 0.18);
}
.wg-filters__chip--male.is-active {
	background: var(--color-primary-dark-teal);
	color: #fff;
	border-color: var(--color-primary-dark-teal);
}

.wg-filters__widgets {
	padding-top: 1.25rem;
	border-top: 1px dashed rgba(61, 81, 85, 0.1);
}
.wg-filters__widgets .widget {
	margin-bottom: 1.25rem;
}
.wg-filters__widgets .widget-title {
	font: 700 0.78rem var(--font-primary);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-primary-dark-grey);
	margin-bottom: 0.65rem;
}

/* Make sure the offcanvas itself looks boutique */
.pets-offcanvas {
	background: #FFF6F4;
	border-right: 1px solid rgba(238, 204, 170, 0.4);
	width: 360px;
	max-width: 92vw;
}
.pets-offcanvas .offcanvas-header {
	border-bottom: 1px dashed rgba(61, 81, 85, 0.1);
	padding: 1.2rem 1.5rem;
	background: linear-gradient(135deg, rgba(217, 178, 175, 0.25) 0%, rgba(238, 204, 170, 0.18) 100%);
}
.pets-offcanvas .offcanvas-title {
	font-family: var(--font-display) !important;
	font-size: 1.4rem !important;
	color: var(--color-primary-dark-teal) !important;
	font-weight: normal !important;
	margin: 0;
}
.pets-offcanvas .offcanvas-body {
	padding: 1.5rem;
}
.pets-offcanvas .btn-close {
	background-color: rgba(61, 81, 85, 0.06);
	border-radius: 50%;
	width: 32px;
	height: 32px;
	opacity: 1;
	background-size: 0.8em;
}
.pets-offcanvas .btn-close:hover { background-color: rgba(61, 81, 85, 0.12); }

/* The trigger pill at the bottom-left */
.filter-pets-btn {
	display: inline-flex !important;
	align-items: center;
	gap: 0.55rem;
	padding: 0.7rem 1.25rem !important;
	background: var(--color-primary-dark-teal) !important;
	color: #fff !important;
	border: 0 !important;
	border-radius: 999px !important;
	font: 700 0.86rem var(--font-primary) !important;
	box-shadow: 0 8px 22px rgba(61, 81, 85, 0.28);
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
	white-space: nowrap;
}
.filter-pets-btn:hover {
	background: #2f4044 !important;
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(61, 81, 85, 0.36);
}
.filter-pets-btn .filter-btn-text { font-weight: 700; }

/* =========================================================================
   Override / suppress legacy header styles that bleed through
   ========================================================================= */
.wg-header .top-header-bar,
.wg-header .header-top-button,
.wg-header .btn-call-now-mobile {
	/* Nullify legacy classes if any remain */
	all: unset;
	display: contents;
}
/* Hide the legacy mobile call button if it ever renders */
.btn-call-now-mobile { display: none !important; }

/* ==========================================================================
   Boutique Offcanvas — full reskin overriding legacy style.css rules
   ========================================================================== */

.waggles-offcanvas {
	width: 92% !important;
	max-width: 420px !important;
	background: linear-gradient( 180deg, #FFF6F4 0%, #fef6ed 50%, #fef0e2 100% ) !important;
	box-shadow: 0 0 60px -10px rgba( 61, 81, 85, .25 ) !important;
	/* Panel itself never scrolls — that responsibility lives on
	   .offcanvas-body so the sticky header stays put while the menu
	   list + quick-links + contact + CTA scroll underneath it. */
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column !important;
	height: 100vh !important;
	height: 100dvh !important;
}

.waggles-offcanvas .offcanvas-header { flex: 0 0 auto !important; }

.waggles-offcanvas .offcanvas-body {
	flex: 1 1 auto !important;
	min-height: 0 !important;
	overflow-y: auto !important;
	overflow-x: hidden !important;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: rgba( 217, 178, 175, .55 ) transparent;
}

/* Webkit scrollbar — soft pink so it reads boutique not browser-default */
.waggles-offcanvas .offcanvas-body::-webkit-scrollbar { width: 6px; }
.waggles-offcanvas .offcanvas-body::-webkit-scrollbar-track { background: transparent; }
.waggles-offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
	background: linear-gradient( 180deg, rgba( 217, 178, 175, .6 ), rgba( 238, 204, 170, .55 ) );
	border-radius: 999px;
}

/* Don't let flex squish the children — every section keeps its natural
   height so the body's overflow-y: auto can scroll past them. Without
   this, .mobile-nav-menu (which has overflow:hidden for rounded-corner
   clipping) shrinks under default flex-shrink:1 and clips items 6-11. */
.waggles-offcanvas .offcanvas-body > * {
	flex: 0 0 auto !important;
}

/* Hide any caret elements the cosmick-areas-served plugin's quick-menu.js
   might inject. With data-cas-area-id stripped server-side we shouldn't
   see them, but keep this as a safety net. */
.waggles-offcanvas .cas-area-caret { display: none !important; }
.waggles-offcanvas .mobile-menu-list .cas-area-item > a {
	padding-right: 1.25rem !important; /* reset the plugin's reserved caret space */
}

/* ----- Header (logo + close) ----- */
.waggles-offcanvas .offcanvas-header {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	padding: 1.5rem 1.5rem 1.25rem !important;
	background: linear-gradient( 135deg, #eabfbd 0%, #F49DA3 100% ) !important;
	border-bottom: none !important;
	position: relative;
}

.waggles-offcanvas .offcanvas-header::after {
	content: '';
	position: absolute;
	left: 1.5rem;
	right: 1.5rem;
	bottom: 0;
	height: 1px;
	background: rgba( 255, 255, 255, .55 );
}

.waggles-offcanvas .offcanvas-logo img {
	max-height: 56px !important;
	width: auto;
	display: block;
	filter: drop-shadow( 0 2px 6px rgba( 61, 81, 85, .15 ) );
}

.waggles-offcanvas .waggles-close {
	width: 40px !important;
	height: 40px !important;
	border-radius: 50% !important;
	background: rgba( 255, 255, 255, .92 ) !important;
	background-image: none !important; /* override Bootstrap's default X svg */
	color: #2a3a3d !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	border: none !important;
	box-shadow: 0 6px 14px -6px rgba( 61, 81, 85, .35 ) !important;
	transition: all .25s cubic-bezier( .4, 0, .2, 1 ) !important;
	padding: 0 !important;
	flex-shrink: 0 !important;
	margin-left: 1rem !important;
	opacity: 1 !important;
	font-size: 0;
}

.waggles-offcanvas .waggles-close::before {
	content: '\F659'; /* bootstrap-icons "x-lg" */
	font-family: 'bootstrap-icons' !important;
	font-size: 1.1rem !important;
	font-weight: 700;
	color: #2a3a3d;
	line-height: 1;
	display: inline-block;
	transition: color .25s ease;
}

.waggles-offcanvas .waggles-close:hover {
	background: #ffffff !important;
	transform: rotate( 90deg ) scale( 1.05 ) !important;
	box-shadow: 0 8px 18px -6px rgba( 61, 81, 85, .45 ) !important;
}

.waggles-offcanvas .waggles-close:hover::before { color: #F49DA3; }

/* ----- Body ----- */
.waggles-offcanvas .offcanvas-body {
	padding: 1.5rem 0 2rem !important;
	display: flex !important;
	flex-direction: column;
	gap: 1.5rem !important;
}

/* ----- Main nav menu ----- */
.waggles-offcanvas .mobile-nav-menu {
	padding: 0 !important;
	margin: 0 1rem;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 12px 28px -16px rgba( 61, 81, 85, .15 );
	overflow: hidden;
}

.waggles-offcanvas .mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.waggles-offcanvas .mobile-menu-list > li {
	border-bottom: 1px dashed rgba( 61, 81, 85, .1 );
}

.waggles-offcanvas .mobile-menu-list > li:last-child { border-bottom: none; }

.waggles-offcanvas .mobile-menu-list a {
	display: flex !important;
	align-items: center;
	padding: 1rem 1.25rem !important;
	color: #2a3a3d !important;
	font-family: var(--font-display) !important;
	font-weight: 600 !important;
	font-size: 1.05rem !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	text-decoration: none !important;
	transition: all .25s cubic-bezier( .4, 0, .2, 1 ) !important;
	position: relative;
	background: transparent !important;
}

.waggles-offcanvas .mobile-menu-list a::after {
	content: '\F285'; /* chevron-right */
	font-family: 'bootstrap-icons';
	margin-left: auto;
	color: rgba( 61, 81, 85, .35 );
	font-size: .9rem;
	transition: transform .25s ease, color .25s ease;
}

.waggles-offcanvas .mobile-menu-list a:hover,
.waggles-offcanvas .mobile-menu-list .current-menu-item > a {
	background: linear-gradient( 90deg, rgba( 234, 191, 189, .35 ), rgba( 238, 204, 170, .15 ) ) !important;
	color: #2a3a3d !important;
	padding-left: 1.6rem !important;
}

.waggles-offcanvas .mobile-menu-list a:hover::after {
	transform: translateX( 4px );
	color: #F49DA3;
}

.waggles-offcanvas .mobile-menu-list .current-menu-item > a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	bottom: 8px;
	width: 4px;
	background: linear-gradient( 180deg, #F49DA3, #FCE4E6 );
	border-radius: 0 4px 4px 0;
}

.waggles-offcanvas .mobile-menu-list .sub-menu {
	background: rgba( 255, 250, 245, .8 );
	border-top: 1px dashed rgba( 61, 81, 85, .08 );
	list-style: none;
	margin: 0;
	padding: 0;
}

.waggles-offcanvas .mobile-menu-list .sub-menu a {
	padding: .7rem 1.25rem .7rem 2.5rem !important;
	font-family: var(--font-primary) !important;
	font-size: .92rem !important;
	font-weight: 500 !important;
	color: #6a7a7e !important;
	border-bottom: 1px dashed rgba( 61, 81, 85, .06 );
}

.waggles-offcanvas .mobile-menu-list .sub-menu li:last-child a { border-bottom: none; }

.waggles-offcanvas .mobile-menu-list .sub-menu a::before {
	content: '\F285';
	font-family: 'bootstrap-icons';
	margin-right: .5rem;
	color: rgba( 217, 178, 175, .65 );
	font-size: .75rem;
}

.waggles-offcanvas .mobile-menu-list .sub-menu a::after { display: none; }

.waggles-offcanvas .mobile-menu-list .sub-menu a:hover {
	color: #2a3a3d !important;
	padding-left: 2.85rem !important;
	background: linear-gradient( 90deg, rgba( 234, 191, 189, .25 ), transparent ) !important;
}

/* Level 2 (breeds nested under areas) — even smaller, tighter, deeper indent
   so the visual hierarchy reads "category → city → breed" at a glance. */
.waggles-offcanvas .mobile-menu-list .sub-menu .sub-menu {
	background: rgba( 254, 246, 237, .65 ) !important;
	border-top: 1px dashed rgba( 61, 81, 85, .08 );
	padding: 0;
}

.waggles-offcanvas .mobile-menu-list .sub-menu .sub-menu a {
	padding: .55rem 1rem .55rem 3.5rem !important;
	font-size: .82rem !important;
	font-weight: 500 !important;
	color: #6a7a7e !important;
	border-bottom: 1px dashed rgba( 61, 81, 85, .04 );
}

.waggles-offcanvas .mobile-menu-list .sub-menu .sub-menu li:last-child a { border-bottom: none; }

.waggles-offcanvas .mobile-menu-list .sub-menu .sub-menu a::before {
	content: '\F285';
	font-family: 'bootstrap-icons';
	margin-right: .35rem;
	color: rgba( 217, 178, 175, .55 );
	font-size: .65rem;
}

.waggles-offcanvas .mobile-menu-list .sub-menu .sub-menu a:hover {
	color: #2a3a3d !important;
	padding-left: 3.85rem !important;
	background: linear-gradient( 90deg, rgba( 234, 191, 189, .15 ), transparent ) !important;
}

/* ----- Quick Links section ----- */
.waggles-offcanvas .mobile-quick-links {
	padding: 0 1rem !important;
}

.waggles-offcanvas .quick-links-title {
	font-family: var(--font-primary) !important;
	color: #6a7a7e !important;
	font-size: .72rem !important;
	font-weight: 700 !important;
	letter-spacing: .18em !important;
	text-transform: uppercase !important;
	margin: 0 .25rem 1rem !important;
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}

.waggles-offcanvas .quick-links-title::before,
.waggles-offcanvas .quick-links-title::after {
	content: '';
	width: 18px;
	height: 1px;
	background: linear-gradient( 90deg, transparent, rgba( 217, 178, 175, .6 ) );
}

.waggles-offcanvas .quick-links-title::after {
	background: linear-gradient( 90deg, rgba( 217, 178, 175, .6 ), transparent );
}

.waggles-offcanvas .quick-links-grid {
	display: grid !important;
	grid-template-columns: repeat( 2, 1fr ) !important;
	gap: .75rem !important;
}

.waggles-offcanvas .quick-link-item {
	position: relative;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
	padding: 1.1rem .75rem !important;
	background: #ffffff !important;
	border: 1.5px solid rgba( 61, 81, 85, .08 ) !important;
	border-radius: 16px !important;
	color: #2a3a3d !important;
	text-decoration: none !important;
	box-shadow: 0 8px 20px -10px rgba( 61, 81, 85, .12 );
	transition: all .25s cubic-bezier( .4, 0, .2, 1 ) !important;
	overflow: hidden;
	text-align: center;
}

.waggles-offcanvas .quick-link-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient( 90deg, #eabfbd, #FCE4E6 );
	opacity: 0;
	transition: opacity .25s ease;
}

.waggles-offcanvas .quick-link-item:hover {
	border-color: #eabfbd !important;
	transform: translateY( -3px ) !important;
	box-shadow: 0 14px 28px -10px rgba( 217, 178, 175, .35 ) !important;
}

.waggles-offcanvas .quick-link-item:hover::before { opacity: 1; }

.waggles-offcanvas .quick-link-item__icon {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient( 135deg, rgba( 234, 191, 189, .35 ), rgba( 238, 204, 170, .35 ) );
	color: #2a3a3d;
	font-size: 1.15rem;
	transition: all .25s cubic-bezier( .4, 0, .2, 1 );
}

.waggles-offcanvas .quick-link-item:hover .quick-link-item__icon {
	background: linear-gradient( 135deg, #eabfbd, #FCE4E6 );
	transform: scale( 1.06 );
}

.waggles-offcanvas .quick-link-item__icon i {
	color: inherit !important;
	margin: 0 !important;
	font-size: 1.15rem !important;
}

.waggles-offcanvas .quick-link-item__label {
	font-family: var(--font-primary) !important;
	color: #2a3a3d !important;
	font-size: .85rem !important;
	font-weight: 700 !important;
	letter-spacing: .03em !important;
	margin: 0 !important;
}

/* Cart count badge — top-right of the cart icon */
.waggles-offcanvas .quick-link-item__badge {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: linear-gradient( 135deg, #235868 0%, #2a3a3d 100% );
	color: #FCE4E6;
	font-family: var(--font-primary);
	font-size: .7rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #ffffff;
	box-shadow: 0 6px 14px -4px rgba( 61, 81, 85, .45 );
	letter-spacing: 0;
	line-height: 1;
}

.waggles-offcanvas .quick-link-item--cart:hover .quick-link-item__badge {
	transform: scale( 1.08 );
	transition: transform .25s ease;
}

/* ----- Contact info ----- */
.waggles-offcanvas .mobile-contact-info {
	margin: 0 1rem !important;
	padding: 1.1rem 1.25rem !important;
	background: rgba( 255, 255, 255, .85 ) !important;
	border: 1.5px dashed rgba( 217, 178, 175, .5 ) !important;
	border-radius: 18px !important;
	display: flex;
	flex-direction: column;
	gap: .85rem !important;
}

.waggles-offcanvas .mobile-contact-info .contact-item {
	display: flex !important;
	align-items: center;
	gap: .75rem !important;
	color: #2a3a3d !important;
	font-family: var(--font-primary) !important;
	font-size: .92rem !important;
	font-weight: 500 !important;
	line-height: 1.4;
}

.waggles-offcanvas .mobile-contact-info .contact-item i {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	background: linear-gradient( 135deg, rgba( 234, 191, 189, .35 ), rgba( 238, 204, 170, .35 ) );
	color: #2a3a3d !important;
	font-size: 1rem !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	margin: 0 !important;
}

.waggles-offcanvas .mobile-contact-info .contact-item a {
	color: #2a3a3d !important;
	text-decoration: none !important;
	font-weight: 700 !important;
	transition: color .2s ease;
}

.waggles-offcanvas .mobile-contact-info .contact-item a:hover { color: #F49DA3 !important; }

.waggles-offcanvas .mobile-contact-info .contact-item span {
	white-space: pre-wrap;
}

/* ----- Social links ----- */
.waggles-offcanvas .mobile-social-links {
	display: flex !important;
	justify-content: center !important;
	gap: .75rem !important;
	padding: 0 1rem !important;
}

.waggles-offcanvas .mobile-social-links .social-link {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: linear-gradient( 135deg, #eabfbd 0%, #FCE4E6 100% ) !important;
	color: #2a3a3d !important;
	font-size: 1.1rem;
	box-shadow: 0 8px 18px -8px rgba( 217, 178, 175, .55 );
	transition: all .25s cubic-bezier( .4, 0, .2, 1 ) !important;
	text-decoration: none !important;
	border: 1.5px solid rgba( 255, 255, 255, .55 );
}

.waggles-offcanvas .mobile-social-links .social-link:hover {
	transform: translateY( -2px ) scale( 1.05 );
	box-shadow: 0 12px 24px -8px rgba( 217, 178, 175, .65 );
	color: #2a3a3d !important;
}

.waggles-offcanvas .mobile-social-links .social-link i { color: inherit; }

/* ----- Reservation CTA ----- */
.waggles-offcanvas .mobile-cta-button {
	padding: 0 1rem !important;
}

.waggles-offcanvas .btn-book-appointment-mobile {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: 1.1rem 1.5rem !important;
	width: 100% !important;
	background: linear-gradient( 135deg, #235868 0%, #2a3a3d 100% ) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 999px !important;
	font-family: var(--font-primary) !important;
	font-weight: 700 !important;
	font-size: .95rem !important;
	letter-spacing: .06em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	box-shadow: 0 14px 28px -12px rgba( 61, 81, 85, .55 ) !important;
	transition: all .25s cubic-bezier( .4, 0, .2, 1 ) !important;
}

.waggles-offcanvas .btn-book-appointment-mobile:hover {
	transform: translateY( -2px );
	box-shadow: 0 18px 36px -12px rgba( 61, 81, 85, .65 ) !important;
	background: linear-gradient( 135deg, #2a3a3d 0%, #1a2a2d 100% ) !important;
	color: #ffffff !important;
}

.waggles-offcanvas .btn-book-appointment-mobile i {
	color: #FCE4E6 !important;
	font-size: 1.05rem;
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
	.waggles-offcanvas .quick-link-item:hover,
	.waggles-offcanvas .mobile-social-links .social-link:hover,
	.waggles-offcanvas .btn-book-appointment-mobile:hover,
	.waggles-offcanvas .quick-link-item:hover .quick-link-item__icon {
		transform: none !important;
	}
	.waggles-offcanvas .waggles-close:hover { transform: none !important; }
}
