/**
 * Arcezo main stylesheet.
 *
 * Ported 1:1 from the static front (shop/assets/css/style.css). Changes: formatting and
 * hard-coded colours replaced with custom properties backed by theme.json presets; --gray-650 is
 * #707070 instead of #777 so small grey text reaches the WCAG AA contrast of 4.5:1 on the page background.
 * WordPress / WooCommerce specific additions live in wp.css.
 */

:root {
	--bg: var(--wp--preset--color--bg, #f6f6f6);
	--surface: var(--wp--preset--color--surface, #f5f5f5);
	--ink: var(--wp--preset--color--ink, #101010);
	--black: var(--wp--preset--color--black, #111);
	--pure-black: var(--wp--preset--color--pure-black, #000);
	--white: var(--wp--preset--color--white, #fff);
	--muted: var(--wp--preset--color--muted, #666);
	--line: var(--wp--preset--color--line, #aaa);
	--gray-100: var(--wp--custom--gray--100, #eee);
	--gray-150: var(--wp--custom--gray--150, #e8e8e8);
	--gray-200: var(--wp--custom--gray--200, #ddd);
	--gray-300: var(--wp--custom--gray--300, #ccc);
	--gray-400: var(--wp--custom--gray--400, #bbb);
	--gray-500: var(--wp--custom--gray--500, #999);
	--gray-600: var(--wp--custom--gray--600, #888);
	--gray-650: var(--wp--custom--gray--650, #707070);
	--gray-700: var(--wp--custom--gray--700, #555);
	--gray-800: var(--wp--custom--gray--800, #444);
	--gray-850: var(--wp--custom--gray--850, #333);
	--overlay: var(--wp--custom--overlay, #0006);
	--font-base: var(--wp--preset--font-family--base, Helvetica, Arial, sans-serif);
	--page: 1440px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--bg);
	font-family: var(--font-base);
	font-size: 14px;
	line-height: 1.6;
}

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

button,
a,
input,
select,
textarea {
	-webkit-tap-highlight-color: transparent;
}

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

button {
	cursor: pointer;
}

button:disabled {
	cursor: not-allowed;
	opacity: .45;
}

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

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

h1 {
	font-size: 24px;
	line-height: 1.3;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 14px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--black);
	outline-offset: 4px;
}

.skip {
	position: fixed;
	top: -80px;
	left: 20px;
	z-index: 100;
	background: var(--white);
	padding: 12px;
}

.skip:focus {
	top: 12px;
}

.container {
	width: min(var(--page),calc(100% - 64px));
	margin-inline: auto;
}

.top-social {
	height: 24px;
	border-bottom: 1px solid var(--gray-100);
}

.top-social .container {
	display: flex;
	justify-content: flex-end;
}

.top-social a {
	margin-top: -5px;
}

.site-header {
	height: 154px;
	border-bottom: 1px solid var(--gray-100);
	background: var(--bg);
	position: relative;
	z-index: 20;
}

.header-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 100px;
}

.logo img {
	width: 100%;
	mix-blend-mode: multiply;
}

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

.icon-button {
	border: 0;
	padding: 4px;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	min-height: 36px;
}

.icon {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cart-link {
	position: relative;
}

.cart-count {
	font-size: 10px;
	background: var(--black);
	color: var(--white);
	position: absolute;
	right: -7px;
	top: -3px;
	border-radius: 50%;
	min-width: 17px;
	height: 17px;
	text-align: center;
	line-height: 17px;
}

.announcement {
	background: var(--pure-black);
	color: var(--gray-100);
	text-align: center;
	height: 41px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	letter-spacing: .15px;
}

.hero {
	position: relative;
	display: block;
	overflow: hidden;
}

.hero img {
	width: 100%;
	aspect-ratio: 2.95;
	object-fit: cover;
}

.hero .hero-button {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	color: var(--white);
	border: 2px solid var(--white);
	border-radius: 30px;
	padding: 7px 20px;
	font-weight: 700;
	letter-spacing: 3px;
	white-space: nowrap;
	line-height: 26px;
	background: transparent;
}

.hero:hover .hero-button {
	background: var(--white);
	color: var(--black);
}

.home-grid {
	display: grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	border-top: 1px solid var(--black);
	border-left: 1px solid var(--black);
}

.product-card {
	min-width: 0;
	display: block;
}

.home-grid .product-card {
	border-right: 1px solid var(--black);
	border-bottom: 1px solid var(--black);
}

.card-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--surface);
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-image .hover-image {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .25s;
}

.product-card:hover .hover-image,
.product-card:focus-visible .hover-image {
	opacity: 1;
}

.card-copy {
	padding: 8px 12px 16px;
}

.card-name {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	margin: 0 0 8px;
}

.card-price {
	font-size: 14px;
	margin: 0;
}

.sold .card-name,
.sold .card-price {
	text-decoration: line-through;
}

.collection-head {
	padding: 42px 0 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.collection-head h1 {
	margin: 0;
}

.collection-controls {
	display: flex;
	gap: 14px;
	align-items: center;
}

.collection-controls select {
	border: 0;
	border-bottom: 1px solid var(--gray-500);
	background: transparent;
	padding: 7px 22px 7px 4px;
	font-size: 13px;
}

.collection-grid {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	gap: 22px 20px;
	padding: 0 30px 70px;
}

.collection-grid .card-copy,
.recommendations .card-copy {
	text-align: center;
	padding: 12px 8px 26px;
}

.collection-grid .card-name,
.recommendations .card-name {
	letter-spacing: 2px;
	font-size: 12px;
}

.collection-grid .card-price,
.recommendations .card-price {
	font-size: 12px;
}

.product-layout {
	display: grid;
	grid-template-columns: minmax(0,1.06fr) minmax(0,1fr);
	gap: 64px;
	padding-top: 48px;
	padding-bottom: 120px;
}

.product-gallery {
	display: grid;
	grid-template-columns: 80px minmax(0,1fr);
	gap: 20px;
	align-self: start;
}

.thumbnails {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.thumbnail {
	padding: 0;
	background: transparent;
	border: 2px solid transparent;
	width: 78px;
}

.thumbnail.active {
	border-color: var(--black);
}

.thumbnail img {
	aspect-ratio: 1;
	object-fit: cover;
}

.main-image {
	border: 0;
	padding: 0;
	background: var(--surface);
	cursor: zoom-in;
	width: 100%;
	align-self: start;
}

.main-image img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
}

.product-info h1 {
	font-size: 22px;
	margin: 0 0 24px;
}

.product-price {
	font-size: 16px;
	margin: 0;
}

.tax-note {
	font-size: 12px;
	margin: 0 0 26px;
}

.buy-area {
	border-top: 1px solid var(--gray-600);
	padding-top: 24px;
	margin-bottom: 24px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--black);
	border-radius: 28px;
	padding: 13px 24px;
	min-height: 48px;
	background: var(--black);
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-align: center;
	line-height: 20px;
	transition: background .15s,color .15s;
}

.button:hover {
	background: var(--gray-850);
}

.button.full {
	width: 100%;
}

.button.outline {
	background: transparent;
	color: var(--black);
}

.button.outline:hover {
	background: var(--gray-150);
}

.description {
	font-size: 14px;
	line-height: 1.8;
}

.description strong {
	display: block;
	margin-bottom: 24px;
}

.benefits {
	list-style: none;
	padding: 0;
	margin: 44px 0 24px;
}

.benefits li {
	position: relative;
	padding-left: 18px;
	margin: 10px 0;
	line-height: 1.45;
}

.benefits li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 7px;
	background: var(--pure-black);
	width: 8px;
	height: 8px;
}

.benefits b {
	display: block;
	font-size: 11px;
	letter-spacing: .3px;
}

.benefits span {
	font-size: 12px;
	color: var(--gray-650);
}

.accordion {
	border: 1px solid var(--gray-600);
}

.accordion details + details {
	border-top: 1px solid var(--gray-600);
}

.accordion summary {
	cursor: pointer;
	list-style: none;
	text-align: center;
	padding: 15px 35px;
	position: relative;
	letter-spacing: 3px;
	font-size: 11px;
	min-height: 50px;
}

.accordion summary::-webkit-details-marker {
	display: none;
}

.accordion summary:after {
	content: '';
	width: 8px;
	height: 8px;
	border-right: 1px solid;
	border-bottom: 1px solid;
	position: absolute;
	right: 18px;
	top: 19px;
	transform: rotate(45deg);
}

.accordion details[open] summary:after {
	transform: rotate(225deg);
	top: 23px;
}

.accordion .details-content {
	padding: 8px 22px 22px;
	color: var(--gray-700);
	font-size: 14px;
}

.details-content dl {
	margin: 0;
}

.details-content dl div {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--gray-200);
	padding: 8px 0;
	gap: 20px;
}

.details-content dd {
	margin: 0;
	text-align: right;
}

.recommendations {
	padding: 35px 0 80px;
}

.recommendations h2 {
	font-size: 16px;
	margin-bottom: 28px;
}

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

.site-footer {
	border-top: 1px solid var(--gray-650);
	padding: 68px 0 26px;
}

.footer-mark {
	width: 46px;
	margin-bottom: 55px;
	mix-blend-mode: multiply;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 70px;
	max-width: 1180px;
}

.footer-heading {
	font-size: 11px;
	letter-spacing: 3px;
	font-weight: 400;
	margin-bottom: 22px;
}

.footer-grid p,
.footer-grid a,
.footer-grid input {
	font-size: 12px;
}

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

.footer-grid li {
	margin-bottom: 10px;
}

.footer-grid a:hover {
	text-decoration: underline;
}

.newsletter {
	max-width: 310px;
	display: flex;
	border-bottom: 1px solid var(--black);
	margin: 24px 0;
}

.newsletter input {
	min-width: 0;
	flex: 1;
	border: 0;
	background: transparent;
	padding: 8px 0;
	outline-offset: 2px;
}

.newsletter button {
	border: 0;
	background: transparent;
	padding: 2px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 50px;
	color: var(--gray-650);
	font-size: 11px;
}

.footer-bottom select {
	font-size: 12px;
	border: 0;
	background: transparent;
}

.overlay {
	position: fixed;
	inset: 0;
	background: var(--overlay);
	z-index: 49;
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s;
}

.overlay.open {
	opacity: 1;
	visibility: visible;
}

.drawer {
	position: fixed;
	inset: 0 auto 0 0;
	width: min(430px,100%);
	background: var(--bg);
	z-index: 50;
	padding: 30px 34px;
	transform: translateX(-100%);
	transition: transform .25s;
	overflow: auto;
	visibility: hidden;
}

.drawer.open {
	transform: translateX(0);
	visibility: visible;
}

.drawer.right {
	left: auto;
	right: 0;
	transform: translateX(100%);
	width: min(480px,100%);
}

.drawer.right.open {
	transform: translateX(0);
}

.drawer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--gray-400);
}

.drawer-top h2 {
	font-size: 20px;
	margin: 0;
}

.menu-links {
	display: flex;
	flex-direction: column;
	padding: 24px 0;
	gap: 15px;
	font-size: 22px;
}

.menu-links a:hover {
	text-decoration: underline;
}

.menu-secondary {
	border-top: 1px solid var(--gray-300);
	padding-top: 20px;
	display: grid;
	gap: 12px;
}

.drawer-empty {
	padding: 70px 0;
	text-align: center;
}

.drawer-empty h3 {
	font-size: 18px;
	font-weight: 400;
}

.drawer-bottom {
	border-top: 1px solid var(--line);
	padding-top: 20px;
	margin-top: 25px;
}

.sum-line {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 12px 0;
}

.sum-line.total {
	border-top: 1px solid var(--gray-300);
	padding-top: 18px;
	font-size: 18px;
	font-weight: 700;
}

.drawer-bottom .button + .button {
	margin-top: 12px;
}

.cart-item {
	display: grid;
	grid-template-columns: 100px minmax(0,1fr);
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid var(--gray-200);
}

.cart-item img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
}

.cart-item h3 {
	font-size: 12px;
	line-height: 1.6;
	margin: 0 0 7px;
}

.item-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-top: 14px;
}

.quantity {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--line);
	min-height: 34px;
}

.quantity button {
	border: 0;
	background: transparent;
	width: 30px;
	min-height: 32px;
}

.quantity span {
	min-width: 24px;
	text-align: center;
}

.text-button {
	padding: 0;
	border: 0;
	border-bottom: 1px solid var(--gray-700);
	background: transparent;
	font-size: 12px;
}

.search-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--bg);
	z-index: 51;
	padding: 35px max(32px,calc((100vw - 1440px)/2));
	display: none;
	max-height: 90vh;
	overflow: auto;
}

.search-panel.open {
	display: block;
}

.search-form {
	display: flex;
	gap: 15px;
	align-items: center;
}

.search-form input {
	flex: 1;
	min-width: 0;
	border: 0;
	border-bottom: 1px solid var(--gray-700);
	background: transparent;
	font-size: 20px;
	padding: 10px;
}

.search-results {
	display: grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	gap: 20px;
	margin-top: 28px;
}

.search-results .card-name {
	font-size: 12px;
}

.search-results .card-image {
	max-height: 230px;
}

.page-main {
	min-height: 50vh;
	padding: 48px 0 90px;
}

.page-title {
	margin-bottom: 45px;
}

.cart-layout {
	display: grid;
	grid-template-columns: minmax(0,1fr) 380px;
	gap: 80px;
}

.cart-table .cart-item {
	grid-template-columns: 150px 1fr;
}

.cart-table .cart-item h3 {
	font-size: 14px;
}

.cart-summary {
	align-self: start;
	border: 1px solid var(--gray-400);
	padding: 28px;
}

.cart-summary h2 {
	font-size: 18px;
}

.cart-summary .button {
	margin-top: 20px;
}

.note {
	font-size: 12px;
	color: var(--muted);
}

.empty-state {
	text-align: center;
	padding: 60px 20px 100px;
}

.empty-state .icon {
	width: 42px;
	height: 42px;
	margin: auto auto 25px;
}

.empty-state h2 {
	font-weight: 400;
	margin-bottom: 30px;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.field.wide {
	grid-column: 1/-1;
}

.field label {
	font-size: 12px;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 1px solid var(--line);
	background: transparent;
	border-radius: 0;
	min-height: 48px;
	padding: 12px;
}

.field textarea {
	min-height: 130px;
	resize: vertical;
}

.form-section {
	border: 0;
	padding: 0;
	margin: 0 0 32px;
}

.form-section legend {
	font-size: 19px;
	font-weight: 700;
	padding: 0;
	margin-bottom: 18px;
}

.checkout-layout {
	display: grid;
	grid-template-columns: minmax(0,1fr) 400px;
	gap: 80px;
	max-width: 1160px;
	margin: auto;
}

.choice {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 16px;
	border: 1px solid var(--gray-400);
	margin-bottom: -1px;
	cursor: pointer;
}

.choice span {
	flex: 1;
}

.choice input {
	accent-color: var(--black);
}

.check {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 20px 0;
	font-size: 12px;
}

.check input {
	accent-color: var(--black);
	margin-top: 4px;
}

.auth-wrap {
	max-width: 450px;
	margin: auto;
	padding: 20px 0 40px;
}

.auth-wrap h1 {
	text-align: center;
	margin-bottom: 30px;
}

.auth-wrap .field {
	margin-bottom: 18px;
}

.auth-links {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 22px;
	font-size: 12px;
}

.auth-links a {
	text-decoration: underline;
}

.auth-note {
	text-align: center;
	margin-bottom: 25px;
	font-size: 12px;
	color: var(--muted);
}

.content-page {
	max-width: 860px;
	margin: auto;
	line-height: 1.9;
}

.content-page h1 {
	margin-bottom: 36px;
}

.content-page h2 {
	font-size: 17px;
	margin-top: 32px;
}

.content-page p {
	color: var(--gray-800);
}

.content-page .accordion {
	margin: 24px 0;
}

.content-page .accordion summary {
	text-align: left;
	font-size: 12px;
	letter-spacing: 1px;
}

.info-banner {
	border: 1px solid var(--gray-400);
	padding: 14px 18px;
	font-size: 12px;
	margin: 0 0 28px;
	color: var(--gray-700);
}

.contact-layout {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 80px;
}

.toast {
	position: fixed;
	bottom: 24px;
	left: 50%;
	transform: translate(-50%,20px);
	padding: 13px 24px;
	background: var(--black);
	color: var(--white);
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: .2s;
	max-width: calc(100% - 32px);
	font-size: 13px;
}

.toast.show {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%,0);
}

.lightbox {
	position: fixed;
	inset: 0;
	background: var(--bg);
	z-index: 80;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.lightbox.open {
	display: flex;
}

.lightbox img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.lightbox button {
	position: absolute;
	right: 25px;
	top: 20px;
}

.success {
	max-width: 650px;
	margin: auto;
	text-align: center;
}

.success .order-number {
	font-size: 24px;
	margin: 25px 0;
}

.success .button {
	margin: 24px 8px 0;
}

.order-details {
	text-align: left;
	border-top: 1px solid var(--gray-400);
	margin-top: 30px;
	padding-top: 15px;
}

.form-message {
	font-size: 13px;
	margin-top: 15px;
}

.hidden,
[hidden] {
	display: none !important;
}

body.modal-open {
	overflow: hidden;
}

.status-label {
	display: inline-block;
	padding: 2px 9px;
	border: 1px solid var(--line);
	font-size: 11px;
}

.table-wrap {
	overflow: auto;
}

.size-table {
	border-collapse: collapse;
	width: 100%;
	margin: 20px 0;
}

.size-table td,
.size-table th {
	border: 1px solid var(--gray-400);
	padding: 12px;
	text-align: left;
}

.not-found {
	text-align: center;
	padding: 100px 24px;
}

@media (min-width: 1800px) {
	.collection-grid {
		gap: 22px 20px;
		padding-inline: 40px;
	}

	.product-layout {
		grid-template-columns: 704px 1fr;
		gap: 70px;
	}

	.main-image img {
		aspect-ratio: 1;
	}

	.product-gallery {
		gap: 20px;
	}

	.hero img {
		aspect-ratio: 2.95;
	}
}

@media (max-width: 1100px) {
	.container {
		width: calc(100% - 48px);
	}

	.site-header {
		height: 120px;
	}

	.top-social {
		height: 18px;
	}

	.product-layout {
		gap: 30px;
	}

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

	.thumbnail {
		width: 56px;
	}

	.product-info h1 {
		font-size: 19px;
	}

	.footer-grid {
		gap: 35px;
	}

	.cart-layout,
	.checkout-layout {
		gap: 35px;
		grid-template-columns: minmax(0,1fr) 330px;
	}

	.collection-controls {
		gap: 6px;
	}

	.collection-controls select {
		max-width: 160px;
	}
}

@media (max-width: 740px) {
	.container {
		width: calc(100% - 32px);
	}

	.top-social {
		display: none;
	}

	.site-header {
		height: 88px;
	}

	.logo {
		width: 78px;
	}

	.header-actions {
		gap: 10px;
	}

	.header-actions .account-link {
		display: none;
	}

	.icon {
		width: 23px;
		height: 23px;
	}

	.announcement {
		height: 34px;
		font-size: 9px;
	}

	.hero img {
		aspect-ratio: 1.12;
		object-position: center;
	}

	.hero .hero-button {
		font-size: 11px;
		letter-spacing: 2px;
		padding: 5px 16px;
		line-height: 24px;
	}

	.home-grid {
		grid-template-columns: repeat(2,minmax(0,1fr));
	}

	.card-copy {
		padding: 10px 10px 13px;
	}

	.card-name {
		font-size: 11px;
		line-height: 1.5;
		margin-bottom: 6px;
	}

	.card-price {
		font-size: 12px;
	}

	.collection-head {
		padding: 28px 0 25px;
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}

	.collection-head h1 {
		font-size: 22px;
	}

	.collection-controls {
		width: 100%;
		justify-content: space-between;
	}

	.collection-controls select {
		font-size: 12px;
		max-width: 55%;
	}

	.collection-grid {
		grid-template-columns: repeat(2,minmax(0,1fr));
		gap: 10px;
		padding: 0 10px 40px;
	}

	.collection-grid .card-name,
	.recommendations .card-name {
		font-size: 10px;
		letter-spacing: 1px;
	}

	.collection-grid .card-price {
		font-size: 11px;
	}

	.product-layout {
		grid-template-columns: 1fr;
		padding-top: 20px;
		padding-bottom: 45px;
		gap: 30px;
	}

	.product-gallery {
		display: flex;
		flex-direction: column-reverse;
		gap: 12px;
	}

	.thumbnails {
		flex-direction: row;
		gap: 10px;
	}

	.thumbnail {
		width: 58px;
	}

	.main-image img {
		max-height: 580px;
	}

	.product-info h1 {
		font-size: 19px;
		margin-bottom: 16px;
	}

	.tax-note {
		margin-bottom: 20px;
	}

	.buy-area {
		padding-top: 20px;
	}

	.benefits {
		margin-top: 30px;
	}

	.recommendations {
		padding: 25px 0 35px;
	}

	.recommendation-grid {
		gap: 10px;
		grid-template-columns: repeat(2,minmax(0,1fr));
	}

	.recommendation-grid .product-card:last-child {
		display: none;
	}

	.recommendations .card-copy {
		padding: 10px 3px;
	}

	.site-footer {
		padding: 40px 0 24px;
	}

	.footer-mark {
		margin-bottom: 35px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px 20px;
	}

	.footer-grid section:first-child {
		grid-column: 1/-1;
	}

	.footer-heading {
		margin-bottom: 16px;
	}

	.footer-bottom {
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 30px;
	}

	.footer-grid li {
		margin-bottom: 12px;
	}

	.newsletter {
		max-width: 100%;
	}

	.drawer {
		padding: 22px;
	}

	.search-panel {
		padding: 22px 16px;
	}

	.search-results {
		grid-template-columns: repeat(2,minmax(0,1fr));
		gap: 10px;
	}

	.search-form input {
		font-size: 16px;
	}

	.page-main {
		padding: 30px 0 50px;
	}

	.page-title {
		margin-bottom: 28px;
		font-size: 22px;
	}

	.cart-layout,
	.checkout-layout,
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.cart-table .cart-item {
		grid-template-columns: 100px 1fr;
		gap: 15px;
	}

	.cart-table .cart-item h3 {
		font-size: 12px;
	}

	.cart-summary {
		padding: 22px;
	}

	.form-grid {
		gap: 14px;
	}

	.field input,
	.field select,
	.field textarea {
		font-size: 16px;
	}

	.button {
		font-size: 11px;
		letter-spacing: 2px;
	}

	.footer-grid p,
	.footer-grid a {
		font-size: 12px;
	}

	.lightbox {
		padding: 15px;
	}

	.auth-wrap {
		padding-top: 5px;
	}

	.content-page h1 {
		font-size: 22px;
	}

	.footer-heading {
		font-size: 10px;
		letter-spacing: 2px;
	}
}

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

.footer-mark {
	display: block;
	width: 50px;
	height: 50px;
}

.footer-mark img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}
