/**
 * vapes-shop WooCommerce phase two.
 *
 * This stylesheet intentionally extends the compiled phase-one stylesheet.
 */

:root {
	--vs-carbon: #121212;
	--vs-neon: #00ff88;
	--vs-neon-dark: #009b57;
	--vs-price: #0066cc;
	--vs-soft: #f4f5f4;
	--vs-muted: #686d6a;
	--vs-line: rgba(18, 18, 18, 0.11);
	--vs-danger: #b42318;
	--vs-radius: 24px;
}

.vs-shop-page .section-space,
.vs-single-product-page .section-space {
	padding-top: 3rem;
}

.vs-shop-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
}

.vs-shop-header h1 {
	font-size: clamp(2.3rem, 6vw, 4.8rem);
	line-height: 0.98;
}

.vs-shop-header__trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.5rem;
	max-width: 520px;
}

.vs-shop-header__trust span,
.vs-checkout-trust span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0.4rem 0.8rem;
	border: 1px solid var(--vs-line);
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
}

.vs-shop-page .term-description,
.vs-shop-page .page-description {
	max-width: 800px;
	margin: 0 0 2rem;
	color: var(--vs-muted);
	line-height: 1.75;
}

.vs-seo-intro {
	max-width: 880px;
	margin: -0.75rem 0 2rem;
	padding: 1.1rem 1.25rem;
	border-left: 3px solid var(--vs-neon);
	border-radius: 0 16px 16px 0;
	background: var(--vs-soft);
}

.vs-seo-intro h2 {
	margin-bottom: 0.35rem;
	font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.vs-seo-intro p {
	margin: 0;
	color: var(--vs-muted);
	line-height: 1.65;
}

.vs-catalog-layout {
	display: grid;
	grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: start;
}

.vs-catalog-filters {
	position: sticky;
	top: 126px;
	border: 1px solid var(--vs-line);
	border-radius: var(--vs-radius);
	background: #fff;
	overflow: hidden;
}

.vs-filter-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem;
	background: var(--vs-carbon);
	color: #fff;
}

.vs-filter-heading h2 {
	font-size: 1.1rem;
}

.vs-filter-heading a {
	color: var(--vs-neon);
	font-size: 0.75rem;
	font-weight: 800;
	text-decoration: none;
}

.vs-filter-form {
	padding: 0 1.25rem 1.25rem;
}

.vs-filter-group {
	margin: 0;
	padding: 1.25rem 0;
	border: 0;
	border-bottom: 1px solid var(--vs-line);
}

.vs-filter-group legend {
	width: 100%;
	margin: 0 0 0.9rem;
	padding: 0;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.vs-price-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem;
}

.vs-price-fields label span {
	display: block;
	margin-bottom: 0.3rem;
	color: var(--vs-muted);
	font-size: 0.7rem;
	font-weight: 700;
}

.vs-price-fields input {
	width: 100%;
	min-width: 0;
	height: 42px;
	padding: 0 0.6rem;
	border: 1px solid var(--vs-line);
	border-radius: 10px;
	background: var(--vs-soft);
	font-size: 0.8rem;
}

.vs-filter-options {
	display: grid;
	gap: 0.65rem;
}

.vs-filter-group--collapsible > legend {
	margin: 0;
}

.vs-filter-group--collapsible > legend.screen-reader-text {
	width: 1px;
	max-width: 1px;
}

.vs-filter-disclosure > summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 28px;
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.07em;
	list-style: none;
	text-transform: uppercase;
}

.vs-filter-disclosure > summary::-webkit-details-marker {
	display: none;
}

.vs-filter-disclosure__icon {
	width: 9px;
	height: 9px;
	flex: 0 0 auto;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.vs-filter-disclosure[open] .vs-filter-disclosure__icon {
	transform: rotate(225deg);
}

.vs-filter-disclosure .vs-filter-options {
	max-height: min(48vh, 380px);
	margin-top: 0.9rem;
	padding-right: 0.35rem;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-color: rgba(18, 18, 18, 0.3) transparent;
	scrollbar-width: thin;
}

.vs-filter-disclosure .vs-filter-options::-webkit-scrollbar {
	width: 6px;
}

.vs-filter-disclosure .vs-filter-options::-webkit-scrollbar-thumb {
	border-radius: 999px;
	background: rgba(18, 18, 18, 0.3);
}

.vs-filter-options label {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 0.6rem;
	cursor: pointer;
	font-size: 0.86rem;
}

.vs-filter-options input {
	width: 17px;
	height: 17px;
	accent-color: var(--vs-carbon);
}

.vs-filter-options small {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 0.3rem;
	border-radius: 999px;
	background: var(--vs-soft);
	color: var(--vs-muted);
	font-size: 0.65rem;
	font-weight: 800;
}

.vs-filter-submit {
	width: 100%;
	margin-top: 1.25rem;
}

.vs-filter-toggle {
	display: none;
	width: 100%;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin: 0 0 1rem;
	border-radius: 999px;
	background: var(--vs-carbon);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 800;
}

.vs-catalog {
	min-width: 0;
}

.vs-catalog-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 60px;
	margin-bottom: 1.5rem;
	padding: 0.45rem 0.55rem 0.45rem 1.1rem;
	border: 1px solid var(--vs-line);
	border-radius: 16px;
	background: var(--vs-soft);
}

.vs-catalog-toolbar .woocommerce-result-count,
.vs-catalog-toolbar .woocommerce-ordering {
	float: none;
	margin: 0;
}

.vs-catalog-toolbar__actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.vs-catalog-toolbar .woocommerce-ordering select {
	min-height: 44px;
	border: 1px solid var(--vs-line);
	background: #fff;
}

.vs-view-switcher {
	display: flex;
	gap: 0.2rem;
	padding: 0.2rem;
	border: 1px solid var(--vs-line);
	border-radius: 999px;
	background: #fff;
}

.vs-view-switcher button {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--vs-muted);
	font-size: 1.25rem;
}

.vs-view-switcher button.is-active {
	background: var(--vs-carbon);
	color: var(--vs-neon);
}

.woocommerce .vs-catalog ul.products {
	display: grid;
	width: 100%;
	min-width: 0;
	margin: 0 !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.woocommerce .vs-catalog ul.products li.product.vs-product-card {
	display: flex;
	float: none !important;
	width: auto !important;
	min-width: 0;
	max-width: 100%;
	margin: 0 !important;
	flex-direction: column;
	padding: 0;
	border-radius: 20px;
	overflow: hidden;
}

.vs-product-card__media {
	position: relative;
	overflow: hidden;
	background: var(--vs-soft);
}

.woocommerce .vs-catalog ul.products li.product .vs-product-card__media a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0;
	border-radius: 0;
	object-fit: contain;
	transition: opacity 0.35s ease, transform 0.55s ease;
}

