/**
 * CareAndCure — Product Page Styles
 * Auto-extracted from product templates.
 * All 4 product style templates use this file.
 * @package CareAndCure
 */

/* ── Review Invite Component ─────────────────────────────── */
.cc-review-invite {
	margin: 56px 0 0;
	background: linear-gradient(145deg, #071810 0%, #0d2318 50%, #10291c 100%);
	border-radius: 20px;
	padding: 52px 44px 44px;
	text-align: center;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(141,198,63,0.15);
	box-shadow: 0 20px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Glowing background orbs */
.cc-ri-bg-circle {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.cc-ri-bg-1 {
	width: 320px; height: 320px;
	top: -80px; right: -80px;
	background: radial-gradient(circle, rgba(141,198,63,0.12) 0%, transparent 65%);
}
.cc-ri-bg-2 {
	width: 240px; height: 240px;
	bottom: -60px; left: -60px;
	background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 65%);
}
.cc-ri-bg-3 {
	width: 180px; height: 180px;
	top: 40%; left: 50%;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(141,198,63,0.05) 0%, transparent 70%);
}

/* Eyebrow */
.cc-ri-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #8dc63f;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}
.cc-ri-dot {
	display: inline-block;
	width: 4px; height: 4px;
	background: #8dc63f;
	border-radius: 50%;
	opacity: 0.6;
}

/* Stars — each one bounces in */
.cc-ri-stars {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}
.cc-ri-star {
	font-size: 32px;
	color: #f5c518;
	display: inline-block;
	animation: cc-star-drop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
	animation-delay: var(--d, 0s);
	text-shadow: 0 2px 12px rgba(245,197,24,0.4);
}
@keyframes cc-star-drop {
	from { opacity: 0; transform: translateY(-16px) scale(0.5); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Title */
.cc-ri-title {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 900;
	color: #fff;
	margin: 0 0 12px;
	line-height: 1.15;
	letter-spacing: -0.025em;
	position: relative;
	z-index: 1;
}

/* Subtitle */
.cc-ri-subtitle {
	font-size: 15px;
	color: rgba(255,255,255,0.6);
	line-height: 1.7;
	margin: 0 auto 28px;
	max-width: 480px;
	position: relative;
	z-index: 1;
}

/* Proof strip */
.cc-ri-proof {
	display: inline-flex;
	align-items: center;
	gap: 0;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 12px;
	padding: 14px 24px;
	margin-bottom: 32px;
	position: relative;
	z-index: 1;
}
.cc-ri-proof-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 20px;
}
.cc-ri-proof-item strong {
	font-size: 20px;
	font-weight: 800;
	color: #8dc63f;
	line-height: 1;
	margin-bottom: 3px;
}
.cc-ri-proof-item span {
	font-size: 11px;
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.cc-ri-proof-sep {
	width: 1px;
	height: 32px;
	background: rgba(255,255,255,0.1);
	flex-shrink: 0;
}

/* Mini sample reviews */
.cc-ri-samples {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 32px;
	position: relative;
	z-index: 1;
}
.cc-ri-sample {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 12px;
	padding: 16px 18px;
	text-align: left;
}
.cc-ri-sample-stars {
	color: #f5c518;
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 8px;
}
.cc-ri-sample p {
	font-size: 13px;
	color: rgba(255,255,255,0.75);
	line-height: 1.5;
	margin: 0 0 8px;
	font-style: italic;
}
.cc-ri-sample span {
	font-size: 11px;
	color: rgba(255,255,255,0.35);
	font-weight: 600;
}

/* CTA */
.cc-ri-cta-wrap {
	position: relative;
	z-index: 1;
}
.cc-ri-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #8dc63f 0%, #a0d94a 100%);
	color: #071810;
	font-weight: 800;
	font-size: 16px;
	padding: 16px 36px;
	border-radius: 999px;
	text-decoration: none;
	letter-spacing: 0.01em;
	transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
	box-shadow: 0 6px 28px rgba(141,198,63,0.4), 0 2px 8px rgba(0,0,0,0.2);
}
.cc-ri-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(141,198,63,0.5), 0 4px 12px rgba(0,0,0,0.2);
	filter: brightness(1.06);
	color: #071810;
}
.cc-ri-btn:active { transform: translateY(-1px); }
.cc-ri-btn-icon { font-size: 18px; }
.cc-ri-note {
	font-size: 12px;
	color: rgba(255,255,255,0.3);
	margin: 14px 0 0;
}

/* Mobile */
@media (max-width: 640px) {
	.cc-review-invite { padding: 36px 20px 32px; }
	.cc-ri-proof { flex-direction: column; gap: 0; }
	.cc-ri-proof-item { padding: 10px 0; }
	.cc-ri-proof-sep { width: 60px; height: 1px; }
	.cc-ri-samples { grid-template-columns: 1fr; }
	.cc-ri-btn { font-size: 14px; padding: 14px 24px; }
}

/* ── Reviews Section ─────────────────────────────────────── */
.cc-reviews-section {
	margin: 48px 0;
	scroll-margin-top: 80px;
}
.cc-reviews-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
}
.cc-reviews-title {
	font-size: 22px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 8px;
}
.cc-reviews-summary {
	display: flex;
	align-items: center;
	gap: 10px;
}
.cc-reviews-avg {
	font-size: 32px;
	font-weight: 900;
	color: #1a4731;
	line-height: 1;
}
.cc-reviews-stars {
	display: flex;
	gap: 2px;
}
.cc-star-wrap {
	position: relative;
	display: inline-block;
	font-size: 20px;
	color: #ddd;
}
.cc-star-bg { color: #ddd; }
.cc-star-fill {
	position: absolute;
	top: 0; left: 0;
	overflow: hidden;
	color: #f5c518;
}
.cc-reviews-count {
	font-size: 13px;
	color: #888;
}
.cc-reviews-write-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #1a4731;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	padding: 12px 24px;
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
	white-space: nowrap;
}
.cc-reviews-write-btn:hover {
	background: #8dc63f;
	color: #fff;
	transform: translateY(-1px);
}

