:root {
	--ink: #161616;
	--muted: #66625d;
	--line: #d8d9d2;
	--paper: #f7f7f3;
	--soft: #e8ece5;
	--accent: #ff5a1f;
	--accent-dark: #cb3e12;
	--green: #6d8c62;
	--white: #ffffff;
	--shadow: 0 16px 45px rgba(22, 22, 22, 0.08);
}

* { box-sizing: border-box; }

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.45;
	letter-spacing: 0;
}

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

a { color: inherit; }

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--ink);
	color: var(--white);
	padding: 8px 12px;
	z-index: 20;
}

.skip-link:focus { left: 12px; }

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	border-bottom: 1px solid var(--line);
	background: rgba(245, 242, 236, 0.94);
	backdrop-filter: blur(14px);
}

.header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	max-width: 1360px;
	margin: 0 auto;
	padding: 13px 24px;
}

.site-brand a {
	font-weight: 800;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.08em;
}

.primary-nav {
	display: flex;
	gap: 20px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.primary-nav a,
.header-actions a {
	text-decoration: none;
}

.primary-nav ul {
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-actions {
	justify-self: end;
	display: flex;
	gap: 14px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.header-actions .cart-link span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	margin-left: 4px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--white);
	font-size: 11px;
}

.site-search-panel {
	display: none;
	border-top: 1px solid var(--line);
	background: var(--white);
}

.site-search-panel:target,
.site-header:focus-within .site-search-panel {
	display: block;
}

.site-search-panel form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
	max-width: 980px;
	margin: 0 auto;
	padding: 14px 24px;
}

.site-search-panel input {
	min-height: 44px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 4px;
}

.site-search-panel button {
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: 4px;
	background: var(--ink);
	color: var(--white);
	font-weight: 900;
	text-transform: uppercase;
}

.announcement-bar {
	display: flex;
	justify-content: center;
	gap: 26px;
	padding: 8px 16px;
	background: var(--ink);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.home-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	min-height: calc(100vh - 54px);
	border-bottom: 1px solid var(--line);
}

.hero-media {
	position: relative;
	overflow: hidden;
	background: #ddd6ca;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: clamp(36px, 7vw, 96px);
	background: var(--soft);
}

.section-kicker {
	margin-bottom: 10px;
	color: var(--accent-dark);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

.hero-copy h1 {
	margin-bottom: 16px;
	font-size: clamp(42px, 7vw, 88px);
	line-height: 0.95;
}

.hero-copy p {
	max-width: 560px;
	color: var(--muted);
	font-size: 19px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.button-primary,
.button-secondary,
.newsletter button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid var(--ink);
	border-radius: 4px;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
}

.button-primary {
	background: var(--accent);
	color: var(--white);
	border-color: var(--accent);
}

.button-secondary {
	background: transparent;
	color: var(--ink);
}

.feature-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1px solid var(--line);
	background: var(--white);
}

.feature-strip div {
	padding: 24px;
	border-right: 1px solid var(--line);
}

.feature-strip strong {
	display: block;
	font-size: 26px;
	line-height: 1;
}

.feature-strip span {
	color: var(--muted);
	font-size: 14px;
}

.collection-band,
.customer-reviews,
.related-products-band,
.content-index {
	max-width: 1280px;
	margin: 0 auto;
	padding: 72px 24px;
}

.search-results-page,
.policy-page,
.woocommerce-cart-shell,
.woocommerce-checkout-shell {
	max-width: 1280px;
	margin: 0 auto;
	padding: 56px 24px;
}

.search-hero,
.policy-shell {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: clamp(24px, 5vw, 56px);
}

.search-hero h1,
.policy-shell h1,
.cart-checkout-hero h1 {
	font-size: clamp(34px, 5vw, 64px);
	line-height: 1;
}

.search-results-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 24px;
}

.search-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden;
}

.search-card a {
	display: block;
	padding: 18px;
	text-decoration: none;
}

.search-card img {
	width: calc(100% + 36px);
	max-width: none;
	margin: -18px -18px 18px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: var(--soft);
}

.policy-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 34px;
	align-items: start;
}

.policy-content {
	color: var(--muted);
	font-size: 17px;
}

.policy-checklist {
	padding: 20px;
	background: #f4f8f1;
	border-radius: 6px;
	color: #32572d;
}

.policy-checklist h2 {
	font-size: 16px;
}

.policy-checklist li {
	margin-bottom: 8px;
}

.collection-band h2,
.customer-reviews h2 {
	max-width: 760px;
	font-size: clamp(28px, 4vw, 52px);
	line-height: 1;
}

.product-card-grid,
.review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.product-card,
.review-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden;
}

.product-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	background: var(--soft);
}

.product-card h3,
.product-card p,
.review-card {
	padding: 0 18px;
}