.vs-product-card__image--secondary {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.vs-product-card:hover .vs-product-card__image--primary {
	opacity: 0;
	transform: scale(1.025);
}

.vs-product-card:hover .vs-product-card__image--secondary {
	opacity: 1;
	transform: scale(1.025);
}

.vs-product-card__body {
	display: flex;
	min-width: 0;
	flex: 1;
	flex-direction: column;
	padding: 0.85rem;
}

.vs-product-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
	min-height: 22px;
	margin-bottom: 0.4rem;
}

.vs-product-card__meta span {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 0.2rem 0.5rem;
	border-radius: 999px;
	background: var(--vs-soft);
	color: var(--vs-muted);
	font-size: 0.65rem;
	font-weight: 800;
}

.vs-product-card__title-link {
	text-decoration: none;
}

.woocommerce .vs-catalog ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.55em;
	font-size: 0.95rem;
	line-height: 1.3;
}

.vs-product-card__rating {
	min-height: 18px;
	margin-top: 0.3rem;
}

.vs-product-card__rating:not(:has(.star-rating)) {
	display: none;
	min-height: 0;
	margin: 0;
}

.vs-product-card__rating .star-rating {
	float: none;
	margin: 0;
	font-size: 0.7rem;
}

.vs-product-card__price {
	margin-top: 0.35rem;
	color: var(--vs-price);
}

.vs-product-card__price .price {
	margin: 0 !important;
	color: inherit;
	font-size: 1.05rem !important;
	font-weight: 900;
}

.vs-product-card__price .woocommerce-Price-amount {
	color: inherit;
}

.vs-product-card__price del {
	margin-right: 0.25rem;
	color: var(--vs-muted);
	font-weight: 600;
	opacity: 0.7;
}

.vs-product-card__price ins {
	color: var(--vs-danger);
	text-decoration: none;
}

.vs-product-card__action {
	margin-top: auto;
}

.woocommerce .vs-product-card__action .button {
	width: 100%;
	max-width: 100%;
	margin-top: 0.6rem !important;
	white-space: normal;
	overflow-wrap: anywhere;
	text-align: center;
}

.vs-stock-status {
	display: grid;
	gap: 0.08rem;
	margin: 0.4rem 0 0;
	font-size: 0.72rem;
	line-height: 1.35;
}

.vs-stock-status.is-in strong {
	color: #087a48;
}

.vs-stock-status.is-in span {
	color: var(--vs-muted);
}

.vs-stock-status.is-out {
	color: var(--vs-danger);
	font-weight: 800;
}

.vs-stock-status.is-pending {
	color: var(--vs-muted);
	font-weight: 800;
}

.vs-product-badges {
	position: absolute;
	z-index: 5;
	top: 0.8rem;
	left: 0.8rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	max-width: calc(100% - 1.6rem);
}

.vs-product-badges,
.woocommerce span.onsale {
	display: none !important;
}

.vs-single-product__summary .vs-product-badges {
	position: static;
	margin-bottom: 1rem;
}

.vs-badge {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
	background: var(--vs-carbon);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 4px 14px rgba(18, 18, 18, 0.15);
}

.vs-badge--sale {
	background: #ff455f;
}

.vs-badge--new {
	background: var(--vs-neon);
	color: var(--vs-carbon);
}

.vs-badge--bestseller {
	background: var(--vs-carbon);
	color: var(--vs-neon);
}

.vs-catalog.vs-view-list ul.products {
	display: grid;
	grid-template-columns: 1fr;
}

.woocommerce .vs-catalog.vs-view-list ul.products li.product.vs-product-card {
	display: grid;
	grid-template-columns: minmax(180px, 260px) 1fr;
}

.vs-view-list .vs-product-card__body {
	padding: clamp(1.2rem, 3vw, 2rem);
}

.vs-view-list .vs-product-card__action {
	max-width: 260px;
}

.vs-view-list .vs-product-card__meta,
.vs-view-list .vs-product-card__rating,
.vs-view-list .vs-stock-status {
	min-height: 0;
}

/* Single product. */
.woocommerce div.product.vs-single-product {
	display: block;
}

.vs-single-product__main {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: clamp(2rem, 4vw, 4rem);
	align-items: start;
}

.vs-single-product__gallery,
.vs-single-product__summary {
	min-width: 0;
}

.woocommerce div.product .vs-single-product__gallery div.images {
	float: none;
	width: 100%;
	margin: 0;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
	overflow: hidden;
	border-radius: 18px;
	background: #f7f8f7;
}

.woocommerce div.product .flex-control-thumbs {
	display: flex;
	gap: 0.625rem;
	overflow-x: auto;
	padding: 0.1rem 0.1rem 0.4rem;
	margin-top: 0.75rem;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
}

.woocommerce div.product .flex-control-thumbs li {
	float: none;
	width: 72px;
	flex: 0 0 72px;
	scroll-snap-align: start;
}

.woocommerce div.product .flex-control-thumbs img {
	border: 2px solid transparent;
	border-radius: 12px;
}

.woocommerce div.product .flex-control-thumbs img.flex-active {
	border-color: var(--vs-neon-dark);
}

.woocommerce div.product .vs-single-product__summary {
	position: sticky;
	top: 126px;
	float: none;
	width: 100%;
	margin: 0;
	padding: clamp(1.25rem, 2vw, 1.6rem);
	border: 1px solid rgba(18, 18, 18, 0.08);
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(18, 18, 18, 0.07);
}

.woocommerce div.product .vs-single-product__summary .product_title {
	max-width: none;
	font-size: clamp(2rem, 2.6vw, 2.5rem);
	line-height: 1.1;
}

.woocommerce div.product .vs-single-product__summary p.price,
.woocommerce div.product .vs-single-product__summary span.price {
	color: var(--vs-price);
	font-size: clamp(1.45rem, 3vw, 2rem);
}

.woocommerce div.product .vs-single-product__summary .woocommerce-product-details__short-description {
	margin-bottom: 1.5rem;
	color: var(--vs-muted);
	line-height: 1.75;
}

.woocommerce div.product .vs-single-product__summary .woocommerce-product-details__short-description.vs-is-collapsible {
	margin-bottom: 0.4rem;
}

.woocommerce div.product .vs-single-product__summary .woocommerce-product-details__short-description.vs-is-collapsible:not(.is-expanded) {
	max-height: 1.75em;
	overflow: hidden;
}

.woocommerce div.product .vs-single-product__summary .woocommerce-product-details__short-description.vs-is-collapsible.is-expanded {
	max-height: none;
}

