/**
 * GeneratePress Child - UI Polish Layer
 * ------------------------------------------------------------------
 * A design pass on top of GeneratePress's free defaults: header/nav,
 * buttons, links, blockquotes, tables, widgets, footer, forms, and
 * pagination. Loads after style.css so these rules take precedence.
 *
 * Palette: deep sage-teal (primary/trust), warm paper (background),
 * amber (sparing accent), deep green-black (ink).
 * Type: Fraunces for headings, Inter for UI chrome.
 * ------------------------------------------------------------------
 */

/* ==========================================================================
   0. Design tokens
   ========================================================================== */
:root {
	--gpc-ink: #1e2a25;
	--gpc-bg: #f7f6f2;
	--gpc-surface: #ffffff;
	--gpc-primary: #2b6e62;
	--gpc-primary-dark: #1d4e45;
	--gpc-accent: #e1a339;
	--gpc-accent-dark: #c98a22;
	--gpc-border: #e3e0d6;
	--gpc-muted: #6b756f;

	--gpc-font-display: 'Fraunces', Georgia, 'Charter', serif;
	--gpc-font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--gpc-radius-sm: 6px;
	--gpc-radius-md: 12px;
	--gpc-radius-lg: 20px;

	--gpc-shadow-sm: 0 2px 6px rgba( 30, 42, 37, 0.06 );
	--gpc-shadow-md: 0 8px 24px rgba( 30, 42, 37, 0.1 );
}

/* ==========================================================================
   1. Base
   ========================================================================== */
body {
	background-color: var( --gpc-bg );
	color: var( --gpc-ink );
}

::selection {
	background-color: var( --gpc-accent );
	color: var( --gpc-ink );
}

body a {
	color: var( --gpc-primary );
}

body a:hover {
	color: var( --gpc-primary-dark );
}

/* ==========================================================================
   2. Headings - display font + signature wave underline on H2
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: var( --gpc-font-display );
	color: var( --gpc-ink );
	letter-spacing: -0.01em;
}

.entry-content h2,
.entry-title {
	position: relative;
	display: inline-block;
	padding-bottom: 14px;
}

.entry-content h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 84px;
	height: 10px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 84 10'%3E%3Cpath d='M2 6c6-8 12-8 18 0s12 8 18 0 12-8 18 0 12 8 18 0' fill='none' stroke='%23E1A339' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

/* ==========================================================================
   3. Editorial drop cap on the article's opening paragraph
   ========================================================================== */
.entry-content > p:first-of-type::first-letter {
	font-family: var( --gpc-font-display );
	font-size: 3.4em;
	line-height: 0.85;
	font-weight: 600;
	float: left;
	padding: 0.05em 0.08em 0 0;
	color: var( --gpc-primary );
}

/* ==========================================================================
   4. Site header + primary navigation
   ========================================================================== */
.site-header {
	background-color: var( --gpc-surface );
	border-bottom: 1px solid var( --gpc-border );
}

.main-navigation,
.main-nav-container {
	background-color: var( --gpc-surface );
}

.main-title a,
.site-logo a {
	font-family: var( --gpc-font-display );
	font-weight: 600;
	color: var( --gpc-ink );
	letter-spacing: -0.01em;
}

.site-description {
	font-family: var( --gpc-font-ui );
	color: var( --gpc-muted );
}

.main-navigation .menu-item > a,
.main-navigation .main-nav ul li a {
	font-family: var( --gpc-font-ui );
	font-weight: 500;
	font-size: 0.95rem;
	color: var( --gpc-ink );
	position: relative;
}

.main-navigation .menu-item > a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 6px;
	width: 0;
	height: 2px;
	background-color: var( --gpc-accent );
	transition: width 0.25s ease, left 0.25s ease;
}

.main-navigation .menu-item > a:hover::after,
.main-navigation .current-menu-item > a::after {
	width: calc( 100% - 8px );
	left: 4px;
}

