/* ==========================================================================
   Infusion Store — base styles
   Palette and type follow the approved storefront prototype.
   ========================================================================== */

:root {
	--navy: #162131;
	--ink: #202a38;
	--muted: #5f6a7a;
	--yellow: #ffcb2f;
	--yellow-soft: #fff0b7;
	--cream: #fff9e6;
	--line: #e5eaf0;
	--surface: #f7f9fc;
	--white: #fff;
	--sale: #c8283a;
	--success: #13784a;
	--link-hover: #8a5a00;
	--radius-s: 9px;
	--radius: 12px;
	--radius-l: 16px;
	--radius-xl: 20px;
	--wrap: 1380px;
	--gutter: clamp(15px, 3vw, 24px);
	--shadow-hover: 0 12px 28px rgb(23 37 60 / 8%);
	--font: "DM Sans", "Noto Sans Devanagari", "Nirmala UI", Mangal, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	--focus: 0 0 0 3px var(--white), 0 0 0 5px var(--navy);
}

/* Base ------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
	margin: 0;
	overflow-x: clip;
	font-family: var(--font);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--ink);
	background: var(--white);
	text-rendering: optimizeLegibility;
}

img,
svg,
video { max-width: 100%; height: auto; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--link-hover); }

button,
input,
select,
textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 2.625rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); letter-spacing: -.02em; }
h3 { font-size: 1.1875rem; }

p { margin: 0 0 1em; }

:focus-visible { outline: none; box-shadow: var(--focus); border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

.screen-reader-text {
	border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
	height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
	clip: auto !important; clip-path: none; height: auto; width: auto; margin: 0;
	background: var(--yellow); color: var(--navy); padding: 12px 18px; z-index: 100000;
	top: 8px; left: 8px; font-weight: 700; border-radius: var(--radius-s);
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: calc(760px + 2 * var(--gutter)); }
.site-main { display: block; min-height: 50vh; }
.muted { color: var(--muted); }

/* Buttons ------------------------------------------------------------------ */
.btn,
.button,
button.button,
input[type="submit"],
.wp-element-button,
.wp-block-button__link {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	border: 1px solid var(--navy); background: var(--navy); color: var(--white);
	padding: 13px 21px; border-radius: 11px; font-weight: 700; line-height: 1.2;
	text-decoration: none; cursor: pointer; transition: background-color .15s, color .15s;
}
.btn:hover,
.button:hover,
input[type="submit"]:hover,
.wp-element-button:hover,
.wp-block-button__link:hover { background: var(--ink); color: var(--white); }
.btn--yellow { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }
.btn--yellow:hover { background: #ffd65c; color: var(--navy); }
.btn--light { background: var(--white); color: var(--navy); }
.btn--light:hover { background: var(--cream); color: var(--navy); }

.pill {
	display: inline-block; background: var(--yellow); color: var(--navy);
	padding: 7px 13px; border-radius: 25px; font-size: .8125rem; font-weight: 700;
}
.chip {
	display: inline-block; border: 1px solid var(--line); border-radius: 30px;
	padding: 8px 15px; font-size: .875rem; font-weight: 700; text-decoration: none; background: var(--white);
}
.chip:hover,
.chip[aria-current="page"] { background: var(--navy); border-color: var(--navy); color: var(--white); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }

/* Forms (shared) ----------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
	width: 100%; padding: 12px 13px; border: 1px solid #cfd7e2; border-radius: var(--radius-s);
	background: var(--white); line-height: 1.4;
}
input:focus,
textarea:focus,
select:focus { border-color: var(--navy); }
label { font-weight: 700; font-size: .875rem; }

/* Announcement bar ---------------------------------------------------------- */
.announcement { background: var(--navy); color: var(--white); font-size: .8125rem; }
.announcement__inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-block: 8px; }
.announcement__inner > a { white-space: nowrap; }
@media (max-width: 699px) { .announcement li:not(:first-child) { display: none; } }
.announcement ul { display: flex; flex-wrap: wrap; gap: 6px 18px; list-style: none; margin: 0; padding: 0; }
.announcement li::before { content: "✓"; color: var(--yellow); margin-right: 6px; }
.announcement a { color: var(--white); }
.announcement a:hover { color: var(--yellow); }

