/*
Theme Name: Markitome Motor Club
Theme URI: https://garage-deals.local
Author: Codex for Garage Deals
Description: Custom coupon marketplace theme for Garage Deals.
Version: 1.5.0
Text Domain: markitome-motor-club
*/

:root {
	--gd-bg: #f6f1e8;
	--gd-surface: #fffdfa;
	--gd-surface-strong: #ffffff;
	--gd-border: #e8ddcc;
	--gd-border-strong: #d8c8b2;
	--gd-text: #171411;
	--gd-text-soft: #6c655d;
	--gd-text-muted: #8b847c;
	--gd-black: #0f0f10;
	--gd-gold: #d3a760;
	--gd-gold-soft: #efe0c2;
	--gd-cream: #f8f1e4;
	--gd-success: #257b49;
	--gd-danger: #b52b27;
	--gd-shadow: 0 18px 48px rgba(17, 14, 10, 0.08);
	--gd-radius-xl: 34px;
	--gd-radius-lg: 24px;
	--gd-radius-md: 18px;
	--gd-radius-sm: 12px;
	--gd-container: min(1440px, calc(100vw - 40px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(211, 167, 96, 0.18), transparent 28%),
		linear-gradient(180deg, #faf5ee 0%, #f7f0e5 100%);
	color: var(--gd-text);
	font-family: "Noto Sans", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

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

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-shell {
	min-height: 100vh;
}

main {
	padding-bottom: 56px;
}

.site-utility-bar {
	background: var(--gd-black);
	color: rgba(255, 255, 255, 0.92);
}

.site-utility-bar__inner,
.site-header__inner,
.content-frame,
.hero-slider-section,
.benefit-strip,
.deal-section,
.site-footer__inner {
	width: var(--gd-container);
	margin: 0 auto;
}

.site-utility-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 13px 0;
}

.site-social-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #ffffff;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.site-social-link svg {
	width: 16px;
	height: 16px;
}

.site-social-link:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.28);
}

.site-utility-links a {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	backdrop-filter: blur(14px);
}

.site-header__inner--main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px 0 18px;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.brand-mark__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 18px;
	background: linear-gradient(180deg, #1f1d1a, #0f0f10);
	color: #f6dfb0;
	font-family: "Roboto", sans-serif;
	font-size: 1.45rem;
	font-weight: 900;
	box-shadow: 0 16px 28px rgba(15, 15, 16, 0.16);
}

.brand-mark__text {
	display: grid;
	gap: 2px;
}

.brand-mark__text strong {
	font-family: "Roboto", sans-serif;
	font-size: clamp(1.55rem, 2vw, 2rem);
	font-weight: 900;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.brand-mark__text small {
	color: var(--gd-text-soft);
	font-size: 0.92rem;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.header-portal-link,
.button-link,
.cta-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--gd-black);
	color: #ffffff;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 16px 30px rgba(15, 15, 16, 0.14);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-portal-link {
	min-height: 54px;
	padding: 0 24px;
	background: linear-gradient(180deg, #222120, #111112);
}

.header-portal-link svg {
	width: 18px;
	height: 18px;
}

.header-portal-link:hover,
.button-link:hover,
.cta-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	transform: translateY(-1px);
	box-shadow: 0 20px 34px rgba(15, 15, 16, 0.18);
	background: #202022;
	color: #ffffff;
}

.cta-button--ghost,
.button-link {
	background: transparent;
	color: var(--gd-text);
	border-color: var(--gd-border-strong);
	box-shadow: none;
}

.cta-button--ghost:hover,
.button-link:hover {
	background: rgba(255, 255, 255, 0.82);
	color: var(--gd-text);
}

.cta-button--dark {
	background: var(--gd-black);
	color: #ffffff;
}

.cta-button--footer {
	background: #ffffff;
	color: var(--gd-black);
}

.cta-button--footer:hover {
	background: #f9f2e6;
	color: var(--gd-black);
}

.cta-button--footer-alt {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.2);
	color: #ffffff;
	box-shadow: none;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	background: rgba(211, 167, 96, 0.18);
	color: #73542a;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.section-kicker--footer {
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.84);
}

.hero-slider-section {
	padding-top: 18px;
}

.hero-slider {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(17, 14, 10, 0.08);
	border-radius: 38px;
	background:
		radial-gradient(circle at top right, rgba(211, 167, 96, 0.28), transparent 32%),
		linear-gradient(135deg, #fffdfa 0%, #f3ebdf 100%);
	box-shadow: var(--gd-shadow);
}

.hero-slider__track {
	display: flex;
	animation: gdHeroSlider 18s ease-in-out infinite;
}

.hero-slide {
	flex: 0 0 100%;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	align-items: stretch;
	min-height: 620px;
}

.hero-slide__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 22px;
	padding: 72px 72px 72px 78px;
}

.hero-slide__content h1,
.portal-page-title,
.woocommerce-products-header__title.page-title {
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-size: clamp(2.8rem, 5vw, 4.9rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 0.96;
	text-transform: uppercase;
}

.hero-slide__content p,
.commerce-hero__content p,
.about-hero__content p,
.page-card p,
.notice-banner p,
.benefit-card p,
.deal-card p,
.site-footer p {
	margin: 0;
	color: var(--gd-text-soft);
	font-size: 1rem;
}

.hero-slide__media {
	position: relative;
	min-height: 100%;
	padding: 28px;
}

.hero-slide__media::before {
	content: "";
	position: absolute;
	inset: 28px 28px 28px 0;
	border-radius: 32px;
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.15), transparent),
		linear-gradient(135deg, #0f0f10 0%, #1c1b1d 42%, #3a3022 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-slide__media::after {
	content: "";
	position: absolute;
	inset: 56px 56px 56px 28px;
	border: 1px dashed rgba(255, 255, 255, 0.2);
	border-radius: 28px;
}

.hero-slide__media span {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 520px;
	padding: 24px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	padding-top: 6px;
}

.hero-slider__dots {
	position: absolute;
	left: 78px;
	bottom: 34px;
	display: flex;
	gap: 10px;
}

.hero-slider__dots span {
	display: block;
	width: 48px;
	height: 5px;
	border-radius: 999px;
	background: rgba(17, 14, 10, 0.14);
}

.hero-slider__dots span:nth-child(1) {
	background: rgba(17, 14, 10, 0.68);
}

.benefit-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.benefit-card,
.page-card,
.commerce-panel,
.deal-card,
.notice-banner,
.about-summary-card,
.process-card,
.about-value-item,
.woocommerce .woocommerce-product-gallery,
.woocommerce div.product .summary,
.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order-table,
#payment,
#customer_details,
.woocommerce-MyAccount-content,
.woocommerce-form-coupon-toggle,
.woocommerce form.checkout_coupon {
	border: 1px solid rgba(17, 14, 10, 0.07);
	border-radius: var(--gd-radius-lg);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--gd-shadow);
}

.benefit-card {
	padding: 24px 26px;
}

.benefit-card h2,
.section-heading h2,
.page-card h2,
.about-value-item h3,
.process-card h3,
.footer-panel h3,
.site-footer h2,
.woocommerce div.product .product_title,
.woocommerce-checkout #order_review_heading,
.cart_totals h2 {
	margin: 0 0 10px;
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	line-height: 1;
}

.benefit-card h2 {
	font-size: 1.28rem;
}

.deal-section,
.content-frame {
	margin-top: 30px;
}

.section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.section-heading h2 {
	font-size: clamp(2rem, 4vw, 3rem);
}

.section-link {
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--gd-text);
}

.deal-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.deal-card {
	overflow: hidden;
}

.deal-card__image,
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce div.product div.images {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(17, 14, 10, 0.07);
	background: linear-gradient(180deg, #f9f1e4, #e8dcc8);
}

.deal-card__image img,
.woocommerce ul.products li.product img,
.woocommerce div.product div.images img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.deal-card__image:hover img,
.woocommerce ul.products li.product:hover img {
	transform: scale(1.03);
}

.deal-card__body {
	display: grid;
	gap: 14px;
	padding: 22px;
}

.deal-card__badge,
.woocommerce ul.products li.product .price {
	display: inline-flex;
	align-items: center;
	align-self: start;
}

.deal-card__badge {
	padding: 0.42rem 0.8rem;
	border-radius: 999px;
	background: #f6ead5;
	color: #6e542b;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.deal-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-size: 1.55rem;
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.02;
	text-transform: uppercase;
}

.deal-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.deal-card__price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--gd-black);
	font-family: "Roboto", sans-serif;
	font-size: 1.28rem;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.deal-card__footer .cta-button {
	min-height: 46px;
	padding: 0 18px;
	font-size: 0.84rem;
}

.commerce-hero,
.about-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: 24px;
	align-items: stretch;
}

