/* Vapeline — Vapemall-style responsive theme */

:root {
	--vl-black: #0a0a0a;
	--vl-dark: #111111;
	--vl-white: #ffffff;
	--vl-gray-50: #fafafa;
	--vl-gray-100: #f5f5f5;
	--vl-gray-200: #e5e5e5;
	--vl-gray-400: #a3a3a3;
	--vl-gray-600: #525252;
	--vl-gray-800: #262626;
	--vl-orange: #e87722;
	--vl-orange-dark: #c9651a;
	--vl-red: #dc2626;
	--vl-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--vl-nav-h: 72px;
	--vl-topbar-h: 36px;
	--vl-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
	--vl-radius: 4px;
	--vl-ease: 0.25s ease;
	--vl-safe-top: env(safe-area-inset-top, 0px);
	--vl-safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--vl-font);
	font-size: clamp(14px, 2.5vw, 16px);
	line-height: 1.6;
	color: var(--vl-dark);
	background: var(--vl-white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	padding-bottom: var(--vl-safe-bottom);
}

img, video {
	max-width: 100%;
	height: auto;
	display: block;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; touch-action: manipulation; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 clamp(1rem, 3vw, 1.5rem);
}

/* Top bar */
.vl-top-bar {
	background: var(--vl-black);
	color: var(--vl-white);
	font-size: clamp(0.68rem, 2vw, 0.8rem);
	min-height: var(--vl-topbar-h);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.35rem 0;
	padding-top: calc(0.35rem + var(--vl-safe-top));
}

.vl-top-bar .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.35rem 0.5rem;
}

.vl-top-bar a {
	color: var(--vl-white);
	font-weight: 600;
}

.vl-top-bar a:hover { color: var(--vl-orange); }

/* Header */
.vl-site-header {
	background: var(--vl-white);
	border-bottom: 1px solid var(--vl-gray-200);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.vl-site-header .container {
	max-width: 1440px;
}

.vl-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	min-height: var(--vl-nav-h);
}

.vl-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: 0.06em;
	color: var(--vl-black);
	flex-shrink: 0;
	min-width: 130px;
}

.vl-logo img {
	max-height: 48px;
	width: auto;
}

.vl-logo-icon {
	width: clamp(32px, 8vw, 36px);
	height: clamp(32px, 8vw, 36px);
	background: linear-gradient(135deg, var(--vl-orange), #c9a227);
	border-radius: 8px;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 1rem;
	flex-shrink: 0;
}

.vl-logo-text span { color: var(--vl-orange); }

/* Desktop nav — single horizontal line like Vapemall */
.vl-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 0;
	overflow: visible;
}

.vl-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.vl-menu-item {
	position: relative;
	flex-shrink: 0;
}

.vl-menu-link {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	padding: 0.5rem 0.55rem;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--vl-dark);
	white-space: nowrap;
	transition: color var(--vl-ease);
	line-height: 1.2;
}

@media (min-width: 1200px) {
	.vl-menu-link {
		padding: 0.5rem 0.75rem;
		font-size: 0.74rem;
	}
}

@media (min-width: 1360px) {
	.vl-menu-link {
		padding: 0.55rem 0.9rem;
		font-size: 0.78rem;
	}
}

.vl-menu-link:hover,
.vl-menu-item:hover > .vl-menu-link { color: var(--vl-orange); }

.vl-chevron { font-size: 0.55rem; transition: transform var(--vl-ease); }
.vl-menu-item:hover .vl-chevron { transform: rotate(180deg); }

.vl-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 210px;
	background: var(--vl-white);
	border: 1px solid var(--vl-gray-200);
	box-shadow: var(--vl-shadow);
	opacity: 0;
	visibility: hidden;
	transition: all var(--vl-ease);
	padding: 0.65rem 0;
	z-index: 200;
}

.vl-menu-item:hover .vl-dropdown,
.vl-menu-item:focus-within .vl-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.vl-dropdown-label {
	display: block;
	padding: 0.35rem 1rem 0.2rem;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--vl-gray-400);
}

