/* =========================================================================
   Discovery mode — full-screen swipeable product browser
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. The entry banner
   ---------------------------------------------------------------------- */

.tv-discover-cta { padding-top: 22px; }

/* Already inside a page container — do not inset a second box. */
.tv-page .tv-discover-cta {
	padding-top: 0;
	margin: 0 0 24px;
	width: 100%;
}

.tv-page .tv-discover-cta .tv-container {
	max-width: none;
	width: 100%;
	margin-inline: 0;
	padding-inline: 0;
}

.tv-discover-card {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	padding: 18px;
	border: 0;
	border-radius: var(--tv-r-lg);
	background: linear-gradient(104deg, #16170f 0%, #24261a 52%, #34372a 100%);
	color: #f4f3ec;
	text-align: left;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	transition: transform .22s var(--tv-ease), box-shadow .22s var(--tv-ease);
}

.tv-discover-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--tv-shadow-lg);
}

.tv-discover-card__art {
	flex: none;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
}

.tv-discover-card__stack {
	position: relative;
	width: 34px;
	height: 44px;
}

.tv-discover-card__stack span {
	position: absolute;
	inset: 0;
	border-radius: 7px;
	border: 1.5px solid rgba(244, 243, 236, .55);
	background: rgba(244, 243, 236, .07);
}

.tv-discover-card__stack span:nth-child(1) { transform: translate(-6px, 3px) rotate(-9deg); opacity: .5; }
.tv-discover-card__stack span:nth-child(2) { transform: translate(0, 0) rotate(-2deg); opacity: .75; }
.tv-discover-card__stack span:nth-child(3) {
	transform: translate(6px, -3px) rotate(7deg);
	background: rgba(244, 243, 236, .18);
	border-color: rgba(244, 243, 236, .8);
}

.tv-discover-card__copy {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
	flex: 1 1 auto;
}

.tv-discover-card__eyebrow {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--tv-accent-2);
}

.tv-discover-card__title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.2;
}

.tv-discover-card__text {
	font-size: 12.5px;
	line-height: 1.45;
	color: rgba(244, 243, 236, .68);
}

.tv-discover-card__go {
	display: none;
	align-items: center;
	gap: 8px;
	flex: none;
	padding: 12px 18px;
	border-radius: var(--tv-r-pill);
	background: #f4f3ec;
	color: #14150f;
	font-size: 13.5px;
	font-weight: 600;
	white-space: nowrap;
}

.tv-discover-card:hover .tv-discover-card__go .tv-icon { transform: translateX(3px); }
.tv-discover-card__go .tv-icon { transition: transform .2s var(--tv-ease); }

@media (min-width: 640px) {
	.tv-discover-card { padding: 22px 22px 22px 20px; gap: 20px; }
	.tv-discover-card__go { display: inline-flex; }
	.tv-discover-card__title { font-size: 20px; }
	.tv-discover-card__text { font-size: 13.5px; }
}

/* -------------------------------------------------------------------------
   2. The overlay
   ---------------------------------------------------------------------- */

.tv-disc {
	position: fixed;
	inset: 0;
	z-index: 200;
}

.tv-disc[hidden] { display: none; }

.tv-disc__backdrop {
	position: absolute;
	inset: 0;
	background: #0b0c08;
}

.tv-disc__stage {
	position: absolute;
	inset: 0;
	overflow: hidden;
	touch-action: none;
	background: #101109;
}

.tv-disc.is-entering .tv-disc__stage { animation: tv-disc-in .4s var(--tv-ease); }
.tv-disc.is-exiting .tv-disc__stage { animation: tv-disc-out .28s var(--tv-ease) forwards; }

@keyframes tv-disc-in {
	from { opacity: 0; transform: scale(.965); }
	to   { opacity: 1; transform: none; }
}

@keyframes tv-disc-out {
	from { opacity: 1; transform: none; }
	to   { opacity: 0; transform: scale(.97); }
}

/* -------------------------------------------------------------------------
   3. Cards
   ---------------------------------------------------------------------- */

/*
 * A card is two stacked panes: the photograph on top, the details in a solid
 * panel beneath it. Nothing but the viewer's own chrome sits over the image, so
 * the text is legible no matter how busy the product shot is.
 */