.commerce-hero__content,
.about-hero__content,
.about-hero__panel,
.page-card,
.commerce-panel,
.process-card {
	padding: 34px;
}

.commerce-hero__panel {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 34px;
	border: 1px solid rgba(17, 14, 10, 0.07);
	border-radius: var(--gd-radius-lg);
	background: linear-gradient(180deg, #151416 0%, #242225 100%);
	box-shadow: var(--gd-shadow);
}

.commerce-hero__panel span {
	display: inline-flex;
	align-items: center;
	padding: 0.9rem 1rem;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.92rem;
	font-weight: 700;
}

.commerce-panel--storefront {
	margin-top: 26px;
	padding: 24px;
}

.commerce-page {
	width: min(1180px, calc(100vw - 40px));
	margin: 0 auto;
}

.commerce-page__intro {
	display: grid;
	gap: 18px;
}

.commerce-page__intro--compact {
	gap: 12px;
}

.commerce-page__intro--compact .portal-page-title {
	font-size: clamp(2rem, 3.8vw, 3rem);
}

.commerce-page__intro--compact .commerce-panel {
	margin-top: 6px;
}

.notice-banner {
	margin-bottom: 18px;
	padding: 18px 20px;
}

.notice-success {
	border-color: rgba(37, 123, 73, 0.16);
	background: rgba(226, 246, 234, 0.92);
}

.notice-error {
	border-color: rgba(181, 43, 39, 0.16);
	background: rgba(254, 239, 238, 0.96);
}

.portal-page-shell {
	width: min(1360px, calc(100vw - 40px));
	margin: 0 auto;
}

.site-footer {
	background: #111112;
	color: #ffffff;
	margin-top: 64px;
}

.site-footer__inner {
	padding: 44px 0 28px;
}

.footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
	gap: 28px;
	align-items: start;
}

.footer-brand-panel,
.footer-panel {
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.03);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.footer-brand-panel {
	padding: 34px;
}

.footer-brand-panel h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	margin: 14px 0;
}

.footer-brand-panel p {
	color: rgba(255, 255, 255, 0.72);
	max-width: 620px;
}

.footer-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 24px;
}

.footer-meta-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.footer-panel {
	padding: 24px 22px;
}

.footer-panel h3 {
	font-size: 1.05rem;
	margin-bottom: 14px;
}

.footer-links {
	margin: 0;
	padding-left: 18px;
	color: rgba(255, 255, 255, 0.72);
}

.footer-links li + li {
	margin-top: 10px;
}

.footer-links a:hover {
	color: #ffffff;
}

.footer-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-top: 24px;
	margin-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bar p {
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.9rem;
}

.about-grid,
.about-strip {
	display: grid;
	gap: 22px;
	margin-top: 24px;
}

.about-grid {
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.about-value-list {
	display: grid;
	gap: 16px;
}

.about-value-item {
	padding: 20px;
}

.process-card {
	position: relative;
	overflow: hidden;
}

.process-card__step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: var(--gd-black);
	color: #ffffff;
	font-size: 0.86rem;
	font-weight: 800;
}

.about-strip {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce .quantity,
.woocommerce .return-to-shop,
.woocommerce-store-notice {
	display: none !important;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	margin: 0 0 18px !important;
	padding: 18px 20px !important;
	border: 1px solid rgba(17, 14, 10, 0.08) !important;
	border-radius: 20px !important;
	background: rgba(255, 255, 255, 0.9) !important;
	box-shadow: var(--gd-shadow);
}

.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before {
	top: 19px !important;
}

.woocommerce-info .button,
.woocommerce-message .button,
.woocommerce-error .button {
	float: right;
	margin-left: 12px;
}

.woocommerce .woocommerce-notices-wrapper:empty {
	display: none !important;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none !important;
}

.woocommerce ul.products li.product {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(17, 14, 10, 0.07);
	border-radius: var(--gd-radius-lg);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--gd-shadow);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
	display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 20px 20px 10px;
}

.woocommerce ul.products li.product .price {
	padding: 0 20px 16px;
	margin: 0;
}

.woocommerce ul.products li.product .button {
	margin: 0 20px 20px !important;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
	gap: 28px;
}

.woocommerce div.product div.images,
.woocommerce div.product .summary {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.woocommerce div.product .summary {
	padding: 34px;
}

.woocommerce div.product .product_title {
	font-size: clamp(2.2rem, 3.4vw, 3.4rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	margin-bottom: 16px;
}

.woocommerce-product-details__short-description,
.woocommerce-tabs,
.woocommerce div.product .woocommerce-product-details__short-description p,
.woocommerce div.product .summary p {
	color: var(--gd-text-soft);
}

.woocommerce-product-gallery__wrapper {
	overflow: hidden;
	border-radius: 22px;
}

.woocommerce-product-gallery__image a {
	display: block;
}

.woocommerce div.product form.cart {
	margin: 22px 0 0 !important;
}

.woocommerce div.product form.cart .button {
	width: 100%;
}

.woocommerce-product-attributes,
.woocommerce-tabs .panel {
	font-size: 0.95rem;
}

.woocommerce-tabs ul.tabs {
	margin: 24px 0 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

.woocommerce-tabs ul.tabs li {
	border: 0 !important;
	background: transparent !important;
	border-radius: 999px !important;
	margin: 0 10px 10px 0 !important;
	padding: 0 !important;
}

.woocommerce-tabs ul.tabs li a {
	padding: 0.8rem 1rem !important;
	border-radius: 999px;
	background: rgba(17, 14, 10, 0.06);
}

.woocommerce-tabs ul.tabs li.active a {
	background: var(--gd-black);
	color: #ffffff;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
	display: block;
}

.woocommerce-cart .commerce-panel,
.woocommerce-checkout .commerce-panel {
	padding: 28px;
}

.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1.46fr) minmax(340px, 0.92fr);
	gap: 24px;
	align-items: start;
}

.woocommerce-cart .woocommerce-cart-form {
	padding: 18px;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid rgba(17, 14, 10, 0.08);
	border-radius: 18px;
	overflow: hidden;
	margin: 0;
	background: #ffffff;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	padding: 16px 14px;
	border-color: rgba(17, 14, 10, 0.08);
}

.woocommerce-cart table.shop_table th,
.woocommerce-checkout table.shop_table th {
	background: #f8f3eb;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--gd-text-soft);
}

.woocommerce-cart table.shop_table td.product-name a {
	font-weight: 700;
}

.woocommerce-cart table.shop_table td.actions {
	padding: 14px;
}

.woocommerce-cart .actions .button[name="update_cart"] {
	display: none !important;
}

.woocommerce-cart .cart-collaterals {
	width: 100% !important;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	width: 100% !important;
	float: none !important;
	padding: 20px;
}

.woocommerce-cart .cart_totals h2 {
	font-size: 2rem;
}

.woocommerce-cart .wc-proceed-to-checkout {
	padding-bottom: 0 !important;
}

.woocommerce-cart .wc-proceed-to-checkout .button {
	width: 100%;
	max-width: 100%;
	min-height: 52px;
	padding: 0 16px;
	font-size: 0.82rem;
	text-align: center;
}

.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
	align-items: start;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
	width: 100%;
	float: none;
}

.woocommerce-checkout #customer_details {
	grid-column: 1;
	padding: 26px;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce-checkout #payment {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.96));
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
	width: 100%;
	float: none;
	padding: 0;
}

.woocommerce-checkout #customer_details .col-2 {
	display: none;
}

.woocommerce-checkout .col2-set::before,
.woocommerce-checkout .col2-set::after {
	display: none;
}

.woocommerce-checkout #customer_details h3,
.woocommerce-checkout #order_review_heading {
	font-family: "Roboto", sans-serif;
	font-size: 2.15rem;
	font-weight: 900;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.woocommerce-checkout #order_review_heading {
	grid-column: 2;
	margin: 0;
	padding: 0 6px;
	font-size: 1.75rem;
}

.woocommerce-checkout #order_review {
	display: contents;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
	grid-column: 2;
	padding: 16px;
	border-radius: 22px;
	overflow: hidden;
}

.woocommerce-checkout #payment {
	grid-column: 1 / -1;
	padding: 20px;
	margin-top: 2px;
	border-radius: 22px;
}

.woocommerce-checkout .commerce-panel {
	padding: 22px;
}

.woocommerce-checkout .woocommerce {
	max-width: 1120px;
	margin: 0 auto;
}

.woocommerce-checkout .woocommerce-privacy-policy-text p,
.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text {
	font-size: 0.92rem;
}

.woocommerce-checkout .mobile-sticky-actions,
.woocommerce-cart .mobile-sticky-actions {
	display: none !important;
}

.woocommerce form .form-row {
	margin-bottom: 16px;
	padding: 0;
}

