/* ── TVFL Single Product Widget ───────────────────────────────────────────── */

/*
 * Reset override — site reset.css sets background-color:#c36 on button:hover.
 * Neutralise it for every button inside this widget; specific rules below
 * override this with their own intended background-color.
 */
.tvfl-spp-wrap button:hover,
.tvfl-spp-wrap button:focus,
.tvfl-spp-popup button:hover,
.tvfl-spp-popup button:focus {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}

/* ── Two-column layout ─────────────────────────────────────────────────────── */

.tvfl-spp-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
	color: var(--e-global-color-secondary);
}

/* Tablet: slightly tighter gap, keep two equal columns */
@media (max-width: 1100px) and (min-width: 769px) {
	.tvfl-spp-wrap {
		grid-template-columns: 1fr 1fr !important;
		gap: 28px !important;
	}
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
	.tvfl-spp-wrap {
		grid-template-columns: 1fr !important;
		gap: 28px !important;
	}
}

/* ── Breadcrumb ────────────────────────────────────────────────────────────── */

.tvfl-spp-breadcrumb {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 0.9rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.4;
	margin-bottom: 16px;
}

.tvfl-spp-breadcrumb a {
	color: var(--e-global-color-secondary);
	text-decoration: none;
	transition: opacity 0.15s ease;
}

.tvfl-spp-breadcrumb a:hover {
	color: var(--e-global-color-secondary);
	opacity: 0.75;
	text-decoration: none;
}

/* Product title — last span, not the separator */
.tvfl-spp-breadcrumb span:not(.tvfl-spp-crumb-sep) {
	color: var(--e-global-color-primary);
}

.tvfl-spp-crumb-sep {
	margin: 0 6px;
	color: var(--e-global-color-secondary);
	opacity: 0.4;
}

/* ── Gallery ───────────────────────────────────────────────────────────────── */

.tvfl-spp-gallery {
	margin-bottom: 28px;
}

.tvfl-spp-active-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0;
	margin-bottom: 12px;
}

.tvfl-spp-active-img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 8px;
	flex: 1;
	min-width: 0;
}

/* Editor preview placeholder */
.tvfl-spp-active-placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 8px;
}

/* Gallery navigation arrows */
.tvfl-spp-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: none;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: var(--e-global-color-secondary);
	cursor: pointer;
	padding: 0;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.tvfl-spp-nav:hover {
	background: rgba(0, 0, 0, 0.7);
}

.tvfl-spp-nav svg {
	width: 20px;
	height: 20px;
	display: block;
}

.tvfl-spp-nav--prev {
	left: 10px;
}

.tvfl-spp-nav--next {
	right: 10px;
}

.tvfl-spp-nav.tvfl-spp-nav--hidden {
	opacity: 0;
	pointer-events: none;
}

/* Thumbnails */
.tvfl-spp-thumbs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.tvfl-spp-thumb {
	width: 80px;
	height: 80px;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	background: none;
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.tvfl-spp-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tvfl-spp-thumb.active,
.tvfl-spp-thumb:hover {
	border-color: var(--e-global-color-primary);
}

/* Editor thumbnail placeholder */
.tvfl-spp-thumb-placeholder {
	width: 80px;
	height: 80px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
}

/* ── Feature Highlights ────────────────────────────────────────────────────── */

.tvfl-spp-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 28px;
}

@media (max-width: 768px) {
	.tvfl-spp-features {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 480px) {
	.tvfl-spp-features {
		grid-template-columns: 1fr;
	}
}

.tvfl-spp-feat-card {
	background: rgba(255, 255, 255, 0.04);
	border-radius: 8px;
	padding: 16px 14px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
}

.tvfl-spp-feat-icon {
	color: var(--e-global-color-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.tvfl-spp-feat-icon svg {
	width: 40px;
	height: 40px;
	display: block;
}

.tvfl-spp-feat-body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tvfl-spp-feat-title {
	margin: 0;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--e-global-color-secondary);
	line-height: 1.3;
}

.tvfl-spp-feat-text {
	margin: 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.4;
}

/* ── Product Details & Care (2 columns) ────────────────────────────────────── */

.tvfl-spp-info-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

@media (max-width: 580px) {
	.tvfl-spp-info-grid {
		grid-template-columns: 1fr;
	}
}

.tvfl-spp-info-heading {
	margin: 0 0 12px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--e-global-color-secondary);
}

.tvfl-spp-details-list,
.tvfl-spp-care-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tvfl-spp-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
}

.tvfl-spp-check-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	margin-top: 1px;
	color: var(--e-global-color-primary);
}

.tvfl-spp-check-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.tvfl-spp-care-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
}

.tvfl-spp-care-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.6);
}

