/* ==========================================================================
   Your Pet Hamster — main.css
   Base reset, layout, typography, header/footer, buttons, forms, cards.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--yph-bg, #fbf6ee);
	color: var(--yph-text, #2c1810);
	font-family: var(--yph-font-body, 'Inter', system-ui, sans-serif);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--yph-primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--yph-accent); }
button { font-family: inherit; }

h1, h2, h3, h4, h5 {
	font-family: var(--yph-font-heading, 'Nunito');
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.01em;
	color: var(--yph-text);
	margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

::selection { background: var(--yph-accent); color: #fff; }
:focus-visible {
	outline: 3px solid var(--yph-accent);
	outline-offset: 3px;
	border-radius: var(--yph-radius-sm);
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0);
	white-space: nowrap; border: 0;
}
.yph-skip {
	position: absolute; top: -100px; left: 12px;
	background: var(--yph-text); color: #fff;
	padding: 10px 16px; border-radius: 8px; z-index: 999;
}
.yph-skip:focus { top: 12px; color:#fff; }

/* ---------- Layout helpers ---------- */
.yph-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 720px) { .yph-container { padding: 0 18px; } }

.yph-main { min-height: 50vh; }
.yph-layout { display: block; padding: 40px 0; }
.yph-layout--with-sidebar { display: grid; gap: 48px; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 1024px) {
	.yph-layout--with-sidebar { grid-template-columns: minmax(0, 1fr) 320px; }
}
.yph-layout__main { min-width: 0; }
.yph-layout__sidebar { min-width: 0; }

.yph-section-head { text-align: center; margin: 0 auto 36px; max-width: 760px; }
.yph-section-title { font-size: clamp(1.7rem, 3vw, 2.6rem); margin-bottom: .35em; }
.yph-section-sub   { color: var(--yph-muted); font-size: 1.05rem; margin: 0; }

/* ---------- Site header ---------- */
.yph-site-header {
	position: sticky; top: 0; z-index: 50;
	background: color-mix(in srgb, var(--yph-bg) 85%, transparent);
	backdrop-filter: saturate(150%) blur(14px);
	-webkit-backdrop-filter: saturate(150%) blur(14px);
	border-bottom: 1px solid color-mix(in srgb, var(--yph-wood) 30%, transparent);
}
.yph-site-header__inner {
	display: flex; align-items: center; gap: 20px;
	padding: 14px 0;
}
.yph-site-header__brand { margin-right: auto; }

.yph-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--yph-text); }
.yph-brand:hover { color: var(--yph-primary); }
.yph-brand__mark { display: inline-flex; }
.yph-brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.yph-brand__name { font-family: var(--yph-font-heading); font-weight: 800; font-size: 1.05rem; }
.yph-brand__tag  { font-size: .72rem; color: var(--yph-muted); letter-spacing: .02em; }

.yph-site-nav { display: none; }
@media (min-width: 1024px) {
	.yph-site-nav { display: block; }
	.yph-site-nav__list {
		list-style: none; padding: 0; margin: 0;
		display: flex; gap: 4px;
	}
	.yph-site-nav__list a {
		display: inline-flex; align-items: center;
		padding: 8px 14px; border-radius: 999px;
		color: var(--yph-text); font-weight: 600; font-size: .95rem;
		font-family: var(--yph-font-ui);
		transition: background .15s, color .15s;
	}
	.yph-site-nav__list a:hover,
	.yph-site-nav__list .current-menu-item > a {
		background: color-mix(in srgb, var(--yph-wood) 25%, transparent);
		color: var(--yph-primary);
	}
}

.yph-site-header__actions { display: flex; align-items: center; gap: 8px; }
.yph-icon-btn {
	width: 40px; height: 40px;
	display: inline-flex; align-items: center; justify-content: center;
	background: transparent; border: 0; border-radius: 12px;
	color: var(--yph-text); cursor: pointer;
	transition: background .15s;
}
.yph-icon-btn:hover { background: color-mix(in srgb, var(--yph-wood) 25%, transparent); }

