/*
Theme Name: Wuling Batam
Theme URI: https://wulingbatam.example
Author: Wuling Batam
Author URI: https://wulingbatam.example
Description: Premium single-page automotive landing page theme for Wuling dealers. Mobile-first, SEO-friendly, WhatsApp-focused, and fully editable via the WordPress Customizer without touching code.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wuling-batam
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, translation-ready

Wuling Batam is a premium, conversion-focused single-page theme for automotive
dealers. All copy, images and settings are edited from Appearance > Customize.
*/

/* =========================================================================
   1. DESIGN TOKENS
   ========================================================================= */
:root {
	--wb-red: #E4032E;
	--wb-red-dark: #B4021F;
	--wb-black: #0B0B0C;
	--wb-charcoal: #17181B;
	--wb-charcoal-soft: #232427;
	--wb-white: #FFFFFF;
	--wb-grey-100: #F5F5F5;
	--wb-grey-200: #E7E7E9;
	--wb-grey-400: #9A9CA3;
	--wb-grey-700: #4B4D54;

	--wb-font-display: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
	--wb-font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

	--wb-radius-sm: 8px;
	--wb-radius-md: 16px;
	--wb-radius-lg: 24px;

	--wb-shadow-sm: 0 2px 10px rgba(11, 11, 12, 0.06);
	--wb-shadow-md: 0 12px 32px rgba(11, 11, 12, 0.12);
	--wb-shadow-lg: 0 24px 60px rgba(11, 11, 12, 0.22);

	--wb-container: 1200px;
	--wb-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   2. RESET & BASE
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

body {
	margin: 0;
	font-family: var(--wb-font-body);
	color: var(--wb-charcoal);
	background: var(--wb-white);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
	font-family: var(--wb-font-display);
	font-weight: 800;
	line-height: 1.12;
	margin: 0 0 16px;
	letter-spacing: -0.01em;
}

p { margin: 0 0 16px; color: var(--wb-grey-700); }

.wb-container {
	max-width: var(--wb-container);
	margin: 0 auto;
	padding: 0 24px;
}

.wb-eyebrow {
	display: inline-block;
	font-family: var(--wb-font-display);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wb-red);
	margin-bottom: 12px;
}

.wb-section { padding: 88px 0; }
.wb-section--tight { padding: 64px 0; }
.wb-section--dark { background: var(--wb-charcoal); color: var(--wb-white); }
.wb-section--dark p { color: var(--wb-grey-400); }
.wb-section--grey { background: var(--wb-grey-100); }

.wb-section-head { max-width: 640px; margin: 0 0 48px; }
.wb-section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
	outline: 3px solid var(--wb-red);
	outline-offset: 2px;
}

.wb-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--wb-red);
	color: #fff;
	padding: 12px 20px;
	z-index: 9999;
	border-radius: 0 0 8px 0;
}
.wb-skip-link:focus { left: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* =========================================================================
   3. BUTTONS
   ========================================================================= */
.wb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--wb-font-display);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.02em;
	padding: 16px 28px;
	border-radius: 999px;
	border: 2px solid transparent;
	transition: transform 220ms var(--wb-ease), box-shadow 220ms var(--wb-ease), background 220ms var(--wb-ease), border-color 220ms var(--wb-ease), color 220ms var(--wb-ease);
	white-space: nowrap;
}
.wb-btn:hover { transform: translateY(-2px); }

.wb-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.wb-btn--primary {
	background: var(--wb-red);
	color: #fff;
	box-shadow: var(--wb-shadow-md);
}
.wb-btn--primary:hover { background: var(--wb-red-dark); box-shadow: var(--wb-shadow-lg); }

