/* Large editorial shopping cards; compact product-page strips keep their sizing. */
.ysv-card__media { height: 100%; position: relative; min-width: 0; }
.ysv-feed--shop .ysv-feed__track { grid-auto-columns: var(--ysv-card-width, min(320px, 86%)); gap: 24px; align-items: stretch; }
.ysv-feed--shop .ysv-card { aspect-ratio: auto; border-radius: 0; background: #fff; display: flex; flex-direction: column; contain: none; }
.ysv-feed--shop .ysv-card__media { height: auto; aspect-ratio: 9 / 14; overflow: hidden; flex: none; }
.ysv-feed--shop .ysv-card__open { position: absolute; inset: 0; }
.ysv-feed--shop .ysv-card__copy,
.ysv-feed--shop .ysv-card__shade { display: none; }
.ysv-feed--shop .ysv-card__product { display: flex; align-items: center; gap: 16px; padding: 20px; border: 1px solid #d8d8d8; border-top: 0; min-height: 126px; flex: 1; background: #fff; color: #111; }
.ysv-card__product img { width: 48px; height: 78px; object-fit: contain; flex: 0 0 48px; }
.ysv-card__details { flex: 1; min-width: 0; }
.ysv-card__name { display: block; font-size: 16px; line-height: 1.35; font-weight: 500; overflow-wrap: anywhere; }
.ysv-card__shop-link { display: inline-block; color: #111; font-size: 15px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; margin-top: 12px; }
.ysv-feed--shop .ysv-card__expand { background: transparent; border: 0; color: #111; cursor: pointer; padding: 10px; width: 44px; height: 44px; flex: 0 0 44px; border-radius: 0; }
.ysv-card__expand svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; }
.ysv-feed--shop .ysv-card__sound { position: absolute; bottom: 12px; right: 12px; width: 36px; height: 36px; padding: 7px; background: #080808; color: #fff; border: 0; border-radius: 50%; cursor: pointer; z-index: 2; display: grid; place-items: center; }
.ysv-card__sound svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.ysv-card__expand:focus-visible, .ysv-card__shop-link:focus-visible, .ysv-card__sound:focus-visible { outline: 2px solid var(--ysv-accent); outline-offset: -2px; }

:root {
	--ysv-accent: #77846f;
	--ysv-radius: 18px;
}

/* 1.1: restrained heading, compact product strip, always reachable controls. */
.ysv-feed .ysv-feed__title { font-family: inherit; font-size: 24px; font-weight: 500; letter-spacing: -.02em; line-height: 1.3; }
.ysv-feed .ysv-feed__arrows { display: flex; margin-left: auto; }
.ysv-feed { min-width: 0; max-width: 100%; }
.ysv-feed.ysv-feed--compact { border-top: 1px solid #deded9; border-bottom: 1px solid #deded9; padding: 24px 0; margin: 24px 0; }
.ysv-feed.ysv-feed--compact .ysv-feed__track { grid-auto-columns: 118px; gap: 12px; margin: 0; padding: 2px 2px 10px; scroll-padding-left: 2px; }
.ysv-feed--compact .ysv-card { aspect-ratio: 2 / 3; border: 1px solid #797973; border-radius: 6px; padding: 2px; background: white; }
.ysv-feed--compact .ysv-card__open { border-radius: 3px; }
.ysv-feed--compact .ysv-card__copy { display: none; }
.ysv-feed--compact .ysv-card__play { width: 34px; height: 34px; }
.ysv-modal .ysv-modal__nav { left: auto; right: 16px; z-index: 6; display: flex; }
.ysv-modal .ysv-modal__shop-inner { padding-right: 70px; }
.ysv-modal__share { position: absolute; right: 15px; top: 131px; z-index: 3; }
.ysv-modal__status { position: absolute; top: 184px; right: 15px; color: white; background: #222c; border-radius: 6px; font-size: 12px; padding: 3px 7px; }
.ysv-modal__status:empty { display: none; }
@media(max-width:760px) {
 .ysv-modal .ysv-modal__nav { top: 48%; right: 15px; }
 .ysv-modal .ysv-modal__shop-inner { padding: 10px; }
 .ysv-modal .ysv-modal__copy { right: 72px; }
 .ysv-feed .ysv-feed__track { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
 .ysv-modal .ysv-modal__product-copy h3 { white-space: normal; font-size: 13px; }
}

.ysv-feed,
.ysv-modal {
	font-family: inherit;
	box-sizing: border-box;
}

.ysv-feed *,
.ysv-modal * {
	box-sizing: border-box;
}

.ysv-feed {
	width: 100%;
	margin: 42px 0;
	position: relative;
}

.ysv-feed__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 18px;
}

.ysv-feed__title {
	color: inherit;
	font: inherit;
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.1;
	margin: 0;
}

.ysv-feed__arrows {
	display: flex;
	gap: 8px;
	flex: 0 0 auto;
}

.ysv-feed__arrow {
	appearance: none;
	background: transparent;
	border: 1px solid rgba(20, 20, 20, .18);
	border-radius: 999px;
	color: currentColor;
	cursor: pointer;
	display: grid;
	font-size: 18px;
	height: 42px;
	line-height: 1;
	place-items: center;
	transition: background .2s ease, border-color .2s ease, color .2s ease;
	width: 42px;
}

.ysv-feed__arrow:hover,
.ysv-feed__arrow:focus-visible {
	background: var(--ysv-accent);
	border-color: var(--ysv-accent);
	color: #fff;
	outline: none;
}

.ysv-feed__track {
	display: grid;
	grid-auto-columns: clamp(172px, 21vw, 238px);
	grid-auto-flow: column;
	gap: clamp(10px, 1.5vw, 18px);
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 1px 1px 12px;
	scroll-behavior: smooth;
	scroll-snap-type: inline mandatory;
	scrollbar-color: rgba(30, 30, 30, .24) transparent;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.ysv-card {
	aspect-ratio: 9 / 16;
	background: #171816;
	border-radius: var(--ysv-radius);
	contain: paint;
	overflow: hidden;
	position: relative;
	scroll-snap-align: start;
}

.ysv-card__open {
	appearance: none;
	background: #171816;
	border: 0;
	color: #fff;
	cursor: pointer;
	display: block;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-align: left;
	width: 100%;
}

.ysv-card__open:focus-visible {
	box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 6px var(--ysv-accent);
	outline: none;
}

.ysv-card__video {
	display: block;
	height: 100%;
	object-fit: cover;
	transform: scale(1.002);
	transition: transform .45s cubic-bezier(.2,.7,.2,1);
	width: 100%;
}

.ysv-card:hover .ysv-card__video {
	transform: scale(1.035);
}

.ysv-card__shade {
	background: linear-gradient(180deg, rgba(0,0,0,.05) 38%, rgba(0,0,0,.78) 100%);
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.ysv-card__play {
	align-items: center;
	backdrop-filter: blur(8px);
	background: rgba(255,255,255,.9);
	border-radius: 50%;
	box-shadow: 0 6px 26px rgba(0,0,0,.18);
	display: flex;
	height: 50px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 45%;
	transform: translate(-50%, -50%);
	transition: opacity .2s ease, transform .2s ease;
	width: 50px;
}

.ysv-card__play span {
	border-bottom: 7px solid transparent;
	border-left: 11px solid #151515;
	border-top: 7px solid transparent;
	margin-left: 3px;
}

.ysv-card.is-playing .ysv-card__play {
	opacity: 0;
	transform: translate(-50%, -50%) scale(.7);
}

.ysv-card__copy {
	bottom: 17px;
	display: flex;
	flex-direction: column;
	gap: 3px;
	left: 16px;
	line-height: 1.25;
	position: absolute;
	right: 16px;
	z-index: 2;
}

.ysv-card__copy strong {
	color: #fff;
	font-size: 15px;
	font-weight: 650;
}

.ysv-card__copy small {
	color: rgba(255,255,255,.78);
	font-size: 12px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ysv-card__views {
	background: rgba(0,0,0,.38);
	border-radius: 999px;
	color: #fff;
	font-size: 11px;
	left: 12px;
	padding: 5px 8px;
	position: absolute;
	top: 12px;
}

html.ysv-lock,
body.ysv-lock {
	overflow: hidden !important;
}

.ysv-modal[hidden] {
	display: none !important;
}

.ysv-modal {
	inset: 0;
	position: fixed;
	z-index: 999999;
}

.ysv-modal__backdrop {
	background: rgba(12, 13, 12, .86);
	backdrop-filter: blur(13px);
	inset: 0;
	position: absolute;
}

.ysv-modal__dialog {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 28px 90px rgba(0,0,0,.36);
	display: grid;
	grid-template-columns: minmax(330px, 54vh) minmax(310px, 390px);
	height: min(88vh, 820px);
	left: 50%;
	max-height: calc(100vh - 40px);
	max-width: calc(100vw - 80px);
	overflow: hidden;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.ysv-modal__dialog.has-no-product {
	grid-template-columns: minmax(330px, 54vh);
}

.ysv-modal__stage {
	background: #111;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.ysv-modal__video {
	background: #111;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ysv-modal__gradient {
	background: linear-gradient(180deg, rgba(0,0,0,.28), transparent 22%, transparent 58%, rgba(0,0,0,.78));
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.ysv-modal__progress {
	background: rgba(255,255,255,.28);
	border-radius: 3px;
	height: 3px;
	left: 15px;
	overflow: hidden;
	position: absolute;
	right: 15px;
	top: 13px;
}

.ysv-modal__progress span {
	background: #fff;
	display: block;
	height: 100%;
	transition: width .12s linear;
	width: 0;
}

.ysv-control {
	appearance: none;
	align-items: center;
	backdrop-filter: blur(8px);
	background: rgba(20,20,20,.46);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	height: 42px;
	justify-content: center;
	margin: 0;
	padding: 0;
	width: 42px;
}

.ysv-control svg,
.ysv-modal__toggle svg {
	fill: none;
	height: 21px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 21px;
}

.ysv-modal__toggle svg {
	fill: currentColor;
	stroke: none;
}

.ysv-control:focus-visible,
.ysv-modal__toggle:focus-visible,
.ysv-modal__cart:focus-visible,
.ysv-modal__product-link:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.ysv-control:disabled {
	cursor: default;
	opacity: .28;
}

.ysv-modal__close {
	position: absolute;
	right: 15px;
	top: 27px;
	z-index: 3;
}

.ysv-modal__sound {
	position: absolute;
	right: 15px;
	top: 79px;
	z-index: 3;
}

.ysv-modal__toggle {
	appearance: none;
	background: transparent;
	border: 0;
	color: #fff;
	cursor: pointer;
	height: 74px;
	left: 50%;
	margin: 0;
	opacity: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity .2s ease;
	width: 74px;
	z-index: 2;
}

.ysv-modal__toggle svg {
	height: 42px;
	filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
	width: 42px;
}

.ysv-modal__stage:hover .ysv-modal__toggle,
.ysv-modal__toggle:focus-visible {
	opacity: .92;
}

.ysv-modal__copy {
	bottom: 25px;
	color: #fff;
	left: 22px;
	position: absolute;
	right: 22px;
	z-index: 2;
}

.ysv-modal__copy strong {
	display: block;
	font-size: 19px;
	font-weight: 650;
	line-height: 1.2;
}

.ysv-modal__copy p {
	color: rgba(255,255,255,.84);
	font-size: 14px;
	line-height: 1.45;
	margin: 7px 0 0;
}

.ysv-modal__shop {
	background: #fff;
	color: #171817;
	min-width: 0;
	position: relative;
}

.ysv-modal__shop[hidden] {
	display: none;
}

.ysv-modal__shop-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	padding: clamp(25px, 4vw, 48px);
}

.ysv-modal__eyebrow {
	color: var(--ysv-accent);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: .14em;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.ysv-modal__product-image {
	align-self: center;
	display: block;
	height: 230px;
	margin: 0 auto 28px;
	object-fit: contain;
	width: 100%;
}

.ysv-modal__product-copy h3 {
	color: inherit;
	font: inherit;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -.018em;
	line-height: 1.25;
	margin: 0 0 9px;
}

.ysv-modal__price {
	color: #525852;
	font-size: 15px;
	margin-bottom: 24px;
}

.ysv-modal__cart {
	appearance: none;
	background: var(--ysv-accent);
	border: 1px solid var(--ysv-accent);
	border-radius: 999px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	min-height: 50px;
	padding: 12px 20px;
	transition: filter .2s ease, transform .2s ease;
	width: 100%;
}

.ysv-modal__cart:hover {
	filter: brightness(.92);
	transform: translateY(-1px);
}

.ysv-modal__cart:disabled {
	cursor: wait;
	opacity: .72;
}

.ysv-modal__cart.is-added {
	background: #2e6f49;
	border-color: #2e6f49;
}

.ysv-modal__product-link {
	align-self: center;
	border-bottom: 1px solid currentColor;
	color: #353a35;
	font-size: 12px;
	margin-top: 17px;
	text-decoration: none;
}

.ysv-modal__nav {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
	left: calc(100% + 18px);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.ysv-modal__count {
	color: rgba(255,255,255,.76);
	font-size: 11px;
	font-variant-numeric: tabular-nums;
}

@media (max-width: 760px) {
	.ysv-feed {
		margin: 30px 0;
	}

	.ysv-feed__header {
		margin-bottom: 14px;
	}

	.ysv-feed__arrows {
		display: none;
	}

	.ysv-feed__track {
		grid-auto-columns: min(47vw, 184px);
		margin-left: -16px;
		margin-right: -16px;
		padding-left: 16px;
		padding-right: 16px;
		scroll-padding-left: 16px;
	}

	.ysv-modal__dialog {
		background: #111;
		border-radius: 0;
		display: block;
		height: 100%;
		left: 0;
		max-height: none;
		max-width: none;
		position: fixed;
		top: 0;
		transform: none;
		width: 100%;
	}

	.ysv-modal__dialog.has-no-product .ysv-modal__copy {
		bottom: 25px;
	}

	.ysv-modal__stage {
		height: 100%;
		width: 100%;
	}

	.ysv-modal__video {
		object-fit: cover;
	}

	.ysv-modal__copy {
		bottom: 156px;
		left: 17px;
		right: 17px;
	}

	.ysv-modal__shop {
		background: rgba(255,255,255,.96);
		border-radius: 16px;
		bottom: max(15px, env(safe-area-inset-bottom));
		box-shadow: 0 10px 36px rgba(0,0,0,.24);
		left: 14px;
		min-height: 112px;
		position: absolute;
		right: 14px;
		z-index: 4;
	}

	.ysv-modal__shop-inner {
		display: grid;
		grid-template-columns: 62px minmax(0, 1fr) auto;
		grid-template-rows: auto auto;
		gap: 4px 11px;
		height: auto;
		padding: 10px;
	}

	.ysv-modal__eyebrow {
		display: none;
	}

	.ysv-modal__product-image {
		grid-column: 1;
		grid-row: 1 / 3;
		height: 78px;
		margin: 0;
		width: 62px;
	}

	.ysv-modal__product-copy {
		align-self: end;
		grid-column: 2;
		grid-row: 1;
		min-width: 0;
	}

	.ysv-modal__product-copy h3 {
		font-size: 14px;
		margin: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.ysv-modal__price {
		font-size: 12px;
		grid-column: 2;
		grid-row: 2;
		margin: 3px 0 0;
	}

	.ysv-modal__cart {
		align-self: center;
		font-size: 12px;
		grid-column: 3;
		grid-row: 1 / 3;
		min-height: 43px;
		padding: 10px 15px;
		white-space: nowrap;
		width: auto;
	}

	.ysv-modal__product-link {
		display: none;
	}

	.ysv-modal__nav {
		display: none;
	}

	.ysv-modal__toggle {
		opacity: .8;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ysv-feed *,
	.ysv-modal * {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