.vs-summary-toggle:not([hidden]) {
	display: inline-flex;
	align-items: center;
	margin: 0 0 1.5rem;
	padding: 0.3rem 0;
	border: 0;
	border-bottom: 2px solid var(--vs-neon);
	background: transparent;
	color: var(--vs-carbon);
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1.25;
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.15rem;
}

.woocommerce div.product form.cart .button {
	min-height: 52px;
	flex: 1;
}

.woocommerce div.product form.cart .vs-buy-now-button {
	border-color: var(--vs-carbon);
	background: var(--vs-carbon);
	color: #fff;
}

.woocommerce div.product form.cart .vs-buy-now-button:hover {
	border-color: var(--vs-neon);
	background: var(--vs-neon);
	color: var(--vs-carbon);
}

.woocommerce div.product form.cart .variations {
	width: 100%;
	margin-bottom: 0.55rem;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	display: block;
	padding: 0 0 0.5rem;
	text-align: left;
}

.woocommerce div.product form.cart .variations select {
	width: 100%;
	min-height: 48px;
	padding: 0 1rem;
	border: 1px solid var(--vs-line);
	border-radius: 14px;
	background: #f7f8f7;
}

.vs-nicotine-warning {
	margin-bottom: 1.15rem;
	padding: 0.85rem 1rem;
	border-left: 4px solid #ff455f;
	border-radius: 0 12px 12px 0;
	background: #fff0f2;
	color: #751525;
	font-size: 0.78rem;
	line-height: 1.5;
}

.vs-product-whatsapp {
	margin: 1rem 0;
}

.vs-product-whatsapp__link {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	min-height: 64px;
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid #121212;
	border-radius: 14px;
	background: #25d366;
	color: #121212;
	text-decoration: none;
	transition:
		background-color 160ms ease,
		transform 160ms ease,
		box-shadow 160ms ease;
	box-shadow: 0 8px 22px rgba(37, 211, 102, 0.18);
}

.vs-product-whatsapp__link:hover,
.vs-product-whatsapp__link:focus-visible {
	background: #1fbd5a;
	color: #121212;
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(37, 211, 102, 0.24);
}

.vs-product-whatsapp__link:focus-visible {
	outline: 3px solid rgba(0, 255, 136, 0.42);
	outline-offset: 3px;
}

.vs-product-whatsapp__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	border: 2px solid #121212;
	border-radius: 999px;
	background: #121212;
	color: #fff;
	font-size: 0;
}

.vs-product-whatsapp__icon::before {
	content: "";
	display: block;
	width: 21px;
	height: 21px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.371-.272.297-1.04 1.016-1.04 2.479s1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.262.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.29.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.895 6.994c-.002 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.304-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.371-.272.297-1.04 1.016-1.04 2.479s1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.262.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.29.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.895 6.994c-.002 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.304-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.vs-product-whatsapp__copy {
	display: grid;
	gap: 0.05rem;
	min-width: 0;
}

.vs-product-whatsapp__copy strong {
	font-size: 0.95rem;
	line-height: 1.25;
}

.vs-product-whatsapp__copy small {
	font-size: 0.74rem;
	line-height: 1.35;
}

.vs-product-whatsapp__arrow {
	margin-left: auto;
	font-size: 1.35rem;
	font-weight: 900;
}

.vs-single-product__details {
	margin-top: clamp(3rem, 7vw, 6rem);
}

.woocommerce div.product .vs-product-tabs {
	margin: 0;
}

.woocommerce div.product .vs-product-tabs ul.tabs {
	gap: 0;
	overflow-x: auto;
	border-bottom: 1px solid var(--vs-line);
	white-space: nowrap;
}

.woocommerce div.product .vs-product-tabs ul.tabs li {
	flex: 0 0 auto;
	border: 0;
	border-bottom: 3px solid transparent;
	border-radius: 0;
	background: transparent;
	padding: 0.9rem 1.15rem;
}

.woocommerce div.product .vs-product-tabs ul.tabs li.active {
	border-bottom-color: var(--vs-neon);
	background: var(--vs-carbon);
	color: #fff;
}

.woocommerce div.product .vs-product-tabs .panel {
	max-width: 900px;
	padding: 2rem 0 3rem;
	line-height: 1.8;
}

.woocommerce div.product .related,
.woocommerce div.product .upsells {
	margin-top: 4rem;
}

.woocommerce div.product .related > h2,
.woocommerce div.product .upsells > h2 {
	margin-bottom: 2rem;
	font-size: clamp(1.8rem, 4vw, 3rem);
}

/* Shared cart, checkout and account page headers. */
.vs-commerce-page-header {
	margin-bottom: 2rem;
}

.vs-commerce-page-header h1 {
	font-size: clamp(2.3rem, 6vw, 4.5rem);
}

.vs-shipping-progress {
	margin-bottom: 1.5rem;
	padding: 1.2rem;
	border-radius: 16px;
	background: var(--vs-carbon);
	color: #fff;
}

.vs-shipping-progress p {
	margin: 0 0 0.75rem;
	font-size: 0.86rem;
	font-weight: 800;
}

.vs-shipping-progress p .woocommerce-Price-amount {
	color: var(--vs-neon);
}

.vs-shipping-progress__track {
	height: 8px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
}

.vs-shipping-progress__track span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--vs-neon);
	transition: width 0.35s ease;
}

/* Cart. */
.vs-cart-table-wrap {
	overflow-x: auto;
}

.woocommerce .vs-cart-page table.shop_table {
	border: 1px solid var(--vs-line);
	border-radius: 16px;
}

.woocommerce .vs-cart-page table.shop_table thead {
	background: var(--vs-soft);
}

.woocommerce .vs-cart-page table.shop_table td,
.woocommerce .vs-cart-page table.shop_table th {
	padding: 1rem;
}

.vs-cart-page .product-thumbnail img {
	width: 76px;
	height: 76px;
	border-radius: 12px;
	background: var(--vs-soft);
	object-fit: contain;
}

.vs-cart-page .product-name > a {
	font-weight: 800;
	text-decoration: none;
}

.vs-cart-page .product-remove a.remove {
	display: inline-flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #fff0f2;
	color: var(--vs-danger) !important;
}

.vs-cart-page td.actions {
	background: var(--vs-soft);
}

.vs-cart-page td.actions .coupon {
	display: flex;
	gap: 0.5rem;
}

.woocommerce .vs-cart-page td.actions .coupon .input-text {
	width: min(250px, 100%);
	min-height: 46px;
	padding: 0 1rem;
	border: 1px solid var(--vs-line);
	border-radius: 999px;
	background: #fff;
}

.woocommerce .vs-cart-page .cart-collaterals {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
	gap: 2rem;
	margin-top: 2rem;
}

.woocommerce .vs-cart-page .cart-collaterals .cart_totals {
	float: none;
	grid-column: 2;
	width: 100%;
	padding: 1.4rem;
	border: 1px solid var(--vs-line);
	border-radius: 18px;
}

