/* Ficha producto — Llantas Web */
:root {
	--llw-red: #e30613;
	--llw-red-dark: #c50511;
	--llw-text: #0f172a;
	--llw-muted: #64748b;
	--llw-border: #e2e8f0;
	--llw-bg: #f3f4f6;
	--llw-card-shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
}

body.llw-single-page {
	background: var(--llw-bg);
}

@keyframes llw-promo-nudge-right {
	0%,
	100% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(15px);
	}
}

.llw-promo-bar {
	background: var(--llw-red);
	color: #fff;
	padding: 0.52rem 0;
	overflow: hidden;
	--llw-promo-speed: 45s;
}

.llw-promo-bar__viewport {
	overflow: hidden;
	overflow-y: hidden;
	width: 100%;
}

.llw-promo-bar__viewport::-webkit-scrollbar {
	display: none;
}

.llw-promo-bar__track {
	display: flex;
	flex-wrap: nowrap;
	width: max-content;
	will-change: transform;
}

.llw-promo-bar.is-marquee-ready .llw-promo-bar__track {
	animation: llw-promo-marquee-scroll var(--llw-promo-speed, 40s) linear infinite;
}

.llw-promo-bar.is-marquee-ready:hover .llw-promo-bar__track {
	animation-play-state: paused;
}

@keyframes llw-promo-marquee-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

.llw-promo-bar__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
}

.llw-promo-bar__slide {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	flex: 0 0 auto;
	padding: 0 1.5rem 0 0.5rem;
	white-space: nowrap;
}

.llw-promo-bar__chevrons {
	flex: 0 0 auto;
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.12em;
	color: rgba(255, 255, 255, 0.55);
	margin-right: 0.75rem;
	animation: llw-promo-nudge-right 1.85s ease-in-out infinite;
}

.llw-promo-bar__icon {
	flex: 0 0 auto;
	width: 1.9rem;
	height: 1.9rem;
	color: #fff;
}

.llw-promo-bar__text {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	white-space: nowrap;
}

.llw-single,
.llw-single *,
.llw-promo-bar,
.llw-promo-bar * {
	font-family: inherit;
}

.llw-single a {
	color: var(--llw-red);
	text-decoration: none;
}

.llw-single a:hover {
	text-decoration: underline;
}

.llw-single {
	max-width: 1310px;
	margin: 0 auto;
	padding: 1.5rem 1.25rem 4.5rem;
}

.llw-single__crumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	margin: 0 0 1.25rem;
	font-size: 0.88rem;
	color: var(--llw-muted);
}

.llw-single__crumb a {
	color: var(--llw-muted);
	text-decoration: none;
}

.llw-single__crumb a:hover {
	color: var(--llw-red);
}

.llw-single__crumb-sep {
	opacity: 0.5;
}

.llw-single__crumb-current {
	color: var(--llw-text);
	font-weight: 600;
}

.llw-single__hero {
	display: grid;
	grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
	gap: 1.75rem 2.25rem;
	align-items: start;
	margin-bottom: 2rem;
}

.llw-single__hero > * {
	min-width: 0;
}

.llw-single__gallery {
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--llw-card-shadow);
	padding: 1.25rem;
	position: sticky;
	top: 1rem;
	width: 100%;
	max-width: none;
	justify-self: stretch;
}

.llw-single__gallery-overlays {
	position: static;
	height: auto;
	margin: 0 0 0.25rem;
	z-index: 5;
	pointer-events: none;
}

.llw-single__gallery-brand-box {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0.35rem 0.65rem 1.05rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.84);
	line-height: 0;
}