.tv-disc__card {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: #14150f;
	will-change: transform;
	transition: transform .48s cubic-bezier(.22, 1, .36, 1);
}

/* Scrim behind the top bar only — the image is otherwise untouched. */
.tv-disc__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 96px;
	z-index: 2;
	background: linear-gradient(to bottom, rgba(8, 9, 6, .6), rgba(8, 9, 6, 0));
	pointer-events: none;
}

/*
 * Product photography is mostly square pack-shots, which a cover-fill crops
 * savagely on a tall phone stage. Instead the image is shown whole, floating on
 * a blurred, darkened copy of itself — so nothing is cut off, the frame is
 * always filled, and white overlay text stays readable whatever the photo.
 */
.tv-disc__media {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	background-color: #101109;
	overflow: hidden;
	transition: flex-basis .36s cubic-bezier(.22, 1, .36, 1);
}

.tv-disc__media::before,
.tv-disc__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--tv-img, none);
	background-repeat: no-repeat;
	background-position: center;
}

/* Blurred, dimmed backdrop. */
.tv-disc__media::before {
	background-size: cover;
	filter: blur(34px) saturate(1.15) brightness(.42);
	transform: scale(1.3);
}

/* The product itself, whole. */
.tv-disc__media::after {
	background-size: contain;
	background-position: center center;
	padding: 18px;
	box-sizing: border-box;
	background-origin: content-box;
}

.tv-disc__media.is-blank::before,
.tv-disc__media.is-blank::after { background-image: none; }

.tv-disc__media.is-blank {
	background-image: radial-gradient(circle at 50% 38%, #2c2f22 0%, #15160f 72%);
}

/* Legibility scrims — top for the bar, bottom for the info block. */
.tv-disc__card::before,
.tv-disc__card::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	pointer-events: none;
}

.tv-disc__card::before {
	top: 0;
	height: 34%;
	background: linear-gradient(to bottom, rgba(8, 9, 6, .72), rgba(8, 9, 6, 0));
}

.tv-disc__card::after {
	bottom: 0;
	height: 62%;
	background: linear-gradient(to top, rgba(8, 9, 6, .9) 8%, rgba(8, 9, 6, .55) 42%, rgba(8, 9, 6, 0));
}

/* -------------------------------------------------------------------------
   4. Top bar
   ---------------------------------------------------------------------- */

.tv-disc__topbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 12;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: calc(12px + env(safe-area-inset-top)) 14px 12px;
	color: #f4f3ec;
}

.tv-disc__wordmark {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -.05em;
}

.tv-disc__counter {
	font-size: 12px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: rgba(244, 243, 236, .62);
}

.tv-disc__top-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.tv-disc__basket,
.tv-disc__close {
	position: relative;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(244, 243, 236, .12);
	backdrop-filter: blur(8px);
	color: #f4f3ec;
	transition: background-color .18s var(--tv-ease);
}

.tv-disc__basket:hover,
.tv-disc__close:hover { background: rgba(244, 243, 236, .24); }

.tv-disc__basket .tv-bagcount {
	background: #f4f3ec;
	color: #14150f;
	box-shadow: 0 0 0 2px #101109;
}

.tv-disc__basket.is-catch {
	animation: tv-disc-bag-catch .58s cubic-bezier(.2, 1.45, .32, 1);
}

@keyframes tv-disc-bag-catch {
	0%   { transform: scale(1); }
	28%  { transform: scale(1.34); }
	52%  { transform: scale(.88); }
	76%  { transform: scale(1.12); }
	100% { transform: scale(1); }
}

/*
 * The blurred backdrop is always dark, so overlay text is light in every case
 * — no per-image inversion needed.
 */

/* -------------------------------------------------------------------------
   5. Product info
   ---------------------------------------------------------------------- */

/* The detail panel — solid, below the image, never over it. */
.tv-disc__info {
	position: relative;
	z-index: 3;
	flex: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	padding: 16px 16px calc(80px + env(safe-area-inset-bottom));
	background: #14150f;
	border-top: 1px solid rgba(244, 243, 236, .08);
	color: #f6f5ee;
}

.tv-disc__meta {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
	flex: 1 1 auto;
}

.tv-disc__badge {
	align-self: flex-start;
	padding: 4px 8px;
	border-radius: 5px;
	background: #f4f3ec;
	color: #14150f;
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: .08em;
}

