:root {
	--amazoom-black: #000000;
	--amazoom-ink: #131921;
	--amazoom-nav: #232f3e;
	--amazoom-orange: #fe8a00;
	--amazoom-orange-dark: #d76f00;
	--amazoom-yellow: #ffd814;
	--amazoom-blue: #007185;
	--amazoom-page: #e3e6e6;
	--amazoom-card: #ffffff;
	--amazoom-border: #d5d9d9;
	--amazoom-text: #0f1111;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--amazoom-page);
	color: var(--amazoom-text);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

a {
	color: var(--amazoom-blue);
	text-decoration: none;
}

a:hover {
	color: #c7511f;
	text-decoration: underline;
}

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

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

.skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: #ffffff;
	clip: auto;
}

.amazoom-header {
	position: sticky;
	top: 0;
	z-index: 50;
	color: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.amazoom-topbar {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	min-height: 72px;
	padding: 10px 22px;
	background: var(--amazoom-ink);
}

.amazoom-brand {
	display: flex;
	align-items: center;
	min-width: 0;
}

.amazoom-brand img {
	display: block;
	width: 190px;
	max-height: 54px;
	object-fit: contain;
}

.amazoom-search-panel {
	min-width: 0;
}

.amazoom-search {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr) 92px;
	width: 100%;
	border: 2px solid transparent;
	border-radius: 6px;
	overflow: hidden;
	background: #ffffff;
}

.amazoom-search:focus-within {
	border-color: var(--amazoom-orange);
	box-shadow: 0 0 0 2px rgba(254, 138, 0, 0.25);
}

.amazoom-search select,
.amazoom-search input,
.amazoom-search button {
	height: 44px;
	border: 0;
	font: inherit;
}

.amazoom-search select {
	min-width: 0;
	padding: 0 8px;
	background: #f3f3f3;
	border-right: 1px solid #cdcdcd;
	color: #333333;
}

.amazoom-search input {
	min-width: 0;
	padding: 0 14px;
	color: var(--amazoom-text);
}

.amazoom-search button {
	cursor: pointer;
	background: var(--amazoom-orange);
	color: #111111;
	font-weight: 700;
}

.amazoom-search button:hover {
	background: #ff9900;
}

.amazoom-search-toggle {
	display: none;
}

.amazoom-account-nav {
	display: flex;
	align-items: stretch;
	gap: 6px;
}

.amazoom-account-nav a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 48px;
	padding: 6px 10px;
	border: 1px solid transparent;
	border-radius: 3px;
	color: #ffffff;
}

.amazoom-account-nav a:hover {
	border-color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}

.amazoom-account-nav span {
	font-size: 12px;
	color: #d6d6d6;
}

.amazoom-account-nav strong {
	font-size: 14px;
	line-height: 1.1;
}

.amazoom-cart-link {
	position: relative;
	min-width: 64px;
	text-align: center;
}

.amazoom-cart-count {
	color: var(--amazoom-orange);
	font-size: 18px;
	font-weight: 800;
	line-height: 1;
}

.amazoom-subbar {
	background: var(--amazoom-nav);
}

.amazoom-departments ul {
	display: flex;
	gap: 4px;
	align-items: center;
	margin: 0;
	padding: 0 18px;
	list-style: none;
	overflow-x: auto;
}

.amazoom-departments a {
	display: block;
	padding: 10px 12px;
	border: 1px solid transparent;
	color: #ffffff;
	font-size: 14px;
	white-space: nowrap;
}

.amazoom-departments a:hover {
	border-color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}

.site-main {
	min-height: 60vh;
}

.amazoom-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 24px;
	align-items: end;
	min-height: 420px;
	padding: 52px clamp(18px, 4vw, 56px) 78px;
	background:
		linear-gradient(90deg, rgba(19, 25, 33, 0.94), rgba(19, 25, 33, 0.72), rgba(19, 25, 33, 0.28)),
		radial-gradient(circle at 78% 20%, rgba(254, 138, 0, 0.38), transparent 34%),
		linear-gradient(135deg, #273648, #111820 60%, #fe8a00);
	color: #ffffff;
}

.amazoom-hero-copy {
	max-width: 760px;
}

.amazoom-kicker {
	margin: 0 0 10px;
	color: #ffcf70;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
}

.amazoom-hero h1 {
	max-width: 860px;
	margin: 0;
	font-size: clamp(38px, 6vw, 72px);
	line-height: 0.98;
}

.amazoom-hero p {
	max-width: 620px;
	margin: 18px 0 0;
	font-size: 18px;
}

.amazoom-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 22px;
	padding: 9px 18px;
	border: 1px solid #fcd200;
	border-radius: 4px;
	background: var(--amazoom-yellow);
	color: #111111;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.amazoom-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: #f7ca00;
	color: #111111;
	text-decoration: none;
}

.amazoom-button-dark {
	border-color: var(--amazoom-ink);
	background: var(--amazoom-ink);
	color: #ffffff;
}

.amazoom-button-dark:hover {
	background: #000000;
	color: #ffffff;
}

.amazoom-hero-panel {
	padding: 22px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--amazoom-text);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.amazoom-hero-panel strong {
	display: block;
	margin-bottom: 8px;
	font-size: 26px;
}

.amazoom-section,
.amazoom-content-shell,
.amazoom-shop-shell {
	width: min(1480px, calc(100% - 32px));
	margin: -42px auto 32px;
}

