/* Product page: keep reviews, FAQ and seals on the same container */
body.single-product .container {
	width: min(var(--cp-shell-width, 1320px), calc(100% - (var(--cp-shell-gutter, 1.25rem) * 2)));
	max-width: var(--cp-shell-width, 1320px);
	padding-left: 0;
	padding-right: 0;
}

body.single-product .woocommerce-tabs,
body.single-product .woocommerce-Reviews,
body.single-product #reviews,
body.single-product #tab-reviews,
body.single-product #tab-faq_tab,
body.single-product .faq-wrapper,
body.single-product .s-faq-wrapper {
	width: 100%;
	max-width: var(--cp-shell-width, 1320px);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* Trust seals (product page) */
.cp-trust-seals-section {
	padding: clamp(2.75rem, 5vw, 4.5rem) 0;
}

.cp-trust-seals {
	--cp-ink: #1a2332;
	--cp-muted: #667085;
	--cp-accent: #ff6d60;
	--cp-accent-dark: #e55548;
	--cp-accent-line: #ffd4ce;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cp-trust-seals__item {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	min-height: 5.25rem;
	padding: 0.85rem 1.1rem;
	border: 1px solid var(--cp-accent-line);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(26, 35, 50, 0.05);
}

.cp-trust-seals__svg {
	flex: 0 0 56px;
	width: 56px;
	height: 56px;
	filter: drop-shadow(0 8px 14px rgba(255, 109, 96, 0.24));
}

.cp-trust-seals__svg svg {
	display: block;
	width: 100%;
	height: 100%;
}

.cp-trust-seals__text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.cp-trust-seals__text strong {
	color: var(--cp-ink);
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.25;
}

.cp-trust-seals__text small {
	color: var(--cp-muted);
	font-size: 0.8rem;
	line-height: 1.35;
}

@media (max-width: 720px) {
	.cp-trust-seals {
		grid-template-columns: 1fr;
	}
}

/* Shared 14-day guarantee card — one design for contact / cart / checkout */
.cp-contact-guarantee {
	--cp-ink: #1a2332;
	--cp-muted: #667085;
	--cp-accent: #ff6d60;
	--cp-accent-dark: #e55548;
	--cp-accent-soft: #ffece9;
	--cp-accent-line: #ffd4ce;
}

.cp-contact .cp-contact-guarantee {
	padding: 0 0 clamp(3rem, 7vw, 5.5rem);
}

.woocommerce-cart .cp-contact-guarantee,
.woocommerce-checkout .cp-contact-guarantee {
	margin: 2.25rem 0 0;
	padding: 0;
}

.woocommerce-cart .cp-contact-guarantee .cp-container,
.woocommerce-checkout .cp-contact-guarantee .cp-container {
	width: 100%;
	max-width: none;
	padding: 0;
}

.cp-contact-guarantee__card {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.15rem 1.5rem;
	align-items: center;
	padding: 1.25rem 1.75rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 212, 206, 0.9);
	background:
		radial-gradient(ellipse 42% 80% at 0% 50%, rgba(255, 109, 96, 0.1), transparent 58%),
		linear-gradient(135deg, #ffffff 0%, #fff8f6 100%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.8) inset,
		0 16px 40px rgba(255, 109, 96, 0.08);
	overflow: hidden;
}

.cp-contact-guarantee__seal {
	position: relative;
	display: grid;
	place-items: center;
	width: 196px;
	height: 196px;
	flex: 0 0 196px;
}

.cp-contact-guarantee__seal::before {
	content: "";
	position: absolute;
	inset: 6px;
	border-radius: 50%;
	background:
		radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.55), transparent 34%),
		radial-gradient(circle, rgba(26, 35, 50, 0.12), transparent 72%);
}

.cp-contact-guarantee__badge {
	position: relative;
	z-index: 1;
	width: 168px;
	filter: drop-shadow(0 14px 22px rgba(26, 35, 50, 0.28));
}

.cp-contact-guarantee__badge svg {
	display: block;
	width: 100%;
	height: auto;
}

.cp-contact-guarantee__copy {
	min-width: 0;
}

.cp-contact-guarantee__title {
	margin: 0 0 0.4rem;
	font-size: clamp(1.55rem, 2.4vw, 1.9rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.2;
	color: var(--cp-ink);
}

.cp-contact-guarantee__lead {
	margin: 0 0 0.75rem;
	font-size: 1.08rem;
	line-height: 1.6;
	color: var(--cp-muted);
}

.cp-contact-guarantee__lead a {
	color: var(--cp-accent-dark);
	font-weight: 700;
	text-decoration: none;
}

.cp-contact-guarantee__lead a:hover {
	text-decoration: underline;
}

.cp-contact-guarantee__founder {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0.2rem 0.7rem 0.2rem 0.2rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #f0e4e1;
	color: var(--cp-muted);
	font-size: 0.88rem;
}

.cp-contact-guarantee__avatar {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--cp-accent), #ff9a8f);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
}

@media (max-width: 640px) {
	.cp-contact-guarantee__card {
		grid-template-columns: 1fr;
		justify-items: center;
		padding: 1.15rem 1.1rem 1.25rem;
		text-align: center;
	}

	.cp-contact-guarantee__founder {
		justify-content: center;
	}
}