.woocommerce form .form-row label {
	margin-bottom: 8px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gd-text-soft);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	min-height: 54px;
	padding: 0 16px;
	border: 1px solid var(--gd-border-strong);
	border-radius: 14px;
	background: #fffefb;
	box-shadow: none;
	font-size: 1rem;
}

.woocommerce form .form-row textarea {
	min-height: 120px;
	padding: 16px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
	outline: none;
	border-color: #c39c5d;
	box-shadow: 0 0 0 4px rgba(211, 167, 96, 0.12);
}

.woocommerce #payment ul.payment_methods {
	padding: 0 !important;
	margin: 0 0 20px !important;
	border: 0 !important;
}

.woocommerce #payment ul.payment_methods li {
	margin: 0 0 14px !important;
	padding: 18px !important;
	border: 1px solid rgba(17, 14, 10, 0.08);
	border-radius: 18px;
	background: #ffffff;
}

.woocommerce #payment div.payment_box {
	margin-top: 12px;
	border-radius: 16px;
	background: #f7f1e7 !important;
	color: var(--gd-text-soft);
}

.woocommerce #payment div.payment_box::before {
	border-bottom-color: #f7f1e7 !important;
}

.woocommerce #payment .place-order {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.woocommerce #payment #place_order {
	width: 100%;
}

.woocommerce-checkout-review-order-table td.product-name {
	font-weight: 700;
}

.woocommerce-checkout-review-order-table td.product-total,
.woocommerce-checkout-review-order-table td:last-child {
	text-align: right;
}

.woocommerce-checkout-review-order-table .product-quantity {
	color: var(--gd-text-soft);
}

.woocommerce-order {
	display: grid;
	gap: 20px;
}

@keyframes gdHeroSlider {
	0%,
	27% {
		transform: translateX(0);
	}
	33%,
	60% {
		transform: translateX(-100%);
	}
	66%,
	93% {
		transform: translateX(-200%);
	}
	100% {
		transform: translateX(0);
	}
}

@media (max-width: 1180px) {
	.hero-slide {
		grid-template-columns: 1fr;
	}

	.hero-slide__content {
		padding: 56px 42px 24px;
	}

	.hero-slide__media {
		order: 2;
		padding: 0 24px 24px;
	}

	.hero-slide__media::before {
		inset: 0;
	}

	.hero-slide__media::after {
		inset: 24px;
	}

	.hero-slide__media span {
		min-height: 360px;
	}

	.footer-top,
	.about-grid,
	.commerce-hero {
		grid-template-columns: 1fr;
	}

	.footer-meta-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.site-header__inner--main {
		padding: 16px 0;
	}

	.brand-mark__text small {
		display: none;
	}

	.benefit-strip,
	.about-strip,
	.deal-card-grid,
	.footer-meta-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce-cart .woocommerce,
	.woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
	}

	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout .woocommerce-checkout-review-order-table,
	.woocommerce-checkout #payment {
		grid-column: 1;
	}

	.woocommerce-checkout #order_review {
		display: block;
	}

	.commerce-page {
		width: min(100vw - 24px, 100vw - 24px);
	}
}

@media (max-width: 767px) {
	:root {
		--gd-container: min(100vw - 24px, 100vw - 24px);
	}

	body {
		font-size: 15px;
	}

	main {
		padding-bottom: 40px;
	}

	.site-utility-bar__inner,
	.site-header__inner--main {
		flex-wrap: wrap;
	}

	.site-utility-bar__inner {
		padding: 12px 0;
	}

	.site-utility-links {
		width: 100%;
	}

	.site-utility-links a {
		display: inline-flex;
		width: 100%;
		justify-content: center;
	}

	.brand-mark {
		width: 100%;
	}

	.header-actions {
		width: 100%;
	}

	.header-portal-link,
	.button-link {
		width: 100%;
	}

	.hero-slider-section {
		padding-top: 10px;
	}

	.hero-slider {
		border-radius: 26px;
	}

	.hero-slide {
		min-height: unset;
	}

	.hero-slide__content {
		padding: 30px 22px 18px;
		gap: 18px;
	}

	.hero-slide__content h1,
	.portal-page-title,
	.woocommerce-products-header__title.page-title {
		font-size: clamp(2rem, 12vw, 3rem);
	}

	.hero-slider__dots {
		position: static;
		padding: 0 22px 20px;
	}

	.hero-slide__media {
		padding: 0 18px 18px;
	}

	.hero-slide__media::after {
		inset: 18px;
	}

	.hero-slide__media span {
		min-height: 250px;
		font-size: 0.82rem;
	}

	.benefit-strip,
	.about-grid,
	.about-strip,
	.deal-card-grid,
	.footer-meta-grid,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.section-heading {
		align-items: start;
		flex-direction: column;
	}

	.commerce-hero__content,
	.about-hero__content,
	.about-hero__panel,
	.page-card,
	.commerce-panel,
	.process-card,
	.footer-brand-panel,
	.footer-panel,
	.woocommerce div.product .summary,
	.woocommerce-checkout #customer_details,
	.woocommerce-checkout .woocommerce-checkout-review-order-table,
	.woocommerce-checkout #payment {
		padding: 22px;
	}

	.woocommerce div.product {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart .woocommerce-cart-form,
	.woocommerce-cart .cart-collaterals .cart_totals {
		padding: 16px;
	}

	.woocommerce-cart table.shop_table,
	.woocommerce-checkout table.shop_table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.woocommerce-cart .wc-proceed-to-checkout .button,
	.woocommerce #payment #place_order,
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.cta-button {
		width: 100%;
	}

	.footer-bar {
		flex-direction: column;
		align-items: flex-start;
	}

	.commerce-page__intro--compact .portal-page-title {
		font-size: 2.1rem;
	}

	.woocommerce-checkout .commerce-panel {
		padding: 16px;
	}

	.woocommerce-checkout #order_review_heading {
		padding: 0;
		font-size: 1.6rem;
	}
}

.mobile-sticky-actions,
.mobile-portal-button,
.mobile-whatsapp-button {
	display: none;
}

.single-product .woocommerce-tabs {
	display: none !important;
}

@media (min-width: 981px) {
	.commerce-page--checkout {
		width: var(--gd-container);
	}

	.hero-slider,
	.hero-slide {
		height: 70vh;
		min-height: 540px;
	}

	.hero-slide__content {
		padding: 56px 56px 56px 62px;
	}

	.hero-slide__media span {
		min-height: 0;
	}

	.deal-section {
		width: min(1200px, calc(100vw - 40px));
		margin-left: auto;
		margin-right: auto;
	}

	.deal-card-grid--homepage {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 18px;
	}

	.deal-card-grid--homepage .deal-card__body {
		padding: 18px;
		gap: 12px;
	}

	.deal-card-grid--homepage .deal-card h3 {
		font-size: 1.32rem;
	}

	.deal-card-grid--homepage .deal-card p {
		font-size: 0.92rem;
	}

	.deal-card-grid--homepage .deal-card__footer .cta-button {
		min-height: 44px;
		padding: 0 16px;
		font-size: 0.8rem;
	}

	.woocommerce-checkout .commerce-panel {
		max-width: none;
		width: 100%;
		margin: 0 auto;
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.woocommerce-checkout form.checkout {
		max-width: none;
		width: 100%;
		margin: 0 auto;
		padding: 30px 32px 28px;
		border: 1px solid rgba(17, 14, 10, 0.08);
		border-radius: 28px;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.96));
		box-shadow: var(--gd-shadow);
		grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
		grid-template-areas:
			"billing ordertitle"
			"billing ordertable"
			"billing payment";
		justify-content: space-between;
		column-gap: 34px;
		row-gap: 20px;
	}

	.woocommerce-checkout #customer_details,
	.woocommerce-checkout .woocommerce-checkout-review-order-table,
	.woocommerce-checkout #payment {
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.woocommerce-checkout #customer_details {
		grid-area: billing;
		padding-right: 8px;
		border-right: 1px solid rgba(17, 14, 10, 0.08);
	}

	.woocommerce-checkout #order_review_heading {
		grid-area: ordertitle;
		padding: 0;
		align-self: end;
		font-size: 1.85rem;
	}

	.woocommerce-checkout .woocommerce-checkout-review-order-table {
		grid-area: ordertable;
		align-self: start;
	}

	.woocommerce-checkout #payment {
		grid-area: payment;
		align-self: start;
		margin-top: 0;
		padding-top: 24px;
		border-top: 1px solid rgba(17, 14, 10, 0.08);
	}

	.woocommerce-checkout #payment ul.payment_methods {
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.woocommerce-checkout #payment ul.payment_methods li {
		margin: 0 !important;
	}

	.woocommerce-checkout #payment .place-order {
		margin-top: 16px;
	}
}