.llw-single__gallery-brand {
	max-width: 92px;
	max-height: 34px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.llw-single__gallery-brand-text {
	display: inline-block;
	max-width: 120px;
	color: var(--llw-text);
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.llw-single__image-wrap {
	display: block;
	width: 100%;
	padding: 0;
}

.llw-gallery {
	width: 100%;
}

.llw-gallery__stage {
	position: relative;
}

.llw-gallery__main {
	position: relative;
	border-radius: 12px;
	background: #f8fafc;
	overflow: hidden;
}

.llw-gallery__slide {
	display: none;
	margin: 0;
}

.llw-gallery__slide.is-active {
	display: block;
}

.llw-gallery__slide img,
.llw-gallery__img {
	display: block;
	width: calc(100% + 50px);
	max-width: none;
	height: auto;
	margin: 0 -25px;
}

.llw-gallery__nav {
	display: none !important;
}

.llw-gallery__thumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem;
	margin: 1.25rem auto 0;
	padding: 0;
}

.llw-gallery__thumb {
	flex: 0 0 72px;
	width: 72px;
	height: auto;
	margin: 0;
	padding: 2px;
	border: 2px solid transparent;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.2s ease, opacity 0.2s ease;
	opacity: 0.85;
}

.llw-gallery__thumb.is-active,
.llw-gallery__thumb:hover {
	border-color: var(--llw-text);
	opacity: 1;
}

.llw-gallery__thumb-img,
.llw-gallery__thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.llw-single__image-placeholder {
	width: 62%;
	max-width: 200px;
	opacity: 0.35;
}

.llw-single__summary {
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--llw-card-shadow);
	padding: 1.75rem 1.85rem;
	min-width: 0;
}

/* Cabecera + descripción: badges flotantes, excerpt pegado al precio */
.llw-single__intro {
	position: relative;
	padding-right: 58px;
	margin-bottom: 1rem;
}

.llw-single__head-main {
	padding-bottom: 0.4rem;
	border-bottom: 1px solid var(--llw-border);
}

.llw-single__head-aside {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.35rem;
}

/* Badge calidad — pill compacto */
.llw-single__quality {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.28rem 0.65rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	white-space: nowrap;
}

.llw-single__quality--buena {
	background: #cd7f32;
}

.llw-single__quality--muy-buena {
	background: #bfc0c0;
}

.llw-single__quality--excelente {
	background: #d4af37;
}

/* Etiquetas EU — compactas como referencia */
.llw-single__eu-stack {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.22rem;
	width: 34px;
}

.llw-single__eu-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 7px;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.llw-single__eu-box:hover {
	opacity: 0.88;
}

.llw-single__eu-box--fuel {
	background: #facc15;
	color: #713f12;
}

.llw-single__eu-box--wet {
	background: #3b82f6;
	color: #fff;
}

.llw-single__eu-box--noise {
	background: #22c55e;
	color: #fff;
	font-size: 0.7rem;
}

.llw-single__title {
	margin: 0 0 0.55rem;
	font-size: clamp(1.56rem, 1.2rem + 1.55vw, 1.97rem);
	font-weight: 900;
	line-height: 1.22;
	letter-spacing: -0.02em;
	color: var(--llw-text);
}

.llw-single__meta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1rem;
	margin-bottom: 0.75rem;
	font-size: 0.84rem;
	color: var(--llw-muted);
}

.llw-single__meta-row strong {
	color: var(--llw-text);
	font-weight: 600;
}

.llw-single__pricing {
	margin: 0 0 0.45rem;
}

.llw-single__price-role {
	margin: 0 0 0.2rem;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--llw-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.llw-single__price-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.85rem;
}

.llw-single__price {
	margin: 0;
	font-size: clamp(1.56rem, 1.05rem + 1.65vw, 2.17rem);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: var(--llw-text);
}

.llw-single__price-public {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.3rem 0.45rem;
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.3;
}

.llw-single__price-public-label {
	font-weight: 600;
	color: var(--llw-muted);
}

.llw-single__price-public-val {
	font-weight: 700;
	color: #94a3b8;
	text-decoration: line-through;
	text-decoration-thickness: 1.5px;
}