.vl-dropdown a {
	display: block;
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--vl-gray-800);
	transition: all var(--vl-ease);
}

.vl-dropdown a:hover {
	background: var(--vl-gray-50);
	color: var(--vl-orange);
	padding-left: 1.25rem;
}

/* Header actions */
.vl-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.1rem;
	flex-shrink: 0;
	min-width: 120px;
}

.vl-util-btn {
	position: relative;
	width: clamp(38px, 10vw, 42px);
	height: clamp(38px, 10vw, 42px);
	display: grid;
	place-items: center;
	background: none;
	border: none;
	color: var(--vl-dark);
	font-size: clamp(1rem, 3vw, 1.15rem);
	border-radius: 50%;
	transition: background var(--vl-ease), color var(--vl-ease);
	-webkit-tap-highlight-color: transparent;
}

.vl-util-btn:hover,
.vl-util-btn:focus-visible {
	background: var(--vl-gray-100);
	color: var(--vl-orange);
	outline: none;
}

.vl-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 17px;
	height: 17px;
	background: var(--vl-orange);
	color: #fff;
	font-size: 0.6rem;
	font-weight: 700;
	border-radius: 50%;
	display: grid;
	place-items: center;
	line-height: 1;
}

.vl-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.4rem;
	color: var(--vl-dark);
	width: 42px;
	height: 42px;
	-webkit-tap-highlight-color: transparent;
}

/* Search overlay */
.vl-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	z-index: 3000;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(80px, 15vh, 120px) 1rem 1rem;
	backdrop-filter: blur(4px);
}

.vl-search-overlay.is-open { display: flex; }

.vl-search-box {
	background: #fff;
	width: 100%;
	max-width: 640px;
	padding: clamp(1rem, 3vw, 1.5rem);
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	position: relative;
}

.vl-search-box form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

@media (min-width: 480px) {
	.vl-search-box form { flex-direction: row; }
}

.vl-search-box input[type="search"] {
	flex: 1;
	padding: 0.85rem 1rem;
	border: 2px solid var(--vl-gray-200);
	border-radius: var(--vl-radius);
	font-size: 16px; /* prevents iOS zoom */
	outline: none;
	width: 100%;
}

.vl-search-box input:focus { border-color: var(--vl-orange); }

.vl-search-close {
	position: fixed;
	top: calc(1rem + var(--vl-safe-top));
	right: 1rem;
	background: rgba(255,255,255,0.15);
	border: none;
	font-size: 1.75rem;
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
}

/* Mobile nav */
.vl-mobile-nav {
	display: block;
	position: fixed;
	inset: 0;
	background: var(--vl-white);
	z-index: 2500;
	overflow-y: auto;
	padding: 1rem clamp(1rem, 4vw, 1.5rem);
	padding-bottom: calc(1.5rem + var(--vl-safe-bottom));
	transform: translateX(100%);
	transition: transform 0.3s ease;
	-webkit-overflow-scrolling: touch;
}

.vl-mobile-nav.is-open { transform: translateX(0); }

.vl-mobile-nav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--vl-gray-200);
}

.vl-mobile-link {
	display: block;
	padding: 0.9rem 0;
	font-weight: 600;
	font-size: 0.88rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-bottom: 1px solid var(--vl-gray-100);
	min-height: 44px;
	display: flex;
	align-items: center;
}

.vl-mobile-sub {
	padding: 0 0 0.5rem 1rem;
}

.vl-mobile-sub a {
	display: block;
	padding: 0.55rem 0;
	font-size: 0.85rem;
	color: var(--vl-gray-600);
	min-height: 40px;
	display: flex;
	align-items: center;
}

/* Hero slider */
.vl-hero {
	position: relative;
	overflow: hidden;
	background: var(--vl-dark);
}

.vl-hero-slide {
	position: relative;
	min-height: clamp(340px, 55vw, 520px);
	display: none;
	align-items: center;
}

.vl-hero-slide.is-active { display: flex; }

.vl-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: brightness(0.5);
}