.yph-site-header__cta { display: none; }
@media (min-width: 1024px) { .yph-site-header__cta { display: inline-flex; } .yph-menu-toggle { display: none; } }
@media (max-width: 1023px) { .yph-site-header__cta { display: none; } }

.yph-site-search {
	border-top: 1px solid color-mix(in srgb, var(--yph-wood) 25%, transparent);
	background: var(--yph-bg);
	padding: 14px 0;
}

.yph-mobile-menu {
	border-top: 1px solid color-mix(in srgb, var(--yph-wood) 25%, transparent);
	background: var(--yph-bg);
	padding: 12px 0 24px;
}
.yph-mobile-menu__list {
	list-style: none; padding: 0; margin: 0 0 16px;
}
.yph-mobile-menu__list a {
	display: block; padding: 14px 20px;
	color: var(--yph-text); font-weight: 600;
	border-bottom: 1px solid color-mix(in srgb, var(--yph-wood) 18%, transparent);
}
.yph-mobile-menu__cta { display: grid; gap: 10px; padding: 0 20px; }

/* ---------- Buttons ---------- */
.yph-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 8px; padding: 12px 22px; border-radius: 999px;
	font-family: var(--yph-font-ui);
	font-weight: 700; font-size: 0.95rem;
	background: var(--yph-primary); color: #fff;
	border: 0; cursor: pointer;
	transition: transform .12s ease, background .15s, box-shadow .2s;
	text-decoration: none; line-height: 1;
}
.yph-btn:hover { background: var(--yph-primary-2); color: #fff; transform: translateY(-1px); box-shadow: 0 10px 22px -10px color-mix(in srgb, var(--yph-primary) 50%, transparent); }
.yph-btn:active { transform: translateY(0); }
.yph-btn--primary { background: var(--yph-primary); color: #fff; }
.yph-btn--accent  { background: var(--yph-accent);  color: #fff; }
.yph-btn--accent:hover { background: var(--yph-accent-2); }
.yph-btn--ghost {
	background: transparent; color: var(--yph-text);
	box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--yph-wood) 60%, transparent);
}
.yph-btn--ghost:hover { background: color-mix(in srgb, var(--yph-wood) 25%, transparent); color: var(--yph-text); box-shadow: inset 0 0 0 1.5px var(--yph-wood); }
.yph-btn--lg { padding: 16px 28px; font-size: 1.05rem; }
.yph-btn--sm { padding: 8px 14px; font-size: .85rem; }
.yph-btn--block { display: flex; width: 100%; }
.yph-btn__arrow { transition: transform .2s ease; }
.yph-btn:hover .yph-btn__arrow { transform: translateX(3px); }

/* ---------- Forms ---------- */
.yph-field { display: flex; flex-direction: column; gap: 6px; }
.yph-field__label {
	font-family: var(--yph-font-ui);
	font-weight: 700; font-size: .85rem;
	color: var(--yph-text); letter-spacing: .01em;
}
.yph-field input[type="text"],
.yph-field input[type="email"],
.yph-field input[type="number"],
.yph-field input[type="search"],
.yph-field select,
.yph-field textarea {
	width: 100%; padding: 12px 14px;
	background: #fff;
	border: 1.5px solid color-mix(in srgb, var(--yph-wood) 35%, transparent);
	border-radius: var(--yph-radius-sm);
	font: inherit; color: var(--yph-text);
	transition: border-color .15s, box-shadow .15s;
}
.yph-field input:focus, .yph-field select:focus, .yph-field textarea:focus {
	outline: 0;
	border-color: var(--yph-accent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--yph-accent) 25%, transparent);
}

input[type="range"] {
	-webkit-appearance: none; appearance: none;
	width: 100%; height: 8px; padding: 0;
	background: linear-gradient(to right, var(--yph-accent), var(--yph-primary));
	border-radius: 999px; outline: none;
}
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none; appearance: none;
	width: 22px; height: 22px; border-radius: 50%;
	background: #fff; cursor: grab;
	border: 3px solid var(--yph-primary);
	box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