.woocommerce .vs-cart-page .cart-collaterals .cart_totals h2 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.woocommerce .vs-cart-page .wc-proceed-to-checkout a.checkout-button {
	min-height: 54px;
	margin-bottom: 0;
	font-size: 0.95rem;
}

/* Checkout. */
.vs-checkout-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 1.2rem;
}

.woocommerce .vs-checkout-page form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.woocommerce .vs-checkout-page form.checkout > .col2-set {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	width: 100%;
}

.woocommerce .vs-checkout-page form.checkout > .col2-set .col-1,
.woocommerce .vs-checkout-page form.checkout > .col2-set .col-2 {
	float: none;
	width: 100%;
}

.woocommerce .vs-checkout-page .woocommerce-billing-fields,
.woocommerce .vs-checkout-page .woocommerce-shipping-fields,
.woocommerce .vs-checkout-page .woocommerce-additional-fields {
	padding: 1.4rem;
	border: 1px solid var(--vs-line);
	border-radius: 18px;
}

.woocommerce .vs-checkout-page h3 {
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.woocommerce .vs-checkout-order {
	position: sticky;
	top: 126px;
	padding: 1.4rem;
	border-radius: 20px;
	background: var(--vs-soft);
}

.vs-checkout-order__heading {
	margin-bottom: 1rem;
}

.vs-checkout-order__heading h2 {
	font-size: 1.55rem;
}

.vs-checkout-order__heading > p {
	margin-top: 0.5rem;
	color: var(--vs-muted);
	font-size: 0.75rem;
}

.vs-payment-preview {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-top: 0.9rem;
}

.vs-payment-preview span {
	display: inline-flex;
	min-height: 28px;
	align-items: center;
	padding: 0.25rem 0.55rem;
	border: 1px solid var(--vs-line);
	border-radius: 7px;
	background: #fff;
	font-size: 0.65rem;
	font-weight: 900;
}

.woocommerce .vs-checkout-order table.shop_table {
	background: #fff;
}

.woocommerce .vs-checkout-order #payment {
	background: #fff;
}

.woocommerce .vs-checkout-order #payment ul.payment_methods {
	padding: 1rem;
	border-bottom-color: var(--vs-line);
}

.woocommerce .vs-checkout-order #payment div.form-row {
	padding: 1rem;
}

.vs-age-confirmation {
	margin: 0 0 1rem !important;
	padding: 0.85rem;
	border: 1px solid #ffb5c0;
	border-radius: 12px;
	background: #fff0f2;
}

.vs-age-confirmation label {
	display: flex !important;
	align-items: flex-start;
	gap: 0.65rem;
	margin: 0 !important;
	font-size: 0.8rem !important;
	line-height: 1.45;
}

.vs-age-confirmation input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-top: 0.1rem;
	accent-color: var(--vs-carbon);
}

.woocommerce .vs-checkout-order #place_order {
	width: 100%;
	min-height: 54px;
}

/* My account. */
.vs-account-layout {
	display: grid;
	grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: start;
}

.woocommerce .vs-account-navigation .woocommerce-MyAccount-navigation,
.woocommerce .vs-account-content {
	float: none;
	width: 100%;
}

.vs-account-navigation {
	position: sticky;
	top: 126px;
	overflow: hidden;
	border: 1px solid var(--vs-line);
	border-radius: 18px;
	background: var(--vs-soft);
}

.vs-account-navigation ul {
	margin: 0;
	padding: 0.55rem;
	list-style: none;
}

.vs-account-navigation li a {
	display: block;
	padding: 0.8rem 0.9rem;
	border-radius: 11px;
	font-size: 0.86rem;
	font-weight: 800;
	text-decoration: none;
}

.vs-account-navigation li.is-active a,
.vs-account-navigation li a:hover {
	background: var(--vs-carbon);
	color: var(--vs-neon);
}

.vs-account-content {
min-height: 360px;
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--vs-line);
	border-radius: 20px;
}

.vs-account-content > * + * {
	margin-top: 1rem;
}

.vs-account-content a {
	font-weight: 700;
	text-decoration-color: var(--vs-neon-dark);
}

@media (max-width: 1199px) {
	.woocommerce .vs-catalog ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vs-single-product__main {
		grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
		gap: 2rem;
	}
}

