/* Oferte Pariuri — front-end styles. All classes prefixed .op- to avoid collisions. */

.op-widget {
	width: 100%;
	max-width: 1170px;
	margin-left: auto;
	margin-right: auto;
}

.op-strip {
	display: flex;
	overflow-x: auto;
	padding: 14px 12px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.op-strip::-webkit-scrollbar {
	display: none;
}

/* Inner flex centers the logos when they fit, and scrolls when they overflow. */
.op-strip__inner {
	display: flex;
	gap: 14px;
	margin: 0 auto;
}

.op-logo {
	position: relative;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.op-logo__circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	overflow: hidden;
	background: #ececec;
	transition: box-shadow 0.15s ease;
}

.op-logo__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.op-logo__fallback {
	font: 500 13px/1 sans-serif;
	color: #444;
	text-transform: uppercase;
}

.op-logo:hover .op-logo__circle,
.op-logo:focus-visible .op-logo__circle {
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.op-logo.is-selected .op-logo__circle {
	box-shadow: 0 0 0 3px #e8333a;
}

.op-logo__badge {
	position: absolute;
	top: -3px;
	right: -3px;
	z-index: 2;
	min-width: 21px;
	height: 21px;
	padding: 0 5px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8333a;
	color: #fff;
	font: 500 11px/1 sans-serif;
	border-radius: 11px;
	border: 2px solid #fff;
}

/* Modal */
.op-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
}

.op-modal.is-open {
	display: block;
}

.op-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.op-modal__sheet {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #0c1219;
	color: #fff;
}

.op-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 16px 12px;
}

.op-modal__title {
	font: 500 18px/1.2 sans-serif;
}

.op-modal__close {
	margin: 0;
	padding: 0 4px;
	border: 0;
	background: none;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.op-modal__strip {
	display: flex;
	overflow-x: auto;
	padding: 6px 16px 14px;
	scrollbar-width: none;
}

.op-modal__strip::-webkit-scrollbar {
	display: none;
}

.op-modal__strip .op-strip__inner {
	max-width: 1170px;
}

.op-modal__strip .op-logo__badge {
	border-color: #0c1219;
}

.op-modal__panels {
	padding: 8px 16px 32px;
}

.op-panel {
	display: none;
}

.op-panel.is-active {
	display: block;
}

.op-carousel {
	position: relative;
	max-width: 520px;
	margin: 0 auto;
}

.op-track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.op-track::-webkit-scrollbar {
	display: none;
}

.op-arrow {
	position: absolute;
	top: 28%;
	transform: translateY(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0 0 3px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: #16181c;
	font: 400 24px/1 sans-serif;
	cursor: pointer;
}

.op-arrow--prev {
	left: 6px;
}

.op-arrow--next {
	right: 6px;
}

.op-arrow:disabled {
	opacity: 0.3;
	cursor: default;
}

.op-dots {
	display: flex;
	gap: 7px;
	justify-content: center;
	margin-top: 10px;
}

.op-dot {
	width: 8px;
	height: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
}

.op-dot.is-active {
	background: #fff;
}

.op-offer {
	flex: 0 0 100%;
	scroll-snap-align: center;
	box-sizing: border-box;
	background: #0a0a0a;
	border-radius: 14px;
	padding: 18px;
	text-align: center;
}

.op-offer__media {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 14px;
	border-radius: 10px;
	overflow: hidden;
	background: #000;
}

.op-offer__media-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.op-offer__media-img--logo {
	object-fit: contain;
	padding: 18px;
	box-sizing: border-box;
}

.op-offer__headline {
	margin: 0 0 16px;
	color: #fff;
	font: 500 21px/1.3 sans-serif;
}

.op-offer__cta {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin: 0 0 14px;
	padding: 14px 16px;
	border-radius: 8px;
	background: #fff;
	color: #16181c;
	font: 500 16px/1 sans-serif;
	text-align: center;
	text-decoration: none;
}

.op-offer__cta:hover,
.op-offer__cta:focus {
	opacity: 0.92;
	color: #16181c;
}

.op-offer__tcs {
	margin: 0;
	color: #9a9a9a;
	font: 400 12px/1.55 sans-serif;
}

body.op-modal-open {
	overflow: hidden;
}