.product-card h3 { margin: 18px 0 6px; }
.product-card p { color: var(--muted); padding-bottom: 18px; }

.product-landing {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(390px, 440px);
	gap: 24px;
	max-width: 1480px;
	margin: 0 auto;
	padding: 24px;
	align-items: start;
}

.product-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.gallery-tile {
	position: relative;
	margin: 0;
	background: var(--soft);
	overflow: hidden;
	border-radius: 4px;
}

.gallery-tile img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

.gallery-tile figcaption {
	position: absolute;
	left: 12px;
	bottom: 12px;
	max-width: calc(100% - 24px);
	padding: 7px 10px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.purchase-panel {
	position: sticky;
	top: 82px;
	padding: 24px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	box-shadow: var(--shadow);
}

.rating-line {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: var(--green);
	font-size: 13px;
	font-weight: 800;
}

.purchase-panel h1 {
	margin: 12px 0;
	font-size: 33px;
	line-height: 1.04;
}

.lead,
.purchase-panel p {
	color: var(--muted);
}

.price-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 16px 0 8px;
}

.price-row strong { font-size: 26px; }
.price-row s { color: #9d9790; }
.price-row span {
	padding: 4px 8px;
	border-radius: 999px;
	background: #e6f2e1;
	color: #2b6b2d;
	font-size: 12px;
	font-weight: 900;
}

.wc-price-row {
	display: block;
}

.wc-price-row .price {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0;
	color: var(--ink);
	font-size: 26px;
	font-weight: 900;
}

.wc-price-row .woocommerce-Price-amount,
.wc-price-row .woocommerce-Price-amount span {
	display: inline;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.wc-price-row del {
	color: #9d9790;
	font-size: 18px;
	font-weight: 500;
}

.wc-price-row ins {
	text-decoration: none;
}

.sale-timer {
	margin-bottom: 16px;
	padding: 10px;
	background: #fff2ea;
	color: var(--accent-dark);
	border-radius: 4px;
	font-weight: 900;
	text-align: center;
}

.purchase-form fieldset {
	margin: 0 0 16px;
	padding: 0;
	border: 0;
}

.purchase-form legend {
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.variant-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.variant-swatch {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	padding: 5px 9px;
	border: 1px solid var(--line);
	border-radius: 4px;
	font-size: 12px;
	cursor: pointer;
}

.variant-swatch input,
.height-grid input,
.bundle-option input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.variant-swatch span {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--swatch);
	border: 1px solid rgba(0, 0, 0, 0.18);
}

.variant-swatch.is-selected,
.height-grid label:has(input:checked),
.bundle-option.is-selected {
	border-color: var(--accent);
	box-shadow: 0 0 0 1px var(--accent) inset;
}

.height-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.height-grid label {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px;
	border: 1px solid var(--line);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 800;
	text-align: center;
	cursor: pointer;
}

.bundle-options {
	display: grid;
	gap: 8px;
	margin-bottom: 14px;
}

.bundle-option {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	padding: 13px;
	border: 1px solid var(--line);
	border-radius: 4px;
	cursor: pointer;
}

.bundle-option small {
	display: block;
	color: var(--muted);
}

.add-cart {
	width: 100%;
	border: 0;
}

.woocommerce-buy-box form.cart,
.woocommerce-buy-box .variations_form {
	display: grid;
	gap: 12px;
	margin: 0 0 14px;
}

.woocommerce-buy-box table.variations {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-buy-box table.variations tr {
	display: grid;
	gap: 6px;
	margin-bottom: 10px;
}

.woocommerce-buy-box table.variations th,
.woocommerce-buy-box table.variations td {
	display: block;
	padding: 0;
	text-align: left;
}

.woocommerce-buy-box label {
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.woocommerce-buy-box select,
.woocommerce-buy-box input.qty {
	width: 100%;
	min-height: 42px;
	padding: 8px 10px;
	border: 1px solid var(--line);
	border-radius: 4px;
	background: var(--white);
	color: var(--ink);
}

.woocommerce-buy-box .quantity {
	margin-bottom: 10px;
}

.woocommerce-buy-box .single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 0 18px;
	border: 0 !important;
	border-radius: 4px;
	background: var(--accent) !important;
	color: var(--white) !important;
	font-weight: 900;
	text-transform: uppercase;
	cursor: pointer;
}

.woocommerce-buy-box .reset_variations {
	display: inline-block;
	margin-top: 6px;
	color: var(--muted);
	font-size: 12px;
}

.product-short-story {
	color: var(--muted);
}

.product-upsells {
	margin-top: 14px;
}

.trust-list {
	display: grid;
	gap: 8px;
	margin: 18px 0;
	padding: 16px;
	background: #f4f8f1;
	border-radius: 4px;
	list-style: none;
	color: #32572d;
	font-size: 14px;
	font-weight: 800;
}

.trust-list li::before {
	content: "✓ ";
}

details {
	border-top: 1px solid var(--line);
	padding: 13px 0;
}

summary {
	font-weight: 900;
	cursor: pointer;
}

.comparison-band {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--line);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.comparison-band > div {
	padding: 44px 24px;
	background: var(--white);
}

.product-story-band {
	display: grid;
	grid-template-columns: minmax(260px, 0.7fr) 1fr;
	gap: 24px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 58px 24px;
	border-top: 1px solid var(--line);
}

.product-story-band h2 {
	margin: 0;
	font-size: clamp(28px, 4vw, 52px);
	line-height: 1;
}

.product-story-band p {
	max-width: 720px;
	color: var(--muted);
	font-size: 18px;
}

.woocommerce-Reviews {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 24px;
	border-top: 1px solid var(--line);
}

.woocommerce-Reviews #comments,
.woocommerce-Reviews #review_form_wrapper {
	max-width: 860px;
}

.woocommerce-Reviews h2,
.woocommerce-Reviews .comment-reply-title {
	display: block;
	margin-bottom: 12px;
	font-size: clamp(26px, 3vw, 42px);
	line-height: 1;
	font-weight: 900;
}

.woocommerce-Reviews textarea,
.woocommerce-Reviews input[type="text"],
.woocommerce-Reviews input[type="email"] {
	width: 100%;
	min-height: 42px;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 4px;
	background: var(--white);
}

.woocommerce-Reviews textarea {
	min-height: 130px;
}

.woocommerce-Reviews .stars a {
	color: #f0bc1b;
}

.woocommerce-Reviews input[type="submit"] {
	min-height: 42px;
	padding: 0 18px;
	border: 0;
	border-radius: 4px;
	background: var(--accent);
	color: var(--white);
	font-weight: 900;
	text-transform: uppercase;
}

.review-dashboard {
	display: grid;
	grid-template-columns: minmax(220px, 0.4fr) 1fr;
	gap: 28px;
	margin-bottom: 24px;
	align-items: center;
}

.review-summary {
	display: flex;
	align-items: baseline;
	gap: 10px;
	color: var(--green);
}

.review-summary strong { font-size: 46px; }
.review-summary small { color: var(--muted); }

.review-bars {
	display: grid;
	gap: 8px;
}

.review-bar-row {
	display: grid;
	grid-template-columns: 36px 1fr 48px;
	gap: 10px;
	align-items: center;
	font-size: 13px;
	font-weight: 800;
}

.review-bar-track {
	height: 10px;
	background: #e8e4da;
	border-radius: 999px;
	overflow: hidden;
}

.review-bar-track i {
	display: block;
	height: 100%;
	background: #f0bc1b;
}

.review-card {
	padding: 20px;
	border-radius: 6px;
}

.stars {
	color: #f0bc1b;
	letter-spacing: 0.05em;
}

.related-products-band {
	border-top: 1px solid var(--line);
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.related-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden;
}

.related-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	background: var(--soft);
}

.related-card h3 {
	margin: 14px 14px 4px;
	font-size: 16px;
}

.related-card p {
	margin: 0 14px 16px;
	color: var(--muted);
	font-size: 13px;
}

.shop-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 32px;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
	padding: 54px 24px;
}