@media (max-width: 899px) {
	.vs-shop-header {
		display: block;
	}

	.vs-shop-header__trust {
		justify-content: flex-start;
		margin-top: 1.2rem;
	}

	.vs-filter-toggle {
		display: flex;
	}

	.vs-catalog-layout {
		display: block;
	}

	.vs-catalog-filters {
		position: static;
		display: none;
		margin-bottom: 1.25rem;
	}

	.vs-catalog-filters.is-open {
		display: block;
	}

	.vs-single-product__main,
	.woocommerce .vs-checkout-page form.checkout {
		grid-template-columns: minmax(0, 1fr);
	}

	.woocommerce .vs-checkout-page form.checkout > .col2-set,
	.woocommerce .vs-checkout-page form.checkout > .vs-checkout-order {
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.woocommerce div.product .vs-single-product__summary,
	.woocommerce .vs-checkout-order {
		position: static;
	}

	.woocommerce .vs-cart-page .cart-collaterals {
		grid-template-columns: 1fr;
	}

	.woocommerce .vs-cart-page .cart-collaterals .cart_totals {
		grid-column: 1;
	}
}

@media (max-width: 639px) {
	.vs-shop-page .section-space,
	.vs-single-product-page .section-space {
		padding-top: 2rem;
	}

	.vs-shop-header__trust span:nth-child(2) {
		display: none;
	}

	.vs-catalog-toolbar {
		display: block;
		padding: 0.8rem;
	}

	.vs-catalog-toolbar__count {
		margin-bottom: 0.7rem;
	}

	.vs-catalog-toolbar__actions {
		justify-content: space-between;
	}

	.vs-catalog-toolbar .woocommerce-ordering {
		flex: 1;
	}

	.vs-catalog-toolbar .woocommerce-ordering select {
		width: 100%;
		max-width: 100%;
		font-size: 0.75rem;
	}

	.woocommerce .vs-catalog ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
	}

	.vs-product-card__body {
		padding: 0.8rem;
	}

	.woocommerce .vs-catalog ul.products li.product .woocommerce-loop-product__title {
		font-size: 0.8rem;
	}

	.vs-product-card__meta {
		display: none;
	}

	.vs-product-card__rating {
		display: none;
	}

	.vs-product-card__price .price {
		font-size: 0.88rem !important;
	}

	.vs-product-card .vs-stock-status span {
		display: none;
	}

	.vs-product-badges {
		top: 0.5rem;
		left: 0.5rem;
	}

	.vs-badge {
		min-height: 21px;
		padding: 0.2rem 0.45rem;
		font-size: 0.55rem;
	}

	.woocommerce .vs-product-card__action .button {
		min-height: 38px;
		padding: 0.45rem 0.4rem;
		font-size: 0.68rem;
	}

	.woocommerce .vs-catalog.vs-view-list ul.products li.product.vs-product-card {
		grid-template-columns: 120px 1fr;
	}

	.vs-view-list .vs-product-card__body {
		padding: 0.8rem;
	}

	.vs-view-list .vs-product-card__action {
		max-width: none;
	}

	.woocommerce div.product .vs-single-product__summary {
		padding: 1rem;
	}

	.woocommerce div.product form.cart .vs-buy-now-button {
		display: block;
		width: 100%;
		margin-top: 0.75rem;
	}

	.vs-product-whatsapp__link {
		min-height: 60px;
		padding: 0.7rem 0.85rem;
	}

	.woocommerce div.product .vs-product-tabs ul.tabs li {
		padding: 0.75rem 0.85rem;
		font-size: 0.75rem;
	}

	.vs-cart-page table.shop_table thead {
		display: none;
	}

	.woocommerce .vs-cart-page table.shop_table_responsive tr.cart_item {
		display: grid;
		grid-template-columns: 84px minmax(0, 1fr) auto;
		gap: 0.6rem;
		padding: 0.9rem;
		border-bottom: 1px solid var(--vs-line);
	}

	.woocommerce .vs-cart-page table.shop_table_responsive tr.cart_item td {
		display: block;
		padding: 0;
		border: 0;
		text-align: left !important;
	}

	.vs-cart-page .product-thumbnail {
		grid-row: 1 / span 3;
	}

	.vs-cart-page .product-remove {
		grid-column: 3;
		grid-row: 1;
	}

	.vs-cart-page .product-name {
		grid-column: 2;
		grid-row: 1;
		padding-right: 2rem !important;
	}

	.vs-cart-page .product-price {
		grid-column: 2;
		grid-row: 2;
	}

	.vs-cart-page .product-quantity {
		grid-column: 2;
		grid-row: 3;
	}

	.vs-cart-page .product-subtotal {
		display: none !important;
	}

	.vs-cart-page td.actions .coupon {
		display: grid;
		grid-template-columns: 1fr;
		margin-bottom: 0.7rem;
	}

	.woocommerce .vs-cart-page td.actions .coupon .input-text,
	.vs-cart-page td.actions .button {
		float: none !important;
		width: 100% !important;
	}

	.vs-account-layout {
		grid-template-columns: 1fr;
	}

	.vs-account-navigation {
		position: static;
	}

	.vs-account-navigation ul {
		display: flex;
		gap: 0.2rem;
		overflow-x: auto;
	}

	.vs-account-navigation li {
		flex: 0 0 auto;
	}
}

/* Refined single-product gallery and technical data presentation. */
@media (min-width: 900px) {
	.vs-single-product__gallery {
		position: sticky;
		top: 126px;
		align-self: start;
	}
}

.woocommerce div.product .vs-single-product__gallery .woocommerce-product-gallery__wrapper {
	border: 1px solid rgba(18, 18, 18, 0.08);
	box-shadow: 0 10px 32px rgba(18, 18, 18, 0.045);
}

.woocommerce div.product .vs-single-product__gallery .flex-control-thumbs {
	display: flex;
	gap: 0.625rem;
	overflow-x: auto;
	margin-top: 0.75rem;
}

.woocommerce div.product .vs-single-product__gallery .flex-control-thumbs li {
	display: block;
	width: 72px;
	min-height: 0;
	flex: 0 0 72px;
	padding: 0.25rem;
	border: 1px solid var(--vs-line);
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

.woocommerce div.product .vs-single-product__gallery .flex-control-thumbs li::after {
	display: none;
	content: none;
}

.woocommerce div.product .vs-single-product__gallery .flex-control-thumbs li:hover,
.woocommerce div.product .vs-single-product__gallery .flex-control-thumbs li:has(img.flex-active) {
	border-color: var(--vs-neon-dark);
	box-shadow: 0 10px 28px rgba(18, 18, 18, 0.08);
	transform: translateY(-1px);
}

.woocommerce div.product .vs-single-product__gallery .flex-control-thumbs img {
	width: 62px !important;
	height: 64px;
	border: 0;
	border-radius: 9px;
	object-fit: cover;
	opacity: 1;
}

.vs-gallery-thumbs-shell {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 38px;
	align-items: center;
	gap: 0.45rem;
	min-width: 0;
	margin-top: 0.75rem;
}

.woocommerce div.product .vs-single-product__gallery .vs-gallery-thumbs-shell .flex-control-thumbs {
	min-width: 0;
	margin-top: 0;
	padding-bottom: 0.25rem;
	scroll-behavior: smooth;
	scrollbar-width: none;
	overscroll-behavior-inline: contain;
}

.woocommerce div.product .vs-single-product__gallery .vs-gallery-thumbs-shell .flex-control-thumbs::-webkit-scrollbar {
	display: none;
}

.vs-gallery-scroll {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--vs-line);
	border-radius: 999px;
	background: #fff;
	color: var(--vs-carbon);
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 7px 20px rgba(18, 18, 18, 0.08);
	transition: border-color 160ms ease, background-color 160ms ease, opacity 160ms ease;
}

.vs-gallery-scroll:hover,
.vs-gallery-scroll:focus-visible {
	border-color: var(--vs-neon-dark);
	background: var(--vs-neon);
}

.vs-gallery-scroll:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

.woocommerce div.product form.cart .vs-quantity-stepper {
	display: grid;
	grid-template-columns: 2rem minmax(2rem, 1fr) 2rem;
	align-items: stretch;
	width: 7.25rem;
	min-height: 52px;
	margin: 0;
	border: 1px solid var(--vs-line);
	border-radius: 999px;
	background: #fff;
	overflow: hidden;
}

.woocommerce div.product form.cart .vs-quantity-stepper .qty {
	width: 100%;
	min-width: 0;
	min-height: 50px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	text-align: center;
	-moz-appearance: textfield;
}

.woocommerce div.product form.cart .vs-quantity-stepper .qty::-webkit-inner-spin-button,
.woocommerce div.product form.cart .vs-quantity-stepper .qty::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.vs-qty-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: #f4f5f4;
	color: var(--vs-carbon);
	font-size: 1.15rem;
	font-weight: 900;
	line-height: 1;
	transition: background-color 160ms ease, opacity 160ms ease;
}

.vs-qty-button:hover,
.vs-qty-button:focus-visible {
	background: var(--vs-neon);
}