.main-navigation .menu-toggle {
	background-color: var( --gpc-primary );
	color: #fff;
	border-radius: var( --gpc-radius-sm );
}

/* ==========================================================================
   5. Buttons (theme buttons, form submits, Gutenberg button block)
   ========================================================================== */
.button,
button,
input[type="submit"],
input[type="button"],
.wp-block-button__link {
	font-family: var( --gpc-font-ui );
	font-weight: 600;
	background-color: var( --gpc-primary );
	color: #fff;
	border: none;
	border-radius: var( --gpc-radius-sm );
	padding: 0.75em 1.5em;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.wp-block-button__link:hover {
	background-color: var( --gpc-primary-dark );
	transform: translateY( -2px );
	box-shadow: var( --gpc-shadow-sm );
	color: #fff;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
	color: var( --gpc-primary );
	border: 2px solid var( --gpc-primary );
}

/* Keep the article read-more/CTA in the accent color so primary nav/button
   green and the "take action" amber stay visually distinct. */
.read-more-button {
	background-color: var( --gpc-accent );
	box-shadow: none;
}

.read-more-button:hover {
	background-color: var( --gpc-accent-dark );
}

/* ==========================================================================
   6. Blockquotes
   ========================================================================== */
blockquote {
	position: relative;
	background: var( --gpc-surface );
	border-left: none;
	border-radius: var( --gpc-radius-md );
	padding: 1.5rem 1.75rem 1.5rem 3.25rem;
	box-shadow: var( --gpc-shadow-sm );
	color: var( --gpc-ink );
}

blockquote::before {
	content: '\201C';
	position: absolute;
	left: 0.9rem;
	top: 0.5rem;
	font-family: var( --gpc-font-display );
	font-size: 2.75rem;
	line-height: 1;
	color: var( --gpc-accent );
}

/* ==========================================================================
   7. Tables (generalizes the ingredient-table look to any WP table)
   ========================================================================== */
.wp-block-table table,
table {
	border-collapse: collapse;
	width: 100%;
}

.wp-block-table th,
.wp-block-table td,
table th,
table td {
	border: 1px solid var( --gpc-border );
	padding: 10px 14px;
	text-align: left;
	font-family: var( --gpc-font-ui );
}

.wp-block-table th,
table th {
	background-color: var( --gpc-primary );
	color: #fff;
	font-weight: 600;
}

.wp-block-table tbody tr:nth-child( even ),
table tbody tr:nth-child( even ) {
	background-color: #f2f1ec;
}

/* ==========================================================================
   8. Category / tag badges
   ========================================================================== */
.gpc-breadcrumbs,
.cat-links,
.tags-links {
	font-family: var( --gpc-font-ui );
}

.cat-links a,
.tags-links a {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var( --gpc-primary );
	background-color: rgba( 43, 110, 98, 0.1 );
	padding: 4px 12px;
	border-radius: 999px;
	text-decoration: none;
	margin: 0 6px 6px 0;
}

.cat-links a:hover,
.tags-links a:hover {
	background-color: var( --gpc-primary );
	color: #fff;
}

/* ==========================================================================
   9. Sidebar widgets
   ========================================================================== */
.inside-right-sidebar .widget,
.inside-left-sidebar .widget {
	background-color: var( --gpc-surface );
	border: 1px solid var( --gpc-border );
	border-radius: var( --gpc-radius-md );
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.widget-title {
	font-family: var( --gpc-font-display );
	font-size: 1.15rem;
	margin-bottom: 1rem;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid var( --gpc-accent );
	display: inline-block;
}

.widget ul {
	list-style: none;
	padding-left: 0;
	font-size: 1rem;
}

.widget ul li {
	padding: 0.4rem 0;
	border-bottom: 1px solid var( --gpc-border );
}

.widget ul li:last-child {
	border-bottom: none;
}

.widget_search .search-form input[type="search"] {
	border: 1px solid var( --gpc-border );
	border-radius: var( --gpc-radius-sm );
	padding: 0.6em 0.9em;
	font-family: var( --gpc-font-ui );
}

/* ==========================================================================
   10. Pagination
   ========================================================================== */
.pagination,
.page-navigation,
.nav-links {
	font-family: var( --gpc-font-ui );
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 2rem;
}

.pagination a,
.pagination span,
.page-navigation a,
.page-navigation span,
.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border-radius: var( --gpc-radius-sm );
	background-color: var( --gpc-surface );
	border: 1px solid var( --gpc-border );
	color: var( --gpc-ink );
	text-decoration: none;
	font-weight: 500;
}

.pagination a:hover,
.page-navigation a:hover,
.nav-links a:hover {
	background-color: var( --gpc-primary );
	border-color: var( --gpc-primary );
	color: #fff;
}

.pagination .current,
.page-navigation .current,
.nav-links .current {
	background-color: var( --gpc-primary );
	border-color: var( --gpc-primary );
	color: #fff;
}

/* ==========================================================================
   11. Footer
   ========================================================================== */
.site-footer,
.footer-widgets {
	background-color: var( --gpc-ink );
	color: #d8ddda;
}

.site-footer a,
.footer-widgets a {
	color: #ffffff;
}

.site-footer .widget-title,
.footer-widgets .widget-title {
	color: #fff;
	border-bottom-color: var( --gpc-accent );
}

.site-info,
.footer-copyright {
	font-family: var( --gpc-font-ui );
	font-size: 0.85rem;
	color: #b7beba;
	text-align: center;
	padding: 1.25rem 0;
}

/* ==========================================================================
   12. Comment form
   ========================================================================== */
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
	width: 100%;
	max-width: 100%;
	border: 1px solid var( --gpc-border );
	border-radius: var( --gpc-radius-sm );
	padding: 0.75em 1em;
	font-family: var( --gpc-font-ui );
	box-sizing: border-box;
}

