
/* =============================================
   Valley Offers Carousel + Grid
   ============================================= */
.voc-carousel {
	overflow: hidden;
	position: relative;
}

.voc-track {
	display: flex;
	transition: transform .4s ease;
}

.voc-card {
	flex: 0 0 33.333%;
	max-width: 33.333%;
	padding: 0 10px;
	box-sizing: border-box;
}

/* ── Grid mode — show all cards at once ──
   Default gap; overridden by the Gap Between Cards responsive control. */
.voc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	width: 100%;
}

.voc-grid .voc-card {
	flex: initial;
	max-width: none;
	padding: 0;
}

.voc-card-inner {
	position: relative;
	padding: 32px 28px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	box-sizing: border-box;
}

/* ── Structured card elements ── */
.voc-label {
	font-family: "Inter", sans-serif;
	font-size: .625rem;
	font-weight: 600;
	letter-spacing: .25em;
	text-transform: uppercase;
	margin: 0 0 8px;
}

.voc-amount, .valley-offer-amount {
	font-family: "Playfair Display", serif;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 2px;
	padding: 0;
}

/* Mobile: slightly smaller */
@media (max-width: 767px) {
	.valley-offer-amount {
		font-size: 2.4rem;
	}
}

.voc-subtitle {
	font-family: "Playfair Display", serif;
	font-size: 1.1rem;
	font-weight: 400;
	margin: 0 0 20px;
	padding: 0;
}

.voc-strikethrough {
	text-decoration: line-through;
	font-family: "Inter", sans-serif;
	font-size: .75rem;
	opacity: .4;
}

/* ── Dark style (navy + gold) ── */
.voc-dark .voc-card-inner {
	background: #0f2440;
	border: 1px solid rgba(196, 155, 47, .4);
	padding: 40px 30px;
}

.voc-dark .voc-card-inner::after {
	content: "";
	position: absolute;
	inset: 7px;
	border: 1px solid rgba(196, 155, 47, .35);
	pointer-events: none;
}

.voc-dark .voc-label {
	color: #c49b2f;
}

.voc-dark .voc-amount {
	color: #fff;
}

.voc-dark .voc-subtitle {
	color: rgba(255, 255, 255, .7);
}

.voc-dark .voc-strikethrough {
	color: rgba(255, 255, 255, .4);
}

.voc-dark .voc-deal {
	font-family: "Playfair Display", serif;
	font-size: 2.8rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
}

.voc-dark .voc-title {
	font-family: "Playfair Display", serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.voc-dark .voc-terms {
	color: rgba(255, 255, 255, .4);
	font-size: .7rem;
	line-height: 1.5;
	margin: 0;
}

.voc-dark .voc-expiration {
	color: rgba(255, 255, 255, .5);
	font-size: .7rem;
	margin: 0;
}

.voc-dark .voc-divider {
	height: 1px;
	width: 80%;
	background: linear-gradient(to right, transparent, rgba(196, 155, 47, .4), transparent);
	margin: 12px 0;
}

.voc-dark .voc-cta {
	display: block;
	width: 100%;
	margin-top: auto;
	padding: .75rem 1.5rem;
	background: #f5c518;
	color: #1b3a5c;
	font-weight: 700;
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-decoration: none;
	text-align: center;
	transition: background .2s ease;
}

.voc-dark .voc-cta:hover {
	background: #eab800;
}

/* ── Light style (white + navy) ── */
.voc-light .voc-card-inner {
	background: #fff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.voc-light .voc-deal {
	font-family: "Playfair Display", serif;
	font-size: 2.8rem;
	font-weight: 700;
	color: #c62828;
	line-height: 1.1;
}

.voc-light .voc-title {
	font-family: "Playfair Display", serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: #1b3a5c;
	margin: 0;
}

.voc-light .voc-terms {
	color: #9ca3af;
	font-size: .7rem;
	line-height: 1.5;
	margin: 0;
}

.voc-light .voc-divider {
	height: 1px;
	width: 60%;
	background: #e5e7eb;
	margin: 8px 0;
}

.voc-light .voc-cta {
	display: block;
	width: 100%;
	margin-top: auto;
	padding: .75rem 1.5rem;
	background: #1b3a5c;
	color: #fff;
	font-weight: 700;
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-decoration: none;
	text-align: center;
	transition: background .2s ease;
}

.voc-light .voc-cta:hover {
	background: #2a4f7a;
}

/* ── Navigation ── */
.voc-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
}

.voc-prev, .voc-next {
	background: none;
	border: 1px solid rgba(255, 255, 255, .3);
	color: rgba(255, 255, 255, .6);
	width: 36px;
	height: 36px;
	font-size: 1.2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s ease;
}

.voc-prev:hover, .voc-next:hover {
	border-color: #c49b2f;
	color: #c49b2f;
}

.voc-light .voc-prev, .voc-light .voc-next {
	border-color: #d1d5db;
	color: #6b7280;
}

.voc-light .voc-prev:hover, .voc-light .voc-next:hover {
	border-color: #1b3a5c;
	color: #1b3a5c;
}

.voc-dots {
	display: flex;
	gap: 8px;
}

.voc-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .3);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background .2s ease;
}

.voc-dot.active {
	background: #c49b2f;
}

.voc-light .voc-dot {
	background: #d1d5db;
}

.voc-light .voc-dot.active {
	background: #1b3a5c;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
	.voc-carousel .voc-card {
		flex: 0 0 50% !important;
		max-width: 50% !important;
	}
	
	.voc-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.voc-carousel .voc-card {
		flex: 0 0 100% !important;
		max-width: 100% !important;
	}
	
	.voc-grid {
		grid-template-columns: 1fr;
	}
	
	.voc-dark .voc-deal, .voc-light .voc-deal {
		font-size: 2.2rem;
	}
	
	.voc-dark .voc-card-inner {
		padding: 32px 24px;
	}
}