@media (min-width: 981px) and (max-width: 1180px) {
	.hero-slide {
		grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
	}

	.hero-slide__media {
		order: unset;
		padding: 24px;
	}

	.hero-slide__media::before {
		inset: 24px 24px 24px 0;
	}

	.hero-slide__media::after {
		inset: 44px 44px 44px 20px;
	}
}

@media (max-width: 767px) {
	main {
		padding-bottom: 118px;
	}

	.site-utility-bar__inner {
		flex-wrap: nowrap;
		gap: 10px;
		padding: 8px 0;
	}

	.site-social-links {
		gap: 6px;
	}

	.site-social-link {
		width: 30px;
		height: 30px;
	}

	.site-social-link svg {
		width: 13px;
		height: 13px;
	}

	.site-utility-links {
		width: auto;
		margin-left: auto;
	}

	.site-utility-links a {
		width: auto;
		font-size: 0.72rem;
		justify-content: flex-end;
	}

	.site-header__inner--main {
		justify-content: center;
		padding: 12px 0 8px;
	}

	.brand-mark {
		width: auto;
		margin: 0 auto;
		justify-content: center;
	}

	.brand-mark__icon {
		width: 42px;
		height: 42px;
		font-size: 1.14rem;
	}

	.brand-mark__text strong {
		font-size: clamp(1.24rem, 6vw, 1.58rem);
	}

	.header-actions {
		display: none;
	}

	.hero-slider,
	.hero-slide {
		height: 60svh;
		min-height: 430px;
	}

	.hero-slide__content {
		padding: 24px 20px 12px;
		gap: 14px;
	}

	.hero-slide__content p {
		display: none;
	}

	.hero-slide__content .section-kicker {
		padding: 0.42rem 0.72rem;
		font-size: 0.68rem;
	}

	.hero-slide__media {
		padding: 0 16px 14px;
	}

	.hero-slide__media span {
		min-height: 140px;
		font-size: 0.72rem;
	}

	.hero-actions {
		padding-top: 0;
	}

	.hero-actions .cta-button--dark {
		display: none;
	}

	.hero-actions .cta-button--ghost {
		width: auto;
		min-height: 44px;
		padding: 0 18px;
	}

	.hero-slider__dots {
		padding: 0 20px 14px;
	}

	.mobile-sticky-actions,
	.mobile-portal-button,
	.mobile-whatsapp-button {
		display: block;
	}

	.mobile-portal-button {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
		z-index: 80;
		padding: 16px 20px;
		border-radius: 999px;
		background: #111112;
		color: #ffffff;
		font-size: 0.9rem;
		font-weight: 800;
		letter-spacing: 0.08em;
		text-align: center;
		text-transform: uppercase;
		box-shadow: 0 18px 34px rgba(17, 14, 10, 0.22);
	}

	.mobile-whatsapp-button {
		position: fixed;
		right: 16px;
		bottom: calc(env(safe-area-inset-bottom, 0px) + 82px);
		z-index: 81;
		width: 56px;
		height: 56px;
		border-radius: 999px;
		background: #25d366;
		color: #ffffff;
		box-shadow: 0 16px 30px rgba(37, 211, 102, 0.32);
	}

	.mobile-whatsapp-button svg {
		width: 24px;
		height: 24px;
		margin: 16px;
	}
}

/* April 2026 typography and coupons refresh */
:root {
	--gd-font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--gd-space-1: 0.5rem;
	--gd-space-2: 1rem;
	--gd-space-3: 1.5rem;
	--gd-space-4: 2rem;
}

body,
button,
input,
select,
textarea {
	font-family: var(--gd-font-family);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-slide__content h1,
.portal-page-title,
.woocommerce-products-header__title.page-title,
.benefit-card h2,
.section-heading h2,
.page-card h2,
.about-value-item h3,
.process-card h3,
.footer-panel h3,
.site-footer h2,
.woocommerce div.product .product_title,
.woocommerce-checkout #order_review_heading,
.cart_totals h2,
.deal-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.brand-mark__text strong {
	font-family: var(--gd-font-family);
	letter-spacing: -0.03em;
	text-transform: none;
}

h1,
.hero-slide__content h1,
.portal-page-title,
.woocommerce-products-header__title.page-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3rem;
}

h2,
.section-heading h2,
.site-footer h2 {
	font-size: 2rem;
	font-weight: 600;
	line-height: 2.5rem;
}

h3,
.deal-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.875rem;
}

h4 {
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.875rem;
}

h5,
.benefit-card h2,
.footer-panel h3 {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625rem;
}

h6 {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5rem;
}

p,
li,
.hero-slide__content p,
.commerce-hero__content p,
.about-hero__content p,
.page-card p,
.notice-banner p,
.benefit-card p,
.deal-card p,
.site-footer p,
.section-heading__copy {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
}

small,
.brand-mark__text small,
.footer-bar p,
.woocommerce form .form-row label {
	font-size: 0.75rem;
	line-height: 1.125rem;
}

.site-utility-links a,
.section-link,
.deal-card__badge,
.section-kicker {
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.125rem;
}

.header-portal-link,
.button-link,
.cta-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25rem;
	letter-spacing: 0;
	text-transform: none;
}

.brand-mark__icon {
	font-family: var(--gd-font-family);
	font-size: 1.25rem;
	font-weight: 700;
}

.brand-mark__text strong {
	font-size: clamp(1.4rem, 1.7vw, 1.75rem);
	font-weight: 700;
}

.section-kicker {
	padding: 0.5rem 0.875rem;
}

.site-utility-links a,
.section-link {
	letter-spacing: 0;
	text-transform: none;
}

.hero-slider-section {
	padding-top: 1rem;
}

.hero-slider {
	border-radius: 2rem;
}

.hero-slide {
	grid-template-columns: minmax(0, 1.16fr) minmax(250px, 0.84fr);
	min-height: 24rem;
}

.hero-slide__content {
	gap: 1rem;
	padding: 2.5rem 2.75rem 2.5rem 3rem;
}

.hero-slide__content h1 {
	max-width: 12ch;
}