.amazoom-section {
	position: relative;
	padding: 22px;
	background: var(--amazoom-card);
}

.amazoom-content-shell,
.amazoom-shop-shell {
	margin-top: 28px;
	padding: 28px;
	background: var(--amazoom-card);
}

.amazoom-section + .amazoom-section,
.amazoom-section + .amazoom-promo-band,
.amazoom-promo-band + .amazoom-section {
	margin-top: 24px;
}

.amazoom-section-heading {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
	margin-bottom: 16px;
}

.amazoom-section h2,
.amazoom-section-heading h2,
.amazoom-promo-band h2 {
	margin: 0;
	font-size: 24px;
	line-height: 1.2;
}

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

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.amazoom-placeholder-product {
	float: none;
	width: auto;
	margin: 0;
	padding: 16px;
	border: 1px solid var(--amazoom-border);
	background: #ffffff;
	list-style: none;
}

.woocommerce ul.products li.product a img,
.amazoom-placeholder-image {
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: contain;
	background: #f7f8f8;
}

.amazoom-placeholder-image {
	margin-bottom: 12px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.amazoom-placeholder-product h3 {
	min-height: 42px;
	padding: 0;
	margin: 10px 0 6px;
	color: var(--amazoom-text);
	font-size: 16px;
	line-height: 1.3;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: #b12704;
	font-size: 20px;
	font-weight: 700;
}

.woocommerce .star-rating,
.amazoom-stars {
	color: var(--amazoom-orange);
}

.amazoom-promo-band {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	width: min(1480px, calc(100% - 32px));
	margin: 0 auto 32px;
	padding: 28px;
	background: var(--amazoom-orange);
	color: #111111;
}

.amazoom-promo-band p {
	max-width: 760px;
	margin: 8px 0 0;
}

.amazoom-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 18px;
}

.amazoom-category-grid a {
	display: flex;
	align-items: center;
	min-height: 94px;
	padding: 18px;
	border: 1px solid var(--amazoom-border);
	background: #f7f8f8;
	color: var(--amazoom-text);
	font-size: 18px;
	font-weight: 800;
}

.amazoom-category-grid a:hover {
	border-color: var(--amazoom-orange);
	text-decoration: none;
}

.amazoom-post-list {
	display: grid;
	gap: 18px;
}

.amazoom-post-card {
	padding: 20px;
	border: 1px solid var(--amazoom-border);
}

.amazoom-entry-content > *:first-child,
.amazoom-entry-summary > *:first-child {
	margin-top: 0;
}

.amazoom-entry-content > *:last-child,
.amazoom-entry-summary > *:last-child {
	margin-bottom: 0;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
	margin-top: 8px;
}

.woocommerce .woocommerce-ordering select {
	min-height: 38px;
	border: 1px solid var(--amazoom-border);
	border-radius: 3px;
	background: #ffffff;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
	gap: 32px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
}

.woocommerce div.product .product_title {
	margin-top: 0;
	font-size: 30px;
}

.amazoom-footer {
	background: var(--amazoom-ink);
	color: #ffffff;
}

.amazoom-back-top {
	display: block;
	padding: 14px;
	background: #37475a;
	color: #ffffff;
	text-align: center;
}

.amazoom-back-top:hover {
	background: #485769;
	color: #ffffff;
	text-decoration: none;
}

.amazoom-footer-inner {
	display: grid;
	grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
	gap: 32px;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 34px 0;
}

.amazoom-footer img {
	width: 180px;
	padding: 8px;
	background: #131921;
}

.amazoom-footer a {
	color: #ffffff;
}

.amazoom-footer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.amazoom-disclaimer {
	margin: 0;
	padding: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #cccccc;
	font-size: 13px;
	text-align: center;
}

@media (max-width: 900px) {
	.amazoom-topbar {
		grid-template-columns: 170px 1fr auto;
		gap: 10px;
	}

	.amazoom-brand img {
		width: 158px;
	}

	.amazoom-search-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 40px;
		border: 1px solid rgba(255, 255, 255, 0.5);
		border-radius: 4px;
		background: transparent;
		color: #ffffff;
		font: inherit;
	}

	.amazoom-search-panel {
		display: none;
		grid-column: 1 / -1;
	}

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

	.amazoom-account-nav a:first-child {
		display: none;
	}

	.amazoom-hero {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 38px 18px 72px;
	}

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

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

	.amazoom-promo-band,
	.amazoom-footer-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.amazoom-topbar {
		grid-template-columns: 1fr auto auto;
		padding: 8px;
	}

	.amazoom-brand img {
		width: 136px;
	}

	.amazoom-search {
		grid-template-columns: 68px minmax(0, 1fr) 76px;
	}

	.amazoom-search button {
		font-size: 13px;
	}

	.amazoom-account-nav strong {
		font-size: 12px;
	}

	.amazoom-hero h1 {
		font-size: 38px;
	}

	.amazoom-section,
	.amazoom-content-shell,
	.amazoom-shop-shell,
	.amazoom-promo-band {
		width: calc(100% - 20px);
		padding: 16px;
	}

	.amazoom-section-heading,
	.amazoom-promo-band {
		align-items: flex-start;
		flex-direction: column;
	}

	.amazoom-placeholder-grid,
	.woocommerce ul.products,
	.amazoom-category-grid {
		grid-template-columns: 1fr;
	}
}
