/*
 * wm-product-data — slot-offers callout
 * Small collapsed pill of "+ N casinos offer free spins on SLOT" that
 * expands to a compact list. The page's hero CTA already links to the #1
 * casino so this block is intentionally low-key — supplementary, not
 * dominant.
 *
 * Selectors are scoped under .wmpd-slot-offers to win specificity battles
 * against theme/customizer bare-element rules (article{...} etc).
 */

.wmpd-slot-offers {
	margin: 28px 0;
	font-family: inherit;
	color: #1f2937;
}

/* ─── COLLAPSED PILL (default state) ────────────────────────────────── */
.wmpd-slot-offers .wmpd-slot-offers__more {
	margin: 0;
}
.wmpd-slot-offers .wmpd-slot-offers__more-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: #fff8e1;
	border: 1px solid #f59e0b;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	color: #92400e;
	cursor: pointer;
	list-style: none;
	user-select: none;
	transition: background 0.12s ease, box-shadow 0.12s ease;
}
.wmpd-slot-offers .wmpd-slot-offers__more-pill::-webkit-details-marker { display: none; }
.wmpd-slot-offers .wmpd-slot-offers__more-pill::marker { content: ''; }
.wmpd-slot-offers .wmpd-slot-offers__more-pill::before {
	content: '+';
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	color: #d97706;
}
.wmpd-slot-offers .wmpd-slot-offers__more[open] .wmpd-slot-offers__more-pill::before {
	content: '−';
}
.wmpd-slot-offers .wmpd-slot-offers__more-pill:hover {
	background: #fef3c7;
	box-shadow: 0 2px 6px rgba(245, 158, 11, 0.2);
}

/* ─── EXPANDED LIST ─────────────────────────────────────────────────── */
.wmpd-slot-offers .wmpd-slot-offers__list {
	list-style: none !important;
	margin: 14px 0 0 !important;
	padding: 0 !important;
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}
@media (min-width: 720px) {
	.wmpd-slot-offers .wmpd-slot-offers__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.wmpd-slot-offers .wmpd-slot-offers__item {
	display: flex !important;
	align-items: center;
	gap: 12px;
	margin: 0 !important;
	padding: 10px 14px !important;
	background: #fff !important;
	border: 1px solid #e5e7eb !important;
	border-radius: 8px !important;
	min-height: 0 !important;
	box-shadow: none !important;
	list-style: none !important;
	float: none !important;
}

.wmpd-slot-offers .wmpd-slot-offers__logo {
	flex: 0 0 56px;
	display: block;
	text-decoration: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
.wmpd-slot-offers .wmpd-slot-offers__logo img {
	width: 56px !important;
	height: 56px !important;
	object-fit: contain;
	background: #f9fafb;
	border-radius: 6px;
	display: block;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	filter: none !important;
	-webkit-filter: none !important;
}

.wmpd-slot-offers .wmpd-slot-offers__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.wmpd-slot-offers .wmpd-slot-offers__name {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}
.wmpd-slot-offers .wmpd-slot-offers__name a,
.wmpd-slot-offers .wmpd-slot-offers__name a:link,
.wmpd-slot-offers .wmpd-slot-offers__name a:visited {
	color: #111827 !important;
	text-decoration: none !important;
}
.wmpd-slot-offers .wmpd-slot-offers__name a:hover {
	color: #d97706 !important;
}
.wmpd-slot-offers .wmpd-slot-offers__spins {
	font-size: 12px;
	color: #6b7280;
	line-height: 1.2;
}
.wmpd-slot-offers .wmpd-slot-offers__spins strong {
	color: #d97706;
	font-weight: 700;
	font-size: 14px;
}

.wmpd-slot-offers a.wmpd-slot-offers__cta,
.wmpd-slot-offers a.wmpd-slot-offers__cta:link,
.wmpd-slot-offers a.wmpd-slot-offers__cta:visited,
.wmpd-slot-offers a.wmpd-slot-offers__cta:hover,
.wmpd-slot-offers a.wmpd-slot-offers__cta:focus,
.wmpd-slot-offers a.wmpd-slot-offers__cta:active {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 700;
	color: #fff !important;
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
	border: none !important;
	border-radius: 6px;
	text-decoration: none !important;
	box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
	transition: transform 0.1s ease;
}
.wmpd-slot-offers a.wmpd-slot-offers__cta:hover {
	transform: translateY(-1px);
}

@media (max-width: 480px) {
	.wmpd-slot-offers .wmpd-slot-offers__item {
		flex-wrap: wrap;
	}
	.wmpd-slot-offers a.wmpd-slot-offers__cta {
		flex: 0 0 100%;
		width: 100%;
		margin-top: 4px;
	}
}