.vs-qty-button:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.vs-gallery-guide {
	margin-top: 1rem;
	padding: 1rem 1.1rem;
	border: 1px solid var(--vs-line);
	border-radius: 14px;
	background: #f7f8f7;
}

.vs-gallery-guide span,
.vs-gallery-guide strong,
.vs-gallery-guide p {
	display: block;
}

.vs-gallery-guide span {
	margin-bottom: 0.35rem;
	color: var(--vs-neon-dark);
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.16em;
}

.vs-gallery-guide strong {
	color: var(--vs-carbon);
	font-size: 1rem;
	line-height: 1.25;
}

.vs-gallery-guide p {
	margin: 0.4rem 0 0;
	color: var(--vs-muted);
	font-size: 0.8rem;
	line-height: 1.5;
}

.woocommerce div.product #tab-additional_information table.shop_attributes {
	display: block;
	margin: 0;
	border: 0;
	border-collapse: separate;
}

.woocommerce div.product #tab-additional_information table.shop_attributes tbody {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.75rem;
}

.woocommerce div.product #tab-additional_information table.shop_attributes tr {
	display: flex;
	min-width: 0;
	min-height: 116px;
	flex-direction: column;
	justify-content: space-between;
	padding: 1rem;
	border: 1px solid var(--vs-line);
	border-radius: 16px;
	background: var(--vs-soft);
}

.woocommerce div.product #tab-additional_information table.shop_attributes tr:nth-child(even) th,
.woocommerce div.product #tab-additional_information table.shop_attributes tr:nth-child(even) td,
.woocommerce div.product #tab-additional_information table.shop_attributes th,
.woocommerce div.product #tab-additional_information table.shop_attributes td {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	text-align: left;
}

.woocommerce div.product #tab-additional_information table.shop_attributes th {
	color: var(--vs-muted);
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.09em;
	line-height: 1.25;
	text-transform: uppercase;
}

.woocommerce div.product #tab-additional_information table.shop_attributes td {
	margin-top: 0.65rem;
	color: var(--vs-carbon);
	font-size: 1rem;
	font-weight: 820;
	line-height: 1.35;
}

.woocommerce div.product #tab-additional_information table.shop_attributes td p {
	margin: 0;
	padding: 0;
}

.woocommerce div.product #tab-additional_information table.shop_attributes tr.woocommerce-product-attributes-item--attribute_pa_geschmack {
	grid-column: 1 / -1;
	min-height: 0;
	padding: 1.1rem 1.2rem;
	background: var(--vs-carbon);
}

.woocommerce div.product #tab-additional_information table.shop_attributes tr.woocommerce-product-attributes-item--attribute_pa_geschmack th {
	color: rgba(255, 255, 255, 0.6);
}

.woocommerce div.product #tab-additional_information table.shop_attributes tr.woocommerce-product-attributes-item--attribute_pa_geschmack td {
	margin-top: 0.75rem;
}

.vs-attribute-flavors {
	color: #fff;
	font-weight: 700;
}

.vs-attribute-flavors summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 48px;
	padding: 0.7rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
	cursor: pointer;
	font-size: 0.84rem;
	font-weight: 850;
	list-style: none;
}

.vs-attribute-flavors summary::-webkit-details-marker {
	display: none;
}

.vs-attribute-flavors summary::after {
	content: "+";
	display: grid;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	place-items: center;
	border-radius: 50%;
	background: var(--vs-neon);
	color: var(--vs-carbon);
	font-size: 1rem;
	font-weight: 900;
}

.vs-attribute-flavors[open] summary::after {
	content: "−";
}

.vs-attribute-flavors ul {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.45rem;
	max-height: 300px;
	margin: 0.8rem 0 0;
	padding: 0 0.35rem 0 0;
	overflow-y: auto;
	list-style: none;
	scrollbar-color: var(--vs-neon) #2b302d;
	scrollbar-width: thin;
}

.vs-attribute-flavors li {
	margin: 0;
	padding: 0.65rem 0.7rem;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 720;
	line-height: 1.3;
}

@media (max-width: 899px) {
	.woocommerce div.product #tab-additional_information table.shop_attributes tbody {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.vs-attribute-flavors ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 639px) {
	.woocommerce div.product .vs-single-product__summary .product_title {
		max-width: none;
		font-size: clamp(1.75rem, 7.5vw, 2.1rem);
		line-height: 1.12;
	}

	.woocommerce div.product .vs-single-product__gallery .flex-control-thumbs {
		gap: 0.55rem;
	}

	.vs-gallery-thumbs-shell {
		grid-template-columns: 34px minmax(0, 1fr) 34px;
		gap: 0.35rem;
	}

	.vs-gallery-scroll {
		width: 34px;
		height: 34px;
		font-size: 1.5rem;
	}

	.woocommerce div.product .vs-single-product__gallery .flex-control-thumbs li {
		width: 58px;
		min-height: 0;
		flex-basis: 58px;
		padding: 0.2rem;
		border-radius: 10px;
	}

	.woocommerce div.product .vs-single-product__gallery .flex-control-thumbs img {
		width: 50px !important;
		height: 50px;
		border-radius: 7px;
	}

	.woocommerce div.product .vs-single-product__gallery .flex-control-thumbs li::after {
		font-size: 0.64rem;
	}

	.vs-gallery-guide {
		padding: 1rem;
		border-radius: 15px;
	}

	.woocommerce div.product #tab-additional_information table.shop_attributes tbody {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.55rem;
	}

	.woocommerce div.product #tab-additional_information table.shop_attributes tr {
		min-height: 102px;
		padding: 0.8rem;
		border-radius: 13px;
	}

	.woocommerce div.product #tab-additional_information table.shop_attributes td {
		font-size: 0.88rem;
	}

	.woocommerce div.product #tab-additional_information table.shop_attributes tr.woocommerce-product-attributes-item--attribute_pa_geschmack {
		padding: 0.9rem;
	}

	.vs-attribute-flavors summary {
		font-size: 0.76rem;
	}

	.vs-attribute-flavors ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-height: 260px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vs-product-card__image,
	.vs-shipping-progress__track span {
		transition: none;
	}
}

/* Structured product editorial layout. */
.woocommerce div.product .vs-product-tabs ul.tabs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.35rem;
	overflow: visible;
	padding: 0.35rem;
	border: 1px solid var(--vs-line);
	border-radius: 18px;
	background: var(--vs-soft);
	white-space: normal;
}

.woocommerce div.product .vs-product-tabs ul.tabs::before,
.woocommerce div.product .vs-product-tabs ul.tabs::after {
	display: none;
}

