/*
 * Deals block — offer cards with category tabs.
 * Lifted from the former inline <style> in page-oferta.php; selectors unchanged
 * so the rendered markup keeps its original appearance.
 */

.cb-deals {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 40px var(--lindex-pad-x, clamp(16px, 2.5vw, 32px)) 72px;
}

/*
 * main.css pulls a page's first block flush to the header with a negative top
 * margin, which suits full-bleed hero blocks. This section carries its own top
 * padding, so keep it where it is. Extra class for specificity over that rule.
 */
.cb-page .cb-page__content > .cb-block.cb-deals:first-child {
	margin-top: 0;
}

.cb-deals__title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 600;
	margin: 0 0 24px;
	color: #1a1a1a;
}

.cb-deals__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	border-bottom: 1px solid #e6e3dd;
	margin: 0 0 32px;
}

.cb-deals__tab {
	appearance: none;
	background: none;
	border: 0;
	padding: 0 0 14px;
	margin: 0;
	font-size: 16px;
	color: #6b6b6b;
	cursor: pointer;
	position: relative;
	transition: color 150ms ease;
}

.cb-deals__tab:hover {
	color: #1a1a1a;
}

.cb-deals__tab.is-active {
	color: #1a1a1a;
	font-weight: 500;
}

.cb-deals__tab.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 2px;
	background: #1a1a1a;
}

.cb-deals__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.cb-deals__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #fffcd1;
	border-radius: 10px;
	padding: clamp(24px, 3vw, 44px) 32px;
	min-height: 200px;
	text-decoration: none;
	transition: filter 150ms ease;
}

.cb-deals__card:hover {
	filter: brightness(0.97);
}

.cb-deals__card--featured {
	grid-column: 1 / -1;
}

.cb-deals__card-title {
	font-family: var(--cb-font-display, "Cormorant Garamond", Georgia, serif);
	font-weight: 400;
	font-size: clamp(34px, 5vw, 64px);
	line-height: 1.05;
	color: #1a1a1a;
	margin: 0 0 18px;
}

.cb-deals__card--featured .cb-deals__card-title {
	font-size: clamp(40px, 6vw, 72px);
}

.cb-deals__card-fine {
	font-size: 12px;
	line-height: 1.5;
	color: rgba(26, 26, 26, 0.6);
	max-width: 100%;
	margin: 0;
}

.cb-deals__card.is-hidden {
	display: none;
}

.cb-deals__empty {
	grid-column: 1 / -1;
	text-align: center;
	color: #6b6b6b;
	padding: 48px 0;
}

@media (max-width: 720px) {
	.cb-deals__grid {
		grid-template-columns: 1fr;
	}

	.cb-deals__tabs {
		gap: 20px;
	}
}