/* Review cards */
.cc-reviews-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.cc-rv-card {
	background: #fafafa;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 20px 24px;
}
.cc-rv-header {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 12px;
}
.cc-rv-avatar {
	width: 40px; height: 40px;
	background: #1a4731;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 16px;
	flex-shrink: 0;
}
.cc-rv-meta { flex: 1; }
.cc-rv-name { font-size: 15px; color: #1a1a1a; display: block; margin-bottom: 4px; }
.cc-rv-stars { display: flex; gap: 2px; }
.cc-rv-star { color: #ddd; font-size: 16px; }
.cc-rv-star.filled { color: #f5c518; }
.cc-rv-date { font-size: 12px; color: #aaa; white-space: nowrap; }
.cc-rv-body { font-size: 14px; color: #444; line-height: 1.7; }
.cc-rv-body p { margin: 0 0 8px; }
.cc-rv-verified { font-size: 11px; color: #8dc63f; font-weight: 600; margin-top: 10px; letter-spacing: 0.04em; }
.cc-rv-empty { background: #f8f8f8; border-radius: 12px; padding: 28px; text-align: center; color: #888; font-size: 15px; margin-bottom: 32px; }
.cc-rv-more { text-align: center; padding: 12px; color: #888; font-size: 13px; }

/* Write review form */
.cc-review-form-wrap {
	background: #fff;
	border: 2px solid #f0f0f0;
	border-radius: 16px;
	padding: 32px;
	scroll-margin-top: 80px;
}
.cc-review-form-title {
	font-size: 20px;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 8px;
}
.cc-review-form-sub {
	font-size: 14px;
	color: #888;
	margin: 0 0 24px;
	line-height: 1.6;
}
.cc-rf-form { margin: 0; }
.cc-rf-row { margin-bottom: 18px; }
.cc-rf-row label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #333;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.cc-rf-row input[type="text"],
.cc-rf-row input[type="email"],
.cc-rf-row textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid #ddd;
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	color: #333;
	background: #fafafa;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}
.cc-rf-row input:focus,
.cc-rf-row textarea:focus {
	outline: none;
	border-color: #8dc63f;
	box-shadow: 0 0 0 3px rgba(141,198,63,0.15);
	background: #fff;
}
.cc-rf-row textarea { resize: vertical; min-height: 120px; }
.cc-rf-row small { display: block; font-size: 11px; color: #aaa; margin-top: 4px; }
.cc-rf-row .required { color: #e74c3c; }

/* Star rating input */
.cc-rf-rating-row { margin-bottom: 18px; }
.cc-rf-stars {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 4px;
	margin-top: 6px;
}
.cc-rf-stars input[type="radio"] { display: none; }
.cc-rf-stars label {
	font-size: 32px;
	color: #ddd;
	cursor: pointer;
	transition: color 0.15s;
	display: block;
	margin: 0;
	text-transform: none;
	letter-spacing: 0;
}
.cc-rf-stars label:hover,
.cc-rf-stars label:hover ~ label,
.cc-rf-stars input:checked ~ label {
	color: #f5c518;
}

/* Submit button */
.cc-rf-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #1a4731;
	color: #fff;
	font-weight: 800;
	font-size: 16px;
	padding: 14px 36px;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	letter-spacing: 0.02em;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 16px rgba(26,71,49,0.2);
	width: 100%;
	margin-top: 8px;
}
.cc-rf-submit:hover {
	background: #8dc63f;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(141,198,63,0.3);
}

.cc-rf-closed {
	background: #f8f8f8;
	border-radius: 10px;
	padding: 20px;
	font-size: 14px;
	color: #666;
	text-align: center;
}
.cc-rf-closed a { color: #1a4731; font-weight: 600; }

/* Mobile */
@media (max-width: 640px) {
	.cc-reviews-header { flex-direction: column; align-items: flex-start; }
	.cc-review-form-wrap { padding: 20px 16px; }
	.cc-rf-stars label { font-size: 28px; }
}

/* ── Base ── */
.s4-wrap { font-family: var(--font-body, 'Nunito', sans-serif); color: var(--cc-dark, #1c2e26); }
.s4-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.s4-section-head { text-align: center; margin-bottom: 40px; }
.s4-section-title { font-size: clamp(22px,4vw,34px); font-weight: 800; color: var(--cc-dark,#1c2e26); margin: 0 0 10px; }
.s4-section-sub { color: #777; font-size: 15px; max-width: 520px; margin: 0 auto; }

/* ── Stars ── */
.s4-star.full  { color: var(--cc-gold, #f5a623); }
.s4-star.half  { color: var(--cc-gold, #f5a623); }
.s4-star.empty { color: #ddd; }
.s4-stars { display: inline-flex; gap: 2px; font-size: 18px; }

/* ── STICKY BAR ── */
.s4-sticky-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: #fff; border-top: 2px solid var(--cc-green,#8dc63f); box-shadow: 0 -4px 20px rgba(0,0,0,.12); padding: 10px 16px; }
.s4-sticky-inner { display: flex; align-items: center; gap: 12px; max-width: 1200px; margin: 0 auto; }
.s4-sticky-info { flex: 1; min-width: 0; }
.s4-sticky-name { display: block; font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s4-sticky-price { display: block; font-size: 12px; color: var(--cc-gold,#f5a623); font-weight: 700; }
.s4-sticky-btn { background: var(--cc-green,#8dc63f); color: #fff; border: none; border-radius: 8px; padding: 12px 20px; font-size: 14px; font-weight: 800; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background .15s; }
.s4-sticky-btn:hover { background: var(--cc-dark,#1c2e26); }

/* ── HERO ── */
.s4-hero { padding: 30px 0 50px; background: #fff; }
.s4-rating-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.s4-rating-score { font-weight: 800; font-size: 15px; }
.s4-rating-count { color: var(--cc-green,#8dc63f); font-size: 14px; text-decoration: underline; }
.s4-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-start; }

/* ── GALLERY ── */
.s4-gallery { position: sticky; top: 100px; }
.s4-gallery-main { position: relative; border-radius: 16px; overflow: hidden; background: var(--cc-light,#f4f8f0); aspect-ratio: 1; }
.s4-gallery-slide { display: none; width: 100%; height: 100%; }
.s4-gallery-slide.active { display: flex; align-items: center; justify-content: center; }
.s4-gallery-slide img { width: 100%; height: 100%; object-fit: contain; }
.s4-no-image { font-size: 80px; }
.s4-gallery-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.s4-gdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,.25); cursor: pointer; transition: background .2s; }
.s4-gdot.active { background: var(--cc-green,#8dc63f); }
.s4-gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.s4-thumb { width: 70px; height: 70px; border-radius: 8px; border: 2px solid #e5e5e5; overflow: hidden; cursor: pointer; padding: 0; background: #f9f9f9; transition: border-color .15s; }
.s4-thumb.active, .s4-thumb:hover { border-color: var(--cc-green,#8dc63f); }
.s4-thumb img { width: 100%; height: 100%; object-fit: contain; }

/* ── BUY PANEL ── */
.s4-brand-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--cc-green,#8dc63f); margin-bottom: 8px; }
.s4-title { font-size: clamp(22px,3.5vw,36px); font-weight: 900; line-height: 1.2; margin: 0 0 12px; color: var(--cc-dark,#1c2e26); }
.s4-tagline { font-size: 15px; color: #555; line-height: 1.6; margin: 0 0 18px; }
.s4-price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.s4-price { font-size: 24px; font-weight: 800; color: var(--cc-dark,#1c2e26); }
.s4-price del { color: #aaa; font-weight: 400; font-size: 18px; }
.s4-price ins { text-decoration: none; color: var(--cc-dark,#1c2e26); }
.s4-save-badge { background: var(--cc-red,#c62a2a); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 20px; letter-spacing: .05em; }

/* ── PURCHASE TOGGLE ── */
.s4-purchase-toggle { border: 2px solid #e5e5e5; border-radius: 12px; overflow: hidden; margin-bottom: 14px; }
.s4-ptoggle { display: flex; align-items: center; gap: 12px; width: 100%; padding: 14px 16px; background: #fff; border: none; cursor: pointer; border-bottom: 1px solid #e5e5e5; transition: background .15s; text-align: left; }
.s4-ptoggle:last-child { border-bottom: none; }
.s4-ptoggle.active { background: var(--cc-light,#f4f8f0); }
.s4-ptoggle-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #ccc; flex-shrink: 0; transition: all .15s; }
.s4-ptoggle.active .s4-ptoggle-radio { border-color: var(--cc-green,#8dc63f); background: var(--cc-green,#8dc63f); box-shadow: inset 0 0 0 3px #fff; }
.s4-ptoggle-label { font-size: 14px; font-weight: 600; }

/* ── SUBSCRIBE BENEFITS ── */
.s4-sub-benefits { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 6px; }
.s4-sub-benefits li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; padding-left: 4px; }
.s4-sub-benefits li::before { content: '✓'; color: var(--cc-green,#8dc63f); font-weight: 800; flex-shrink: 0; }

/* ── VARIANTS ── */
.s4-variants { margin-bottom: 16px; }
.s4-variants-label { font-size: 13px; font-weight: 700; margin-bottom: 10px; color: #333; }
.s4-variants-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.s4-variant-card { position: relative; border: 2px solid #e5e5e5; border-radius: 10px; padding: 12px 14px; cursor: pointer; text-align: center; min-width: 100px; transition: all .15s; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.s4-variant-card input { position: absolute; opacity: 0; width: 0; height: 0; }
.s4-variant-card.active, .s4-variant-card:has(input:checked) { border-color: var(--cc-green,#8dc63f); background: var(--cc-light,#f4f8f0); }
.s4-var-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); font-size: 9px; font-weight: 800; padding: 2px 8px; border-radius: 20px; white-space: nowrap; }
.s4-var-badge.popular { background: var(--cc-gold,#f5a623); color: #fff; }
.s4-var-badge.best { background: var(--cc-green,#8dc63f); color: #fff; }
.s4-var-label { font-size: 13px; font-weight: 700; }
.s4-var-price { font-size: 12px; color: #666; }

/* ── STOCK ── */
.s4-stock { font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.s4-stock.instock { color: var(--cc-green,#8dc63f); }
.s4-stock.outofstock { color: var(--cc-red,#c62a2a); }

/* ── WC ADD TO CART overrides inside buy panel ── */
.s4-wrap .quantity { display: inline-flex; align-items: center; border: 2px solid #e5e5e5; border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.s4-wrap .quantity input { width: 50px; text-align: center; border: none; font-size: 16px; font-weight: 700; padding: 10px 0; }
.s4-wrap .single_add_to_cart_button { display: block; width: 100%; background: var(--cc-dark,#1c2e26); color: #fff; border: none; border-radius: 10px; padding: 16px; font-size: 16px; font-weight: 800; cursor: pointer; letter-spacing: .03em; transition: background .15s; margin-bottom: 14px; }
.s4-wrap .single_add_to_cart_button:hover { background: var(--cc-green,#8dc63f); }

/* ── GUARANTEE STRIP ── */
.s4-guarantee-strip { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; padding: 12px; background: var(--cc-light,#f4f8f0); border-radius: 8px; }
.s4-guarantee-item { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: #444; }
.s4-gi-icon { font-size: 16px; }

/* ── PAYMENT ICONS ── */
.s4-payment-icons { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.s4-payment-label { font-size: 11px; color: #999; }
.s4-picon { background: #f5f5f5; border: 1px solid #e0e0e0; border-radius: 4px; padding: 4px 8px; font-size: 10px; font-weight: 800; color: #333; }

/* ── FEATURED IN ── */
.s4-featured-in { padding: 30px 0; background: #f9f9f9; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.s4-fi-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #999; margin: 0 0 16px; }
.s4-fi-logos { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.s4-fi-logo img { height: 28px; width: auto; filter: grayscale(1); opacity: .55; transition: all .2s; }
.s4-fi-logo img:hover { filter: none; opacity: 1; }
.s4-fi-logo span { font-size: 16px; font-weight: 800; color: #aaa; letter-spacing: .05em; }

/* ── TABS ── */
.s4-tabs-section { padding: 50px 0; background: #fff; }
.s4-tabs-nav { display: flex; border-bottom: 2px solid #e5e5e5; margin-bottom: 28px; }
.s4-tab-btn { padding: 12px 24px; background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; font-size: 14px; font-weight: 700; color: #888; cursor: pointer; transition: all .15s; }
.s4-tab-btn.active { color: var(--cc-green,#8dc63f); border-bottom-color: var(--cc-green,#8dc63f); }
.s4-tab-panel { display: none; }
.s4-tab-panel.active { display: block; }

/* ── CHECKLIST ── */
.s4-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.s4-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.6; }
.s4-check-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* ── WHY CHOOSE US ── */
.s4-why-section { padding: 60px 0; background: var(--cc-light,#f4f8f0); }
.s4-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.s4-why-card { background: #fff; border-radius: 14px; padding: 26px 22px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: transform .2s, box-shadow .2s; }
.s4-why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.s4-why-icon { font-size: 40px; margin-bottom: 12px; }
.s4-why-title { font-size: 15px; font-weight: 800; margin: 0 0 6px; color: var(--cc-dark,#1c2e26); }
.s4-why-desc { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }

/* ── CONTENT SECTIONS ── */
.s4-content-section { padding: 60px 0; }
.s4-content-section:nth-child(odd) { background: #fff; }
.s4-content-section:nth-child(even) { background: var(--cc-light,#f4f8f0); }
.s4-cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.s4-layout-image_right .s4-cs-image { order: 2; }
.s4-layout-image_right .s4-cs-text { order: 1; }
.s4-cs-image img { width: 100%; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.s4-cs-img-placeholder { background: var(--cc-light,#f4f8f0); border-radius: 16px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.s4-cs-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--cc-green,#8dc63f); margin-bottom: 10px; }
.s4-cs-heading { font-size: clamp(20px,3vw,30px); font-weight: 800; line-height: 1.3; margin: 0 0 16px; color: var(--cc-dark,#1c2e26); }
.s4-cs-body { font-size: 15px; color: #555; line-height: 1.8; }
.s4-cs-body ul { padding-left: 20px; }
.s4-cs-body li { margin-bottom: 6px; }

/* ── COMPARISON TABLE ── */
.s4-compare-section { padding: 60px 0; background: #fff; }
.s4-compare-wrap { overflow-x: auto; margin-bottom: 32px; }
.s4-compare-table { width: 100%; border-collapse: collapse; min-width: 360px; }
.s4-compare-table thead th { padding: 14px 20px; font-size: 15px; font-weight: 800; background: var(--cc-dark,#1c2e26); color: #fff; text-align: center; }
.s4-compare-table thead th:first-child { text-align: left; background: #f0f0f0; color: #333; }
.s4-compare-table thead th.s4-ct-us { background: var(--cc-green,#8dc63f); }
.s4-compare-table tbody tr:nth-child(odd) { background: #f9f9f9; }
.s4-compare-table tbody tr:nth-child(even) { background: #fff; }
.s4-compare-table tbody td { padding: 14px 20px; text-align: center; font-size: 14px; border-bottom: 1px solid #eee; }
.s4-compare-table tbody td:first-child { text-align: left; font-weight: 600; color: #333; }
.s4-check { font-size: 20px; color: var(--cc-green,#8dc63f); font-weight: 900; }
.s4-cross { font-size: 20px; color: var(--cc-red,#c62a2a); font-weight: 900; }
.s4-compare-cta { text-align: center; }
.s4-compare-guarantee { font-size: 13px; color: #888; margin-top: 10px; }

/* ── REVIEWS ── */
.s4-reviews-section { padding: 60px 0; background: var(--cc-light,#f4f8f0); }
.s4-review-summary { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 8px; }
.s4-review-big-score { font-size: 52px; font-weight: 900; color: var(--cc-dark,#1c2e26); line-height: 1; }
.s4-review-count-label { font-size: 13px; color: #888; margin-top: 4px; }
.s4-review-carousel { position: relative; overflow: hidden; }
.s4-review-track { display: flex; gap: 24px; transition: transform .35s ease; }
.s4-review-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 4px 20px rgba(0,0,0,.06); flex: 0 0 calc(33.333% - 16px); min-width: 280px; }
.s4-rv-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.s4-rv-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--cc-green,#8dc63f); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.s4-rv-avatar img { width: 100%; height: 100%; object-fit: cover; }
.s4-rv-avatar span { color: #fff; font-weight: 800; font-size: 18px; }
.s4-rv-meta { display: flex; flex-direction: column; gap: 2px; }
.s4-rv-meta strong { font-size: 14px; }
.s4-rv-handle { font-size: 12px; color: #888; }
.s4-rv-verified { font-size: 11px; color: var(--cc-green,#8dc63f); font-weight: 700; }
.s4-rv-stars { margin-bottom: 10px; font-size: 16px; }
.s4-rv-text { font-size: 14px; line-height: 1.7; color: #444; margin: 0; font-style: italic; }
.s4-rv-dots { display: flex; justify-content: center; gap: 7px; margin-top: 20px; }
.s4-rvdot { width: 8px; height: 8px; border-radius: 50%; background: #ccc; cursor: pointer; transition: background .2s; }
.s4-rvdot.active { background: var(--cc-green,#8dc63f); }
.s4-rv-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; border: 2px solid #e5e5e5; border-radius: 50%; width: 40px; height: 40px; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,.1); transition: all .15s; z-index: 2; }
.s4-rv-arrow:hover { background: var(--cc-green,#8dc63f); color: #fff; border-color: var(--cc-green,#8dc63f); }
.s4-rv-prev { left: -20px; }
.s4-rv-next { right: -20px; }

/* ── FAQ ── */
.s4-faq-section { padding: 60px 0; background: #fff; }
.s4-faq-big { font-size: clamp(40px,8vw,72px); font-weight: 900; letter-spacing: -.02em; }
.s4-faq-list { max-width: 720px; margin: 0 auto 32px; }
.s4-faq-item { border-bottom: 1px solid #e5e5e5; }
.s4-faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; padding: 18px 0; font-size: 15px; font-weight: 700; color: var(--cc-dark,#1c2e26); cursor: pointer; text-align: left; gap: 12px; }
.s4-faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--cc-green,#8dc63f); flex-shrink: 0; position: relative; }
.s4-faq-icon::before, .s4-faq-icon::after { content: ''; position: absolute; background: var(--cc-green,#8dc63f); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.s4-faq-icon::before { width: 10px; height: 2px; }
.s4-faq-icon::after { width: 2px; height: 10px; transition: transform .2s; }
.s4-faq-item.open .s4-faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.s4-faq-a { padding: 0 0 18px; font-size: 14px; color: #555; line-height: 1.7; }
.s4-faq-cta { text-align: center; max-width: 400px; margin: 0 auto; }

/* ── RELATED ── */
.s4-related-section { padding: 60px 0; background: var(--cc-light,#f4f8f0); }
.s4-related-grid.products { grid-template-columns: repeat(4,1fr) !important; }

/* ── PRODUCT FOOTER ── */
.s4-product-footer { background: var(--cc-dark,#1c2e26); color: #fff; padding: 40px 0 0; }
.s4-pf-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.s4-pf-logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.s4-pf-site-name { font-size: 22px; font-weight: 900; color: var(--cc-green,#8dc63f); }
.s4-pf-benefits { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.s4-pf-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.85); }
.s4-pf-icon { font-size: 18px; }
.s4-pf-links { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.s4-pf-link { color: rgba(255,255,255,.6); font-size: 12px; text-decoration: none; transition: color .15s; }
.s4-pf-link:hover { color: var(--cc-green,#8dc63f); }

/* ── TRUST BAR (scrolling) ── */
.s4-pf-trustbar { overflow: hidden; padding: 14px 0; background: rgba(0,0,0,.2); }
.s4-pf-trustbar-inner { display: flex; gap: 0; animation: s4-scroll 28s linear infinite; white-space: nowrap; }
.s4-trust-chip { display: inline-flex; align-items: center; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.7); padding: 0 24px; border-right: 1px solid rgba(255,255,255,.15); }
@keyframes s4-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
	.s4-why-grid { grid-template-columns: repeat(2,1fr); }
	.s4-related-grid.products { grid-template-columns: repeat(2,1fr) !important; }
	.s4-rv-arrow { display: none; }
}
@media (max-width: 768px) {
	.s4-sticky-bar { display: block; }
	.s4-wrap { padding-bottom: 80px; } /* room for sticky bar */
	.s4-hero-grid { grid-template-columns: 1fr; gap: 28px; }
	.s4-gallery { position: static; }
	.s4-gallery-thumbs { display: none; } /* dots handle nav on mobile */
	.s4-cs-grid { grid-template-columns: 1fr; gap: 28px; }
	.s4-layout-image_right .s4-cs-image { order: 0; }
	.s4-layout-image_right .s4-cs-text { order: 0; }
	.s4-why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
	.s4-why-card { padding: 18px 14px; }
	.s4-why-icon { font-size: 28px; }
	.s4-review-card { flex: 0 0 calc(100% - 0px); }
	.s4-review-track { gap: 0; }
	.s4-tabs-nav { overflow-x: auto; }
	.s4-tab-btn { padding: 10px 16px; font-size: 13px; white-space: nowrap; }
	.s4-pf-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
	.s4-pf-links { align-items: center; flex-direction: row; justify-content: center; }
	.s4-pf-benefits { gap: 14px; }
	.s4-related-grid.products { grid-template-columns: 1fr 1fr !important; }
	.s4-compare-table thead th { padding: 10px 12px; font-size: 13px; }
	.s4-compare-table tbody td { padding: 10px 12px; font-size: 13px; }
	.s4-faq-big { font-size: clamp(36px,10vw,60px); }
	.s4-variants-grid { gap: 8px; }
}
@media (max-width: 480px) {
	.s4-why-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
	.s4-related-grid.products { grid-template-columns: 1fr 1fr !important; }
	.s4-hero { padding: 20px 0 40px; }
	.s4-container { padding: 0 14px; }
	.s4-review-big-score { font-size: 40px; }
}