.comment-respond .comment-form-cookies-consent {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* ==========================================================================
   13. Responsive
   ========================================================================== */
@media ( max-width: 768px ) {
	.entry-content > p:first-of-type::first-letter {
		font-size: 2.6em;
	}

	.entry-content h2::after {
		width: 64px;
	}

	blockquote {
		padding: 1.25rem 1.25rem 1.25rem 2.5rem;
	}

	blockquote::before {
		font-size: 2.1rem;
		left: 0.6rem;
	}
}

@media ( max-width: 480px ) {
	.pagination a,
	.pagination span,
	.page-navigation a,
	.page-navigation span,
	.nav-links a,
	.nav-links span {
		min-width: 36px;
		height: 36px;
		padding: 0 8px;
		font-size: 0.9rem;
	}
}

/* ==========================================================================
   14. Sticky table of contents (desktop only)
   ========================================================================== */
@media ( min-width: 1025px ) {
	.gpc-toc {
		position: sticky;
		top: 20px;
		z-index: 5;
	}

	/* Sticking at the same top offset as the WP admin bar (logged-in
	   users only) would tuck the TOC's top edge under it. */
	body.admin-bar .gpc-toc {
		top: 52px;
	}
}

/* ==========================================================================
   15. Back-to-top button
   ========================================================================== */
.gpc-back-to-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	background-color: var( --gpc-primary );
	color: #fff;
	font-size: 1.2rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: var( --gpc-shadow-md );
	opacity: 0;
	visibility: hidden;
	transform: translateY( 10px );
	transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
	z-index: 999;
}

.gpc-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY( 0 );
}

.gpc-back-to-top:hover {
	background-color: var( --gpc-primary-dark );
}

@media ( max-width: 480px ) {
	.gpc-back-to-top {
		right: 16px;
		bottom: 16px;
		width: 40px;
		height: 40px;
	}
}

/* ==========================================================================
   16. Social share buttons
   ========================================================================== */
.gpc-share-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 2rem 0 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid var( --gpc-border );
	font-family: var( --gpc-font-ui );
}

.gpc-share-label {
	font-weight: 600;
	margin-right: 4px;
	color: var( --gpc-muted );
}