.llw-single__shipping {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	padding: 0.42rem 0.85rem;
	border-radius: 999px;
	background: #334155;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.2;
}

.llw-single__shipping svg {
	flex-shrink: 0;
	color: #fff;
}

.llw-single__excerpt {
	margin: 0.45rem 0 1.1rem;
	padding: 0.85rem 1rem;
	background: #f8fafc;
	border-left: 3px solid var(--llw-red);
	border-radius: 0 10px 10px 0;
	font-size: 0.92rem;
	color: #334155;
}

.llw-single__excerpt-text p {
	margin: 0 0 0.65rem;
}

.llw-single__excerpt-text p:last-child {
	margin-bottom: 0;
}

.llw-single__excerpt-more {
	display: inline-flex;
	align-items: center;
	margin-top: 0.75rem;
	padding: 0;
	border: 0;
	background: transparent !important;
	color: var(--llw-red);
	font: inherit;
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.llw-single__excerpt-more:hover,
.llw-single__excerpt-more:focus,
.llw-single__excerpt-more:focus-visible {
	color: var(--llw-red-dark);
	outline: none;
	box-shadow: none;
}

.llw-single__excerpt--split .llw-single__highlights {
	margin-top: 0.85rem;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(226, 232, 240, 0.95);
}

.llw-single__excerpt .llw-single__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 1.15rem 1.75rem;
	margin: 0;
	padding-top: 0;
}

.llw-single__excerpt .llw-single__vehicles,
.llw-single__excerpt .llw-single__specs-mini {
	flex: 1 1 220px;
	min-width: min(100%, 200px);
	max-width: 100%;
}

.llw-single__excerpt .llw-single__vehicles-title {
	margin: 0.55rem 0 0.55rem;
}

.llw-single__desc-content .llw-desc-list li strong {
	font-weight: 700;
	color: var(--llw-text);
}

.llw-single__desc-content strong {
	font-weight: 800;
	color: var(--llw-text);
}

.llw-single__excerpt ul,
.llw-single__excerpt ol,
.llw-single__desc-content ul,
.llw-single__desc-content ol,
.llw-single__desc-content .llw-desc-list {
	margin: 0 0 0.45rem;
	padding-left: 0;
	list-style: none;
}

.llw-single__excerpt ol,
.llw-single__desc-content ol {
	padding-left: 1.35rem;
	list-style-type: decimal;
}

.llw-single__excerpt ul > li,
.llw-single__desc-content ul > li,
.llw-single__desc-content .llw-desc-list > li,
.llw-single__panel ul > li {
	position: relative;
	margin-bottom: 0.1rem;
	padding-left: 1.15rem;
	font-size: 0.92rem;
	line-height: 1.38;
	color: #475569;
}

.llw-single__excerpt ul > li::before,
.llw-single__desc-content ul > li::before,
.llw-single__desc-content .llw-desc-list > li::before,
.llw-single__panel ul > li::before,
.llw-single .llw-single__vehicles ul > li::before,
.llw-single .llw-single__specs-mini-list > li::before {
	content: '';
	position: absolute;
	left: 0.28rem;
	top: 0.58em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #475569;
}

.llw-single__excerpt ol > li,
.llw-single__desc-content ol > li {
	margin-bottom: 0.2rem;
	padding-left: 0.15rem;
}

.llw-single__excerpt ol > li::before,
.llw-single__desc-content ol > li::before,
.llw-single__panel ol > li::before {
	content: none;
}

.llw-single__highlights {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.25rem 1.75rem;
	margin: 0 0 1.35rem;
	padding-top: 0.15rem;
}

.llw-single__vehicles {
	margin: 0;
	min-width: 0;
}

.llw-single__vehicles-title,
.llw-single__specs-mini-title {
	margin: 0 0 0.55rem;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--llw-text);
}

.llw-single__specs-mini {
	min-width: 0;
}