.hero-slide__content p {
	max-width: 38rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.hero-slide__media {
	padding: 1.25rem 1.25rem 1.25rem 0;
}

.hero-slide__media::before {
	inset: 1.25rem 1.25rem 1.25rem 0;
	border-radius: 1.5rem;
}

.hero-slide__media::after {
	inset: 2rem 2rem 2rem 0.875rem;
	border-radius: 1.25rem;
}

.hero-slide__media span {
	min-height: 18rem;
	padding: 1rem;
	font-size: 0.75rem;
	line-height: 1rem;
}

.hero-actions {
	gap: 0.75rem;
	padding-top: 0.25rem;
}

.hero-slider__dots {
	left: 3rem;
	bottom: 1.5rem;
}

.benefit-strip {
	gap: 1rem;
	margin-top: 1.5rem;
}

.benefit-card {
	padding: 1.5rem;
}

.benefit-card p {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.deal-section,
.content-frame {
	margin-top: 2rem;
}

.deal-section {
	width: min(1200px, calc(100vw - 40px));
	margin-left: auto;
	margin-right: auto;
}

.deal-section--catalog {
	margin-top: 0;
}

.section-heading {
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.section-heading__copy {
	margin-top: 0.75rem;
	max-width: 42rem;
	color: var(--gd-text-soft);
}

.deal-card-grid,
.deal-card-grid--homepage,
.deal-card-grid--catalog {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.deal-card {
	border-radius: 1.5rem;
}

.deal-card__body {
	gap: 0.75rem;
	padding: 1.25rem;
}

.deal-card__badge {
	padding: 0.375rem 0.75rem;
}

.deal-card p {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.deal-card__footer {
	gap: 0.75rem;
	align-items: flex-end;
}

.deal-card__price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-family: var(--gd-font-family);
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.625rem;
	letter-spacing: -0.02em;
}

.deal-card__footer .cta-button {
	min-height: 2.875rem;
	padding: 0 1rem;
	font-size: 0.875rem;
}

.page-card--empty {
	padding: 2rem;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	font-size: 1rem;
}

@media (min-width: 981px) {
	.hero-slider,
	.hero-slide {
		height: 38vh;
		min-height: 21rem;
	}

	.hero-slide__content {
		padding: 2.5rem 2.5rem 2.5rem 3rem;
	}

	.deal-section--catalog {
		width: min(1200px, calc(100vw - 40px));
	}
}

@media (max-width: 980px) {
	.deal-card-grid,
	.deal-card-grid--homepage,
	.deal-card-grid--catalog {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	body,
	button,
	input,
	select,
	textarea {
		font-size: 0.9375rem;
		line-height: 1.375rem;
	}

	h1,
	.hero-slide__content h1,
	.portal-page-title,
	.woocommerce-products-header__title.page-title {
		font-size: 1.75rem;
		font-weight: 700;
		line-height: 2.125rem;
	}

	h2,
	.section-heading h2,
	.site-footer h2 {
		font-size: 1.5rem;
		font-weight: 600;
		line-height: 1.875rem;
	}

	h3,
	.deal-card h3,
	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 1.25rem;
		font-weight: 600;
		line-height: 1.625rem;
	}

	h4 {
		font-size: 1.125rem;
		font-weight: 500;
		line-height: 1.5rem;
	}

	h5,
	.benefit-card h2,
	.footer-panel h3 {
		font-size: 1rem;
		font-weight: 500;
		line-height: 1.375rem;
	}

	h6 {
		font-size: 0.875rem;
		font-weight: 500;
		line-height: 1.25rem;
	}

	p,
	li,
	.hero-slide__content p,
	.commerce-hero__content p,
	.about-hero__content p,
	.page-card p,
	.notice-banner p,
	.benefit-card p,
	.deal-card p,
	.site-footer p,
	.section-heading__copy {
		font-size: 0.8125rem;
		line-height: 1.25rem;
	}

	small,
	.brand-mark__text small,
	.footer-bar p,
	.woocommerce form .form-row label,
	.deal-card__badge,
	.section-kicker,
	.site-utility-links a,
	.section-link {
		font-size: 0.6875rem;
		line-height: 1rem;
	}

	.header-portal-link,
	.button-link,
	.cta-button,
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce #respond input#submit {
		font-size: 0.875rem;
		line-height: 1.25rem;
	}

	.hero-slider,
	.hero-slide {
		height: auto;
		min-height: 18rem;
	}

	.hero-slide__content {
		padding: 1.5rem 1rem 0.875rem;
		gap: 0.75rem;
	}

	.hero-slide__content h1 {
		max-width: none;
	}

	.hero-slide__media {
		padding: 0 1rem 0.875rem;
	}

	.hero-slide__media::after {
		inset: 1.125rem;
	}

	.hero-slide__media span {
		min-height: 7rem;
	}

	.hero-slider__dots {
		left: auto;
		bottom: auto;
		padding: 0 1rem 0.875rem;
	}

	.benefit-strip,
	.deal-card-grid,
	.deal-card-grid--homepage,
	.deal-card-grid--catalog {
		grid-template-columns: 1fr;
	}
}

/* Apple-inspired redesign */
:root {
	--gd-apple-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--gd-apple-blue: #0071e3;
	--gd-apple-link: #0066cc;
	--gd-apple-link-dark: #2997ff;
	--gd-apple-text: #1d1d1f;
	--gd-apple-text-soft: rgba(0, 0, 0, 0.8);
	--gd-apple-text-muted: rgba(0, 0, 0, 0.48);
	--gd-apple-bg: #ffffff;
	--gd-apple-bg-alt: #f5f5f7;
	--gd-apple-bg-dark: #000000;
	--gd-apple-surface-dark: #1d1d1f;
	--gd-apple-surface-dark-alt: #272729;
	--gd-apple-white-soft: rgba(255, 255, 255, 0.82);
	--gd-apple-shadow: rgba(0, 0, 0, 0.22) 3px 5px 30px 0;
	--gd-apple-radius: 8px;
	--gd-apple-pill: 980px;
	--gd-apple-shell: min(1200px, calc(100vw - 48px));
}

html {
	scroll-behavior: smooth;
}

body.garage-deals-theme {
	background: var(--gd-apple-bg);
	color: var(--gd-apple-text);
	font-family: var(--gd-apple-font);
	font-size: 1.0625rem;
	font-weight: 400;
	line-height: 1.47;
	letter-spacing: -0.374px;
}

body.garage-deals-theme button,
body.garage-deals-theme input,
body.garage-deals-theme select,
body.garage-deals-theme textarea {
	font-family: inherit;
}

body.garage-deals-theme h1,
body.garage-deals-theme h2,
body.garage-deals-theme h3,
body.garage-deals-theme h4,
body.garage-deals-theme h5,
body.garage-deals-theme h6,
body.garage-deals-theme .portal-page-title,
body.garage-deals-theme .woocommerce-products-header__title.page-title,
body.garage-deals-theme .woocommerce div.product .product_title,
body.garage-deals-theme .woocommerce-checkout #order_review_heading,
body.garage-deals-theme .cart_totals h2,
body.garage-deals-theme .site-footer h2 {
	margin: 0;
	color: inherit;
	font-family: var(--gd-apple-font);
	font-weight: 600;
	letter-spacing: -0.28px;
	text-transform: none;
}

body.garage-deals-theme h1,
body.garage-deals-theme .portal-page-title,
body.garage-deals-theme .woocommerce-products-header__title.page-title {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	line-height: 1.07;
}

body.garage-deals-theme h2,
body.garage-deals-theme .site-footer h2,
body.garage-deals-theme .woocommerce div.product .product_title,
body.garage-deals-theme .woocommerce-checkout #order_review_heading,
body.garage-deals-theme .cart_totals h2 {
	font-size: clamp(2rem, 3vw, 2.5rem);
	line-height: 1.1;
}

body.garage-deals-theme h3,
body.garage-deals-theme .deal-card h3,
body.garage-deals-theme .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.garage-deals-theme .about-value-item h3,
body.garage-deals-theme .process-card h3,
body.garage-deals-theme .footer-panel h3 {
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.19;
	letter-spacing: 0.231px;
}

body.garage-deals-theme p,
body.garage-deals-theme li,
body.garage-deals-theme .page-card p,
body.garage-deals-theme .commerce-panel p,
body.garage-deals-theme .deal-card p,
body.garage-deals-theme .benefit-card p,
body.garage-deals-theme .site-footer p,
body.garage-deals-theme .mvh-notice p,
body.garage-deals-theme .mvh-auth-card p,
body.garage-deals-theme .mvh-portal-header p {
	color: var(--gd-apple-text-soft);
}

body.garage-deals-theme a {
	text-decoration: none;
}

.site-shell {
	min-height: 100vh;
}

main {
	padding-bottom: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding: 12px 0;
	background: transparent;
}

.site-header__glass,
.apple-shell,
.content-frame,
.commerce-page,
.portal-page-shell,
.site-footer__inner {
	width: var(--gd-apple-shell);
	margin: 0 auto;
}

.site-header__glass {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 16px;
	min-height: 48px;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(232, 232, 237, 0.92);
	backdrop-filter: saturate(180%) blur(20px);
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #ffffff;
	min-width: 0;
}

.brand-mark__logo {
	display: block;
	width: auto;
	max-width: 220px;
	height: auto;
	max-height: 40px;
	object-fit: contain;
}

.brand-mark__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.375rem;
	height: 2.375rem;
	border-radius: 0.75rem;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 247, 0.88) 100%);
	color: #1d1d1f;
	font-family: var(--gd-apple-font);
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.4px;
	box-shadow: rgba(0, 0, 0, 0.18) 0 8px 20px;
	flex-shrink: 0;
}

.brand-mark__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	font-family: var(--gd-apple-font);
	font-size: 0.875rem;
	font-weight: 600;
	box-shadow: none;
}

.brand-mark__text {
	display: block;
}

.brand-mark__text strong {
	color: #ffffff;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.24px;
	text-transform: none;
}

.brand-mark__text small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.33;
	letter-spacing: -0.12px;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
}

.site-nav a,
.site-utility-links a {
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.33;
	letter-spacing: -0.12px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	color: #ffffff;
}

.site-nav-tools,
.site-social-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-nav-tools {
	justify-content: flex-end;
	justify-self: end;
}

.site-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: background 0.2s ease, color 0.2s ease;
}

.site-social-link svg {
	width: 14px;
	height: 14px;
}

.site-social-link:hover,
.site-social-link:focus-visible {
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
}

.header-portal-link,
.button-link,
.cta-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.mvh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 8px 18px;
	border: 1px solid transparent;
	border-radius: var(--gd-apple-pill);
	background: var(--gd-apple-blue);
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	box-shadow: none;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.header-portal-link:hover,
.button-link:hover,
.cta-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.mvh-button:hover {
	background: #0077ed;
	color: #ffffff;
	transform: none;
	box-shadow: none;
}

.button-link,
.cta-button--ghost,
.cta-button--footer-alt,
.mvh-button-secondary {
	background: transparent;
	color: var(--gd-apple-link);
	border-color: currentColor;
}

.button-link:hover,
.cta-button--ghost:hover,
.cta-button--footer-alt:hover,
.mvh-button-secondary:hover {
	background: rgba(0, 102, 204, 0.06);
	color: var(--gd-apple-link);
}

.deal-link-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 40px;
	padding: 8px 16px;
	border: 1px solid currentColor;
	border-radius: var(--gd-apple-pill);
	color: var(--gd-apple-link);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.43;
	letter-spacing: -0.224px;
}