.shop-hero h1 {
	font-size: clamp(42px, 7vw, 84px);
	line-height: 0.95;
}

.shop-hero p {
	max-width: 640px;
	color: var(--muted);
	font-size: 18px;
}

.shop-hero img {
	border-radius: 6px;
	background: var(--soft);
}

.shop-toolbar {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 18px 24px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.woocommerce-shop-collection ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	max-width: 1280px;
	margin: 32px auto;
	padding: 0 24px;
	list-style: none;
}

.woocommerce-shop-collection ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	padding: 0;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	overflow: hidden;
}

.woocommerce-shop-collection ul.products li.product a {
	text-decoration: none;
}

.woocommerce-shop-collection ul.products li.product img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	margin: 0;
	background: var(--soft);
}

.woocommerce-shop-collection ul.products li.product .woocommerce-loop-product__title,
.woocommerce-shop-collection ul.products li.product .price {
	padding: 0 14px;
}

.woocommerce-shop-collection ul.products li.product .button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin: 14px;
	border-radius: 4px;
	background: var(--ink);
	color: var(--white);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	text-decoration: none;
}

.cart-checkout-hero {
	margin-bottom: 26px;
}

.cart-checkout-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 24px;
	align-items: start;
}

.cart-main,
.checkout-fields,
.checkout-review-panel,
.cart-trust-panel,
.cart_totals {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 20px;
}

.woocommerce-cart-shell table.shop_table,
.woocommerce-checkout-shell table.shop_table {
	width: 100%;
	border-collapse: collapse;
}