.llw-single__vehicles ul,
.llw-single__specs-mini-list {
	margin: 0;
	padding-left: 0;
	list-style: none;
	font-size: 0.88rem;
	line-height: 1.45;
	font-weight: 400;
	color: #475569;
}

.llw-single__vehicles li,
.llw-single__specs-mini-list li {
	position: relative;
	margin-bottom: 0.2rem;
	padding-left: 1.15rem;
}

.llw-single .llw-vehicles-list > li.is-hidden,
.llw-single .llw-desc-list--vehicles > li.is-hidden {
	display: none;
}

.llw-single__vehicles li::before,
.llw-single__specs-mini-list li::before {
	content: '';
	position: absolute;
	left: 0.28rem;
	top: 0.58em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #475569;
}

.llw-single__specs-mini-list li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.65rem;
}

.llw-single__spec-k {
	flex: 1 1 auto;
	min-width: 0;
	font-weight: inherit;
	color: inherit;
}

.llw-single__spec-v {
	flex: 0 0 auto;
	font-weight: inherit;
	color: inherit;
	text-align: right;
}

.llw-single__specs-mini-more {
	display: block;
	margin: 0.15rem 0 0 1.15rem;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--llw-red);
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.llw-single__specs-mini-more:hover {
	color: #b8050f;
}

.llw-single__vehicles-more {
	display: block;
	margin: 0.35rem 0 0 1.15rem;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--llw-red);
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.llw-single__vehicles-more:hover {
	color: #b8050f;
}

.llw-single__purchase {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	padding-top: 0.25rem;
}

.llw-single__purchase form.cart {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.75rem;
	margin: 0;
	min-width: 0;
	width: 100%;
}

.llw-whatsapp-purchase {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
}

.llw-single__purchase .quantity {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	border: 0;
	border-radius: 0;
	overflow: visible;
	background: transparent;
}

.llw-single__purchase .llw-qty__btn {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: #3f4656;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background 0.2s ease;
}

.llw-single__purchase .llw-qty__btn:hover {
	background: #2f3542;
}

.llw-single__purchase .quantity .qty {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: #d9dde3;
	text-align: center;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	color: #1e293b;
	padding: 0;
	-moz-appearance: textfield;
}

.llw-single__purchase .quantity .qty::-webkit-outer-spin-button,
.llw-single__purchase .quantity .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.llw-single__purchase .single_add_to_cart_button,
.llw-single__purchase .llw-whatsapp-buy {
	flex: 1 1 auto;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0.7rem 1.35rem !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--llw-red) !important;
	color: #fff !important;
	font: inherit;
	font-size: 0.98rem !important;
	font-weight: 700 !important;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(227, 6, 19, 0.28);
	transition: background 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}

.llw-single__purchase .single_add_to_cart_button .llw-cart-icon {
	display: inline-flex;
	flex-shrink: 0;
}

.llw-single__purchase .single_add_to_cart_button:hover,
.llw-single__purchase .llw-whatsapp-buy:hover {
	background: var(--llw-red-dark) !important;
	transform: translateY(-1px);
}

.llw-single__wish {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border: 1px solid var(--llw-border);
	border-radius: 50%;
	background: #fff;
	color: var(--llw-muted);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.llw-single__wish:hover {
	color: #e11d48;
	border-color: #fecdd3;
	background: #fff1f2;
}

.llw-single__panels {
	background: #fff;
	border-radius: 16px;
	box-shadow: var(--llw-card-shadow);
	overflow: hidden;
}

.llw-single__section--desc .llw-single__panel,
.llw-single__section--specs .llw-single__panel {
	display: block;
}

.llw-single__section--specs-separated {
	border-top: 1px solid var(--llw-border);
}

.llw-single__section-heading {
	display: flex;
	justify-content: center;
	padding: 1.35rem 1.75rem 0;
	background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.llw-single__section--desc .llw-single__panel {
	padding-top: 0.85rem;
}

.llw-single__section-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	padding: 0.72rem 2rem;
	border: 1px solid var(--llw-border);
	border-bottom: 3px solid var(--llw-red);
	border-radius: 14px 14px 0 0;
	background: #fff;
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--llw-text);
	box-shadow: 0 -4px 14px rgba(15, 23, 42, 0.05);
}