.deal-link-pill:hover,
.deal-link-pill:focus-visible {
	text-decoration: underline;
}

.deal-link-pill--light {
	color: var(--gd-apple-link-dark);
}

.apple-section {
	width: 100%;
	padding: 48px 0;
}

.apple-section--dark {
	background: var(--gd-apple-bg-dark);
	color: #ffffff;
}

.apple-section--light {
	background: var(--gd-apple-bg-alt);
	color: var(--gd-apple-text);
}

.apple-eyebrow,
.section-kicker,
.site-footer__eyebrow {
	margin: 0 0 10px;
	color: inherit;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.33;
	letter-spacing: -0.12px;
	text-transform: none;
	background: none;
	padding: 0;
	border-radius: 0;
	opacity: 0.8;
}

.apple-hero {
	padding-top: 72px;
	padding-bottom: 56px;
}

.apple-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	gap: 56px;
	align-items: center;
}

.apple-hero__content {
	max-width: 620px;
}

.apple-hero__inner--simple {
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.apple-hero__inner--simple .apple-hero__content {
	max-width: 760px;
}

.apple-hero .apple-eyebrow,
.apple-hero__content h1,
.apple-hero__content p {
	color: #ffffff;
}

body.garage-deals-theme .apple-hero .apple-hero__content > p {
	color: #ffffff;
	opacity: 1;
}

.apple-hero__content p {
	margin: 16px 0 0;
}

.apple-actions,
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
	padding-top: 0;
}

.apple-hero__visual {
	display: flex;
	justify-content: center;
}

.apple-device-card {
	width: min(100%, 460px);
	padding: 18px;
	border-radius: 28px;
	background: #0a0a0a;
	box-shadow: var(--gd-apple-shadow);
}

.apple-device-card__screen {
	overflow: hidden;
	border-radius: 24px;
	background: #111111;
	min-height: 420px;
}

.apple-device-card__screen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.apple-device-card__screen span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 420px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.875rem;
}

.apple-device-card__meta {
	padding: 16px 6px 6px;
}

.apple-device-card__meta p {
	margin: 0;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.75rem;
	line-height: 1.33;
	letter-spacing: -0.12px;
}

.apple-device-card__meta strong {
	display: block;
	margin-top: 4px;
	color: #ffffff;
	font-size: 1.3125rem;
	font-weight: 600;
	line-height: 1.19;
	letter-spacing: 0.231px;
}

.apple-hero__panels {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 40px;
}

.apple-hero__panel {
	padding: 20px 22px;
	border-radius: 8px;
	background: #1d1d1f;
}

.apple-hero__panel p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.0625rem;
	line-height: 1.47;
}

.apple-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.apple-benefit-card {
	padding: 28px;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: var(--gd-apple-shadow);
}

.apple-benefit-card__eyebrow {
	margin: 0 0 12px;
	color: var(--gd-apple-text-muted);
	font-size: 0.875rem;
	line-height: 1.29;
	letter-spacing: -0.224px;
}

.apple-benefit-card h2 {
	font-size: 1.75rem;
	font-weight: 400;
	line-height: 1.14;
	letter-spacing: 0.196px;
}

.apple-feature__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
	gap: 48px;
	align-items: center;
}

.apple-feature__copy {
	max-width: 420px;
}

.apple-feature__copy p {
	margin: 16px 0 0;
}

.apple-feature__price {
	margin-top: 18px;
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.19;
	letter-spacing: 0.231px;
	color: var(--gd-apple-text);
}

.apple-feature__media {
	overflow: hidden;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: var(--gd-apple-shadow);
}

.apple-feature__media img {
	width: 100%;
	display: block;
}

.apple-deals-showcase .section-heading h2,
.apple-deals-showcase .section-heading .section-heading__copy,
.apple-deals-showcase .section-heading a {
	color: #ffffff;
}

#home-coupons {
	scroll-margin-top: 96px;
}

#home-coupons .section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

#home-coupons .section-heading h2 {
	font-size: clamp(1.35rem, 2.1vw, 1.8rem);
	line-height: 1.18;
	white-space: nowrap;
}

#home-coupons .section-heading .deal-link-pill {
	flex-shrink: 0;
}

.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.section-heading__copy {
	margin-top: 12px;
	max-width: 700px;
}

.deal-section,
.content-frame {
	width: var(--gd-apple-shell);
	margin: 40px auto 0;
}

.deal-card-grid,
.deal-card-grid--homepage,
.deal-card-grid--catalog {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.deal-card {
	overflow: hidden;
	border: none;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: var(--gd-apple-shadow);
}

.deal-card__image {
	display: block;
	border-bottom: none;
	background: var(--gd-apple-bg-alt);
}

.deal-card__image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.deal-card__image:hover img {
	transform: none;
}

.deal-card__body {
	display: grid;
	gap: 12px;
	padding: 22px;
}

.deal-card__badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 0;
	color: var(--gd-apple-text-muted);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.33;
	letter-spacing: -0.12px;
	background: transparent;
	text-transform: none;
}

.deal-card h3 {
	color: var(--gd-apple-text);
}

.deal-card h3 a {
	color: inherit;
}

.deal-card p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.29;
	letter-spacing: -0.224px;
}

.deal-card__price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.19;
	letter-spacing: 0.231px;
	color: var(--gd-apple-text);
}

.deal-card__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.deal-card__footer .cta-button {
	min-height: 40px;
	padding: 8px 16px;
	font-size: 1rem;
}

.apple-deals-showcase .deal-card,
.apple-catalog .deal-card {
	background: #1d1d1f;
}

.apple-deals-showcase .deal-card__image,
.apple-catalog .deal-card__image {
	background: #f5f5f7;
}

.apple-deals-showcase .deal-card__badge,
.apple-catalog .deal-card__badge {
	color: rgba(255, 255, 255, 0.64);
}

.apple-deals-showcase .deal-card h3,
.apple-catalog .deal-card h3,
.apple-deals-showcase .deal-card__price,
.apple-catalog .deal-card__price {
	color: #ffffff;
}

.apple-deals-showcase .deal-card p,
.apple-catalog .deal-card p {
	color: rgba(255, 255, 255, 0.72);
}

.apple-deals-showcase--light {
	background: #ffffff;
}

.apple-deals-showcase--light .section-heading h2,
.apple-deals-showcase--light .section-heading .section-heading__copy,
.apple-deals-showcase--light .section-heading a {
	color: var(--gd-apple-text);
}

.apple-deals-showcase--light .deal-card {
	background: #ffffff;
}

.apple-deals-showcase--light .deal-card__badge,
.apple-deals-showcase--light .deal-card p {
	color: var(--gd-apple-text-soft);
}

.apple-deals-showcase--light .deal-card h3,
.apple-deals-showcase--light .deal-card__price {
	color: var(--gd-apple-text);
}

.apple-catalog {
	padding-top: 56px;
	padding-bottom: 64px;
}

.commerce-panel,
.page-card,
.benefit-card,
.about-summary-card,
.process-card,
.about-value-item,
.woocommerce .woocommerce-product-gallery,
.woocommerce div.product .summary,
.woocommerce-cart-form,
.cart-collaterals .cart_totals,
.woocommerce-checkout-review-order-table,
#payment,
#customer_details,
.woocommerce-MyAccount-content,
.woocommerce-form-coupon-toggle,
.woocommerce form.checkout_coupon {
	border: none;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: var(--gd-apple-shadow);
}

.content-frame--commerce .commerce-panel,
.content-frame .page-card {
	padding: 32px;
}

.about-hero,
.about-grid,
.about-strip {
	display: grid;
	gap: 24px;
}

.about-hero {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
	align-items: stretch;
}

.about-hero--single {
	grid-template-columns: minmax(0, 1fr);
}

.about-hero__content,
.about-hero__panel,
.process-card,
.about-value-item {
	padding: 32px;
}

.about-hero__content,
.about-hero__panel {
	border-radius: 12px;
	background: var(--gd-apple-bg-alt);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.about-grid {
	grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
}

.about-strip {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card__step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--gd-apple-bg-alt);
	color: var(--gd-apple-link);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.33;
}

.notice-banner,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	border: none !important;
	border-radius: 12px !important;
	background: #ffffff !important;
	box-shadow: var(--gd-apple-shadow);
}

.commerce-page {
	width: min(1320px, calc(100vw - 48px));
}

.commerce-page__intro,
.commerce-page__intro--compact {
	gap: 16px;
}

.commerce-page__intro--compact .portal-page-title {
	font-size: clamp(2rem, 3vw, 2.5rem);
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
	gap: 28px;
	align-items: start;
}

.woocommerce div.product .summary {
	padding: 36px;
}