.vl-hero-content {
	position: relative;
	z-index: 2;
	padding: clamp(2rem, 6vw, 4rem) 0;
	color: #fff;
	max-width: min(560px, 90%);
}

.vl-hero-content h1 {
	font-size: clamp(1.75rem, 6vw, 3.75rem);
	font-weight: 800;
	line-height: 1.05;
	margin: 0 0 0.75rem;
	letter-spacing: -0.02em;
}

.vl-hero-content p {
	font-size: clamp(0.95rem, 2.5vw, 1.15rem);
	opacity: 0.92;
	margin: 0 0 1.5rem;
	line-height: 1.5;
}

.vl-btn-shop {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: clamp(0.7rem, 2vw, 0.85rem) clamp(1.25rem, 4vw, 2rem);
	border: 2px solid #fff;
	background: transparent;
	color: #fff;
	font-weight: 600;
	font-size: clamp(0.75rem, 2vw, 0.88rem);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	min-height: 44px;
	transition: all var(--vl-ease);
}

.vl-btn-shop:hover {
	background: #fff;
	color: var(--vl-dark);
}

.vl-hero-warning {
	position: absolute;
	bottom: clamp(4.5rem, 12vw, 5.5rem);
	left: clamp(0.75rem, 3vw, 1.5rem);
	z-index: 3;
	background: rgba(0, 0, 0, 0.78);
	border: 1px solid rgba(255,255,255,0.15);
	padding: 0.65rem 0.85rem;
	max-width: min(340px, calc(100% - 2rem));
	font-size: clamp(0.65rem, 1.8vw, 0.75rem);
	color: rgba(255,255,255,0.88);
	line-height: 1.45;
}

.vl-hero-controls {
	position: absolute;
	bottom: clamp(0.75rem, 3vw, 1.5rem);
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.vl-hero-arrow {
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255,255,255,0.4);
	background: rgba(0,0,0,0.35);
	color: #fff;
	display: grid;
	place-items: center;
	border-radius: 50%;
	transition: all var(--vl-ease);
}

.vl-hero-arrow:hover {
	background: #fff;
	color: var(--vl-dark);
}

.vl-hero-dots { display: flex; gap: 0.4rem; }

.vl-hero-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	border: none;
	padding: 0;
	min-width: 8px;
	min-height: 8px;
}

.vl-hero-dot.is-active {
	background: #fff;
	width: 22px;
	border-radius: 4px;
}

.vl-hero-swipe {
	display: none;
}

@media (min-width: 768px) {
	.vl-hero-swipe {
		display: block;
		position: absolute;
		right: 1.5rem;
		top: 50%;
		transform: translateY(-50%);
		z-index: 3;
		color: rgba(255,255,255,0.55);
		font-size: 0.75rem;
		font-weight: 600;
		letter-spacing: 0.1em;
		writing-mode: vertical-rl;
	}
}

/* Features bar */
.vl-features {
	border-bottom: 1px solid var(--vl-gray-200);
	padding: clamp(1.25rem, 4vw, 2rem) 0;
}

.vl-features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 3vw, 2rem);
}

@media (min-width: 576px) {
	.vl-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
	.vl-features-grid { grid-template-columns: repeat(4, 1fr); }
}

.vl-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.vl-feature-icon {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	border: 1px solid var(--vl-gray-200);
	border-radius: 50%;
	font-size: 1.15rem;
}

.vl-feature h4 {
	margin: 0 0 0.25rem;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.vl-feature p {
	margin: 0;
	font-size: 0.8rem;
	color: var(--vl-gray-600);
	line-height: 1.45;
}

/* Sections */
.vl-section { padding: clamp(2.5rem, 6vw, 4rem) 0; }

.vl-section-head {
	text-align: center;
	margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.vl-section-label {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--vl-orange);
	margin-bottom: 0.5rem;
}

.vl-section-head h2 {
	font-size: clamp(1.4rem, 4vw, 2.1rem);
	font-weight: 800;
	margin: 0 0 0.5rem;
}

.vl-section-head p {
	color: var(--vl-gray-600);
	max-width: 560px;
	margin: 0 auto;
	font-size: clamp(0.88rem, 2.5vw, 1rem);
}

/* Product grid */
.vl-products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(0.75rem, 2vw, 1.5rem);
}