.wb-btn--outline {
	background: transparent;
	border-color: currentColor;
	color: var(--wb-charcoal);
}
.wb-btn--outline:hover { background: var(--wb-charcoal); color: #fff; border-color: var(--wb-charcoal); }

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

.wb-btn--light { background: #fff; color: var(--wb-charcoal); }
.wb-btn--light:hover { background: var(--wb-grey-100); }

.wb-btn--sm { padding: 11px 20px; font-size: 13px; }
.wb-btn--sm svg { width: 15px; height: 15px; }
.wb-btn--block { width: 100%; }

/* =========================================================================
   4. HEADER
   ========================================================================= */
.wb-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: rgba(255, 255, 255, 0.86);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: box-shadow 260ms var(--wb-ease), border-color 260ms var(--wb-ease), padding 260ms var(--wb-ease);
}
.wb-header.is-scrolled {
	box-shadow: 0 2px 24px rgba(11,11,12,0.08);
	border-bottom-color: var(--wb-grey-200);
}
.wb-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	max-width: var(--wb-container);
	margin: 0 auto;
	gap: 16px;
}
.wb-header__brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.wb-header__logo img { max-height: 40px; width: auto; }
.wb-header__logo-text {
	font-family: var(--wb-font-display);
	font-weight: 800;
	font-size: 18px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.wb-header__logo-text span { color: var(--wb-red); }

/* =========================================================================
   5. HERO
   ========================================================================= */
.wb-hero {
	position: relative;
	color: #fff;
	min-height: 92vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--wb-charcoal);
}
.wb-hero__media { position: absolute; inset: 0; z-index: 0; }
.wb-hero__media img {
	width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.wb-hero__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(11,11,12,0.15) 0%, rgba(11,11,12,0.35) 55%, rgba(11,11,12,0.92) 100%);
}
.wb-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 64px 24px 72px;
	max-width: var(--wb-container);
	margin: 0 auto;
}
.wb-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--wb-font-display);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.28);
	padding: 8px 16px;
	border-radius: 999px;
	backdrop-filter: blur(6px);
	margin-bottom: 22px;
	opacity: 0;
	animation: wbFadeUp 700ms var(--wb-ease) 100ms forwards;
}
.wb-hero__title {
	font-size: clamp(2.2rem, 6vw, 4.4rem);
	max-width: 16ch;
	margin-bottom: 18px;
	opacity: 0;
	animation: wbFadeUp 800ms var(--wb-ease) 220ms forwards;
}
.wb-hero__subtitle {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: rgba(255,255,255,0.82);
	max-width: 46ch;
	margin-bottom: 32px;
	opacity: 0;
	animation: wbFadeUp 800ms var(--wb-ease) 340ms forwards;
}
.wb-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	opacity: 0;
	animation: wbFadeUp 800ms var(--wb-ease) 460ms forwards;
}

/* Signature element: floating spec/price badge, like a window sticker on the hero car */
.wb-hero__badge {
	position: absolute;
	right: 24px;
	bottom: 96px;
	z-index: 3;
	background: rgba(23, 24, 27, 0.55);
	border: 1px solid rgba(255,255,255,0.18);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: var(--wb-radius-md);
	padding: 18px 22px;
	max-width: 220px;
	box-shadow: var(--wb-shadow-lg);
	opacity: 0;
	animation: wbFadeUp 800ms var(--wb-ease) 560ms forwards;
}
.wb-hero__badge-label {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wb-grey-400);
	font-family: var(--wb-font-display);
	font-weight: 700;
	margin-bottom: 4px;
}
.wb-hero__badge-value {
	font-family: var(--wb-font-display);
	font-weight: 800;
	font-size: 20px;
	color: #fff;
}

@keyframes wbFadeUp {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
	.wb-hero { min-height: 84vh; align-items: flex-end; }
	.wb-hero__badge { position: static; margin-top: 24px; max-width: none; }
	.wb-hero__content { padding-bottom: 40px; }
}

/* =========================================================================
   6. SCROLL REVEAL (generic)
   ========================================================================= */
.wb-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 640ms var(--wb-ease), transform 640ms var(--wb-ease);
}
.wb-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================================
   7. MODELS / LINE UP
   ========================================================================= */