.woocommerce div.product .summary p,
.woocommerce-product-details__short-description,
.woocommerce-product-details__short-description p {
	color: var(--gd-apple-text-soft);
}

.woocommerce div.product form.cart .button {
	width: auto;
}

.woocommerce div.product .quantity {
	display: none !important;
}

.single-product .product_meta {
	display: none !important;
}

.single-deal-shell {
	display: grid;
	gap: 28px;
}

.single-deal-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
	gap: 28px;
	align-items: start;
}

.single-deal-gallery {
	display: grid;
	gap: 16px;
}

.single-deal-gallery__frame {
	overflow: hidden;
	border-radius: 16px;
	background: var(--gd-apple-bg-alt);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.single-deal-gallery__frame img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.single-deal-gallery__thumbnails {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.single-deal-gallery__thumb {
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	background: #ffffff;
	cursor: pointer;
	overflow: hidden;
	box-shadow: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.single-deal-gallery__thumb img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.single-deal-gallery__thumb.is-active,
.single-deal-gallery__thumb:hover,
.single-deal-gallery__thumb:focus-visible {
	border-color: rgba(0, 113, 227, 0.45);
	box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.12);
	transform: translateY(-1px);
}

.single-deal-summary {
	padding: 36px;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: var(--gd-apple-shadow);
}

.single-deal-summary__partner {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 16px;
	color: var(--gd-apple-text-muted);
	font-size: 0.875rem;
	line-height: 1.29;
	letter-spacing: -0.224px;
}

.single-deal-summary__partner span {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: #6e6e73;
	color: #ffffff;
}

.single-deal-summary__lead {
	margin: 16px 0 0;
	color: var(--gd-apple-text-soft);
}

.single-deal-summary__actions {
	margin-top: 28px;
}

.single-deal-summary__actions .button {
	width: 100%;
}

.single-deal-details {
	padding: 32px;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: var(--gd-apple-shadow);
}

.single-deal-details__intro {
	margin-bottom: 20px;
}

.single-deal-details__content p {
	margin-top: 0;
	color: var(--gd-apple-text-soft);
}

.single-deal-rich-copy__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 24px;
}

.single-deal-rich-copy__grid section {
	padding: 20px;
	border-radius: 12px;
	background: var(--gd-apple-bg-alt);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.single-deal-rich-copy__grid h3 {
	margin: 0 0 12px;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.19;
	letter-spacing: 0.1px;
}

.single-deal-rich-copy__grid ul {
	margin: 0;
	padding-left: 18px;
	color: var(--gd-apple-text-soft);
}

.single-deal-rich-copy__grid li + li {
	margin-top: 10px;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
	display: block;
}

.woocommerce-cart .commerce-panel,
.woocommerce-checkout .commerce-panel {
	padding: 0;
	border: none;
	background: transparent;
	box-shadow: none;
}

.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
	gap: 28px;
	align-items: start;
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout form.checkout {
	padding: 24px;
	background: var(--gd-apple-bg-alt);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table {
	border: none;
	border-radius: 8px;
	background: #ffffff;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
	border-color: rgba(0, 0, 0, 0.06);
}

.woocommerce-cart table.shop_table th,
.woocommerce-checkout table.shop_table th {
	background: #ffffff;
	color: var(--gd-apple-text-muted);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.33;
	letter-spacing: -0.12px;
	text-transform: none;
}

.woocommerce-cart .wc-proceed-to-checkout .button,
.woocommerce #payment #place_order {
	width: 100%;
}

.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
	grid-template-areas:
		"billing ordertitle"
		"billing ordertable"
		"billing payment";
	gap: 24px 32px;
	max-width: none;
}

.woocommerce-checkout #customer_details {
	grid-area: billing;
	padding: 0 24px 0 0;
	border: none;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.woocommerce-checkout #order_review_heading {
	grid-area: ordertitle;
	align-self: end;
	padding: 0;
}

.woocommerce-checkout #order_review {
	display: contents;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
	grid-area: ordertable;
	padding: 16px;
}

.woocommerce-checkout #payment {
	grid-area: payment;
	padding: 20px;
}

.woocommerce form .form-row label {
	color: var(--gd-apple-text-muted);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.33;
	letter-spacing: -0.12px;
	text-transform: none;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single,
.mvh-field-group input {
	min-height: 52px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 11px;
	background: #ffffff;
	font-size: 1rem;
	box-shadow: none;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.select2-container--default.select2-container--focus .select2-selection--single,
.mvh-field-group input:focus {
	outline: none;
	border-color: var(--gd-apple-blue);
	box-shadow: 0 0 0 2px rgba(0, 113, 227, 0.18);
}

.woocommerce #payment ul.payment_methods li {
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	background: #ffffff;
}

.woocommerce #payment div.payment_box {
	background: var(--gd-apple-bg-alt) !important;
	color: var(--gd-apple-text-soft);
}

.woocommerce #payment div.payment_box::before {
	border-bottom-color: var(--gd-apple-bg-alt) !important;
}

.site-footer {
	margin-top: 0;
	padding: 40px 0 24px;
	background: var(--gd-apple-bg-alt);
	color: var(--gd-apple-text);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
	gap: 32px;
	padding-bottom: 24px;
}

.site-footer__brand {
	max-width: 520px;
}

.site-footer__column h3 {
	margin-bottom: 12px;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.29;
	letter-spacing: -0.224px;
}

.footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links li,
.footer-links a {
	color: var(--gd-apple-text-soft);
	font-size: 0.75rem;
	line-height: 1.33;
	letter-spacing: -0.12px;
}

.footer-links li + li {
	margin-top: 10px;
}

.site-footer__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer__bar p {
	margin: 0;
	color: var(--gd-apple-text-muted);
	font-size: 0.75rem;
	line-height: 1.33;
	letter-spacing: -0.12px;
}

.mobile-portal-button {
	background: var(--gd-apple-blue);
	color: #ffffff;
	box-shadow: rgba(0, 0, 0, 0.22) 0 12px 36px;
}

.mobile-whatsapp-button {
	box-shadow: rgba(0, 0, 0, 0.22) 0 12px 36px;
}

@media (max-width: 1024px) {
	.site-header__glass {
		grid-template-columns: auto 1fr;
		gap: 16px;
		padding: 10px 14px;
	}

	.site-nav {
		gap: 18px;
	}

	.apple-hero__inner,
	.apple-feature__inner,
	.about-hero,
	.about-grid {
		grid-template-columns: 1fr;
	}

	.apple-benefits,
	.apple-hero__panels,
	.about-strip,
	.site-footer__grid,
	.deal-card-grid,
	.deal-card-grid--homepage,
	.deal-card-grid--catalog {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.site-footer__grid {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
	}

	.site-footer__brand {
		grid-column: auto;
	}
}

@media (max-width: 767px) {
	:root {
		--gd-apple-shell: min(100vw - 24px, 100vw - 24px);
	}

	body.garage-deals-theme {
		font-size: 0.9375rem;
		line-height: 1.47;
	}

	body.garage-deals-theme h1,
	body.garage-deals-theme .portal-page-title,
	body.garage-deals-theme .woocommerce-products-header__title.page-title {
		font-size: 1.75rem;
		line-height: 1.14;
	}

	body.garage-deals-theme h2,
	body.garage-deals-theme .site-footer h2,
	body.garage-deals-theme .woocommerce div.product .product_title,
	body.garage-deals-theme .woocommerce-checkout #order_review_heading,
	body.garage-deals-theme .cart_totals h2 {
		font-size: 1.5rem;
		line-height: 1.14;
	}

	body.garage-deals-theme h3,
	body.garage-deals-theme .deal-card h3,
	body.garage-deals-theme .woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 1.25rem;
	}

	.site-header {
		padding: 8px 0;
	}

	.site-header__glass {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas: "brand portal";
		padding: 10px 12px;
		border-radius: 18px;
	}

	.brand-mark {
		grid-area: brand;
		justify-self: start;
	}

	.brand-mark__logo {
		max-width: min(48vw, 176px);
		max-height: 34px;
	}

	.brand-mark__badge {
		width: 2.125rem;
		height: 2.125rem;
		border-radius: 0.625rem;
		font-size: 0.75rem;
	}

	.site-nav {
		display: none;
	}

	.site-nav-tools {
		grid-area: portal;
		justify-content: flex-end;
		gap: 8px;
	}

	.header-portal-link {
		min-height: 36px;
		padding: 6px 12px;
		font-size: 0.875rem;
	}

	.apple-section {
		padding: 32px 0;
	}

	.apple-hero {
		padding-top: 48px;
		padding-bottom: 32px;
	}

	.apple-hero__inner,
	.apple-hero__panels,
	.apple-benefits,
	.about-strip,
	.site-footer__grid,
	.deal-card-grid,
	.deal-card-grid--homepage,
	.deal-card-grid--catalog,
	.woocommerce-cart .woocommerce,
	.woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
	}

	.apple-hero__inner {
		gap: 28px;
	}

	.apple-hero__inner--simple {
		gap: 0;
	}

	.apple-device-card__screen,
	.apple-device-card__screen span {
		min-height: 280px;
	}

	.section-heading,
	.site-footer__bar {
		flex-direction: column;
		align-items: flex-start;
	}

	#home-coupons .section-heading {
		display: flex;
	}

	#home-coupons .section-heading h2 {
		white-space: normal;
	}

	.content-frame,
	.deal-section,
	.commerce-page,
	.portal-page-shell {
		width: var(--gd-apple-shell);
		margin-top: 24px;
	}

	.content-frame--commerce .commerce-panel,
	.content-frame .page-card,
	.about-hero__content,
	.about-hero__panel,
	.process-card,
	.about-value-item,
	.woocommerce div.product .summary,
	.woocommerce .woocommerce-product-gallery,
	.woocommerce-cart .woocommerce-cart-form,
	.woocommerce-cart .cart-collaterals .cart_totals,
	.woocommerce-checkout form.checkout,
	.woocommerce-checkout .woocommerce-checkout-review-order-table,
	.woocommerce-checkout #payment {
		padding: 20px;
	}

	.woocommerce div.product {
		grid-template-columns: 1fr;
	}

	.single-deal-layout,
	.single-deal-rich-copy__grid {
		grid-template-columns: 1fr;
	}

	.woocommerce-checkout #customer_details {
		padding-right: 0;
		border-right: none;
	}

	.woocommerce-checkout form.checkout {
		grid-template-columns: 1fr;
		grid-template-areas:
			"billing"
			"ordertitle"
			"ordertable"
			"payment";
	}

	.woocommerce-checkout #payment {
		margin-top: 0;
	}
}