.llw-single__section--specs .llw-single__panel {
	padding-top: 1.1rem;
}

.llw-single__desc-content .llw-desc-section-title,
.llw-single__excerpt-text .llw-desc-section-title {
	margin: 1.15rem 0 0.5rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--llw-text);
}

.llw-single__desc-content .llw-desc-section-title:first-child,
.llw-single__excerpt-text .llw-desc-section-title:first-child {
	margin-top: 0;
}

.llw-single__desc-content .llw-desc-list,
.llw-single__excerpt-text .llw-desc-list {
	margin: 0 0 0.75rem;
}

.llw-single__desc-content .llw-desc-list:last-child,
.llw-single__excerpt-text .llw-desc-list:last-child {
	margin-bottom: 0;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.llw-single__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	border-bottom: 1px solid var(--llw-border);
	background: #fafbfc;
}

.llw-single__tab {
	flex: 1 1 auto;
	min-width: 120px;
	padding: 0.95rem 1.25rem;
	border: 0;
	border-bottom: 3px solid transparent;
	background: transparent !important;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--llw-muted);
	cursor: pointer;
	transition: color 0.2s ease, border-color 0.2s ease;
	outline: none !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	appearance: none;
	-webkit-tap-highlight-color: transparent;
}

.llw-single__tab.is-active {
	color: var(--llw-text);
	border-bottom-color: var(--llw-red);
	background: #fff !important;
}

.llw-single__tab:hover:not(.is-active) {
	color: var(--llw-red);
}

.llw-single__tab:hover,
.llw-single__tab:focus,
.llw-single__tab:focus-visible,
.llw-single__tab:active {
	background: transparent !important;
	outline: none !important;
	box-shadow: none !important;
}

.llw-single__tab.is-active:hover,
.llw-single__tab.is-active:focus,
.llw-single__tab.is-active:focus-visible,
.llw-single__tab.is-active:active {
	background: #fff !important;
	color: var(--llw-text);
}

.llw-single__panel {
	display: none;
	padding: 1.5rem 1.75rem 1.75rem;
}

.llw-single__panel.is-active {
	display: block;
}

.llw-single__panel h2 {
	margin: 0 0 1rem;
	font-size: 1.15rem;
	font-weight: 800;
}

.llw-single__panel h3,
.llw-single__desc-content h3 {
	margin: 0.75rem 0 0.3rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--llw-text);
}

.llw-single__desc-content > h3:first-child {
	margin-top: 0;
}

.llw-single__desc-content p {
	margin: 0 0 0.35rem;
	line-height: 1.38;
}

.llw-single__desc-content p:last-child {
	margin-bottom: 0;
}

.llw-single__panel p,
.llw-single__panel li {
	font-size: 0.92rem;
	color: #475569;
	line-height: 1.38;
}

.llw-single__desc-wrap {
	position: relative;
	text-align: center;
}

.llw-single__desc-scroll {
	overflow: hidden;
	transition: max-height 0.35s ease;
	text-align: left;
}

.llw-single__desc-fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2.75rem;
	height: 3.5rem;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 78%);
	pointer-events: none;
}

.llw-single__desc-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0.85rem auto 0;
	padding: 0.42rem 0.95rem;
	border: 1px solid rgba(227, 6, 19, 0.4);
	border-radius: 999px;
	background: rgba(227, 6, 19, 0.07);
	color: var(--llw-red);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.llw-single__desc-more:hover {
	background: rgba(227, 6, 19, 0.12);
	border-color: rgba(227, 6, 19, 0.55);
}