input[type="range"]::-moz-range-thumb {
	width: 22px; height: 22px; border-radius: 50%;
	background: #fff; cursor: grab;
	border: 3px solid var(--yph-primary);
	box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.yph-range-legend {
	display: flex; justify-content: space-between;
	font-size: .8rem; color: var(--yph-muted); margin-top: 4px;
}

.yph-segmented {
	display: inline-flex; flex-wrap: wrap; gap: 6px;
	background: #fff; padding: 4px;
	border-radius: 999px;
	box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--yph-wood) 35%, transparent);
}
.yph-segmented__option { position: relative; cursor: pointer; }
.yph-segmented__option input { position: absolute; opacity: 0; pointer-events: none; }
.yph-segmented__option span {
	display: inline-block; padding: 8px 14px;
	border-radius: 999px; font-size: .85rem;
	color: var(--yph-text); font-weight: 600;
	transition: background .15s, color .15s;
}
.yph-segmented__option input:checked + span {
	background: var(--yph-primary); color: #fff;
}

.yph-search-form {
	display: flex; align-items: center; gap: 10px;
	background: #fff;
	border: 1.5px solid color-mix(in srgb, var(--yph-wood) 35%, transparent);
	border-radius: 999px;
	padding: 6px 6px 6px 16px;
}
.yph-search-form__icon { color: var(--yph-muted); flex-shrink: 0; }
.yph-search-form input {
	border: 0; outline: 0; flex: 1; padding: 10px 0;
	background: transparent; font: inherit; color: var(--yph-text);
}
.yph-search-form button {
	background: var(--yph-primary); color: #fff;
	padding: 10px 18px; border-radius: 999px;
	border: 0; cursor: pointer; font-weight: 700; font-family: var(--yph-font-ui);
}

/* ---------- Meters / progress bars (used everywhere) ---------- */
.yph-meter {
	width: 100%; height: 8px;
	background: color-mix(in srgb, var(--yph-wood) 30%, transparent);
	border-radius: 999px; overflow: hidden;
}
.yph-meter__bar {
	height: 100%;
	background: linear-gradient(90deg, var(--yph-accent), var(--yph-primary));
	border-radius: 999px;
	transition: width .35s ease;
}

/* ---------- Crumbs & post meta ---------- */
.yph-crumbs {
	font-size: .85rem; color: var(--yph-muted);
	margin: 8px 0 24px;
}
.yph-crumbs a { color: var(--yph-muted); }
.yph-crumbs a:hover { color: var(--yph-primary); }

.yph-meta {
	display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
	color: var(--yph-muted); font-size: .9rem; margin: 18px 0;
}
.yph-meta__author { display: inline-flex; align-items: center; gap: 8px; }
.yph-meta__author img { border-radius: 50%; }
.yph-meta__cat { color: var(--yph-primary); font-weight: 700; }
.yph-meta__sep { opacity: .5; }

/* ---------- Cards ---------- */
.yph-card {
	background: #fff;
	border-radius: var(--yph-radius);
	overflow: hidden;
	box-shadow: 0 6px 22px -16px rgba(76,46,28,.4);
	transition: transform .2s ease, box-shadow .2s ease;
}
.yph-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(76,46,28,.45); }
.yph-card__link { display: block; color: inherit; }
.yph-card__media {
	aspect-ratio: 16 / 10; background: var(--yph-bg-alt);
	overflow: hidden;
}
.yph-card__media img { width: 100%; height: 100%; object-fit: cover; }
.yph-card__placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	font-size: 3rem;
	background: linear-gradient(135deg, var(--yph-bg-alt), color-mix(in srgb, var(--yph-wood) 50%, var(--yph-bg-alt)));
}
.yph-card__placeholder--lg { font-size: 4rem; }
.yph-card__body { padding: 20px 22px; }
.yph-card__kicker {
	display: inline-block; font-family: var(--yph-font-ui);
	font-weight: 700; font-size: .72rem; text-transform: uppercase;
	letter-spacing: .08em; color: var(--yph-primary);
	margin-bottom: 8px;
}
.yph-card__title { font-size: 1.15rem; margin: 0 0 8px; }
.yph-card__excerpt { color: var(--yph-muted); font-size: .92rem; margin: 0 0 12px; }
.yph-card__meta { color: var(--yph-muted); font-size: .78rem; display: flex; gap: 8px; }