.gpc-share-btn {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.gpc-share-btn:hover {
	opacity: 0.88;
	transform: translateY( -1px );
	color: #fff;
}

.gpc-share-facebook { background-color: #1877f2; }
.gpc-share-twitter { background-color: #14171a; }
.gpc-share-pinterest { background-color: #e60023; }
.gpc-share-whatsapp { background-color: #25d366; }
.gpc-copy-link { background-color: var( --gpc-muted ); }

/* ==========================================================================
   17. Dark mode toggle button
   ========================================================================== */
.gpc-theme-toggle {
	position: fixed;
	left: 24px;
	bottom: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var( --gpc-border );
	background-color: var( --gpc-surface );
	color: var( --gpc-ink );
	cursor: pointer;
	font-size: 1.2rem;
	box-shadow: var( --gpc-shadow-md );
	z-index: 999;
}

.gpc-theme-toggle:hover {
	border-color: var( --gpc-primary );
}

@media ( max-width: 480px ) {
	.gpc-theme-toggle {
		left: 16px;
		bottom: 16px;
		width: 40px;
		height: 40px;
	}
}

.gpc-theme-icon-dark {
	display: none;
}

[data-theme="dark"] .gpc-theme-icon-light {
	display: none;
}

[data-theme="dark"] .gpc-theme-icon-dark {
	display: inline;
}

/* ==========================================================================
   18. Comment section restyle
   ========================================================================== */
.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list .comment-body {
	background-color: var( --gpc-surface );
	border: 1px solid var( --gpc-border );
	border-radius: var( --gpc-radius-md );
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.25rem;
}

.comment-list .children {
	list-style: none;
	margin: 0 0 0 2rem;
	padding: 0;
	border-left: 2px solid var( --gpc-border );
	padding-left: 1rem;
}

.comment-author .avatar {
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 10px;
}

.comment-author .fn {
	font-family: var( --gpc-font-ui );
	font-weight: 700;
	font-style: normal;
}

.comment-metadata {
	font-family: var( --gpc-font-ui );
	font-size: 0.8rem;
}

.comment-metadata a {
	color: var( --gpc-muted );
}

.comment-content p {
	font-size: 1rem;
	margin-bottom: 0.75em;
}

.comment-reply-link {
	display: inline-block;
	font-family: var( --gpc-font-ui );
	font-size: 0.8rem;
	font-weight: 600;
	color: var( --gpc-primary );
	border: 1px solid var( --gpc-primary );
	border-radius: 999px;
	padding: 4px 14px;
	text-decoration: none;
}

.comment-reply-link:hover {
	background-color: var( --gpc-primary );
	color: #fff;
}

#respond {
	background-color: var( --gpc-surface );
	border: 1px solid var( --gpc-border );
	border-radius: var( --gpc-radius-md );
	padding: 1.5rem;
	margin-top: 1.5rem;
}

/* ==========================================================================
   19. Dark mode - color token overrides
   ========================================================================== */
[data-theme="dark"] {
	--gpc-ink: #ecefec;
	--gpc-bg: #161c19;
	--gpc-surface: #1f2925;
	--gpc-primary: #63ab99;
	--gpc-primary-dark: #82c2b0;
	--gpc-accent: #eab35f;
	--gpc-accent-dark: #f0c079;
	--gpc-border: #33403a;
	--gpc-muted: #9aa39d;
}

[data-theme="dark"] .site-header,
[data-theme="dark"] .main-navigation,
[data-theme="dark"] .main-nav-container {
	background-color: var( --gpc-surface );
	border-color: var( --gpc-border );
}

[data-theme="dark"] .post-box,
[data-theme="dark"] .post-content-wrapper,
[data-theme="dark"] .gpc-disclosure-banner,
[data-theme="dark"] .gpc-toc,
[data-theme="dark"] .pros-cons-box,
[data-theme="dark"] .verdict-box,
[data-theme="dark"] .author-box,
[data-theme="dark"] blockquote,
[data-theme="dark"] .widget,
[data-theme="dark"] #respond,
[data-theme="dark"] .comment-list .comment-body {
	background-color: var( --gpc-surface );
	border-color: var( --gpc-border );
	color: var( --gpc-ink );
}

[data-theme="dark"] .ingredient-table-wrapper th,
[data-theme="dark"] table th {
	background-color: var( --gpc-primary-dark );
	color: #10201a;
}

[data-theme="dark"] .wp-block-table tbody tr:nth-child( even ),
[data-theme="dark"] table tbody tr:nth-child( even ) {
	background-color: #202a26;
}

[data-theme="dark"] .site-footer,
[data-theme="dark"] .footer-widgets {
	background-color: #0e1310;
	border-top: 1px solid var( --gpc-border );
}

[data-theme="dark"] .cat-links a,
[data-theme="dark"] .tags-links a {
	background-color: rgba( 99, 171, 153, 0.18 );
}

[data-theme="dark"] .comment-reply-link {
	color: var( --gpc-primary );
	border-color: var( --gpc-primary );
}

/*
 * The rules below cover colors that are hardcoded (not token-based) in the
 * structural style.css - reading-time/last-updated badges, breadcrumbs,
 * author bio text, excerpt text, and the entry title color. Without these,
 * that text stays dark-gray-on-dark (poor contrast) or shows as a bright
 * light-gray badge that doesn't match the rest of a dark page.
 */
[data-theme="dark"] .gpc-reading-time,
[data-theme="dark"] .gpc-last-updated {
	background-color: var( --gpc-surface );
	color: var( --gpc-muted );
}

[data-theme="dark"] .gpc-breadcrumbs,
[data-theme="dark"] .gpc-breadcrumb-sep,
[data-theme="dark"] .entry-summary,
[data-theme="dark"] .author-credentials,
[data-theme="dark"] .author-box-bio,
[data-theme="dark"] .post-box .post-content p {
	color: var( --gpc-muted );
}

[data-theme="dark"] .entry-header h2,
[data-theme="dark"] .post-box .post-content h4 {
	color: var( --gpc-ink );
}

[data-theme="dark"] .gpc-toc-list a {
	color: var( --gpc-primary );
}

[data-theme="dark"] .gpc-related-posts,
[data-theme="dark"] .gpc-share-buttons {
	border-color: var( --gpc-border );
}

[data-theme="dark"] .gpc-faq-item,
[data-theme="dark"] .gpc-faq-item summary.gpc-faq-question,
[data-theme="dark"] .gpc-newsletter-box,
[data-theme="dark"] .gpc-price-box {
	background-color: var( --gpc-surface );
	border-color: var( --gpc-border );
	color: var( --gpc-ink );
}

[data-theme="dark"] .gpc-newsletter-form input[type="email"] {
	background-color: var( --gpc-bg );
	color: var( --gpc-ink );
	border-color: var( --gpc-border );
}

/* ==========================================================================
   20. Reading progress bar
   ========================================================================== */
.gpc-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: transparent;
	z-index: 1000;
}

/* The WP admin bar (logged-in users only) sits at top:0 with a much
   higher z-index and would otherwise completely cover this 4px bar. */
body.admin-bar .gpc-reading-progress {
	top: 32px;
}

@media ( max-width: 782px ) {
	body.admin-bar .gpc-reading-progress {
		top: 46px;
	}
}

.gpc-reading-progress-bar {
	height: 100%;
	width: 0;
	background-color: var( --gpc-accent );
	transition: width 0.1s ease-out;
}

/* ==========================================================================
   21. FAQ accordion
   ========================================================================== */
.gpc-faq-item {
	border: 1px solid var( --gpc-border );
	border-radius: var( --gpc-radius-md );
	margin-bottom: 12px;
	overflow: hidden;
}

.gpc-faq-item details {
	padding: 0;
}

.gpc-faq-item summary.gpc-faq-question {
	cursor: pointer;
	list-style: none;
	padding: 1rem 1.25rem;
	font-family: var( --gpc-font-ui );
	font-weight: 600;
	background-color: var( --gpc-surface );
	position: relative;
	padding-right: 2.5rem;
}

.gpc-faq-item summary.gpc-faq-question::-webkit-details-marker {
	display: none;
}

.gpc-faq-item summary.gpc-faq-question::after {
	content: '+';
	position: absolute;
	right: 1.25rem;
	top: 50%;
	transform: translateY( -50% );
	font-size: 1.4rem;
	color: var( --gpc-primary );
	transition: transform 0.2s ease;
}

.gpc-faq-item details[open] summary.gpc-faq-question::after {
	transform: translateY( -50% ) rotate( 45deg );
}

.gpc-faq-item .gpc-faq-answer {
	padding: 0 1.25rem 1.25rem;
}

.gpc-faq-item .gpc-faq-answer p {
	font-size: 1rem;
	margin-bottom: 0;
}

/* ==========================================================================
   22. Newsletter signup
   ========================================================================== */
.gpc-newsletter-box {
	background-color: var( --gpc-surface );
	border: 1px solid var( --gpc-border );
	border-radius: var( --gpc-radius-md );
	padding: 2rem;
	text-align: center;
	margin: 2rem 0;
}

.gpc-newsletter-form {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.gpc-newsletter-form input[type="email"] {
	flex: 1 1 260px;
	max-width: 320px;
	padding: 0.75em 1em;
	border: 1px solid var( --gpc-border );
	border-radius: var( --gpc-radius-sm );
	font-family: var( --gpc-font-ui );
}

.gpc-newsletter-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.gpc-newsletter-message {
	font-family: var( --gpc-font-ui );
	font-weight: 600;
	padding: 10px 16px;
	border-radius: var( --gpc-radius-sm );
	margin-bottom: 1rem;
	display: inline-block;
}

.gpc-newsletter-success {
	background-color: rgba( 43, 110, 98, 0.12 );
	color: var( --gpc-primary-dark, var( --gpc-primary ) );
}

.gpc-newsletter-error {
	background-color: rgba( 217, 48, 37, 0.1 );
	color: #b3261e;
}

/* ==========================================================================
   24. Price comparison / savings box
   ========================================================================== */
.gpc-price-box {
	background-color: var( --gpc-surface );
	border: 1px solid var( --gpc-border );
	border-radius: var( --gpc-radius-md );
	padding: 1.5rem;
	margin: 1.75rem 0;
	text-align: center;
}

.gpc-price-label {
	font-family: var( --gpc-font-ui );
	font-size: 0.85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var( --gpc-muted );
	margin-bottom: 0.25rem;
}

.gpc-price-regular {
	font-size: 1.4rem;
	font-weight: 600;
	color: var( --gpc-muted );
	text-decoration: line-through;
}

.gpc-price-sale {
	font-size: 1.7rem;
	font-weight: 700;
	color: var( --gpc-primary );
}

.gpc-price-savings {
	font-size: 1.4rem;
	font-weight: 700;
	color: var( --gpc-accent-dark, var( --gpc-accent ) );
}

/* ==========================================================================
   25. Print styles
   ========================================================================== */
@media print {
	.site-header,
	.main-navigation,
	.gpc-skip-link,
	.gpc-back-to-top,
	.gpc-reading-progress,
	.gpc-theme-toggle,
	.gpc-share-buttons,
	.gpc-newsletter-box,
	.gpc-toc-toggle,
	.widget-area,
	aside,
	.author-box,
	.gpc-related-posts,
	.site-footer,
	.footer-widgets,
	#respond,
	.comments-area {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
		font-size: 12pt;
	}

	.entry-content a {
		color: #000;
		text-decoration: underline;
	}

	.entry-content img {
		max-width: 100% !important;
		box-shadow: none;
	}

	.inside-article {
		box-shadow: none;
		padding: 0;
	}
}