/* Category filter tabs */
.wb-lineup-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0 0 40px;
}
.wb-lineup-tab {
	background: #fff;
	border: 1.5px solid var(--wb-grey-200);
	color: var(--wb-grey-700);
	font-family: var(--wb-font-display);
	font-weight: 700;
	font-size: 13.5px;
	padding: 10px 20px;
	border-radius: 999px;
	transition: background 220ms var(--wb-ease), color 220ms var(--wb-ease), border-color 220ms var(--wb-ease), transform 220ms var(--wb-ease);
}
.wb-lineup-tab:hover { border-color: var(--wb-red); color: var(--wb-red); }
.wb-lineup-tab.is-active {
	background: var(--wb-charcoal);
	border-color: var(--wb-charcoal);
	color: #fff;
}

.wb-models-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}
.wb-model-card {
	background: #fff;
	border-radius: var(--wb-radius-lg);
	overflow: hidden;
	box-shadow: var(--wb-shadow-sm);
	border: 1px solid var(--wb-grey-200);
	transition: box-shadow 260ms var(--wb-ease), transform 260ms var(--wb-ease), opacity 220ms var(--wb-ease);
	display: flex;
	flex-direction: column;
}
.wb-model-card.is-hidden { display: none; }
.wb-model-card:hover { box-shadow: var(--wb-shadow-md); transform: translateY(-4px); }

/* Transparent "showroom floor" media area — built for uploaded PNG cutouts
   of the car (no background). A soft floor shadow is drawn behind the car
   instead of a solid image box, so transparent PNGs blend in naturally. */
.wb-model-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: transparent;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.wb-model-card__media::before {
	content: '';
	position: absolute;
	left: 12%;
	right: 12%;
	bottom: 14%;
	height: 14%;
	background: radial-gradient(ellipse at center, rgba(11,11,12,0.14) 0%, rgba(11,11,12,0.05) 55%, transparent 75%);
	border-radius: 50%;
	z-index: 0;
}
.wb-model-card__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 500ms var(--wb-ease);
}
.wb-model-card:hover .wb-model-card__media img { transform: scale(1.04) translateY(-2px); }

.wb-model-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	background: rgba(23, 24, 27, 0.85);
	color: #fff;
	font-family: var(--wb-font-display);
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 999px;
}
.wb-model-card__badge--ev { background: rgba(228, 3, 46, 0.92); }

.wb-model-card__body { padding: 8px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.wb-model-card__title { font-size: 20px; margin: 0; }
.wb-model-card__desc { font-size: 14.5px; margin: 0; flex: 1; }
.wb-model-card__price-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--wb-grey-400); font-weight: 700; }
.wb-model-card__price { font-family: var(--wb-font-display); font-weight: 800; font-size: 22px; color: var(--wb-red); margin-bottom: 6px; }
.wb-model-card__footer { padding: 0 24px 24px; }



/* =========================================================================
   8. FEATURES
   ========================================================================= */
