/* ===== Offers Page ===== */
.vida-offers-page {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 16px;
	direction: rtl;
}

/* Section */
.vida-offers-section { padding: 40px 0 32px; }

.vida-offers-section-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: var(--vida-radius-xl);
}
.vida-section-icon { font-size: 22px; }
.vida-section-title {
	font-size: var(--vida-radius-xl);
	font-weight: 700;
	color: #1d2327;
	margin: 0;
	border-right: 4px solid var(--vida-gold);
	padding-right: 10px;
}
.vida-offers-dermatology .vida-section-title { border-color: var(--vida-teal); }
.vida-section-count {
	font-size: 12px;
	color: #aaa;
	margin-right: auto;
}

.vida-section-divider {
	height: 1px;
	background: linear-gradient(to left, transparent, #e0d8cc, transparent);
}

/* Empty */
.vida-offers-empty {
	text-align: center;
	padding: 40px;
	color: #aaa;
	font-size: 14px;
	border: 1px dashed #ddd;
	border-radius: var(--vida-radius);
}

/* Slider */
.vida-slider-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
}
.vida-slider-track {
	display: flex;
	transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}
.vida-slide { min-width: 100%; }

/* Card */
.vida-offer-card {
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #eee;
	box-shadow: 0 2px 16px rgba(0,0,0,0.07);
	background: var(--vida-bg);
}

.vida-card-img-wrap { position: relative; }
.vida-card-img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}
.vida-card-img-placeholder {
	width: 100%;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #fdf6ea, #f5e6c8);
	font-size: 56px;
}
.vida-offers-dermatology .vida-card-img-placeholder {
	background: linear-gradient(135deg, #e8fffe, #b8f0ee);
}

.vida-discount-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--vida-gold);
	color: var(--vida-bg);
	font-size: 15px;
	font-weight: 700;
	padding: 5px 14px;
	border-radius: var(--vida-radius-xl);
	box-shadow: 0 2px 10px rgba(221,153,51,0.35);
	letter-spacing: 0.3px;
}
.vida-offers-dermatology .vida-discount-badge {
	background: var(--vida-teal);
	box-shadow: 0 2px 10px rgba(12,184,182,0.3);
}

/* Card body */
.vida-card-body { padding: 16px 18px 14px; }
.vida-card-title {
	font-size: 16px;
	font-weight: 700;
	color: #1d2327;
	margin: 0 0 12px;
	line-height: 1.4;
}

/* Countdown */
.vida-card-countdown {
	display: flex;
	align-items: center;
	gap: var(--vida-radius);
	margin-bottom: 14px;
	flex-wrap: wrap;
}
.countdown-label { font-size: 12px; color: #888; }
.countdown-boxes { display: flex; gap: 5px; }
.cbox {
	background: #1d2327;
	color: var(--vida-bg);
	border-radius: 5px;
	padding: 4px 9px;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	min-width: 36px;
	line-height: 1.2;
}
.cbox small {
	display: block;
	font-size: 9px;
	color: #aaa;
	font-weight: 400;
	margin-top: 1px;
}
.vida-offers-dermatology .cbox { background: #0a3d3d; }
.cbox.expired { background: #999; }

/* Footer */
.vida-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--vida-radius);
}
.vida-expiry-date { font-size: 11px; color: #bbb; }
.vida-book-btn {
	background: var(--vida-gold);
	color: var(--vida-bg);
	border: none;
	padding: 9px 22px;
	border-radius: var(--vida-radius-sm);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: background 0.2s;
	white-space: nowrap;
}
.vida-book-btn:hover { background: #c8882a; color: var(--vida-bg); }
.vida-offers-dermatology .vida-book-btn { background: var(--vida-teal); }
.vida-offers-dermatology .vida-book-btn:hover { background: #0aa6a4; }

/* Nav */
.vida-slider-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 14px;
}
.vida-arrow {
	background: var(--vida-bg);
	border: 1px solid #ddd;
	border-radius: var(--vida-radius-full);
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	color: #555;
	box-shadow: 0 1px 4px rgba(0,0,0,0.08);
	transition: border-color 0.2s, color 0.2s;
	padding: 0;
}
.vida-arrow:hover,
.vida-arrow:focus { border-color: var(--vida-gold); color: var(--vida-gold); outline: none; }
.vida-offers-dermatology .vida-arrow:hover,
.vida-offers-dermatology .vida-arrow:focus { border-color: var(--vida-teal); color: var(--vida-teal); }

.vida-dots { display: flex; gap: 6px; align-items: center; }
.vida-dot {
	width: var(--vida-radius);
	height: var(--vida-radius);
	border-radius: var(--vida-radius-full);
	background: #ddd;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, width 0.2s, border-radius 0.2s;
}
.vida-dot.active {
	background: var(--vida-gold);
	width: var(--vida-radius-xl);
	border-radius: var(--vida-radius-sm);
}
.vida-offers-dermatology .vida-dot.active { background: var(--vida-teal); }

/* Responsive */
@media (max-width: 600px) {
	.vida-card-img,
	.vida-card-img-placeholder { height: 170px; }
	.vida-card-title { font-size: 14px; }
	.cbox { min-width: 30px; font-size: 12px; padding: 3px 6px; }
	.vida-book-btn { padding: 8px 14px; font-size: 12px; }
	.vida-section-title { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
	.vida-slider-track { transition: none; }
}