.tvfl-spp-care-icon svg {
	width: 22px;
	height: 22px;
	display: block;
}

/* ── RIGHT COLUMN ──────────────────────────────────────────────────────────── */

.tvfl-spp-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 1px solid rgba(150, 150, 150, 0.35);
	border-radius: 5px;
	padding: 15px;
}

/* Separator between price and options form */
.tvfl-spp-right form.cart,
.tvfl-spp-right form.variations_form {
	border-top: 1px solid rgba(150, 150, 150, 0.35);
	padding-top: 16px;
	margin-top: 0;
}

/* ── Category ──────────────────────────────────────────────────────────────── */

.tvfl-spp-category {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--e-global-color-primary);
}

/* ── Title ─────────────────────────────────────────────────────────────────── */

.tvfl-spp-title {
	margin: 0;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--e-global-color-secondary);
}

/* ── Rating ────────────────────────────────────────────────────────────────── */

.tvfl-spp-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.tvfl-spp-stars {
	display: inline-flex;
	gap: 2px;
}

.tvfl-spp-star {
	font-size: 1.1rem;
	line-height: 1;
}

.tvfl-spp-star--full,
.tvfl-spp-star--half {
	color: var(--e-global-color-primary);
}

.tvfl-spp-star--empty {
	color: rgba(255, 255, 255, 0.3);
}

.tvfl-spp-avg {
	font-weight: 700;
	font-size: 0.9375rem;
}

.tvfl-spp-review-count {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
}

/* ── Price ─────────────────────────────────────────────────────────────────── */

.tvfl-spp-price-wrap {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tvfl-spp-price {
	font-size: 30px;
	font-weight: 700;
	color: var(--e-global-color-secondary);
	line-height: 1.1;
}

/* WooCommerce sale price markup */
.tvfl-spp-price del {
	color: rgba(255, 255, 255, 0.4);
	font-size: 0.65em;
	font-weight: 400;
	margin-right: 4px;
}

.tvfl-spp-price ins {
	text-decoration: none;
}

.tvfl-spp-price .woocommerce-Price-amount {
	color: inherit;
}

.tvfl-spp-price-range {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
}

/* ── Sections (logo picker, colors, sizes, qty) ────────────────────────────── */

.tvfl-spp-section {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tvfl-spp-section-title {
	margin-top: 20px;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.8);
}

/* ── Sport Logo Picker ─────────────────────────────────────────────────────── */

.tvfl-spp-logos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.tvfl-spp-logo-item {
	padding: 0;
	border: 1px solid rgba(150, 150, 150, 0.35);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.04);
	cursor: pointer;
	overflow: hidden;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.tvfl-spp-logo-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 8px;
	box-sizing: border-box;
}

.tvfl-spp-logo-item:hover {
	border-color: rgba(150, 150, 150, 0.7);
}

.tvfl-spp-logo-item.active {
	border-color: var(--e-global-color-primary);
	background: color-mix(in srgb, var(--e-global-color-primary) 8%, transparent);
}

/* ── Color Swatches ────────────────────────────────────────────────────────── */