.wb-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}
.wb-feature-card {
	background: var(--wb-charcoal-soft);
	border-radius: var(--wb-radius-md);
	padding: 32px 26px;
	border: 1px solid rgba(255,255,255,0.06);
	transition: transform 260ms var(--wb-ease), border-color 260ms var(--wb-ease);
}
.wb-feature-card:hover { transform: translateY(-4px); border-color: rgba(228,3,46,0.5); }
.wb-feature-card__icon {
	width: 52px; height: 52px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 14px;
	background: rgba(228, 3, 46, 0.12);
	color: var(--wb-red);
	margin-bottom: 20px;
}
.wb-feature-card__icon svg { width: 26px; height: 26px; }
.wb-feature-card__title { color: #fff; font-size: 18px; margin-bottom: 8px; }
.wb-feature-card__desc { color: var(--wb-grey-400); font-size: 14.5px; margin: 0; }

/* =========================================================================
   9. PROMO
   ========================================================================= */
.wb-promo {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
	border-radius: var(--wb-radius-lg);
	overflow: hidden;
	box-shadow: var(--wb-shadow-md);
	background: #fff;
	border: 1px solid var(--wb-grey-200);
}
.wb-promo__media { position: relative; min-height: 320px; background: var(--wb-grey-200); }
.wb-promo__media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.wb-promo__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.wb-promo__period {
	display: inline-flex; align-self: flex-start;
	font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
	background: var(--wb-grey-100); color: var(--wb-grey-700);
	padding: 6px 14px; border-radius: 999px; margin-bottom: 4px;
}
.wb-promo__price { font-family: var(--wb-font-display); font-weight: 800; font-size: 26px; color: var(--wb-red); margin: 4px 0 8px; }
@media (max-width: 780px) {
	.wb-promo { grid-template-columns: 1fr; }
	.wb-promo__media { min-height: 240px; }
}

/* =========================================================================
   10. TEST DRIVE CTA STRIP
   ========================================================================= */
.wb-testdrive {
	text-align: center;
	padding: 96px 0;
	background:
		radial-gradient(1200px 400px at 50% 0%, rgba(228,3,46,0.16), transparent 60%),
		var(--wb-black);
	color: #fff;
}
.wb-testdrive__title { max-width: 20ch; margin: 0 auto 16px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.wb-testdrive__desc { max-width: 56ch; margin: 0 auto 32px; color: var(--wb-grey-400); }
.wb-testdrive__model-select {
	max-width: 340px;
	margin: 0 auto 24px;
	display: block;
	width: 100%;
	padding: 14px 18px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.24);
	background: rgba(255,255,255,0.06);
	color: #fff;
	font-family: var(--wb-font-body);
	font-size: 15px;
}
.wb-testdrive__model-select option { color: #111; }

/* =========================================================================
   11. SHOWROOM
   ========================================================================= */
.wb-showroom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.wb-showroom__media { border-radius: var(--wb-radius-lg); overflow: hidden; box-shadow: var(--wb-shadow-md); aspect-ratio: 4/3; background: var(--wb-grey-200); }
.wb-showroom__media img { width: 100%; height: 100%; object-fit: cover; }
.wb-showroom__list { list-style: none; margin: 24px 0 32px; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.wb-showroom__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.wb-showroom__list .wb-ic { flex-shrink: 0; width: 22px; height: 22px; color: var(--wb-red); margin-top: 2px; }
.wb-showroom__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.wb-showroom__map { margin-top: 56px; border-radius: var(--wb-radius-lg); overflow: hidden; box-shadow: var(--wb-shadow-md); }
.wb-showroom__map iframe { width: 100%; height: 380px; border: 0; display: block; }
@media (max-width: 860px) {
	.wb-showroom { grid-template-columns: 1fr; gap: 28px; }
}

/* =========================================================================
   12. TRUST
   ========================================================================= */
.wb-trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}
.wb-trust-item {
	display: flex; gap: 14px; align-items: flex-start;
	background: #fff; border: 1px solid var(--wb-grey-200);
	border-radius: var(--wb-radius-md); padding: 22px;
}
.wb-trust-item .wb-ic { color: var(--wb-red); width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.wb-trust-item p { margin: 0; font-size: 14.5px; color: var(--wb-charcoal); font-weight: 600; }

/* =========================================================================
   13. FAQ
   ========================================================================= */
.wb-faq { max-width: 780px; margin: 0 auto; }
.wb-faq-item { border-bottom: 1px solid var(--wb-grey-200); }
.wb-faq-item__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: none;
	border: 0;
	padding: 22px 4px;
	text-align: left;
	font-family: var(--wb-font-display);
	font-weight: 700;
	font-size: 16.5px;
	color: var(--wb-charcoal);
}
.wb-faq-item__icon {
	flex-shrink: 0;
	width: 28px; height: 28px;
	border-radius: 50%;
	border: 1.5px solid var(--wb-grey-400);
	display: flex; align-items: center; justify-content: center;
	position: relative;
	transition: transform 260ms var(--wb-ease), background 260ms var(--wb-ease), border-color 260ms var(--wb-ease);
}
.wb-faq-item__icon::before, .wb-faq-item__icon::after {
	content: ''; position: absolute; background: var(--wb-grey-700);
	transition: transform 260ms var(--wb-ease), opacity 260ms var(--wb-ease);
}
.wb-faq-item__icon::before { width: 12px; height: 2px; }
.wb-faq-item__icon::after { width: 2px; height: 12px; }
.wb-faq-item__q[aria-expanded="true"] .wb-faq-item__icon { background: var(--wb-red); border-color: var(--wb-red); }
.wb-faq-item__q[aria-expanded="true"] .wb-faq-item__icon::before,
.wb-faq-item__q[aria-expanded="true"] .wb-faq-item__icon::after { background: #fff; }
.wb-faq-item__q[aria-expanded="true"] .wb-faq-item__icon::after { transform: scaleY(0); }
.wb-faq-item__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 320ms var(--wb-ease);
}
.wb-faq-item__a-inner { padding: 0 4px 22px; color: var(--wb-grey-700); font-size: 15px; }

/* =========================================================================
   14. FINAL CTA
   ========================================================================= */
.wb-final-cta {
	text-align: center;
	padding: 88px 0;
	background: linear-gradient(135deg, var(--wb-red) 0%, var(--wb-red-dark) 100%);
	color: #fff;
}
.wb-final-cta__title { max-width: 18ch; margin: 0 auto 14px; font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.wb-final-cta__desc { max-width: 52ch; margin: 0 auto 30px; color: rgba(255,255,255,0.9); }
.wb-final-cta .wb-btn--primary { background: #fff; color: var(--wb-red); }
.wb-final-cta .wb-btn--primary:hover { background: var(--wb-charcoal); color: #fff; }

/* =========================================================================
   15. FOOTER
   ========================================================================= */
.wb-footer { background: var(--wb-black); color: var(--wb-grey-400); padding: 56px 0 28px; }
.wb-footer__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 32px;
	padding-bottom: 32px;
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wb-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.wb-footer__brand img { max-height: 32px; }
.wb-footer__brand-text { font-family: var(--wb-font-display); font-weight: 800; color: #fff; font-size: 17px; }
.wb-footer__addr { font-size: 14px; max-width: 320px; margin: 0 0 4px; }
.wb-footer__social { display: flex; gap: 12px; margin-top: 14px; }
.wb-footer__social a {
	width: 38px; height: 38px; border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.18);
	display: flex; align-items: center; justify-content: center;
	transition: background 220ms var(--wb-ease), border-color 220ms var(--wb-ease);
}
.wb-footer__social a:hover { background: var(--wb-red); border-color: var(--wb-red); }
.wb-footer__social svg { width: 17px; height: 17px; }
.wb-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 12.5px; }
.wb-footer__bottom p { margin: 0; color: var(--wb-grey-400); }

/* =========================================================================
   16. WHATSAPP FLOATING BUTTON
   ========================================================================= */
.wb-wa-float {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #25D366;
	color: #fff;
	padding: 14px 18px;
	border-radius: 999px;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
	font-family: var(--wb-font-display);
	font-weight: 700;
	font-size: 14.5px;
	transition: transform 220ms var(--wb-ease);
}
.wb-wa-float:hover { transform: translateY(-3px) scale(1.02); color: #fff; }
.wb-wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wb-wa-float__label { white-space: nowrap; }

@media (max-width: 560px) {
	.wb-wa-float { padding: 14px; right: 16px; bottom: 16px; }
	.wb-wa-float__label { display: none; }
}

/* =========================================================================
   17. GENERIC PAGE (fallback templates: page.php, single.php, 404.php)
   ========================================================================= */
.wb-basic-page { padding: 72px 0; max-width: 780px; margin: 0 auto; }
.wb-basic-page h1 { font-size: 2.2rem; }
.wb-404 { text-align: center; padding: 120px 24px; }
.wb-404__code { font-family: var(--wb-font-display); font-weight: 800; font-size: 96px; color: var(--wb-red); line-height: 1; margin-bottom: 16px; }

/* =========================================================================
   18. RESPONSIVE TWEAKS
   ========================================================================= */
@media (max-width: 780px) {
	.wb-section { padding: 64px 0; }
	.wb-header__logo-text { font-size: 15px; }
}

@media (max-width: 480px) {
	.wb-container { padding: 0 18px; }
	.wb-btn { padding: 14px 22px; font-size: 14px; }
}

/* No horizontal scroll */
html, body { max-width: 100%; overflow-x: hidden; }
