.star-commerce-offers {
	--star-commerce-navy: #01143c;
	--star-commerce-heading: #11285e;
	--star-commerce-blue: #245ca8;
	--star-commerce-accent: #3d6db5;
	--star-commerce-text: #5f708e;
	--star-commerce-line: #d8e4f5;
	--star-commerce-soft: #edf4ff;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 1.6vw, 1.5rem);
	margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

.star-commerce-offer {
	background: linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(247, 250, 255, .94));
	border: 1px solid var(--star-commerce-line);
	border-radius: 24px;
	box-shadow: 0 18px 48px rgba(17, 40, 94, .08);
	color: var(--star-commerce-text);
	display: flex;
	flex-direction: column;
	gap: .7rem;
	min-width: 0;
	overflow: hidden;
	padding: clamp(1rem, 1.7vw, 1.35rem);
	position: relative;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.star-commerce-offer::before {
	background: linear-gradient(90deg, #3d6db5, #90b5e8);
	content: "";
	height: 4px;
	inset: 0 0 auto;
	position: absolute;
}

.star-commerce-offer:hover {
	border-color: #b9cfea;
	box-shadow: 0 24px 56px rgba(17, 40, 94, .13);
	transform: translateY(-4px);
}

.star-commerce-offer__image {
	align-items: center;
	background: radial-gradient(circle at 50% 42%, #fff 0%, #f5f9ff 72%, #edf4ff 100%);
	border: 1px solid rgba(216, 228, 245, .8);
	border-radius: 18px;
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: clamp(.5rem, 1vw, .8rem);
}

.star-commerce-offer__image img {
	aspect-ratio: 1;
	display: block;
	height: auto;
	object-fit: contain;
	transition: transform .25s ease;
	width: 100%;
}

.star-commerce-offer:hover .star-commerce-offer__image img {
	transform: scale(1.025);
}

.star-commerce-offer__badge {
	align-self: flex-start;
	background: var(--star-commerce-soft);
	border: 1px solid var(--star-commerce-line);
	border-radius: 999px;
	color: var(--star-commerce-blue);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .06em;
	margin: 0;
	padding: .35rem .7rem;
	text-transform: uppercase;
}

.star-commerce-offer h3 {
	font-family: Manrope, "Atkinson Hyperlegible", Arial, Helvetica, sans-serif;
	font-size: clamp(1.2rem, 1.05rem + .35vw, 1.45rem);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.22;
	margin: .2rem 0 0;
	min-block-size: 3.55rem;
}

.star-commerce-offer h3 a {
	color: var(--star-commerce-heading);
	text-decoration: none;
}

.star-commerce-offer h3 a:hover {
	color: var(--star-commerce-blue);
}

.star-commerce-offer p {
	line-height: 1.48;
	margin: 0;
}

.star-commerce-offer__content,
.star-commerce-offer__footer {
	display: grid;
	gap: .7rem;
}

.star-commerce-offer__content {
	grid-template-rows: auto auto auto minmax(2.8rem, auto) minmax(4rem, auto);
}

.star-commerce-offer__footer {
	margin-top: auto;
}

.star-commerce-offer__quantity {
	color: var(--star-commerce-accent);
	font-size: .84rem;
	font-weight: 800;
	letter-spacing: .055em;
	text-transform: uppercase;
}

.star-commerce-offer__price {
	color: var(--star-commerce-heading);
	font-family: Manrope, "Atkinson Hyperlegible", Arial, Helvetica, sans-serif;
	font-size: clamp(1.45rem, 1.25rem + .55vw, 1.8rem);
	font-weight: 800;
	letter-spacing: -.025em;
	padding-block: .1rem;
}

.star-commerce-offer__unit-price,
.star-commerce-offer__saving {
	font-size: .94rem;
}

.star-commerce-offer__saving {
	background: #effaf4;
	border: 1px solid #cbead7;
	border-radius: 12px;
	color: #21613b;
	font-weight: 700;
	padding: .55rem .7rem;
}

.star-commerce-offer__saving.is-placeholder {
	visibility: hidden;
}

.star-commerce-offer__stock {
	align-items: center;
	color: #21613b;
	display: flex;
	font-size: .9rem;
	font-weight: 700;
	gap: .45rem;
}

.star-commerce-offer__stock::before {
	background: #36a269;
	border-radius: 50%;
	box-shadow: 0 0 0 4px #e8f7ef;
	content: "";
	height: 7px;
	width: 7px;
}

.star-commerce-offer__stock.is-out-of-stock {
	color: #9b2c2c;
}

.star-commerce-offer__stock.is-out-of-stock::before {
	background: #d65a5a;
	box-shadow: 0 0 0 4px #fdecec;
}

.star-commerce-offer .button {
	background: linear-gradient(135deg, #11285e, #245ca8);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(17, 40, 94, .18);
	color: #fff;
	font-weight: 800;
	gap: .5rem;
	display: inline-flex;
	justify-content: center;
	margin: 0;
	min-height: 50px;
	padding: .8rem 1.15rem;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

.star-commerce-offer .button::after {
	content: "›";
	font-size: 1.35em;
	line-height: .7;
}

.star-commerce-offer .button:hover {
	background: linear-gradient(135deg, #081c4b, #174a91);
	box-shadow: 0 14px 28px rgba(17, 40, 94, .25);
	color: #fff;
}

.star-commerce-offer :focus-visible {
	outline: 3px solid rgba(61, 109, 181, .4);
	outline-offset: 3px;
}

.star-commerce-bulk-contact {
	align-items: center;
	background: linear-gradient(135deg, #11285e, #245ca8);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 22px;
	box-shadow: 0 18px 42px rgba(17, 40, 94, .18);
	color: #fff;
	display: grid;
	gap: clamp(1rem, 2.5vw, 2rem);
	grid-template-columns: minmax(0, 1fr) auto;
	margin-top: clamp(1rem, 2vw, 1.5rem);
	padding: clamp(1.15rem, 2.5vw, 1.75rem);
}

.star-commerce-bulk-contact__copy h2 {
	color: #fff;
	font-family: Manrope, "Atkinson Hyperlegible", Arial, Helvetica, sans-serif;
	font-size: clamp(1.2rem, 1.08rem + .42vw, 1.5rem);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.25;
	margin: 0 0 .35rem;
}

.star-commerce-bulk-contact__copy p {
	color: rgba(255, 255, 255, .86);
	line-height: 1.55;
	margin: 0;
	max-width: 760px;
}

.star-commerce-bulk-contact__button {
	align-items: center;
	background: #fff;
	border: 2px solid #fff;
	border-radius: 999px;
	color: #11285e;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 50px;
	padding: .75rem 1.25rem;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

.star-commerce-bulk-contact__button:hover {
	background: #edf4ff;
	border-color: #edf4ff;
	color: #081c4b;
}

.star-commerce-bulk-contact__button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, .55);
	outline-offset: 4px;
}

body.post-type-archive-product .site-content {
	background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

body.post-type-archive-product .site-content > .ast-container {
	max-width: 1360px;
	padding-inline: clamp(1rem, 3vw, 2.5rem);
}

body.post-type-archive-product .ast-woocommerce-container {
	padding-block: clamp(1.5rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem);
}

body.post-type-archive-product .woocommerce-breadcrumb {
	color: #6b7c98;
	font-size: .9rem;
	margin: 0 0 1rem;
}

body.post-type-archive-product .woocommerce-products-header {
	background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 246, 255, .92));
	border: 1px solid #d8e4f5;
	border-radius: 32px;
	box-shadow: 0 22px 60px rgba(17, 40, 94, .09);
	padding: clamp(1.5rem, 4vw, 3rem);
}

body.post-type-archive-product .woocommerce-products-header__title.page-title {
	color: #11285e;
	font-family: Manrope, "Atkinson Hyperlegible", Arial, Helvetica, sans-serif;
	font-size: clamp(2.5rem, 2rem + 2.2vw, 4.5rem);
	font-weight: 800;
	letter-spacing: -.045em;
	line-height: 1.02;
	margin: 0 0 clamp(1rem, 2vw, 1.4rem);
}

body.post-type-archive-product .woocommerce-products-header .page-description {
	color: #667794;
	font-size: clamp(1rem, .96rem + .2vw, 1.1rem);
	line-height: 1.65;
}

body.post-type-archive-product .woocommerce-products-header .star-commerce-document-lead {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin: 0;
	max-width: 980px;
	padding: 0;
}

body.post-type-archive-product .woocommerce-result-count,
body.post-type-archive-product .woocommerce-ordering,
body.post-type-archive-product ul.products {
	display: none;
}

@media (max-width: 1100px) {
	.star-commerce-offers {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.star-commerce-offers {
		grid-template-columns: 1fr;
	}

	.star-commerce-offer {
		border-radius: 20px;
		padding: 1rem;
	}

	.star-commerce-offer h3,
	.star-commerce-offer__unit-price,
	.star-commerce-offer__saving {
		min-block-size: 0;
	}

	.star-commerce-offer__content {
		grid-template-rows: none;
	}

	.star-commerce-offer__saving.is-placeholder {
		display: none;
	}

	.star-commerce-bulk-contact {
		grid-template-columns: 1fr;
	}

	.star-commerce-bulk-contact__button {
		width: 100%;
	}

	body.post-type-archive-product .site-content > .ast-container {
		padding-inline: 16px;
	}

	body.post-type-archive-product .ast-woocommerce-container {
		padding-block: 1rem 3rem;
	}

	body.post-type-archive-product .woocommerce-products-header {
		border-radius: 24px;
		padding: 1.35rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.star-commerce-offer,
	.star-commerce-offer__image img {
		transition: none;
	}

	.star-commerce-offer:hover,
	.star-commerce-offer:hover .star-commerce-offer__image img {
		transform: none;
	}
}