/* Header -------------------------------------------------------------------- */
.site-header {
	background: var(--white); position: sticky; top: 0; z-index: 50;
	border-bottom: 1px solid var(--line); box-shadow: 0 2px 14px rgb(28 44 64 / 4%);
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 0; position: relative; } }

.headrow { display: flex; align-items: center; gap: 12px 16px; padding-block: 12px; flex-wrap: wrap; }
@media (min-width: 1051px) { .headrow { gap: 12px 28px; padding-block: 14px; } }

.brand { display: inline-flex; align-items: center; font-size: clamp(1.0625rem, 3.6vw, 1.3125rem); font-weight: 700; letter-spacing: -.04em; text-decoration: none; color: var(--navy); white-space: nowrap; }
.brand__mark { background: var(--yellow); padding: 6px 8px; border-radius: 8px; }
.brand__word { margin-left: 5px; }
.brand:hover { color: var(--navy); }
.custom-logo { max-height: 48px; width: auto; display: block; }

.site-search { display: flex; flex: 1 1 100%; order: 3; border: 1px solid #d5dce7; border-radius: var(--radius); overflow: hidden; background: var(--white); }
.site-search input[type="search"] { border: 0; border-radius: 0; padding: 12px 15px; min-width: 0; }
.site-search button {
	background: var(--yellow); border: 0; padding: 0 18px; color: var(--navy); cursor: pointer; display: grid; place-items: center;
}
.site-search button:hover { background: #ffd65c; }
.site-search:focus-within { box-shadow: var(--focus); }
.site-search input:focus-visible { box-shadow: none; }

.headlinks { display: flex; align-items: center; gap: 4px 12px; margin-left: auto; font-size: .875rem; font-weight: 700; }
.headlinks a { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; padding: 6px 2px; }
.headlinks svg { width: 20px; height: 20px; flex: none; }
.cart-count {
	display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px;
	border-radius: 11px; background: var(--yellow); color: var(--navy); font-size: .75rem;
}
.headlinks__label { display: none; }

.menu-toggle {
	display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: var(--white);
	border-radius: var(--radius-s); padding: 8px 12px; font-weight: 700; font-size: .875rem; cursor: pointer; color: var(--navy);
}
.menu-toggle svg { width: 20px; height: 20px; }
.no-js .menu-toggle { display: none; }

/* Navigation row / mobile drawer */
.site-menu { border-top: 1px solid var(--line); }
.site-menu__inner { display: flex; flex-direction: column; gap: 4px; padding-block: 10px 16px; }
.site-menu ul { list-style: none; margin: 0; padding: 0; }
.exam-nav ul { display: flex; flex-direction: column; }
.exam-nav a,
.secondary-nav a { display: block; padding: 10px 2px; font-weight: 700; font-size: .9375rem; text-decoration: none; }
.exam-nav a[aria-current="page"],
.exam-nav .current-menu-item > a { color: var(--link-hover); text-decoration: underline; }
.secondary-nav { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 6px; }
.js .site-menu { display: none; }
.js .site-menu.is-open { display: block; }

@media (min-width: 700px) {
	.headlinks__label { display: inline; }
}

@media (min-width: 1051px) {
	.site-search { order: 0; flex: 1 1 auto; max-width: 490px; margin-left: auto; }
	.headlinks { margin-left: 0; }
	.menu-toggle { display: none; }
	.js .site-menu,
	.site-menu { display: block; }
	.site-menu__inner { flex-direction: row; justify-content: space-between; align-items: center; padding-block: 0; }
	.exam-nav ul,
	.secondary-nav ul { flex-direction: row; gap: 4px 25px; flex-wrap: wrap; }
	.exam-nav a,
	.secondary-nav a { padding: 12px 0; font-size: .8125rem; }
	.secondary-nav { border: 0; margin: 0; padding: 0; }
	.secondary-nav ul { display: flex; }
}

/* Focused checkout header */
.is-focused-checkout .site-search,
.is-focused-checkout .site-menu,
.is-focused-checkout .menu-toggle { display: none !important; }
.checkout-help { margin: 0 0 0 auto; font-size: .875rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.checkout-help svg { width: 18px; height: 18px; flex: none; }

/* Breadcrumbs -------------------------------------------------------------- */
.breadcrumbs { font-size: .8125rem; color: var(--muted); padding-block: 18px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: #9aa4b2; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--navy); }
.breadcrumbs .rank-math-breadcrumb p,
.breadcrumbs .woocommerce-breadcrumb { margin: 0; }

/* Page hero ---------------------------------------------------------------- */
.pagehero { background: var(--cream); padding-block: 36px; }
.pagehero h1 { margin: 6px 0 8px; }
.pagehero__lead { color: #4e5969; max-width: 70ch; margin: 0; font-size: 1.0625rem; }
.pagehero__lead > *:last-child { margin-bottom: 0; }
.pagehero .breadcrumbs { padding-top: 0; }

/* Homepage hero -------------------------------------------------------------- */
.hero { background: linear-gradient(118deg, #fff6d4, #fffdf6 62%, #ffefb0); padding-block: clamp(34px, 6vw, 56px); overflow: hidden; }
.hero__grid { display: grid; gap: 24px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); letter-spacing: -.045em; line-height: 1.06; margin: 20px 0; max-width: 13ch; }
.hero__lead { font-size: clamp(1rem, 1.6vw, 1.125rem); line-height: 1.7; color: #4e5969; max-width: 56ch; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0; }
.trust { display: flex; gap: 10px 22px; flex-wrap: wrap; font-size: .875rem; font-weight: 700; list-style: none; padding: 0; margin: 28px 0 0; }
.trust li::before { content: "✓"; color: var(--success); margin-right: 7px; }

@media (min-width: 900px) {
	.hero__grid { grid-template-columns: 1.05fr .95fr; gap: 40px; }
}

/* CSS book covers: decorative hero stack + fallback product cover */
.bookscene {
	min-height: 210px; max-width: 420px; margin-inline: auto; width: 100%; display: flex; align-items: center; justify-content: center; position: relative;
	background: radial-gradient(circle, #ffdc5a 0 43%, transparent 44%);
}
.book-cover {
	--c1: #172d48; --c2: #101b2d;
	background: linear-gradient(150deg, var(--c1), var(--c2)); border-left: 7px solid #f9c934;
	border-radius: 7px 12px 12px 7px; color: var(--white); position: relative; overflow: hidden;
	display: flex; flex-direction: column; justify-content: space-between; padding: 14px;
	aspect-ratio: .7; width: 100%; max-width: 245px;
	box-shadow: 10px 12px 0 rgb(255 255 255 / 77%), 16px 20px 24px rgb(27 43 58 / 26%);
}
.book-cover::before {
	content: ""; position: absolute; width: 140px; height: 140px; background: rgb(255 204 48 / 19%);
	border-radius: 50%; right: -65px; top: 45px;
}
.book-cover small { font-size: .625rem; letter-spacing: .08em; position: relative; }
.book-cover strong { font-size: clamp(1.25rem, 3vw, 2.4rem); letter-spacing: -.03em; line-height: 1; position: relative; word-break: break-word; }
.book-cover em { font-size: .6875rem; font-style: normal; color: #ffe17e; position: relative; }
.book-cover--1 { --c1: #8b2730; --c2: #3a1b25; }
.book-cover--2 { --c1: #12558b; --c2: #11253d; }
.book-cover--3 { --c1: #08775c; --c2: #133d3b; }
.book-cover--4 { --c1: #6c448d; --c2: #27213d; }
.book-cover--5 { --c1: #a57915; --c2: #343122; }
.bookscene .book-cover { width: 30%; transform: rotate(-10deg); margin-right: -28px; }
.bookscene .book-cover:nth-child(2) { width: 36%; transform: translateY(-12px); z-index: 2; }
.bookscene .book-cover:nth-child(3) { transform: rotate(10deg); margin: 0; }
@media (min-width: 900px) { .bookscene { min-height: 390px; max-width: none; } }

/* Sections ---------------------------------------------------------------- */
.section { padding-block: clamp(34px, 5vw, 52px); }
.section--alt { background: var(--surface); }
.sectionhead { display: flex; justify-content: space-between; gap: 12px; align-items: end; flex-wrap: wrap; margin-bottom: 22px; }
.sectionhead h2 { margin: 0 0 4px; }
.sectionhead p { margin: 0; color: var(--muted); }

/* Exam tiles */
.exam-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; list-style: none; margin: 0; padding: 0; }
.exam-tile {
	display: block; height: 100%; border: 1px solid var(--line); border-radius: 15px; padding: 18px 8px; text-align: center;
	background: var(--white); text-decoration: none; transition: box-shadow .2s, transform .2s;
}
.exam-tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); color: inherit; }
.exam-tile__mark {
	display: block; width: 34px; height: 44px; margin: 0 auto 12px; border-radius: 3px 6px 6px 3px;
	background: linear-gradient(150deg, var(--c1, #172d48), var(--c2, #101b2d)); border-left: 5px solid var(--yellow);
	box-shadow: 4px 5px 0 var(--yellow-soft);
}
.exam-tile__mark--1 { --c1: #8b2730; --c2: #3a1b25; }
.exam-tile__mark--2 { --c1: #12558b; --c2: #11253d; }
.exam-tile__mark--3 { --c1: #08775c; --c2: #133d3b; }
.exam-tile__mark--4 { --c1: #6c448d; --c2: #27213d; }
.exam-tile__mark--5 { --c1: #a57915; --c2: #343122; }
.exam-tile strong { display: block; font-size: .9375rem; }
.exam-tile span.count { color: var(--muted); font-size: .8125rem; }
@media (min-width: 700px) { .exam-tiles { gap: 12px; } .exam-tile { padding: 24px 12px; } }
@media (min-width: 1051px) { .exam-tiles { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

/* Banner */
.banner { padding: clamp(24px, 4vw, 34px); border-radius: var(--radius-xl); background: var(--navy); color: var(--white); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 24px; }
.banner h2 { color: var(--white); margin: 0 0 6px; }
.banner p { margin: 0; color: #cbd4df; }

/* Blog: cards and archive --------------------------------------------------- */
.post-grid { display: grid; gap: 18px; grid-template-columns: 1fr; list-style: none; margin: 0; padding: 0; }
@media (min-width: 700px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1051px) { .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.post-card { display: flex; flex-direction: column; height: 100%; border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; background: var(--white); }
.post-card__media { display: block; aspect-ratio: 16 / 9; background: var(--cream); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__cat { font-size: .8125rem; font-weight: 700; color: var(--link-hover); text-decoration: none; }
.post-card h2,
.post-card h3 { font-size: 1.125rem; line-height: 1.4; margin: 0; letter-spacing: -.01em; }
.post-card h2 a,
.post-card h3 a { text-decoration: none; }
.post-card h2 a:hover,
.post-card h3 a:hover { text-decoration: underline; }
.post-card p { color: var(--muted); font-size: .9375rem; margin: 0; }
.post-card__meta { margin-top: auto; font-size: .8125rem; color: var(--muted); }

.post-card--lead { display: grid; }
@media (min-width: 900px) {
	.post-card--lead { grid-template-columns: 1.2fr 1fr; }
	.post-card--lead .post-card__media { aspect-ratio: auto; min-height: 100%; }
	.post-card--lead .post-card__body { padding: 32px; justify-content: center; }
	.post-card--lead h2 { font-size: 1.75rem; }
}

/* Pagination (blog + WooCommerce) */
.pagination,
.woocommerce-pagination { margin-top: 32px; }
.pagination .nav-links,
.woocommerce-pagination ul.page-numbers { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; padding: 0; margin: 0; border: 0; }
.pagination .page-numbers,
.woocommerce-pagination .page-numbers li > * {
	display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px;
	border: 1px solid var(--line); border-radius: var(--radius-s); text-decoration: none; font-weight: 700;
}
.pagination .page-numbers.current,
.woocommerce-pagination .page-numbers li > span.current { background: var(--navy); border-color: var(--navy); color: var(--white); }
.pagination .page-numbers.dots,
.woocommerce-pagination .page-numbers li > span.dots { border: 0; }

/* Article ------------------------------------------------------------------ */
.article-header { padding-block: 8px 24px; }
.article-header h1 { font-size: clamp(2rem, 4.2vw, 2.75rem); letter-spacing: -.03em; line-height: 1.15; margin: 10px 0 14px; }
.article-dek { font-size: 1.1875rem; line-height: 1.6; color: #3f4a5a; margin: 0 0 18px; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 18px; font-size: .875rem; color: var(--muted); border-block: 1px solid var(--line); padding-block: 12px; }
.article-meta__author { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; }
.article-meta__author img { border-radius: 50%; }
.article-meta__author a { text-decoration: none; }
.article-figure { margin: 0 0 28px; }
.article-figure img { border-radius: var(--radius-l); display: block; width: 100%; }
.article-figure figcaption { font-size: .8125rem; color: var(--muted); margin-top: 8px; }

.toc { border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); padding: 4px 18px; margin: 0 0 28px; }
.toc summary { cursor: pointer; font-weight: 700; padding: 12px 0; color: var(--navy); }
.toc ol { margin: 0 0 14px; padding-left: 20px; }
.toc li { margin: 6px 0; }
.toc li.toc-h3 { margin-left: 18px; list-style-type: circle; font-size: .9375rem; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }

.entry-content { font-size: 1.0625rem; line-height: 1.75; }
.entry-content > * { margin-block: 0 1.15em; }
.entry-content h2 { margin-top: 1.8em; font-size: clamp(1.4rem, 2.6vw, 1.75rem); }
.entry-content h3 { margin-top: 1.5em; font-size: 1.25rem; }
.entry-content a:where(:not(.button, .btn, .wp-block-button__link, .wp-element-button, .wc-block-components-button)) { color: #0b4f8a; }
.entry-content a:where(:not(.button, .btn, .wp-block-button__link, .wp-element-button, .wc-block-components-button)):hover { color: var(--link-hover); }
.entry-content ul,
.entry-content ol { padding-left: 1.3em; }
.entry-content li { margin-bottom: .4em; }
.entry-content blockquote { margin-inline: 0; border-left: 4px solid var(--yellow); background: var(--cream); padding: 14px 18px; border-radius: 0 var(--radius-s) var(--radius-s) 0; }
.entry-content figure { margin-inline: 0; }
.entry-content figcaption { font-size: .8125rem; color: var(--muted); }
.entry-content img { border-radius: var(--radius-s); }
.entry-content hr { border: 0; border-top: 1px solid var(--line); }
.entry-content code { background: var(--surface); padding: 2px 5px; border-radius: 4px; font-size: .9em; }
.table-scroll,
.entry-content .wp-block-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: .9375rem; line-height: 1.5; }
.entry-content th,
.entry-content td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.entry-content thead th,
.entry-content tr:first-child th { background: var(--surface); color: var(--navy); }
.entry-content .alignwide { max-width: none; }
.entry-content .has-text-align-center { text-align: center; }

.ad-slot { margin: 28px 0; min-height: 280px; display: grid; place-items: center; background: var(--surface); border-radius: var(--radius-s); position: relative; }
.ad-slot::before { content: attr(data-label); position: absolute; top: 6px; left: 10px; font-size: .6875rem; color: var(--muted); }
@media (min-width: 700px) { .ad-slot { min-height: 250px; } }

.references { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 22px; }
.references h2 { font-size: 1.25rem; }
.references ol { padding-left: 20px; font-size: .9375rem; }
.references li { margin-bottom: 8px; word-break: break-word; }
.references .references__host { color: var(--muted); font-size: .8125rem; }

.author-box { display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: start; border: 1px solid var(--line); border-radius: var(--radius-l); padding: 20px; margin: 36px 0; }
.author-box img { border-radius: 50%; }
.author-box h2 { font-size: 1.0625rem; margin: 0 0 4px; }
.author-box p { margin: 0; color: #4e5969; font-size: .9375rem; }

.related-products,
.related-posts { margin-top: 44px; }
.related-products h2,
.related-posts h2 { font-size: 1.375rem; }
.product-mentions { display: grid; gap: 12px; list-style: none; margin: 0; padding: 0; }
.product-mention { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; }
.product-mention img,
.product-mention .book-cover { width: 76px; height: 76px; object-fit: contain; border-radius: 6px; }
.product-mention .book-cover { padding: 6px; border-left-width: 4px; box-shadow: none; }
.product-mention .book-cover small,
.product-mention .book-cover em { display: none; }
.product-mention .book-cover strong { font-size: .875rem; }
.product-mention a.product-mention__title { font-weight: 700; text-decoration: none; }
.product-mention .price { font-weight: 700; font-size: .9375rem; }
.product-mention .price del { color: var(--muted); font-weight: 400; margin-right: 6px; }
.product-mention .price ins { text-decoration: none; }
@media (max-width: 560px) {
	.product-mention { grid-template-columns: 64px 1fr; }
	.product-mention .btn { grid-column: 1 / -1; }
}

.pagehero__chips { margin-top: 18px; }
.spacer { height: 18px; }
.related-posts .post-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.related-posts .post-card__media { aspect-ratio: 16 / 9; }

/* Pages ---------------------------------------------------------------------- */
.page-content { padding-block: 32px 56px; }

/* 404 and empty states */
.empty-state { padding: clamp(28px, 6vw, 60px); text-align: center; background: var(--surface); border-radius: 18px; }
.empty-state .search-form { max-width: 520px; margin: 18px auto 0; }

.search-form { display: flex; gap: 8px; }
.search-form label { flex: 1; }
.search-form .search-field { width: 100%; }

/* Comments --------------------------------------------------------------- */
.comments-area { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 28px; }
.comment-list { list-style: none; padding: 0; }
.comment-list .children { list-style: none; padding-left: 24px; }
.comment-body { border-bottom: 1px solid var(--line); padding-block: 14px; }
.comment-meta { font-size: .875rem; color: var(--muted); }
.comment-form p { margin-bottom: 14px; }
.comment-form label { display: block; margin-bottom: 6px; }

/* Footer -------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: var(--white); padding-block: 48px 24px; margin-top: 56px; }
.footgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
.footgrid > :first-child { grid-column: 1 / -1; }
.site-footer h2 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.site-footer p,
.site-footer li { color: #cbd4df; font-size: .875rem; line-height: 1.7; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer a { color: #cbd4df; text-decoration: none; display: inline-block; padding-block: 5px; }
.site-footer a:hover { color: var(--yellow); text-decoration: underline; }
.site-footer .brand { color: var(--white); margin-bottom: 12px; }
.site-footer .brand__mark { color: var(--navy); }
.footer-contact a { padding-block: 2px; }
.copy { border-top: 1px solid rgb(255 255 255 / 17%); margin-top: 36px; padding-top: 20px; color: #b6c2d0; font-size: .8125rem; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }
.copy p { margin: 0; font-size: .8125rem; }
.is-focused-checkout .site-footer { margin-top: 32px; padding-top: 24px; }
@media (min-width: 900px) {
	.footgrid { grid-template-columns: 2fr repeat(3, minmax(0, 1fr)); gap: 40px; }
	.footgrid > :first-child { grid-column: auto; }
}

/* WordPress core alignment/caption classes */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption-text,
.gallery-caption { font-size: .8125rem; color: var(--muted); }
.sticky,
.bypostauthor { outline: 0; }