.llw-single__desc-more:focus,
.llw-single__desc-more:focus-visible,
.llw-single__desc-more:active {
	outline: none;
	box-shadow: none;
}

.llw-single__desc-wrap.is-expanded .llw-single__desc-fade,
.llw-single__desc-wrap.is-expanded .llw-single__desc-more {
	display: none;
}

.llw-single__specs {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.llw-single__specs th,
.llw-single__specs td {
	padding: 0.65rem 0.85rem;
	border-bottom: 1px solid var(--llw-border);
	text-align: left;
	vertical-align: top;
}

.llw-single__specs th {
	width: 42%;
	font-weight: 600;
	color: var(--llw-muted);
	background: #f8fafc;
}

.llw-single__specs tr:last-child th,
.llw-single__specs tr:last-child td {
	border-bottom: 0;
}

.llw-single__specs td {
	color: var(--llw-text);
	font-weight: 500;
}

.llw-single__specs-wrap {
	position: relative;
	text-align: center;
}

.llw-single__specs-scroll {
	overflow: hidden;
	transition: max-height 0.35s ease;
	text-align: left;
}

.llw-single__specs-fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2.75rem;
	height: 3.5rem;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 78%);
	pointer-events: none;
}

.llw-single__specs-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0.85rem auto 0;
	padding: 0.42rem 0.95rem;
	border: 1px solid rgba(227, 6, 19, 0.4);
	border-radius: 999px;
	background: rgba(227, 6, 19, 0.07);
	color: var(--llw-red);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.llw-single__specs-more:hover {
	background: rgba(227, 6, 19, 0.12);
	border-color: rgba(227, 6, 19, 0.55);
}

.llw-single__specs-wrap.is-expanded .llw-single__specs-fade,
.llw-single__specs-wrap.is-expanded .llw-single__specs-more {
	display: none;
}

.llw-single__price .woocommerce-Price-amount,
.llw-single__price-public-val .woocommerce-Price-amount {
	font: inherit;
	font-weight: inherit;
	color: inherit;
}

.llw-single__gallery .onsale {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 3;
}

.llw-single__wish.is-active {
	color: #e11d48;
	border-color: #fecdd3;
	background: #fff1f2;
}

.llw-single__crumb .woocommerce-breadcrumb {
	margin: 0;
}

.llw-single__crumb .woocommerce-breadcrumb a {
	color: var(--llw-muted);
	text-decoration: none;
}

.llw-single__desc-content > :first-child {
	margin-top: 0;
}

.llw-single__tab[disabled] {
	opacity: 0.45;
	cursor: not-allowed;
}

@media (max-width: 900px) {
	.llw-single__hero {
		grid-template-columns: 1fr;
	}

	.llw-single__gallery {
		position: static;
		max-width: min(100%, 560px);
		margin: 0 auto;
		justify-self: center;
	}

	.llw-single__intro {
		padding-right: 0;
		padding-top: 0;
	}

	.llw-single__head-aside {
		position: static;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		margin-bottom: 0.65rem;
	}

	.llw-single__eu-stack {
		flex-direction: row;
		width: auto;
	}
}

@media (max-width: 640px) {
	.llw-single__highlights {
		grid-template-columns: 1fr;
		gap: 1.1rem;
	}

	.llw-single__excerpt .llw-single__highlights {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.llw-single {
		padding: 1.15rem 1rem 2.75rem;
	}

	.llw-single__title {
		font-size: clamp(1.5rem, 5.8vw, 1.69rem);
		line-height: 1.24;
	}

	.llw-single__price {
		font-size: clamp(1.5rem, 5.4vw, 1.84rem);
	}

	.llw-single__price-public {
		font-size: 0.82rem;
	}

	.llw-single__summary {
		padding: 1.25rem 1.15rem;
	}

	.llw-single__purchase form.cart {
		flex-wrap: wrap;
	}

	.llw-single__purchase .single_add_to_cart_button {
		flex: 1 1 100%;
	}
}