.woocommerce div.product .vs-product-tabs ul.tabs li {
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.woocommerce div.product .vs-product-tabs ul.tabs li::before,
.woocommerce div.product .vs-product-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .vs-product-tabs ul.tabs li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 0.7rem 0.85rem;
	border-radius: 13px;
	color: var(--vs-carbon);
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1.25;
	text-align: center;
}

.woocommerce div.product .vs-product-tabs ul.tabs li.active {
	border: 0;
	background: transparent;
}

.woocommerce div.product .vs-product-tabs ul.tabs li.active a {
	background: var(--vs-carbon);
	color: #fff;
}

.woocommerce div.product .vs-product-tabs .panel {
	max-width: none;
	padding: clamp(1.75rem, 4vw, 3rem) 0 4rem;
}

.woocommerce div.product .vs-product-tabs .panel > h2:first-child {
	display: none;
}

.vs-product-editorial {
	width: min(100%, 1080px);
	margin: 0 auto;
	color: var(--vs-carbon);
}

.vs-product-editorial > h2 {
	margin: clamp(2.5rem, 5vw, 4rem) 0 1rem;
	padding-top: clamp(1.75rem, 4vw, 2.5rem);
	border-top: 1px solid var(--vs-line);
	font-size: clamp(1.6rem, 3vw, 2.35rem);
	line-height: 1.15;
	letter-spacing: -0.035em;
}

.vs-product-editorial > h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
	font-size: clamp(1.9rem, 4vw, 3rem);
}

.vs-product-editorial > p {
	max-width: 900px;
	margin: 0 0 1.2rem;
	color: #404642;
	font-size: 1rem;
	line-height: 1.75;
}

.vs-product-editorial > h2:first-child + p {
	max-width: none;
	margin-bottom: 1.5rem;
	padding: 1.2rem 1.35rem;
	border-left: 4px solid var(--vs-neon);
	border-radius: 0 16px 16px 0;
	background: var(--vs-soft);
	font-size: 1.04rem;
}

.vs-product-editorial > ul:not(.vs-flavor-list) {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.7rem;
	margin: 1.25rem 0 2.5rem;
	padding: 0;
	list-style: none;
}

.vs-product-editorial > ul:not(.vs-flavor-list) li {
	position: relative;
	margin: 0;
	padding: 0.95rem 1rem 0.95rem 2.8rem;
	border: 1px solid var(--vs-line);
	border-radius: 14px;
	background: #fff;
	font-size: 0.9rem;
	font-weight: 750;
	line-height: 1.45;
}

.vs-product-editorial > ul:not(.vs-flavor-list) li::before {
	position: absolute;
	top: 0.9rem;
	left: 1rem;
	display: grid;
	width: 1.25rem;
	height: 1.25rem;
	place-items: center;
	border-radius: 999px;
	background: var(--vs-neon);
	color: var(--vs-carbon);
	content: "✓";
	font-size: 0.72rem;
	font-weight: 950;
}

.vs-product-editorial > table {
	width: 100%;
	margin: 1.25rem 0 2.75rem;
	overflow: hidden;
	border: 1px solid var(--vs-line);
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 18px;
	background: #fff;
}

.vs-product-editorial > table th,
.vs-product-editorial > table td {
	padding: 0.9rem 1.1rem;
	border: 0;
	border-bottom: 1px solid var(--vs-line);
	font-size: 0.9rem;
	line-height: 1.45;
	text-align: left;
	vertical-align: top;
}

.vs-product-editorial > table th {
	width: 34%;
	background: var(--vs-soft);
	font-weight: 850;
}

.vs-product-editorial > table tr:last-child th,
.vs-product-editorial > table tr:last-child td {
	border-bottom: 0;
}

.vs-product-editorial .vs-flavor-overview {
	margin: 3rem 0;
	padding: clamp(1.25rem, 3vw, 2.25rem);
	border-radius: 24px;
	background: var(--vs-carbon);
	color: #fff;
}

.vs-product-editorial .vs-flavor-overview h2 {
	margin: 0 0 0.75rem;
	color: #fff;
	font-size: clamp(1.5rem, 3vw, 2.3rem);
	line-height: 1.15;
}

.vs-product-editorial .vs-flavor-overview > p {
	max-width: 820px;
	margin: 0 0 1.4rem;
	color: #c8ceca;
	line-height: 1.65;
}

.vs-product-editorial .vs-flavor-sheet {
	margin: 0 0 1.25rem;
}

.vs-product-editorial .vs-flavor-sheet img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
	background: #080a09;
}

.vs-product-editorial .vs-flavor-sheet figcaption {
	margin-top: 0.65rem;
	color: #aeb5b0;
	font-size: 0.76rem;
	line-height: 1.45;
}

.vs-product-editorial .vs-flavor-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem;
	max-height: 320px;
	margin: 1.25rem 0 0;
	padding: 0 0.35rem 0 0;
	overflow-y: auto;
	list-style: none;
	scrollbar-color: var(--vs-neon) #2b302d;
	scrollbar-width: thin;
}

.vs-product-editorial .vs-flavor-list li {
	margin: 0;
	padding: 0.7rem 0.8rem;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.35;
}

.vs-product-editorial > h3 {
	margin: 1rem 0 0;
	padding: 1rem 1.1rem 0.35rem;
	border: 1px solid var(--vs-line);
	border-bottom: 0;
	border-radius: 14px 14px 0 0;
	background: var(--vs-soft);
	font-size: 1rem;
	line-height: 1.35;
}

.vs-product-editorial > h3 + p {
	max-width: none;
	margin: 0 0 0.8rem;
	padding: 0.25rem 1.1rem 1rem;
	border: 1px solid var(--vs-line);
	border-top: 0;
	border-radius: 0 0 14px 14px;
	background: var(--vs-soft);
}

.vs-product-editorial > p:last-child {
	max-width: none;
	margin-top: 1.5rem;
	padding: 1rem 1.1rem;
	border: 1px solid #edd99a;
	border-radius: 14px;
	background: #fff9e8;
	color: #54420e;
	font-size: 0.86rem;
}

