.aysa-product-page {
	--aysa-product-bg: #fbfbfa;
	--aysa-product-panel: #fff;
	--aysa-product-text: #080808;
	--aysa-product-muted: #666;
	--aysa-product-soft: #f5f5f4;
	--aysa-product-border: #e8e8e5;
	--aysa-product-accent: #e11937;
	--aysa-product-radius: 12px;
	--aysa-product-container: 1180px;
	background: var(--aysa-product-bg);
	color: var(--aysa-product-text);
	font-family: "Geist", Inter, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.aysa-product-container {
	margin: 0 auto;
	max-width: var(--aysa-product-container);
	padding: 0 24px;
	width: 100%;
}

.aysa-product-hero {
	background:
		linear-gradient(135deg, rgba(225, 25, 55, 0.08), transparent 34%),
		linear-gradient(180deg, #fff 0%, var(--aysa-product-bg) 100%);
	border-bottom: 1px solid var(--aysa-product-border);
	padding: 76px 0;
}

.aysa-product-hero__grid {
	align-items: center;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 0.58fr) minmax(360px, 0.42fr);
}

.aysa-product-eyebrow {
	color: var(--aysa-product-accent);
	font-size: 13px;
	font-weight: 760;
	line-height: 1.2;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.aysa-product-hero h1,
.aysa-product-cta h2 {
	font-size: 58px;
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
	max-width: 760px;
}

.aysa-product-hero p,
.aysa-product-cta p {
	color: var(--aysa-product-muted);
	font-size: 18px;
	line-height: 1.55;
	margin: 20px 0 0;
	max-width: 720px;
}

.aysa-product-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.aysa-product-button {
	align-items: center;
	border: 1px solid var(--aysa-product-border);
	border-radius: 8px;
	display: inline-flex;
	font-size: 14px;
	font-weight: 650;
	height: 42px;
	justify-content: center;
	padding: 0 18px;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.aysa-product-button:hover,
.aysa-product-button:focus-visible {
	transform: translateY(-1px);
}

.aysa-product-button--primary {
	background: #111;
	border-color: #111;
	color: #fff;
}

.aysa-product-button--primary:hover,
.aysa-product-button--primary:focus-visible {
	background: var(--aysa-product-accent);
	border-color: var(--aysa-product-accent);
	color: #fff;
}

.aysa-product-button--secondary {
	background: #fff;
	color: var(--aysa-product-text);
}

.aysa-product-price {
	color: var(--aysa-product-text) !important;
	font-size: 14px !important;
	font-weight: 700;
	margin-top: 16px !important;
}

.aysa-product-panel {
	background:
		linear-gradient(135deg, rgba(225, 25, 55, 0.2), transparent 46%),
		#111;
	border: 1px solid rgba(225, 25, 55, 0.38);
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
	color: #fff;
	padding: 28px;
}

.aysa-product-panel span {
	color: #ffbec8;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.aysa-product-panel strong {
	display: block;
	font-size: 30px;
	line-height: 1.12;
	margin-top: 18px;
}

.aysa-product-panel p,
.aysa-product-panel li {
	color: #d8d8d8;
	font-size: 15px;
	line-height: 1.6;
}

.aysa-product-panel p {
	margin: 14px 0 0;
}

.aysa-product-panel ul {
	display: grid;
	gap: 10px;
	list-style: none;
	margin: 24px 0 0;
	padding: 0;
}

.aysa-product-panel li {
	padding-left: 18px;
	position: relative;
}

.aysa-product-panel li::before {
	background: var(--aysa-product-accent);
	border-radius: 999px;
	content: "";
	height: 6px;
	left: 0;
	position: absolute;
	top: 9px;
	width: 6px;
}

.aysa-product-section {
	padding: 96px 0;
}

.aysa-product-section--soft {
	background: #f7f7f5;
	border-bottom: 1px solid var(--aysa-product-border);
	border-top: 1px solid var(--aysa-product-border);
}

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

.aysa-product-aida__item,
.aysa-product-card,
.aysa-product-link-grid a {
	background: var(--aysa-product-panel);
	border: 1px solid var(--aysa-product-border);
	border-radius: var(--aysa-product-radius);
	padding: 24px;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.aysa-product-aida__item:hover,
.aysa-product-card:hover,
.aysa-product-link-grid a:hover {
	border-color: #d7d7d2;
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}

.aysa-product-aida__item span {
	color: var(--aysa-product-accent);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.aysa-product-aida__item p {
	color: var(--aysa-product-muted);
	font-size: 16px;
	line-height: 1.65;
	margin: 14px 0 0;
}

.aysa-product-section-head {
	margin-bottom: 36px;
	max-width: 760px;
}

.aysa-product-section-head h2 {
	font-size: 46px;
	line-height: 1.05;
	margin: 0;
}

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

.aysa-product-card {
	min-height: 230px;
}

.aysa-product-card > span {
	background:
		linear-gradient(#fff, #fff) padding-box,
		linear-gradient(135deg, var(--aysa-product-accent), #111) border-box;
	border: 1px solid transparent;
	border-radius: 10px;
	display: block;
	height: 34px;
	margin-bottom: 48px;
	width: 34px;
}

.aysa-product-card h3 {
	font-size: 19px;
	line-height: 1.25;
	margin: 0 0 10px;
}

.aysa-product-card p,
.aysa-product-link-grid span {
	color: var(--aysa-product-muted);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.aysa-product-cta {
	background: #111;
	color: #fff;
	padding: 92px 0;
}

.aysa-product-cta__inner {
	align-items: center;
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 0.68fr) auto;
}

.aysa-product-cta h2,
.aysa-product-cta .aysa-product-price {
	color: #fff !important;
}

.aysa-product-cta .aysa-product-button--primary {
	background: #fff;
	border-color: #fff;
	color: #111;
}

.aysa-product-link-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.aysa-product-link-grid a {
	color: var(--aysa-product-text);
	display: grid;
	gap: 10px;
	min-height: 160px;
	text-decoration: none;
}

.aysa-product-link-grid strong {
	font-size: 16px;
	line-height: 1.25;
}

@media (max-width: 1080px) {
	.aysa-product-hero__grid,
	.aysa-product-cta__inner {
		grid-template-columns: 1fr;
	}

	.aysa-product-aida,
	.aysa-product-card-grid,
	.aysa-product-link-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.aysa-product-container {
		padding: 0 16px;
	}

	.aysa-product-hero,
	.aysa-product-section,
	.aysa-product-cta {
		padding: 72px 0;
	}

	.aysa-product-hero h1,
	.aysa-product-cta h2,
	.aysa-product-section-head h2 {
		font-size: 40px;
	}

	.aysa-product-hero p,
	.aysa-product-cta p {
		font-size: 16px;
	}

	.aysa-product-actions,
	.aysa-product-button {
		width: 100%;
	}

	.aysa-product-aida,
	.aysa-product-card-grid,
	.aysa-product-link-grid {
		grid-template-columns: 1fr;
	}
}