.woocommerce-cart-shell th,
.woocommerce-cart-shell td,
.woocommerce-checkout-shell th,
.woocommerce-checkout-shell td {
	padding: 12px 8px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: middle;
}

.woocommerce-cart-shell .product-thumbnail img {
	width: 74px;
	border-radius: 4px;
	background: var(--soft);
}

.woocommerce-cart-shell .remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #f4ddd5;
	color: var(--accent-dark);
	text-decoration: none;
	font-weight: 900;
}

.woocommerce-cart-shell input.qty,
.woocommerce-cart-shell .input-text,
.woocommerce-checkout-shell input.input-text,
.woocommerce-checkout-shell select,
.woocommerce-checkout-shell textarea {
	width: 100%;
	min-height: 42px;
	padding: 8px 10px;
	border: 1px solid var(--line);
	border-radius: 4px;
	background: var(--white);
}

.woocommerce-cart-shell .actions {
	text-align: right;
}

.woocommerce-cart-shell .coupon {
	display: inline-grid;
	grid-template-columns: minmax(160px, 1fr) auto;
	gap: 8px;
	float: left;
}

.woocommerce-cart-shell .button,
.woocommerce-checkout-shell button,
.woocommerce-checkout-shell #place_order,
.cart_totals .checkout-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border: 0;
	border-radius: 4px;
	background: var(--accent);
	color: var(--white);
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
}

.cart-trust-panel ul {
	margin: 0;
	padding-left: 18px;
	color: var(--muted);
}

.checkout-review-panel {
	position: sticky;
	top: 82px;
}

.site-footer {
	padding: 42px 24px 24px;
	background: var(--ink);
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 2fr;
	gap: 24px;
	max-width: 1280px;
	margin: 0 auto;
}

.footer-grid h2 {
	font-size: 13px;
	text-transform: uppercase;
}

.footer-grid a {
	display: block;
	margin: 8px 0;
	color: #d8d2c9;
	text-decoration: none;
}

.newsletter form {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 8px;
}

.newsletter input {
	min-height: 46px;
	padding: 0 12px;
	border: 0;
	border-radius: 4px;
}

.newsletter button {
	background: var(--accent);
	color: var(--white);
	border-color: var(--accent);
}

.footer-note {
	max-width: 1280px;
	margin: 24px auto 0;
	color: #bfb7ac;
	font-size: 12px;
}

.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;
}

@media (max-width: 920px) {
	.header-inner,
	.home-hero,
	.product-landing,
	.comparison-band,
	.product-story-band,
	.policy-shell,
	.cart-checkout-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.primary-nav {
		display: none;
	}

	.header-actions {
		justify-self: start;
	}

	.home-hero {
		min-height: 0;
	}

	.hero-media img {
		aspect-ratio: 4 / 3;
	}

	.feature-strip,
	.product-card-grid,
	.review-grid,
	.search-results-grid,
	.related-grid,
	.woocommerce-shop-collection ul.products {
		grid-template-columns: repeat(2, 1fr);
	}

	.purchase-panel {
		position: static;
	}
}

@media (max-width: 620px) {
	.announcement-bar,
	.hero-actions,
	.variant-swatches {
		align-items: stretch;
		flex-direction: column;
	}

	.feature-strip,
	.product-gallery,
	.product-card-grid,
	.review-grid,
	.height-grid {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		padding: 34px 20px;
	}

	.product-landing {
		padding: 12px;
	}

	.review-dashboard,
	.shop-hero,
	.shop-toolbar,
	.related-grid,
	.woocommerce-shop-collection ul.products {
		grid-template-columns: 1fr;
	}

	.shop-toolbar {
		display: grid;
	}

	.site-search-panel form,
	.search-results-grid {
		grid-template-columns: 1fr;
	}

	.checkout-review-panel {
		position: static;
	}

	.woocommerce-cart-shell .shop_table thead {
		display: none;
	}

	.woocommerce-cart-shell .shop_table tr,
	.woocommerce-cart-shell .shop_table td {
		display: block;
		width: 100%;
	}

	.woocommerce-cart-shell .coupon {
		display: grid;
		float: none;
		margin-bottom: 8px;
	}
}

body.single-product .wc-price-row .woocommerce-Price-amount,
body.single-product .wc-price-row .woocommerce-Price-amount span {
	display: inline !important;
	padding: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: inherit !important;
	font-size: inherit !important;
	font-weight: inherit !important;
}

body.single-product .woocommerce-buy-box button.single_add_to_cart_button,
body.single-product .woocommerce-buy-box button.single_add_to_cart_button.button,
body.single-product .woocommerce-buy-box button.single_add_to_cart_button.button.alt {
	background: var(--accent) !important;
	color: var(--white) !important;
	border-color: var(--accent) !important;
}
