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


.product {
position: relative;
overflow: hidden;
}

.cc-special-offer{
position:absolute;
top:15px;
left:-40px;
background:#e11d48;
color:#fff;
font-size:12px;
font-weight:700;
padding:6px 45px;
transform:rotate(-45deg);
text-align:center;
z-index:10;
box-shadow:0 3px 8px rgba(0,0,0,0.2);
}
/* ── 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; }
}

/* ── STYLE-2 SUPPLEMENT FACTS TABLE ── */
.cc-s2-sf-wrap { margin-top: 8px; }
.cc-s2-sf-serving {
	font-size: 13px;
	color: #555;
	margin: 0 0 12px;
}
.cc-s2-sf-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #d0d0d0;
	font-size: 14px;
}
.cc-s2-sf-table thead th {
	background: #f2f2f2;
	color: #1a1a1a;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 10px 14px;
	text-align: left;
	border-bottom: 1px solid #d0d0d0;
}
.cc-s2-sf-table tbody tr { background: #fff; }
.cc-s2-sf-table tbody td {
	padding: 9px 14px;
	text-align: left;
	color: #333;
	font-size: 14px;
}
.cc-s2-sf-footnote {
	font-size: 12px;
	color: #888;
	margin: 8px 0 0;
}