:root {
	--wc-green: var(--wcsb-green, #072b31);
	--wc-gold: var(--wcsb-gold, #cba052);
	--wc-gold-dark: #b88c3f;
	--wc-text-dark: #1a1a1a;
	--wc-title: #111827;
	--wc-desc: #374151;
	--wc-pill-bg: #f9fafb;
	--wc-pill-border: #e5e7eb;
	--wc-pill-text: #6b7280;

	--wc-font-display: 'Playfair Display', Georgia, serif;
	--wc-font-button: 'Raleway', system-ui, sans-serif;
	--wc-font-title: 'Inter', system-ui, sans-serif;
	--wc-font-body: 'Mulish', system-ui, sans-serif;

	--wc-container: 1240px;
	--wc-shadow-btn: 0 8px 10px rgba(0, 0, 0, 0.1);
}

.oferta-page * { box-sizing: border-box; }
.oferta-page {
	font-family: var(--wc-font-body);
	color: var(--wc-text-dark);
	background: #fff;
	overflow-x: hidden;
}
.oferta-page img { max-width: 100%; display: block; }

.oferta-container {
	width: 100%;
	max-width: var(--wc-container);
	margin: 0 auto;
	padding: 0 20px;
}

/* === 1. HERO === */
.oferta-hero {
	background: var(--wc-green);
	color: #fff;
	padding: 100px 0;
	text-align: center;
}
.oferta-hero__heading {
	font-family: var(--wc-font-display);
	font-style: normal;
	font-weight: 700;
	font-size: clamp(28px, 3.5vw, 52px);
	line-height: 1.22;
	margin: 0;
	color: #fff;
}
.oferta-hero__divider {
	display: block;
	width: clamp(160px, 16vw, 307px);
	height: 4px;
	background: var(--wc-gold);
	margin: 22px auto;
}
.oferta-hero__subheading {
	max-width: clamp(700px, 80vw, 1180px);
	margin: 0 auto;
	font-family: var(--wc-font-body);
	font-size: clamp(16px, 1.4vw, 22px);
	line-height: 1.6;
	color: #fff;
}

/* === 2. KAFELKI === */
.oferta-tiles { padding: 60px 0; background: #fff; }
.oferta-tiles__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(16px, 2vw, 36px);
}
.oferta-tile__media {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 280 / 242;
	background: #ededed;
}
.oferta-tile__img { width: 100%; height: 100%; object-fit: cover; }
.oferta-tile__badge {
	position: absolute;
	top: 14px;
	right: 0;
	background: var(--wc-gold);
	color: #fff;
	font-family: var(--wc-font-body);
	font-weight: 500;
	font-size: clamp(10px, 0.8vw, 13px);
	letter-spacing: 0.01em;
	padding: 4px 12px;
	border-radius: 15px 0 0 15px;
}
.oferta-tile__badge strong { font-weight: 700; }
.oferta-tile__title {
	font-family: var(--wc-font-display);
	font-weight: 700;
	font-size: clamp(18px, 1.8vw, 28px);
	line-height: 1.25;
	color: var(--wc-text-dark);
	margin: 14px 0 0;
}
.oferta-tile__desc {
	font-family: var(--wc-font-title);
	font-weight: 300;
	font-size: clamp(13px, 1vw, 15px);
	line-height: 1.5;
	color: var(--wc-desc);
	margin: 6px 0 0;
}
.oferta-tile__link {
	display: block;
	margin-top: 10px;
	font-family: var(--wc-font-body);
	font-weight: 700;
	font-size: clamp(13px, 1vw, 15px);
	color: var(--wc-text-dark);
	text-decoration: none;
}
.oferta-tile__link:hover { color: var(--wc-gold); }

/* Wspólny styl guzika (miasta + filtry): biały, czarna ramka, aktywny = złoty */
.oferta-citybtn,
.oferta-filter {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-width: 280px;
	padding: 18px 28px;
	font-family: var(--wc-font-button);
	font-weight: 700;
	font-size: clamp(16px, 1.3vw, 22px);
	color: #000;
	background: #fff;
	border: 1px solid #000;
	border-radius: 0;
	box-shadow: var(--wc-shadow-btn);
	cursor: pointer;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.oferta-citybtn.is-active,
.oferta-filter.is-active {
	background: var(--wc-gold);
	border-color: var(--wc-gold);
	color: #fff;
}
.oferta-citybtn.is-active .oferta-arrow { display: none; }

/* === 3a. WYBÓR MIASTA === */
.oferta-cityselect { padding: 48px 0; background: #fff; }
.oferta-cityselect__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(24px, 5vw, 80px);
}

/* === 3b. LOKALIZACJA === */
.oferta-location { background: var(--wc-green); color: #fff; padding: 70px 0; }
.oferta-location__panel { display: none; }
.oferta-location__panel.is-active {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}
.oferta-location__title {
	font-family: var(--wc-font-display);
	font-weight: 700;
	font-size: clamp(28px, 2.9vw, 52px);
	line-height: 1.18;
	margin: 0 0 20px;
	color: #fff;
}
.oferta-location__city { color: var(--wc-gold); }
.oferta-location__address,
.oferta-location__hours {
	font-family: var(--wc-font-body);
	font-size: clamp(14px, 1.1vw, 17px);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.85);
}
.oferta-location__hours { margin-bottom: 26px; }
.oferta-location__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--wc-font-button);
	font-weight: 700;
	font-size: clamp(15px, 1vw, 18px);
	color: #fff;
	background: transparent;
	border: 1px solid #fff;
	border-radius: 0;
	padding: 16px 28px;
	text-decoration: none;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.oferta-location__cta:hover { background: var(--wc-gold); border-color: var(--wc-gold); color: var(--wc-green); }
.oferta-location__map { border-radius: 14px; overflow: hidden; }
.oferta-location__map img,
.oferta-location__map iframe {
	width: 100%;
	aspect-ratio: 606 / 448;
	border: 0;
	display: block;
	object-fit: cover;
}
.oferta-location__map-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 606 / 448;
	background: #d9d9d9;
	color: #555;
	font-size: 18px;
	border-radius: 14px;
}

/* === 4. POZOSTAŁE ZABIEGI === */
.oferta-zabiegi { padding: 70px 0; background: #fff; }
.oferta-zabiegi__heading {
	font-family: var(--wc-font-display);
	font-weight: 700;
	font-size: clamp(28px, 2.9vw, 52px);
	text-align: center;
	color: var(--wc-text-dark);
	margin: 0 0 44px;
}
.oferta-zabiegi__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-bottom: 52px;
}

.oferta-zabiegi__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 56px 20px;
	transition: opacity .2s ease;
}
.oferta-zabiegi__list.is-loading { opacity: .5; pointer-events: none; }
.oferta-zabieg-card { display: flex; flex-direction: column; }
.oferta-zabieg-card__title {
	font-family: var(--wc-font-title);
	font-weight: 500;
	font-size: clamp(20px, 1.8vw, 30px);
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--wc-title);
	margin: 0 0 12px;
}
.oferta-zabieg-card__title a { color: inherit; text-decoration: none; }
.oferta-zabieg-card__title a:hover { color: var(--wc-gold); }
.oferta-zabieg-card__desc {
	font-family: var(--wc-font-body);
	font-size: clamp(15px, 1.4vw, 20px);
	line-height: 1.55;
	color: var(--wc-desc);
	margin: 0 0 16px;
}
.oferta-zabieg-card__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.oferta-pill {
	font-family: var(--wc-font-body);
	font-size: 13px;
	color: var(--wc-pill-text);
	background: var(--wc-pill-bg);
	border: 1px solid var(--wc-pill-border);
	border-radius: 999px;
	padding: 5px 14px;
}
.oferta-pill--gold { background: var(--wc-gold); border-color: var(--wc-gold); color: #fff; }

.no-results {
	grid-column: 1 / -1;
	text-align: center;
	color: #999;
	font-size: 16px;
	padding: 40px 0;
}

/* Skeleton loader */
.oferta-skeleton__line {
	height: 18px;
	border-radius: 4px;
	margin-bottom: 12px;
	background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
	background-size: 400% 100%;
	animation: oferta-shimmer 1.4s ease infinite;
}
.oferta-skeleton__line--title { height: 26px; width: 70%; }
.oferta-skeleton__line--short { width: 85%; }
.oferta-skeleton__pills { display: flex; gap: 8px; margin-top: 14px; }
.oferta-skeleton__pill {
	height: 26px;
	width: 86px;
	border-radius: 999px;
	background: linear-gradient(90deg, #eee 25%, #f5f5f5 37%, #eee 63%);
	background-size: 400% 100%;
	animation: oferta-shimmer 1.4s ease infinite;
}
@keyframes oferta-shimmer { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* === RESPONSYWNOŚĆ (mobile-first) === */
@media (min-width: 640px) {
	.oferta-tiles__grid { grid-template-columns: repeat(2, 1fr); }
	.oferta-zabiegi__list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
	.oferta-tiles__grid { grid-template-columns: repeat(3, 1fr); }
	.oferta-location__panel.is-active { grid-template-columns: 58% 42%; }
}
@media (min-width: 1024px) {
	.oferta-zabiegi__list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
	.oferta-tiles__grid { grid-template-columns: repeat(5, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
	.oferta-skeleton__line, .oferta-skeleton__pill { animation: none; }
}