@media (max-width: 767px) {
	.woocommerce div.product .vs-product-tabs ul.tabs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.3rem;
		padding: 0.3rem;
		border-radius: 15px;
	}

	.woocommerce div.product .vs-product-tabs ul.tabs li a {
		min-height: 44px;
		padding: 0.6rem 0.45rem;
		border-radius: 11px;
		font-size: 0.7rem;
	}

	.woocommerce div.product .vs-product-tabs .panel {
		padding: 1.5rem 0 3rem;
	}

	.vs-product-editorial > h2 {
		margin-top: 2.25rem;
		padding-top: 1.5rem;
		font-size: 1.45rem;
	}

	.vs-product-editorial > h2:first-child {
		font-size: 1.75rem;
	}

	.vs-product-editorial > p {
		font-size: 0.94rem;
		line-height: 1.68;
	}

	.vs-product-editorial > h2:first-child + p {
		padding: 1rem;
		font-size: 0.94rem;
	}

	.vs-product-editorial > ul:not(.vs-flavor-list) {
		grid-template-columns: 1fr;
		gap: 0.55rem;
	}

	.vs-product-editorial > ul:not(.vs-flavor-list) li {
		padding: 0.82rem 0.9rem 0.82rem 2.55rem;
		font-size: 0.84rem;
	}

	.vs-product-editorial > ul:not(.vs-flavor-list) li::before {
		top: 0.78rem;
		left: 0.85rem;
	}

	.vs-product-editorial > table,
	.vs-product-editorial > table tbody,
	.vs-product-editorial > table tr,
	.vs-product-editorial > table th,
	.vs-product-editorial > table td {
		display: block;
		width: 100%;
	}

	.vs-product-editorial > table {
		overflow: visible;
		border-radius: 15px;
	}

	.vs-product-editorial > table tr {
		padding: 0.78rem 0.9rem;
		border-bottom: 1px solid var(--vs-line);
	}

	.vs-product-editorial > table tr:last-child {
		border-bottom: 0;
	}

	.vs-product-editorial > table th,
	.vs-product-editorial > table td {
		padding: 0;
		border: 0;
		background: transparent;
	}

	.vs-product-editorial > table th {
		margin-bottom: 0.18rem;
		color: #69706b;
		font-size: 0.68rem;
		letter-spacing: 0.06em;
		text-transform: uppercase;
	}

	.vs-product-editorial > table td {
		font-size: 0.86rem;
		font-weight: 720;
	}

	.vs-product-editorial .vs-flavor-overview {
		margin: 2.25rem 0;
		padding: 1rem;
		border-radius: 18px;
	}

	.vs-product-editorial .vs-flavor-overview h2 {
		font-size: 1.4rem;
	}

	.vs-product-editorial .vs-flavor-overview > p {
		font-size: 0.86rem;
	}

	.vs-product-editorial .vs-flavor-list {
		grid-template-columns: 1fr;
		max-height: 300px;
	}

	.vs-product-editorial > h3 {
		padding: 0.9rem 0.9rem 0.25rem;
		font-size: 0.92rem;
	}

	.vs-product-editorial > h3 + p {
		padding: 0.2rem 0.9rem 0.9rem;
		font-size: 0.86rem;
	}
}

/* Prevent legacy WooCommerce column widths from squeezing responsive cards. */
.woocommerce ul.products li.product.vs-product-card {
	float: none !important;
	width: 100% !important;
	min-width: 0;
	margin: 0 !important;
}

.woocommerce ul.products li.product.vs-product-card .button {
	width: 100%;
	white-space: nowrap;
	word-break: normal;
	overflow-wrap: normal;
}

@media (max-width: 639px) {
	.woocommerce ul.products {
		gap: 0.75rem;
	}

	.woocommerce ul.products li.product.vs-product-card {
		padding: 0.65rem;
		border-radius: 18px;
	}

	.woocommerce ul.products li.product.vs-product-card .woocommerce-loop-product__title {
		font-size: 0.86rem;
		line-height: 1.35;
		word-break: normal;
		overflow-wrap: break-word;
	}

	.woocommerce ul.products li.product.vs-product-card .button {
		min-height: 42px;
		padding: 0.55rem 0.45rem;
		font-size: 0.72rem;
		line-height: 1.15;
	}

	.site-footer {
		padding-top: 3rem;
	}

	.site-footer .footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.25rem 1.25rem;
		padding-bottom: 2.5rem;
	}

	.site-footer .footer-heading {
		margin-bottom: 0.9rem;
		font-size: 0.68rem;
		line-height: 1.2;
	}

	.site-footer .footer-menu > :not([hidden]) ~ :not([hidden]) {
		margin-top: 0.55rem;
	}

	.site-footer .footer-menu a,
	.site-footer .footer-trust > div {
		font-size: 0.78rem;
		line-height: 1.4;
	}

	.site-footer .footer-trust > div {
		align-items: flex-start;
		gap: 0.5rem;
	}

	.site-footer .payment-badges {
		margin-top: 1rem;
		gap: 0.35rem;
	}

	.site-footer .payment-badges span {
		min-height: 1.75rem;
		padding-right: 0.45rem;
		padding-left: 0.45rem;
		font-size: 9px;
	}
}

/* Keep every product name on one line on desktop without shrinking mobile headings. */
@media (min-width: 900px) {
	body.single-product div.product .vs-single-product__summary .product_title {
		font-size: clamp(1rem, 1.7vw, 1.75rem);
		line-height: 1.08;
		letter-spacing: -0.03em;
		white-space: nowrap;
		text-wrap: nowrap;
	}
}

/* Keep SEO landing-page tables inside the mobile viewport. */
@media (max-width: 767px) {
	html,
	body {
		min-width: 0;
	}

	body .vs-seo-landing {
		grid-template-columns: minmax(0, 1fr);
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	body .vs-seo-landing > * {
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	body .vs-seo-landing .vs-seo-table-wrap,
	body .vs-seo-landing .woocommerce,
	body .vs-seo-landing ul.products {
		max-width: 100%;
		min-width: 0;
		width: 100%;
	}

	body .vs-seo-landing .vs-seo-table-wrap {
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		-webkit-overflow-scrolling: touch;
	}
}

/* Full-width, compact desktop rhythm for SEO landing pages. */
body .site-main:has(.vs-seo-landing) > .container-shell.section-space {
	padding-top: clamp(2rem, 4vw, 3.5rem);
	padding-bottom: clamp(4rem, 7vw, 7rem);
}

body .page-entry:has(.vs-seo-landing),
body .entry-content:has(.vs-seo-landing) {
	max-width: none;
	width: 100%;
}

body .page-entry:has(.vs-seo-landing) > header {
	margin-bottom: clamp(2rem, 3vw, 2.5rem);
	max-width: 56rem;
}

body .vs-seo-landing {
	gap: clamp(2rem, 4vw, 3rem);
}

body .vs-seo-landing > section,
body .vs-seo-landing > nav,
body .vs-seo-landing .woocommerce,
body .vs-seo-landing ul.products {
	max-width: none;
	width: 100%;
}

body .vs-seo-landing > .vs-seo-lead {
	max-width: 56rem;
	width: 100%;
}

body .vs-seo-landing > section > h2 {
	margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
}

body .vs-seo-landing .woocommerce ul.products {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

body .vs-seo-landing .woocommerce ul.products li.product {
	float: none;
	margin: 0;
	max-width: none;
	width: auto;
}

@media (min-width: 1024px) {
	body .vs-seo-landing .woocommerce ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