.yph-post-grid {
	display: grid; gap: 24px;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ---------- Sidebar widgets ---------- */
.yph-widget { background: #fff; padding: 22px; border-radius: var(--yph-radius); margin-bottom: 24px; box-shadow: 0 4px 16px -12px rgba(76,46,28,.3); }
.yph-widget__title { font-size: 1.05rem; margin: 0 0 14px; }
.yph-widget--cta { background: linear-gradient(135deg, var(--yph-accent), var(--yph-primary)); color: #fff; }
.yph-widget--cta .yph-widget__title { color: #fff; }

/* ---------- Footer ---------- */
.yph-site-footer {
	background: linear-gradient(180deg, var(--yph-bg) 0%, var(--yph-bg-alt) 100%);
	color: var(--yph-text);
	margin-top: 80px;
	padding: 60px 0 30px;
}
.yph-site-footer__top {
	display: grid; gap: 40px;
	grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 900px) {
	.yph-site-footer__top { grid-template-columns: 1.3fr 2fr; }
	.yph-site-footer__cols { display: grid; gap: 30px; grid-template-columns: repeat(3, 1fr); }
}
.yph-site-footer__tag { color: var(--yph-muted); margin: 14px 0 18px; font-size: .95rem; max-width: 340px; }
.yph-social { display: flex; gap: 10px; }
.yph-social a {
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: #fff;
	color: var(--yph-primary);
	transition: transform .15s, color .15s, background .15s;
}
.yph-social a:hover { background: var(--yph-primary); color: #fff; transform: translateY(-2px); }

.yph-footer-widget { margin-bottom: 24px; }
.yph-footer-widget__title { font-size: .95rem; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .07em; font-family: var(--yph-font-ui); }
.yph-footer-widget ul { list-style: none; padding: 0; margin: 0; }
.yph-footer-widget li { margin: 6px 0; }
.yph-footer-widget a { color: var(--yph-text); font-size: .92rem; opacity: .85; }
.yph-footer-widget a:hover { color: var(--yph-primary); opacity: 1; }

.yph-site-footer__bottom {
	border-top: 1px solid color-mix(in srgb, var(--yph-wood) 35%, transparent);
	margin-top: 30px; padding-top: 22px;
	display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
	font-size: .85rem; color: var(--yph-muted);
}
.yph-footer-legal__list { list-style: none; padding: 0; margin: 0; display: flex; gap: 18px; flex-wrap: wrap; }
.yph-footer-legal__list a { color: var(--yph-muted); }
.yph-footer-legal__list a:hover { color: var(--yph-primary); }

/* ---------- Affiliate disclosure ---------- */
.yph-disclosure {
	display: flex; align-items: flex-start; gap: 10px;
	padding: 12px 16px;
	background: color-mix(in srgb, var(--yph-accent) 14%, transparent);
	border: 1px solid color-mix(in srgb, var(--yph-accent) 40%, transparent);
	border-radius: var(--yph-radius-sm);
	color: var(--yph-text); font-size: .85rem;
	margin: 14px 0;
}
.yph-disclosure--footer { background: rgba(255,255,255,.5); margin-bottom: 30px; }
.yph-disclosure__icon { color: var(--yph-accent); flex-shrink: 0; margin-top: 2px; }

/* ---------- Callout (shortcode) ---------- */
.yph-callout {
	background: color-mix(in srgb, var(--yph-secondary) 25%, var(--yph-bg-alt));
	border-left: 4px solid var(--yph-primary);
	padding: 16px 20px;
	border-radius: var(--yph-radius-sm);
	margin: 24px 0;
}
.yph-callout--warning { background: color-mix(in srgb, #ffae42 25%, var(--yph-bg-alt)); border-color: #d97a1a; }
.yph-callout--danger  { background: color-mix(in srgb, #e57373 25%, var(--yph-bg-alt)); border-color: #b03a3a; }
.yph-callout__title { display: block; font-size: 1rem; margin-bottom: 4px; }

/* ---------- Article prose ---------- */
.yph-prose {
	font-size: 1.05rem; line-height: 1.75;
}
.yph-prose h2 { margin-top: 1.8em; }
.yph-prose h3 { margin-top: 1.5em; }
.yph-prose a {
	color: var(--yph-primary);
	border-bottom: 1.5px solid color-mix(in srgb, var(--yph-primary) 40%, transparent);
}
.yph-prose a:hover { border-color: var(--yph-primary); color: var(--yph-accent); }
.yph-prose img { border-radius: var(--yph-radius); }
.yph-prose blockquote {
	border-left: 4px solid var(--yph-accent);
	padding: 4px 0 4px 18px;
	margin: 24px 0;
	font-style: italic; color: var(--yph-muted);
}
.yph-prose code { background: var(--yph-bg-alt); padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.yph-prose ul li::marker { color: var(--yph-accent); }
.yph-prose ol li::marker { color: var(--yph-primary); font-weight: 700; }

/* ---------- Article hero + TOC ---------- */
.yph-article { padding: 30px 0 60px; }
.yph-article__kicker {
	display: inline-block; padding: 4px 12px; border-radius: 999px;
	font-family: var(--yph-font-ui); font-weight: 700; font-size: .75rem;
	background: color-mix(in srgb, var(--yph-accent) 20%, transparent);
	color: var(--yph-accent);
	margin-bottom: 14px;
}
.yph-article__title { font-size: clamp(1.8rem, 4vw, 3rem); }
.yph-article__lede { font-size: 1.18rem; color: var(--yph-muted); margin: 14px 0 22px; }
.yph-article__hero { margin: 24px 0 36px; }
.yph-article__hero img { width: 100%; border-radius: var(--yph-radius); }
.yph-article__layout {
	display: grid; gap: 40px;
	grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1100px) {
	.yph-article__layout { grid-template-columns: 220px minmax(0, 1fr); }
}
.yph-article__toc {
	font-size: .9rem; color: var(--yph-muted);
}
.yph-article__updated { color: var(--yph-muted); font-size: .85rem; margin-top: 12px; }
.yph-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0; }
.yph-tag {
	background: color-mix(in srgb, var(--yph-wood) 30%, transparent);
	padding: 4px 12px; border-radius: 999px;
	font-size: .85rem; color: var(--yph-text);
}
.yph-tag:hover { background: var(--yph-primary); color: #fff; }

/* ---------- Archive heads ---------- */
.yph-archive-head { padding: 20px 0 28px; text-align: center; }
.yph-archive-head__title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.yph-pagination { margin: 40px 0; text-align: center; }
.yph-pagination .page-numbers {
	display: inline-block; padding: 8px 14px; margin: 0 4px;
	border-radius: 999px;
	background: #fff;
	color: var(--yph-text);
	font-family: var(--yph-font-ui); font-weight: 600;
}
.yph-pagination .page-numbers.current,
.yph-pagination .page-numbers:hover {
	background: var(--yph-primary); color: #fff;
}
.yph-empty {
	text-align: center; padding: 60px 0; color: var(--yph-muted);
}

/* ---------- 404 ---------- */
.yph-404 { padding: 40px 0 100px; }
.yph-404__product { max-width: 760px; margin: 0 auto 30px; }
.yph-404__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	margin: 0 0 14px;
	padding: 6px 14px; border-radius: 999px;
	background: color-mix(in srgb, var(--yph-accent) 16%, transparent);
	color: var(--yph-primary);
	font-family: var(--yph-font-ui); font-weight: 700; font-size: .82rem;
}
.yph-404__guides, .yph-404__cages, .yph-404__products { margin-top: 50px; }
.yph-404__guides h2,
.yph-404__cages h2,
.yph-404__products h2,
.yph-404__search h2 { text-align: center; margin-bottom: 20px; font-size: 1.4rem; }
.yph-404__search { max-width: 560px; margin: 50px auto 0; text-align: center; }
.yph-404__foot {
	text-align: center; margin-top: 60px;
	display: flex; flex-direction: column; align-items: center; gap: 14px;
	color: var(--yph-muted);
}
.yph-404__emoji { font-size: 2.6rem; display: inline-block; }

/* ---------- Mobile bottom bar ---------- */
.yph-mobile-bar {
	position: fixed; bottom: 0; left: 0; right: 0;
	z-index: 40;
	display: none;
	grid-template-columns: repeat(5, 1fr);
	background: color-mix(in srgb, var(--yph-bg) 95%, transparent);
	backdrop-filter: blur(12px);
	border-top: 1px solid color-mix(in srgb, var(--yph-wood) 35%, transparent);
	padding: 4px 4px calc(4px + env(safe-area-inset-bottom));
}
@media (max-width: 768px) { .yph-mobile-bar { display: grid; } body { padding-bottom: 72px; } }
.yph-mobile-bar__item {
	display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
	color: var(--yph-text); background: none; border: 0;
	font-size: .72rem; font-weight: 600;
	padding: 6px 4px; border-radius: 12px; cursor: pointer; font-family: var(--yph-font-ui);
}
.yph-mobile-bar__item--primary {
	background: var(--yph-accent); color: #fff;
	margin: 0 6px;
}
.yph-mobile-bar__count {
	position: absolute; margin-top: -4px; margin-left: 28px;
	min-width: 18px; height: 18px; border-radius: 999px;
	background: var(--yph-primary); color: #fff;
	font-size: .65rem; display: inline-flex; align-items: center; justify-content: center;
	padding: 0 5px;
}
.yph-mobile-bar__item--primary .yph-mobile-bar__count { display: none; }

/* ---------- Personalize strip ---------- */
.yph-personalize-strip {
	background: linear-gradient(135deg, var(--yph-accent), var(--yph-primary));
	color: #fff;
}
.yph-personalize-strip__inner {
	max-width: 1240px; margin: 0 auto;
	display: flex; align-items: center; gap: 12px;
	padding: 12px 24px;
}
.yph-personalize-strip__icon { font-size: 1.1rem; }
.yph-personalize-strip__text { flex: 1; font-weight: 600; font-size: .95rem; }
.yph-personalize-strip__close {
	background: none; border: 0; color: #fff;
	font-size: 1.5rem; cursor: pointer; opacity: .8;
}
.yph-personalize-strip__close:hover { opacity: 1; }
.yph-personalize-strip .yph-btn { background: #fff; color: var(--yph-primary); }
.yph-personalize-strip .yph-btn:hover { background: rgba(255,255,255,.85); }

/* ---------- Loader ---------- */
.yph-loader {
	width: 38px; height: 38px;
	border: 4px solid color-mix(in srgb, var(--yph-wood) 30%, transparent);
	border-top-color: var(--yph-primary);
	border-radius: 50%;
	animation: yph-spin 1s linear infinite;
	margin: 0 auto;
}
@keyframes yph-spin { to { transform: rotate(360deg); } }

/* ---------- Comments ---------- */
.yph-comments { margin-top: 60px; padding-top: 30px; border-top: 1px solid color-mix(in srgb, var(--yph-wood) 30%, transparent); }
.yph-comments__title { font-size: 1.4rem; margin-bottom: 24px; }

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