.tvfl-spp-colors {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Wrapper button — no visible chrome, just layout */
.tvfl-spp-color-opt {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

/* Circle swatch — this is the clickable visual */
.tvfl-spp-color-swatch {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	box-sizing: border-box;
	border: 1px solid transparent;
	outline: 1px solid transparent;
	outline-offset: 2px;
	transition: border-color 0.2s ease, outline-color 0.2s ease;
}

/* Light swatches get a subtle inner border to stay visible on dark bg */
.tvfl-spp-color-opt--light .tvfl-spp-color-swatch {
	border-color: rgba(0, 0, 0, 0.2);
}

/* Hover */
.tvfl-spp-color-opt:hover .tvfl-spp-color-swatch {
	outline-color: var(--e-global-color-primary);
}

/* Selected */
.tvfl-spp-color-opt.active .tvfl-spp-color-swatch {
	outline-color: var(--e-global-color-primary);
	border-color: var(--e-global-color-primary);
}

/* Color name below the swatch */
.tvfl-spp-color-name {
	color: var(--e-global-color-secondary);
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2;
	white-space: nowrap;
}

/* ── Size Buttons ──────────────────────────────────────────────────────────── */

.tvfl-spp-sizes {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tvfl-spp-size-opt {
	min-width: 48px;
	padding: 7px 14px;
	border: 2px solid rgba(150, 150, 150, 0.35);
	border-radius: 5px;
	background: none;
	color: var(--e-global-color-secondary);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	text-align: center;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.tvfl-spp-size-opt:hover:not(.disabled) {
	border-color: var(--e-global-color-primary);
	color: var(--e-global-color-primary);
}

.tvfl-spp-size-opt.active {
	background-color: var(--e-global-color-primary);
	border-color: var(--e-global-color-primary);
	color: var(--e-global-color-secondary);
}

.tvfl-spp-size-opt.disabled {
	opacity: 0.35;
	cursor: not-allowed;
	text-decoration: line-through;
}

/* ── Quantity ──────────────────────────────────────────────────────────────── */

.tvfl-spp-qty {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	border: 1px solid rgba(150, 150, 150, 0.35);
	border-radius: 6px;
	overflow: hidden;
}

.tvfl-spp-qty-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 44px;
	border: none;
	background: rgba(255, 255, 255, 0.06);
	color: var(--e-global-color-secondary);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
	padding: 0;
	flex-shrink: 0;
}

.tvfl-spp-qty-btn:hover {
	background: rgba(255, 255, 255, 0.14);
}

.tvfl-spp-qty-input {
	width: 100px !important;
	height: 44px;
	border: none !important;
	border-left: 1px solid rgba(150, 150, 150, 0.35);
	border-right: 1px solid rgba(150, 150, 150, 0.35);
	background: transparent;
	color: var(--e-global-color-secondary);
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
	padding: 0;
}

.tvfl-spp-qty-input::-webkit-inner-spin-button,
.tvfl-spp-qty-input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
}

.tvfl-spp-qty-input:focus {
	outline: none;
}

/* Stock inline (under quantity, single line) */
.tvfl-spp-stock-inline {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.tvfl-spp-stock {
	font-size: 0.8125rem;
	font-weight: 600;
}

.tvfl-spp-stock--in {
	color: #22c55e;
}

.tvfl-spp-stock--out {
	color: #ef4444;
}

.tvfl-spp-stock-dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #22c55e;
	flex-shrink: 0;
}

.tvfl-spp-stock-sep {
	color: rgba(255, 255, 255, 0.3);
	font-size: 0.8125rem;
}

.tvfl-spp-ship-text {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.55);
}

/* ── Add to Cart Button ────────────────────────────────────────────────────── */

.tvfl-spp-atc-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 20px;
	border: none;
	border-radius: 6px;
	background-color: var(--e-global-color-primary);
	color: var(--e-global-color-secondary);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.tvfl-spp-atc-btn:hover:not(:disabled) {
	background-color: color-mix(in srgb, var(--e-global-color-primary) 85%, #000);
}

.tvfl-spp-atc-btn:disabled,
.tvfl-spp-atc-btn.disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.tvfl-spp-btn-icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.tvfl-spp-btn-icon svg {
	width: 20px;
	height: 20px;
	display: block;
}

/* ── Team Order Button ─────────────────────────────────────────────────────── */

.tvfl-spp-team-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 12px 20px;
	border: 2px solid rgba(255, 255, 255, 0.25);
	border-radius: 6px;
	background: transparent;
	color: var(--e-global-color-secondary);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.tvfl-spp-team-btn:hover {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.05);
}

/* ── Trust Bar ─────────────────────────────────────────────────────────────── */

.tvfl-spp-trust {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	flex-wrap: wrap;
}

.tvfl-spp-trust-item {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1;
	min-width: 80px;
	justify-content: center;
}

.tvfl-spp-trust-icon {
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.45);
}

.tvfl-spp-trust-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}

.tvfl-spp-trust-text {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.55);
	white-space: nowrap;
}

/* ── Hidden WC selects ─────────────────────────────────────────────────────── */

.tvfl-spp-hidden-select {
	display: none !important;
}

/* ── Team Order Popup ──────────────────────────────────────────────────────── */

.tvfl-spp-popup {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
	align-items: center;
	justify-content: center;
}

.tvfl-spp-popup.open {
	display: flex;
}

.tvfl-spp-popup-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	cursor: pointer;
}

.tvfl-spp-popup-dialog {
	position: relative;
	z-index: 1;
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 10px;
	padding: 32px;
	width: min(520px, calc(100vw - 32px));
	max-height: calc(100vh - 40px);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
	box-sizing: border-box;
}

.tvfl-spp-popup-close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: background-color 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.tvfl-spp-popup-close:hover {
	background: rgba(255, 255, 255, 0.16);
	color: var(--e-global-color-secondary);
}

.tvfl-spp-popup-close svg {
	width: 16px;
	height: 16px;
	display: block;
}

.tvfl-spp-popup-heading {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--e-global-color-secondary);
	padding-right: 32px;
}

.tvfl-spp-popup-product {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.tvfl-spp-popup-img {
	width: 64px;
	height: 64px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}

.tvfl-spp-popup-pname {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--e-global-color-secondary);
	line-height: 1.3;
}