@media (min-width: 768px) {
	.vl-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
	.vl-products-grid { grid-template-columns: repeat(4, 1fr); }
}

.vl-product-card {
	border: 1px solid var(--vl-gray-200);
	background: var(--vl-white);
	transition: box-shadow var(--vl-ease), transform var(--vl-ease);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.vl-product-card:hover {
	box-shadow: var(--vl-shadow);
	transform: translateY(-3px);
}

.vl-product-thumb {
	position: relative;
	aspect-ratio: 1;
	background: var(--vl-gray-50);
	display: grid;
	place-items: center;
	padding: clamp(0.75rem, 2vw, 1.25rem);
	overflow: hidden;
}

.vl-product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 0.35s ease;
}

.vl-product-card:hover .vl-product-thumb img { transform: scale(1.05); }

.vl-badge {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	padding: 0.2rem 0.5rem;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
}

.vl-badge-sale { background: var(--vl-red); color: #fff; }
.vl-badge-new { background: var(--vl-orange); color: #fff; }
.vl-badge-hot { background: var(--vl-black); color: #fff; }

.vl-product-body {
	padding: clamp(0.75rem, 2vw, 1.15rem);
	display: flex;
	flex-direction: column;
	flex: 1;
}

.vl-product-cat {
	font-size: 0.68rem;
	color: var(--vl-gray-400);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.vl-product-name {
	font-size: clamp(0.82rem, 2.2vw, 0.92rem);
	font-weight: 600;
	margin: 0 0 0.5rem;
	line-height: 1.35;
}

.vl-product-name a:hover { color: var(--vl-orange); }

.vl-product-price {
	font-size: clamp(0.95rem, 2.5vw, 1.05rem);
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.vl-product-price del {
	color: var(--vl-gray-400);
	font-size: 0.85em;
	font-weight: 400;
	margin-right: 0.35rem;
}

.vl-add-cart .button,
.vl-add-cart a.button {
	width: 100% !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	background: var(--vl-black) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0.65rem !important;
	font-size: 0.72rem !important;
	font-weight: 600 !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	min-height: 44px;
	transition: background var(--vl-ease) !important;
}

.vl-add-cart .button:hover,
.vl-add-cart a.button:hover {
	background: var(--vl-orange) !important;
	color: #fff !important;
	opacity: 1 !important;
}

/* Buttons */
.vl-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.75rem 1.25rem;
	background: var(--vl-black);
	color: #fff;
	border: none;
	font-weight: 600;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	min-height: 44px;
	white-space: nowrap;
	transition: background var(--vl-ease);
}

.vl-btn-primary:hover { background: var(--vl-orange); color: #fff; }

.vl-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.75rem 1.25rem;
	background: transparent;
	color: var(--vl-dark);
	border: 2px solid var(--vl-dark);
	font-weight: 600;
	font-size: 0.82rem;
	text-transform: uppercase;
	min-height: 44px;
	transition: all var(--vl-ease);
}

.vl-btn-outline:hover {
	background: var(--vl-dark);
	color: #fff;
}

.vl-btn-orange {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	background: var(--vl-orange);
	color: #fff;
	border: none;
	font-weight: 600;
	text-transform: uppercase;
	min-height: 44px;
}

.vl-btn-orange:hover { background: var(--vl-orange-dark); color: #fff; }

/* Category showcase */
.vl-cat-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 768px) {
	.vl-cat-grid { grid-template-columns: repeat(3, 1fr); }
}

.vl-cat-card {
	position: relative;
	aspect-ratio: 16/10;
	overflow: hidden;
	display: block;
	border-radius: var(--vl-radius);
}

.vl-cat-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.vl-cat-card:hover img { transform: scale(1.06); }

.vl-cat-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.72), transparent 55%);
	display: flex;
	align-items: flex-end;
	padding: 1.25rem;
	color: #fff;
}

.vl-cat-overlay h3 {
	margin: 0;
	font-size: clamp(1rem, 3vw, 1.2rem);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* CTA */
.vl-cta {
	background: var(--vl-black);
	color: #fff;
	text-align: center;
	padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.vl-cta h2 {
	font-size: clamp(1.35rem, 4vw, 2rem);
	font-weight: 800;
	margin: 0 0 0.75rem;
}

.vl-cta p {
	opacity: 0.82;
	max-width: 520px;
	margin: 0 auto 1.5rem;
	font-size: clamp(0.88rem, 2.5vw, 1rem);
}

.vl-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
}

.vl-empty {
	text-align: center;
	padding: 3rem 1rem;
	color: var(--vl-gray-600);
}

/* Footer */
.vl-site-footer {
	background: var(--vl-black);
	color: rgba(255,255,255,0.72);
	padding: clamp(2rem, 5vw, 3.5rem) 0 0;
	margin-top: 0;
}

.vl-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 768px) {
	.vl-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
	.vl-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.vl-footer-grid h4 {
	color: #fff;
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 1rem;
}

.vl-footer-grid a {
	display: block;
	padding: 0.3rem 0;
	font-size: 0.88rem;
}

.vl-footer-grid a:hover { color: var(--vl-orange); }

.vl-footer-warning {
	background: rgba(255,255,255,0.05);
	padding: 0.85rem;
	margin-top: 1rem;
	font-size: 0.72rem;
	line-height: 1.55;
	border-left: 3px solid var(--vl-orange);
}

.vl-footer-bottom {
	padding: 1.25rem 0;
	padding-bottom: calc(1.25rem + var(--vl-safe-bottom));
	font-size: 0.8rem;
	text-align: center;
}

@media (min-width: 768px) {
	.vl-footer-bottom {
		display: flex;
		justify-content: space-between;
		text-align: left;
	}
}

/* Inner pages */
.vl-page {
	background: var(--vl-white);
	color: var(--vl-dark);
	padding: clamp(2rem, 5vw, 3rem) 0;
}

.vl-page h1 {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 800;
}

.vl-page .entry-content {
	color: var(--vl-gray-800);
	line-height: 1.75;
	font-size: clamp(0.92rem, 2.5vw, 1rem);
}

/* Responsive nav hide — mobile/tablet portrait only */
@media (max-width: 1024px) {
	.vl-nav { display: none; }
	.vl-mobile-toggle { display: grid; place-items: center; }
}

@media (max-width: 767px) {
	.vl-hero-warning {
		position: relative;
		bottom: auto;
		left: auto;
		margin: 0 clamp(0.75rem, 3vw, 1.5rem) 0;
		max-width: none;
	}

	.vl-hero-slide { min-height: 380px; align-items: flex-end; }
	.vl-hero-content { padding-bottom: 4rem; }
}

@media (max-width: 380px) {
	.vl-products-grid { gap: 0.5rem; }
	.vl-product-body { padding: 0.6rem; }
}

/* WooCommerce overrides */
.woocommerce ul.products {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(0.75rem, 2vw, 1.5rem);
}

@media (min-width: 768px) {
	.woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (min-width: 1024px) {
	.woocommerce ul.products { grid-template-columns: repeat(4, 1fr) !important; }
}

.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }

.woocommerce ul.products li.product {
	width: 100% !important;
	margin: 0 !important;
	float: none !important;
}

/* Age verification popup */
body.vl-age-locked { overflow: hidden; }

.vl-age-gate {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.vl-age-gate[hidden] { display: none !important; }

.vl-age-gate-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(6px);
}

.vl-age-gate-box {
	position: relative;
	background: #fff;
	max-width: 440px;
	width: 100%;
	padding: clamp(1.5rem, 4vw, 2.25rem);
	border-radius: 8px;
	text-align: center;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.vl-age-gate-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 1rem;
	background: var(--vl-black);
	color: #fff;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 800;
	font-size: 1.1rem;
}

.vl-age-gate-box h2 {
	margin: 0 0 0.75rem;
	font-size: 1.5rem;
	font-weight: 800;
}

.vl-age-gate-box p {
	color: var(--vl-gray-600);
	font-size: 0.92rem;
	line-height: 1.6;
	margin: 0 0 1rem;
}

.vl-age-warning {
	background: #fff8f3;
	border-left: 3px solid var(--vl-orange);
	padding: 0.75rem;
	text-align: left;
	font-size: 0.8rem !important;
}

.vl-age-actions {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-top: 1.25rem;
}

.vl-age-actions .vl-btn-primary,
.vl-age-actions .vl-btn-outline {
	width: 100%;
	justify-content: center;
	min-height: 48px;
}

/* WhatsApp float — right side */
.vl-whatsapp-float {
	position: fixed;
	right: clamp(0.75rem, 3vw, 1.25rem);
	bottom: clamp(1rem, 4vw, 1.75rem);
	z-index: 9000;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #25d366;
	color: #fff !important;
	padding: 0.75rem 1rem 0.75rem 0.85rem;
	border-radius: 999px;
	box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
	font-weight: 600;
	font-size: 0.88rem;
	transition: transform 0.2s, box-shadow 0.2s;
	padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
}

.vl-whatsapp-float i {
	font-size: 1.65rem;
	line-height: 1;
}

.vl-whatsapp-float:hover {
	transform: scale(1.05);
	box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
	color: #fff !important;
}

@media (max-width: 480px) {
	.vl-whatsapp-label { display: none; }
	.vl-whatsapp-float {
		width: 56px;
		height: 56px;
		padding: 0;
		justify-content: center;
		border-radius: 50%;
	}
}

/* Reviews section */
.vl-reviews-section { background: var(--vl-gray-50); }

.vl-avg-rating {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.vl-stars {
	color: #f59e0b;
	display: inline-flex;
	gap: 0.1rem;
	font-size: 0.95rem;
}

.vl-reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 992px) {
	.vl-reviews-grid { grid-template-columns: 1fr 1fr; }
}

.vl-reviews-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.vl-review-card {
	background: #fff;
	border: 1px solid var(--vl-gray-200);
	padding: 1.15rem;
	border-radius: var(--vl-radius);
}

.vl-review-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	flex-wrap: wrap;
}

.vl-review-card p {
	margin: 0 0 0.5rem;
	color: var(--vl-gray-800);
	font-size: 0.92rem;
	line-height: 1.55;
}

.vl-review-card time,
.vl-review-date {
	font-size: 0.78rem;
	color: var(--vl-gray-400);
}

.vl-review-form-wrap {
	background: #fff;
	border: 1px solid var(--vl-gray-200);
	padding: clamp(1.25rem, 3vw, 1.75rem);
	border-radius: var(--vl-radius);
}

.vl-review-form-wrap h3 {
	margin: 0 0 1.25rem;
	font-size: 1.1rem;
	font-weight: 700;
}

.vl-review-form .form-group {
	margin-bottom: 1rem;
}

.vl-review-form label,
.vl-rating-label {
	display: block;
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.4rem;
}

.vl-review-form .form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--vl-gray-200);
	border-radius: var(--vl-radius);
	font-size: 16px;
	font-family: inherit;
}

.vl-review-form .form-control:focus {
	outline: none;
	border-color: var(--vl-orange);
}

.vl-star-input {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 0.25rem;
}

.vl-star-input input { display: none; }

.vl-star-input label {
	cursor: pointer;
	font-size: 1.75rem;
	color: var(--vl-gray-200);
	margin: 0;
	transition: color 0.15s;
}

.vl-star-input label:hover,
.vl-star-input label:hover ~ label,
.vl-star-input input:checked ~ label {
	color: #f59e0b;
}

.vl-review-msg {
	font-size: 0.88rem;
	margin-bottom: 0.75rem;
	min-height: 1.2em;
}

.vl-review-msg.is-success { color: #065f46; }
.vl-review-msg.is-error { color: var(--vl-red); }