.deal-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
	font-size: 0.875rem;
	line-height: 1.43;
	letter-spacing: -0.224px;
	color: var(--gd-apple-text-muted);
}

.deal-card__meta span {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: #6e6e73;
	color: #ffffff;
}

.deal-card--recommended {
	box-shadow: rgba(0, 113, 227, 0.18) 0 0 0 1px, rgba(0, 0, 0, 0.24) 0 18px 44px;
	transform: translateY(-4px);
}

.apple-feature--nearest .apple-feature__copy {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.apple-feature__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.43;
	letter-spacing: -0.224px;
	color: var(--gd-apple-text-muted);
}

.apple-feature__meta span {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.05);
}

.apple-feature__status {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.43;
	letter-spacing: -0.224px;
	color: var(--gd-apple-link);
}

.apple-feature__media a {
	display: block;
}

.apple-deals-showcase .deal-card__meta,
.apple-catalog .deal-card__meta {
	color: rgba(255, 255, 255, 0.72);
}

.apple-deals-showcase .deal-card__meta span,
.apple-catalog .deal-card__meta span {
	background: #6e6e73;
	color: #ffffff;
}

.deal-link-pill--button {
	appearance: none;
	cursor: pointer;
	font: inherit;
}

.deal-card__price del,
.woocommerce ul.products li.product .price del,
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	color: rgba(29, 29, 31, 0.48);
	font-weight: 500;
	margin-right: 8px;
	text-decoration-thickness: 2px;
}

.deal-card__price ins,
.woocommerce ul.products li.product .price ins,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	color: var(--gd-apple-blue);
	font-weight: 700;
	text-decoration: none;
}

body.garage-deals-theme button,
body.garage-deals-theme input[type="button"],
body.garage-deals-theme input[type="submit"],
body.garage-deals-theme .button,
body.garage-deals-theme .wp-element-button,
body.garage-deals-theme .header-portal-link,
body.garage-deals-theme .button-link,
body.garage-deals-theme .cta-button,
body.garage-deals-theme .deal-link-pill--button,
body.garage-deals-theme .woocommerce a.button,
body.garage-deals-theme .woocommerce button.button,
body.garage-deals-theme .woocommerce input.button,
body.garage-deals-theme .woocommerce #respond input#submit,
body.garage-deals-theme .woocommerce-cart .wc-proceed-to-checkout .button,
body.garage-deals-theme .woocommerce div.product form.cart .button,
body.garage-deals-theme .mvh-button,
body.garage-deals-theme .mobile-portal-button {
	background: #23264c;
	border-color: #23264c;
	color: #ffffff;
}

body.garage-deals-theme button:hover,
body.garage-deals-theme button:focus-visible,
body.garage-deals-theme input[type="button"]:hover,
body.garage-deals-theme input[type="button"]:focus-visible,
body.garage-deals-theme input[type="submit"]:hover,
body.garage-deals-theme input[type="submit"]:focus-visible,
body.garage-deals-theme .button:hover,
body.garage-deals-theme .button:focus-visible,
body.garage-deals-theme .wp-element-button:hover,
body.garage-deals-theme .wp-element-button:focus-visible,
body.garage-deals-theme .header-portal-link:hover,
body.garage-deals-theme .header-portal-link:focus-visible,
body.garage-deals-theme .button-link:hover,
body.garage-deals-theme .button-link:focus-visible,
body.garage-deals-theme .cta-button:hover,
body.garage-deals-theme .cta-button:focus-visible,
body.garage-deals-theme .deal-link-pill--button:hover,
body.garage-deals-theme .deal-link-pill--button:focus-visible,
body.garage-deals-theme .woocommerce a.button:hover,
body.garage-deals-theme .woocommerce a.button:focus-visible,
body.garage-deals-theme .woocommerce button.button:hover,
body.garage-deals-theme .woocommerce button.button:focus-visible,
body.garage-deals-theme .woocommerce input.button:hover,
body.garage-deals-theme .woocommerce input.button:focus-visible,
body.garage-deals-theme .woocommerce #respond input#submit:hover,
body.garage-deals-theme .woocommerce #respond input#submit:focus-visible,
body.garage-deals-theme .woocommerce-cart .wc-proceed-to-checkout .button:hover,
body.garage-deals-theme .woocommerce-cart .wc-proceed-to-checkout .button:focus-visible,
body.garage-deals-theme .woocommerce div.product form.cart .button:hover,
body.garage-deals-theme .woocommerce div.product form.cart .button:focus-visible,
body.garage-deals-theme .mvh-button:hover,
body.garage-deals-theme .mvh-button:focus-visible,
body.garage-deals-theme .mobile-portal-button:hover,
body.garage-deals-theme .mobile-portal-button:focus-visible {
	background: #23264c;
	border-color: #23264c;
	color: #ffffff;
}

body.garage-deals-theme .site-header,
body.garage-deals-theme .site-header a,
body.garage-deals-theme .site-header .header-portal-link {
	color: #ffffff;
}

body.garage-deals-theme .deal-card__price ins,
body.garage-deals-theme .woocommerce ul.products li.product .price ins,
body.garage-deals-theme .woocommerce div.product p.price ins,
body.garage-deals-theme .woocommerce div.product span.price ins {
	color: #a42c31;
}

body.garage-deals-theme .deal-link-pill {
	white-space: nowrap;
	background: #a42c31;
	border-color: #a42c31;
	color: #ffffff;
	text-decoration: none;
}

body.garage-deals-theme .deal-link-pill:hover,
body.garage-deals-theme .deal-link-pill:focus-visible {
	background: #a42c31;
	border-color: #a42c31;
	color: #ffffff;
	text-decoration: none;
}

body.garage-deals-theme .apple-hero .cta-button--primary {
	background: #a42c31;
	border-color: #a42c31;
	color: #ffffff;
}

body.garage-deals-theme .apple-hero .cta-button--primary:hover,
body.garage-deals-theme .apple-hero .cta-button--primary:focus-visible {
	background: #a42c31;
	border-color: #a42c31;
	color: #ffffff;
}

@media (max-width: 767px) {
	.deal-card__meta,
	.apple-feature__meta {
		gap: 6px;
		font-size: 0.8125rem;
		line-height: 1.4;
	}

	.deal-card__meta span,
	.apple-feature__meta span {
		padding: 5px 9px;
	}

	body.garage-deals-theme .site-header__glass {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		position: relative;
	}

	body.garage-deals-theme .brand-mark {
		flex: 0 0 auto;
		justify-content: flex-start !important;
		justify-self: flex-start !important;
		left: 12px;
		margin-right: 0;
		min-width: 0;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: auto !important;
	}

	body.garage-deals-theme .brand-mark__logo {
		max-width: min(34vw, 128px);
		object-position: left center;
	}

	body.garage-deals-theme .site-nav-tools {
		flex: 0 0 auto;
		justify-content: flex-end !important;
		justify-self: flex-end !important;
		margin-left: auto;
	}
}