.tvfl-spp-popup-pprice {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 4px;
}

/* Form styles */
.tvfl-spp-popup-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tvfl-spp-popup-row {
	display: grid;
	grid-template-columns: 1fr;
}

.tvfl-spp-popup-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tvfl-spp-popup-field label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
}

.tvfl-spp-popup-field label span {
	color: var(--e-global-color-primary);
}

.tvfl-spp-popup-field input,
.tvfl-spp-popup-field textarea {
	width: 100%;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	color: var(--e-global-color-secondary);
	font-size: 0.9375rem;
	font-family: inherit;
	box-sizing: border-box;
	transition: border-color 0.2s ease;
}

.tvfl-spp-popup-field input:focus,
.tvfl-spp-popup-field textarea:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.45);
}

.tvfl-spp-popup-field textarea {
	resize: vertical;
	min-height: 90px;
}

.tvfl-spp-popup-status {
	font-size: 0.875rem;
	min-height: 22px;
	line-height: 1.4;
}

.tvfl-spp-popup-status.success {
	color: #22c55e;
}

.tvfl-spp-popup-status.error {
	color: #ef4444;
}

.tvfl-spp-popup-submit {
	width: 100%;
	padding: 13px 20px;
	border: none;
	border-radius: 6px;
	background-color: var(--e-global-color-primary);
	color: var(--e-global-color-secondary);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.tvfl-spp-popup-submit:hover:not(:disabled) {
	background-color: color-mix(in srgb, var(--e-global-color-primary) 85%, #000);
}

.tvfl-spp-popup-submit:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

/* ── Responsive: Tablet (769px – 1100px) ──────────────────────────────────── */

@media (max-width: 1100px) and (min-width: 769px) {
	.tvfl-spp-title {
		font-size: 26px !important;
	}
	.tvfl-spp-price {
		font-size: 26px !important;
	}
	.tvfl-spp-right {
		padding: 14px !important;
	}
	.tvfl-spp-thumb,
	.tvfl-spp-thumb-placeholder {
		width: 68px;
		height: 68px;
	}
	.tvfl-spp-color-swatch {
		width: 42px;
		height: 42px;
	}
}

/* ── Responsive: Mobile (≤768px) ──────────────────────────────────────────── */

@media (max-width: 768px) {
	.tvfl-spp-title {
		font-size: 24px !important;
	}
	.tvfl-spp-price {
		font-size: 24px !important;
	}
	.tvfl-spp-right {
		padding: 14px !important;
		gap: 16px !important;
	}
	.tvfl-spp-section-title {
		margin-top: 12px !important;
	}
	.tvfl-spp-logos {
		grid-template-columns: repeat(4, 1fr) !important;
	}
	.tvfl-spp-color-swatch {
		width: 40px;
		height: 40px;
	}
	.tvfl-spp-qty-input {
		width: 72px !important;
	}
	.tvfl-spp-trust-text {
		font-size: 0.7rem;
	}
	.tvfl-spp-trust-item {
		min-width: 70px;
	}
}

/* ── Responsive: Small Mobile (≤480px) ────────────────────────────────────── */

@media (max-width: 480px) {
	.tvfl-spp-title {
		font-size: 22px !important;
	}
	.tvfl-spp-price {
		font-size: 22px !important;
	}
	.tvfl-spp-right {
		padding: 12px !important;
		gap: 14px !important;
	}
	.tvfl-spp-logos {
		grid-template-columns: repeat(3, 1fr) !important;
	}
	.tvfl-spp-thumb,
	.tvfl-spp-thumb-placeholder {
		width: 62px;
		height: 62px;
	}
	.tvfl-spp-atc-btn {
		font-size: 0.875rem !important;
		padding: 12px 16px !important;
	}
	.tvfl-spp-team-btn {
		font-size: 0.8125rem !important;
		padding: 11px 16px !important;
	}
	.tvfl-spp-popup-dialog {
		padding: 24px 18px !important;
	}
	.tvfl-spp-popup-heading {
		font-size: 1rem !important;
	}
	.tvfl-spp-trust {
		gap: 8px;
	}
}

/* ── Responsive: Extra Small (≤380px) ─────────────────────────────────────── */

@media (max-width: 380px) {
	.tvfl-spp-title {
		font-size: 20px !important;
	}
	.tvfl-spp-price {
		font-size: 20px !important;
	}
	.tvfl-spp-logos {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.tvfl-spp-qty-input {
		width: 60px !important;
	}
	.tvfl-spp-trust-item {
		flex-direction: column;
		align-items: center;
		gap: 3px;
	}
	.tvfl-spp-popup-dialog {
		padding: 20px 14px !important;
	}
}
