/* tiktik-package-map.css — the package's stadium map.
   Scoped to .tkp-map so nothing here can reach the rest of the site. */

.tkp-map {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

/* the venue SVG is authored left-to-right; on an RTL page it would mirror and
   the block numbers would run off their polygons */
.tkp-map__stage {
	direction: ltr;
	width: 100%;
	background: #fff;
	border-radius: 10px;
	padding: 8px;
}

.tkp-map__stage svg {
	width: 100%;
	height: auto;
	display: block;
}

.tkp-map__legend {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 6px 12px;
}

.tkp-map__legend-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 8px;
	border: 1px solid #e6e8ee;
	border-radius: 8px;
	cursor: pointer;
	font-size: 13px;
	line-height: 1.2;
	background: #fff;
	transition: border-color .15s, box-shadow .15s;
}

.tkp-map__legend-item:hover { border-color: #c3c8d4; }

.tkp-map__legend-item.is-active {
	border-color: #111;
	box-shadow: inset 0 0 0 1px #111;
}

.tkp-map__swatch {
	width: 14px;
	height: 14px;
	border-radius: 4px;
	flex: 0 0 14px;
}

/* category names are long ("CATEGORY 1 PREMIUM LOWER"); let them wrap rather
   than ellipsis away — a half-shown category name is worse than two lines */
.tkp-map__name {
	flex: 1 1 auto;
	white-space: normal;
	overflow-wrap: anywhere;
	font-size: 12px;
}

.tkp-map__delta {
	flex: 0 0 auto;
	font-weight: 700;
	direction: ltr;
}

.tkp-map__hint {
	margin: 0;
	font-size: 12px;
	color: #6b7280;
}

@media (max-width: 767px) {
	.tkp-map__legend { grid-template-columns: 1fr; }
}

/* tiktik-package-extras.css — the package "what you get" panel.
   Scoped entirely under .tkp-extras so it cannot reach any other product.

   Split card: the photo owns a column instead of sitting in a band above the
   text. A 4:3 image cropped to a column keeps the pitch and the stands readable,
   where the same photo squeezed into a 60px strip read as a smear — and because
   the picture is beside the copy rather than above it, the panel is SHORTER than
   the banner version it replaced. Nothing is painted over the photo. */
.tkp-extras {
	display: flex;
	align-items: stretch;
	margin-top: 12px;
	border: 1px solid #e3e3e3;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
}
.tkp-extras__ph {
	position: relative;
	flex: none;
	width: 42%;
	min-height: 150px;
	background: #0d1b2e;
}
/* the theme sets height:auto on product images and loads after this file, so the
   column owns the size and the photo is pinned into it with inset */
.tkp-extras__ph img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.tkp-extras__body { flex: 1; padding: 11px 13px 12px; min-width: 0; }
.tkp-extras--noimg .tkp-extras__body { width: 100%; }
.tkp-extras__title { margin: 0 0 7px; font-size: 14.5px; font-weight: 700; line-height: 1.25; }
.tkp-extras__list { list-style: none; margin: 0; padding: 0; }
.tkp-extras__list li {
	display: flex;
	gap: 9px;
	align-items: flex-start;
	padding: 5px 0;
	font-size: 12.5px;
	border-bottom: 1px solid #f2f4f5;
}
.tkp-extras__list li:last-child { border-bottom: 0; }
.tkp-extras__list em {
	display: block;
	font-style: normal;
	color: #6b6b6b;
	font-size: 11px;
}
.tkp-extras__ic {
	flex: none;
	width: 21px;
	height: 21px;
	border-radius: 6px;
	background: #e8f5f0;
	color: #0b6b4f;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	margin-top: 1px;
}
/* on a phone the two columns would each be too narrow to read, so the photo
   becomes a band above the list — at 118px, tall enough to still show the bowl */
@media (max-width: 560px) {
	.tkp-extras { display: block; }
	.tkp-extras__ph { width: 100%; height: 118px; min-height: 0; }
	.tkp-extras__body { padding: 10px 12px 11px; }
}