.tv-disc__badge[hidden] { display: none; }

/* Long supplier titles are clamped to two lines and cut cleanly. */
.tv-disc__name {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: clamp(17px, 4.6vw, 21px);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.24;
}

.tv-disc__brand {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: rgba(246, 245, 238, .55);
}

.tv-disc__price {
	display: flex;
	align-items: baseline;
	gap: 9px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -.02em;
}

.tv-disc__was {
	font-size: 13.5px;
	font-weight: 500;
	color: rgba(246, 245, 238, .45);
}

.tv-disc__was[hidden] { display: none; }

.tv-disc__chip {
	align-self: flex-start;
	margin-top: 2px;
	padding: 6px 11px;
	border-radius: var(--tv-r-pill);
	background: rgba(244, 243, 236, .1);
	font-size: 11.5px;
	font-weight: 600;
}

.tv-disc__chip[hidden] { display: none; }
.tv-disc__chip.is-ready { color: #bfe0c2; }
.tv-disc__chip.is-oos { color: #f0b4a6; }
.tv-disc__chip.is-options { cursor: pointer; color: #f4f3ec; }
.tv-disc__chip.is-options:hover { background: rgba(244, 243, 236, .24); }

/* -------------------------------------------------------------------------
   6. Action rail
   ---------------------------------------------------------------------- */

/* Actions sit in the detail panel, alongside the text rather than on the photo. */
.tv-disc__rail {
	flex: none;
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 8px;
}

.tv-disc__rail-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	width: 52px;
	padding: 8px 0;
	border: 1px solid rgba(244, 243, 236, .12);
	border-radius: var(--tv-r-sm);
	background: rgba(244, 243, 236, .06);
	color: #f6f5ee;
	font: inherit;
	text-decoration: none;
	transition: background-color .18s var(--tv-ease), transform .18s var(--tv-ease);
}

.tv-disc__rail-btn:hover { background: rgba(244, 243, 236, .18); transform: translateY(-1px); }
.tv-disc__rail-btn[disabled] { opacity: .4; cursor: not-allowed; }

.tv-disc__rail-icon { display: grid; place-items: center; height: 22px; }

.tv-disc__rail-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .01em;
}

.js-tv-disc-save.is-saved { color: #ff6b6b; }
.js-tv-disc-save.is-saved .tv-icon { fill: currentColor; }
.js-tv-disc-save.is-pop .tv-disc__rail-icon { animation: tv-disc-pop .34s var(--tv-ease); }

@keyframes tv-disc-pop {
	0%   { transform: scale(1); }
	45%  { transform: scale(1.32); }
	100% { transform: scale(1); }
}

/* -------------------------------------------------------------------------
   7. Bottom bar
   ---------------------------------------------------------------------- */

.tv-disc__bottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 12;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 14px 14px calc(18px + env(safe-area-inset-bottom));
}

.tv-disc__hint {
	display: none;
	font-size: 11px;
	font-weight: 500;
	color: rgba(246, 245, 238, .42);
	white-space: nowrap;
}

.tv-disc__controls {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tv-disc__modes {
	display: flex;
	padding: 4px;
	border-radius: var(--tv-r-pill);
	background: rgba(20, 21, 15, .5);
	backdrop-filter: blur(10px);
}

.tv-disc__mode {
	padding: 9px 15px;
	border: 0;
	border-radius: var(--tv-r-pill);
	background: transparent;
	color: rgba(246, 245, 238, .66);
	font-size: 12.5px;
	font-weight: 600;
	transition: background-color .18s var(--tv-ease), color .18s var(--tv-ease);
}

.tv-disc__mode.is-on {
	background: #f4f3ec;
	color: #14150f;
}

.tv-disc__nav { display: flex; gap: 8px; }

.tv-disc__navbtn {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(20, 21, 15, .5);
	backdrop-filter: blur(10px);
	color: #f6f5ee;
	transition: background-color .18s var(--tv-ease), opacity .18s var(--tv-ease);
}

.tv-disc__navbtn:hover { background: rgba(244, 243, 236, .22); }
.tv-disc__navbtn[disabled] { opacity: .3; cursor: not-allowed; }

@media (min-width: 900px) {
	.tv-disc__hint { display: block; }
	.tv-disc__bottom { justify-content: space-between; }
}

/* -------------------------------------------------------------------------
   8. Category sheet
   ---------------------------------------------------------------------- */

.tv-disc__sheet {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	padding: 20px 18px calc(24px + env(safe-area-inset-bottom));
	border-radius: var(--tv-r-xl) var(--tv-r-xl) 0 0;
	background: rgba(18, 19, 13, .96);
	backdrop-filter: blur(18px);
	box-shadow: 0 -18px 50px -20px rgba(0, 0, 0, .8);
	animation: tv-sheet-up .28s var(--tv-ease);
}

.tv-disc__sheet[hidden] { display: none; }

@keyframes tv-sheet-up {
	from { transform: translateY(100%); }
	to   { transform: none; }
}

.tv-disc__sheet-title {
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(246, 245, 238, .5);
}

.tv-disc__sheet-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tv-disc__cat {
	padding: 11px 16px;
	border: 1px solid rgba(244, 243, 236, .18);
	border-radius: var(--tv-r-pill);
	background: transparent;
	color: #f6f5ee;
	font-size: 13.5px;
	font-weight: 500;
	transition: background-color .16s var(--tv-ease), border-color .16s var(--tv-ease), color .16s var(--tv-ease);
}

.tv-disc__cat:hover { border-color: rgba(244, 243, 236, .5); }

.tv-disc__cat.is-on {
	background: #f4f3ec;
	border-color: #f4f3ec;
	color: #14150f;
}

.tv-disc__sheet-reset {
	margin-top: 16px;
	border: 0;
	background: none;
	padding: 0;
	font-size: 12.5px;
	color: rgba(246, 245, 238, .55);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tv-disc__sheet-reset[hidden] { display: none; }
.tv-disc__sheet-reset:hover { color: #f6f5ee; }

/* -------------------------------------------------------------------------
   9. Empty state & toast
   ---------------------------------------------------------------------- */

.tv-disc__empty {
	position: absolute;
	inset: 0;
	z-index: 8;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 16px;
	padding: 30px;
	text-align: center;
	color: rgba(246, 245, 238, .78);
	font-size: 15px;
}

.tv-disc__empty[hidden] { display: none; }

.tv-disc__empty .tv-btn--ghost {
	color: #f6f5ee;
	border-color: rgba(244, 243, 236, .4);
}

.tv-disc__empty .tv-btn--ghost:hover {
	background: #f4f3ec;
	color: #14150f;
}

.tv-disc__toast {
	position: absolute;
	left: 50%;
	bottom: calc(96px + env(safe-area-inset-bottom));
	z-index: 30;
	padding: 11px 18px;
	border-radius: var(--tv-r-pill);
	background: rgba(244, 243, 236, .96);
	color: #14150f;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	transform: translate(-50%, 8px);
	transition: opacity .24s var(--tv-ease), transform .24s var(--tv-ease);
	pointer-events: none;
}

.tv-disc__toast[hidden] { display: none; }
.tv-disc__toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* -------------------------------------------------------------------------
   10. Larger screens — keep the card a phone-shaped stage
   ---------------------------------------------------------------------- */

@media (min-width: 900px) {
	.tv-disc__stage {
		width: min(470px, 42vw);
		height: min(94vh, 900px);
		inset: 50% auto auto 50%;
		transform: translate(-50%, -50%);
		border-radius: var(--tv-r-xl);
		box-shadow: 0 40px 100px -30px rgba(0, 0, 0, .9);
	}

	.tv-disc__backdrop { background: rgba(11, 12, 8, .88); backdrop-filter: blur(6px); }

	.tv-disc__bottom {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		width: 100%;
		justify-content: center;
	}

	.tv-disc__hint { display: none; }
}

/* -------------------------------------------------------------------------
   11. Motion
   ---------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	.tv-disc__card,
	.tv-disc__sheet,
	.tv-disc__stage,
	.tv-disc__basket.is-catch {
		animation: none !important;
		transition: none !important;
	}
}

/* -------------------------------------------------------------------------
   12. Immersive in-card detail
   ---------------------------------------------------------------------- */

.tv-disc__back {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(244, 243, 236, .12);
	backdrop-filter: blur(8px);
	color: #f4f3ec;
	transition: background-color .18s var(--tv-ease);
}

.tv-disc__back:hover { background: rgba(244, 243, 236, .24); }
.tv-disc__back[hidden] { display: none; }

.tv-disc__card:not(.is-detail) .tv-disc__detail { display: none; }

.tv-disc__card.is-detail .tv-disc__media {
	flex: 0 0 44%;
	cursor: pointer;
}

.tv-disc__card.is-detail .tv-disc__info {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	touch-action: pan-y;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	padding: 14px 16px calc(92px + env(safe-area-inset-bottom));
}

.tv-disc__card.is-detail .tv-disc__name {
	display: block;
	-webkit-line-clamp: unset;
	line-clamp: unset;
	overflow: visible;
}

.tv-disc__card.is-detail .tv-disc__chip,
.tv-disc__card.is-detail .tv-disc__rail { display: none; }

.tv-disc__card.is-detail::after { height: 28%; }

.tv-disc__dots {
	position: absolute;
	left: 50%;
	bottom: 12px;
	z-index: 4;
	display: none;
	align-items: center;
	gap: 6px;
	transform: translateX(-50%);
}

.tv-disc__stamp {
	position: absolute;
	top: 18%;
	z-index: 6;
	padding: 7px 12px;
	border: 3px solid;
	border-radius: 8px;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
}

.tv-disc__stamp--skip {
	left: 16px;
	color: #ff7a70;
	border-color: #ff7a70;
	transform: rotate(-18deg);
}

.tv-disc__stamp--add {
	right: 16px;
	color: #bfe0c2;
	border-color: #bfe0c2;
	transform: rotate(16deg);
}

.tv-disc__card.is-aiming-bag {
	overflow: hidden;
	box-shadow: 0 30px 70px -24px rgba(0, 0, 0, .5);
}

.tv-disc__card.is-aiming-bag .tv-disc__info,
.tv-disc__card.is-aiming-bag .tv-disc__stamp {
	opacity: 0;
	transition: opacity .18s ease;
}

.tv-disc__card.is-flying-to-bag {
	overflow: hidden;
	box-shadow: 0 28px 70px -20px rgba(0, 0, 0, .55);
	pointer-events: none;
}

.tv-disc__card.is-flying-to-bag .tv-disc__info,
.tv-disc__card.is-flying-to-bag .tv-disc__stamp,
.tv-disc__card.is-flying-to-bag .tv-disc__dots {
	opacity: 0 !important;
}

.tv-disc__card.is-detail .tv-disc__dots:not([hidden]) { display: flex; }

.tv-disc__dot {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(244, 243, 236, .38);
}

.tv-disc__dot.is-on { background: #f4f3ec; }

.tv-disc__desc {
	margin: 8px 0 0;
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.5;
	color: rgba(246, 245, 238, .78);
}

.tv-disc__desc[hidden] { display: none; }

.tv-disc__options {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 12px;
}

.tv-disc__options[hidden] { display: none; }

.tv-disc__options-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(246, 245, 238, .55);
}

.tv-disc__select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid rgba(244, 243, 236, .18);
	border-radius: var(--tv-r-sm);
	background: rgba(244, 243, 236, .08);
	color: #f6f5ee;
	font: inherit;
	font-size: 16px;
}

.tv-disc__stock {
	margin: 10px 0 0;
	font-size: 12.5px;
	font-weight: 600;
	color: #bfe0c2;
}

.tv-disc__stock.is-out { color: #f0b4a6; }
.tv-disc__stock[hidden] { display: none; }

.tv-disc__buy {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 14px;
	padding: 14px 18px;
	border: 0;
	border-radius: var(--tv-r-pill);
	background: #f4f3ec;
	color: #14150f;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
}

.tv-disc__buy:hover { background: #fff; }
.tv-disc__buy[disabled] { opacity: .45; cursor: not-allowed; }

.tv-disc__fullpage {
	display: inline-block;
	margin-top: 10px;
	color: rgba(246, 245, 238, .55);
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.tv-disc__fullpage[hidden] { display: none; }
.tv-disc__fullpage:hover { color: #f6f5ee; }

@media (min-width: 900px) {
	.tv-disc__card.is-detail .tv-disc__media { flex-basis: 48%; }
}
