/*
 * CUANOV conversion layer for WoodMart + Elementor.
 * Scope is deliberately narrow: it enhances the existing site rather than
 * overriding WoodMart's layout system or WooCommerce checkout templates.
 */

:root {
	--cuanov-ink: #141617;
	--cuanov-paper: #f7f7f3;
	--cuanov-line: rgba(20, 22, 23, 0.16);
	--cuanov-accent: #c98d35;
	--cuanov-radius: 10px;
}

/* Homepage: turn the Elementor hero link into an obvious, accessible CTA. */
.home .elementor-element-56d4fc5 a {
	align-items: center;
	background: var(--cuanov-paper);
	border: 1px solid var(--cuanov-paper);
	border-radius: 999px;
	color: var(--cuanov-ink);
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin-top: 8px;
	padding: 13px 20px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.home .elementor-element-56d4fc5 a:hover,
.home .elementor-element-56d4fc5 a:focus-visible {
	background: var(--cuanov-accent);
	border-color: var(--cuanov-accent);
	color: #ffffff;
	transform: translateY(-1px);
}

/* Product decision area: easier to scan and tap without changing any pricing. */
.single-product form.cart .variations select {
	border-color: var(--cuanov-line);
	border-radius: var(--cuanov-radius);
	min-height: 46px;
}

.single-product form.cart .single_add_to_cart_button,
.single-product form.cart .buy-now-button {
	border-radius: var(--cuanov-radius);
	font-weight: 700;
	letter-spacing: 0.04em;
	min-height: 48px;
	text-transform: uppercase;
}

.cuanov-version-guide {
	background: #f7f4ee;
	border-left: 3px solid var(--cuanov-accent);
	border-radius: 0 var(--cuanov-radius) var(--cuanov-radius) 0;
	color: var(--cuanov-ink);
	display: grid;
	gap: 4px;
	margin: 0 0 16px;
	padding: 13px 15px;
}

.cuanov-version-guide strong {
	font-size: 14px;
}

.cuanov-version-guide span {
	font-size: 13px;
	line-height: 1.45;
}

.cuanov-product-assurance {
	border: 1px solid var(--cuanov-line);
	border-radius: var(--cuanov-radius);
	display: grid;
	gap: 0;
	margin: 18px 0 8px;
	overflow: hidden;
}

.cuanov-product-assurance__item {
	background: #ffffff;
	border-bottom: 1px solid var(--cuanov-line);
	color: #4c4f50;
	font-size: 13px;
	line-height: 1.5;
	padding: 12px 14px;
}

.cuanov-product-assurance__item:last-child {
	border-bottom: 0;
}

.cuanov-product-assurance__item strong {
	color: var(--cuanov-ink);
	display: block;
	font-size: 13px;
	margin-bottom: 2px;
}

.cuanov-product-assurance a {
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cuanov-product-assurance__policy-link {
	display: inline-block;
	margin-left: 4px;
}

/* A consistently visible keyboard focus treatment across custom components. */
.cuanov-cro-enabled a:focus-visible,
.cuanov-cro-enabled button:focus-visible,
.cuanov-cro-enabled select:focus-visible,
.cuanov-cro-enabled input:focus-visible {
	outline: 3px solid rgba(201, 141, 53, 0.56);
	outline-offset: 3px;
}

@media (max-width: 768px) {
	.home .elementor-element-56d4fc5 a {
		padding: 12px 17px;
	}

	.cuanov-product-assurance__item {
		padding: 11px 12px;
	}
}

