﻿/* ==========================================================================
   Bidoki Global ? Single stylesheet
   ========================================================================== */

:root {
	--cyan: #00B4D8;
	--cyan-dark: #0088aa;
	--cyan-darker: #0099bb;
	--charcoal: #333333;
	--bg: #F8F9FA;
	--dark: #1a1a1a;
	--white: #ffffff;
	--muted: #6b7280;
	--gray: #9ca3af;
	--light-blue: #e8f8fc;
	--light-teal: #f0fafb;
	--purple: #6366f1;
	--green: #22c55e;
	--orange: #f59e0b;
	--red: #f43f5e;
	--whatsapp: #25d366;
	--border: rgba(0, 0, 0, 0.08);
	--font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;
	--container: 1280px;
	--pad: 12px;
	--pad-md: 16px;
	--pad-lg: 20px;
	--ann-1: #004d66;
	--ann-2: #00384d;
	--ann-3: #005566;
	--ann-4: #003d52;
}

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

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	overflow-x: clip;
}

body {
	margin: 0;
	min-height: 100vh;
	background: var(--bg);
	color: var(--charcoal);
	font-family: var(--font-body);
	line-height: 1.5;
	overflow-x: clip;
}

body.nav-open {
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	margin: 0;
}

p {
	margin: 0;
}

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

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

button,
input {
	font: inherit;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	padding: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.is-hidden {
	display: none !important;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-left: var(--pad);
	padding-right: var(--pad);
}

.text-center {
	text-align: center;
}

.text-cyan {
	color: var(--cyan);
}

.bg-white {
	background: var(--white);
}

.section-pad {
	padding: 12px var(--pad);
}

@media (min-width: 480px) {
	:root {
		--pad: 16px;
	}

	.section-pad {
		padding: 16px var(--pad-lg);
	}
}

@media (min-width: 768px) {
	:root {
		--pad: 16px;
	}
}

.section-block {
	padding: 40px 0;
}

@media (min-width: 768px) {
	.section-block {
		padding: 56px 0;
	}
}

.section-sub {
	color: var(--gray);
	font-size: 14px;
	margin-top: 8px;
}

.section-intro {
	margin-bottom: 40px;
}

.section-intro h2 {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 8px;
}

.section-intro p {
	color: var(--muted);
	font-size: 14px;
}

.hide-mobile {
	display: none !important;
}

.show-desktop {
	display: none !important;
}

@media (min-width: 768px) {
	.logo-text {
		display: block !important;
	}
}

@media (min-width: 1024px) {
	.hide-mobile {
		display: flex !important;
	}

	.header-icon span.hide-mobile {
		display: block !important;
	}

	.show-desktop,
	.btn-login.guest-only,
	.logged-in .btn-account.member-only {
		display: inline-flex !important;
	}

	.logged-in .member-only.show-desktop {
		display: inline-flex !important;
	}
}

#pageMain {
	flex: 1;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 700;
	border-radius: 999px;
	transition: opacity 0.15s, transform 0.15s;
}

.btn-login {
	padding: 8px 20px;
	background: var(--white);
	color: var(--cyan-darker);
	font-size: 13px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	display: none;
	flex-shrink: 0;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.btn-login:hover {
	opacity: 0.9;
}

.btn-account {
	padding: 8px 16px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
	font-size: 13px;
	white-space: nowrap;
	display: none;
	flex-shrink: 0;
	align-items: center;
	gap: 8px;
}

.btn-account:hover {
	background: rgba(255, 255, 255, 0.15);
}

.btn-account small {
	font-size: 9px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
}

.member-only {
	display: none !important;
}

.logged-in .guest-only {
	display: none !important;
}

@media (min-width: 1024px) {
	.logged-in .member-only.show-desktop {
		display: inline-flex !important;
	}
}

/* login/account visibility handled in 1024px block above */

.btn-shop {
	width: 100%;
	padding: 10px 24px;
	background: var(--cyan-darker);
	color: var(--white);
	font-size: 14px;
	box-shadow: 0 4px 14px rgba(0, 153, 187, 0.35);
}

.btn-shop:hover {
	opacity: 0.9;
}

.btn-cyan {
	padding: 12px 28px;
	background: var(--cyan);
	color: var(--white);
	font-size: 14px;
	box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
}

.btn-cyan:hover {
	opacity: 0.9;
}

.btn-sm {
	padding: 6px 16px;
	font-size: 12px;
}

.btn-outline {
	padding: 10px 22px;
	border: 1.5px solid rgba(0, 180, 216, 0.4);
	color: var(--cyan-darker);
	font-size: 13px;
	font-weight: 600;
}

.btn-whatsapp {
	padding: 8px 16px;
	background: var(--whatsapp);
	color: var(--white);
	font-size: 14px;
	border: none;
	cursor: pointer;
	font-family: var(--font-display);
	font-weight: 600;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 999px;
	border: 1.5px solid var(--cyan);
	background: var(--light-blue);
	color: var(--cyan);
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
}

/* Header */
.header {
	position: sticky;
	top: 0;
	z-index: 50;
	width: 100%;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.header-top {
	background: var(--cyan);
}

.header-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
	min-width: 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
	margin-right: 2px;
}

#countryFlag.flag-icon {
	width: 22px;
	height: 16px;
}
.flag-icon,
.gcc-flag {
	display: inline-block;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 3px;
	flex-shrink: 0;
	vertical-align: middle;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

img.flag-icon {
	object-fit: cover;
	background-image: none;
}

.flag-icon[data-code="qa"],
.gcc-flag[data-code="qa"] { background-image: url('images/flags/qa.svg'); }

.flag-icon[data-code="ae"],
.gcc-flag[data-code="ae"] { background-image: url('images/flags/ae.svg'); }

.flag-icon[data-code="sa"],
.gcc-flag[data-code="sa"] { background-image: url('images/flags/sa.svg'); }

.flag-icon[data-code="kw"],
.gcc-flag[data-code="kw"] { background-image: url('images/flags/kw.svg'); }

.flag-icon[data-code="bh"],
.gcc-flag[data-code="bh"] { background-image: url('images/flags/bh.svg'); }

.flag-icon[data-code="om"],
.gcc-flag[data-code="om"] { background-image: url('images/flags/om.svg'); }

#countryFlag.flag-icon {
	width: 22px;
	height: 16px;
	font-size: 0;
}

.flag-icon-sm {
	width: 20px;
	height: 14px;
}

.flag-icon-nav {
	width: 22px;
	height: 16px;
}

.logo img {
	height: 36px;
	width: auto;
	object-fit: contain;
	background: var(--white);
	border-radius: 10px;
	padding: 5px 6px;
}

.logo-text {
	display: none;
	line-height: 1;
}

.logo-text strong {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 16px;
	color: var(--white);
}

.logo-text span {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
}

.country-wrap {
	display: none;
	position: relative;
	flex-shrink: 0;
	z-index: 2;
}

.country-wrap:has(.dropdown.open) {
	z-index: 60;
}

.country-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
}

.country-btn:hover {
	background: rgba(255, 255, 255, 0.15);
}

.country-btn.open {
	background: rgba(255, 255, 255, 0.15);
}

.country-btn.open .icon-chevron {
	transform: rotate(180deg);
}

.deliver-btn {
	cursor: default;
}

.icon-chevron {
	transition: transform 0.15s;
	flex-shrink: 0;
}

.search-cat-btn.open .icon-chevron {
	transform: rotate(180deg);
}

.country-meta {
	display: block;
	line-height: 1.1;
}

.country-meta small {
	display: block;
	font-size: 9px;
	color: rgba(255, 255, 255, 0.7);
}

.country-meta strong {
	display: block;
	font-size: 11px;
	font-weight: 700;
	font-family: var(--font-display);
}

.search-bar {
	flex: 1;
	display: flex;
	min-width: 0;
	height: 38px;
	border-radius: 8px;
	overflow: visible;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	background: var(--white);
}

.search-bar .search-input {
	border-radius: 8px 0 0 8px;
}

.search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	background: var(--cyan);
	color: var(--white);
	border-radius: 0 8px 8px 0;
}

.search-cat-wrap {
	display: none;
	position: relative;
	flex-shrink: 0;
	z-index: 2;
}

.search-cat-wrap:has(.dropdown.open) {
	z-index: 60;
}

@media (min-width: 640px) {
	.search-cat-wrap {
		display: flex;
	}

	.search-cat-wrap + .search-input {
		border-radius: 0;
	}

	.search-cat-btn {
		border-radius: 8px 0 0 8px;
	}
}

.search-cat-btn {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0 12px;
	height: 38px;
	border-right: 1px solid rgba(0, 0, 0, 0.1);
	color: var(--charcoal);
	font-size: 12px;
	font-weight: 600;
	font-family: var(--font-display);
	white-space: nowrap;
}

.search-cat-btn:hover {
	background: #f9fafb;
}

.search-input {
	flex: 1;
	min-width: 0;
	padding: 0 16px;
	border: none;
	outline: none;
	font-size: 14px;
	color: var(--charcoal);
}

.search-submit:hover {
	opacity: 0.9;
}

.dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: 4px;
	background: var(--white);
	border-radius: 16px;
	border: 1px solid var(--border);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	z-index: 100;
	overflow: hidden;
	min-width: 190px;
}

.dropdown.open {
	display: block;
}

.dropdown-title {
	padding: 8px 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--gray);
	font-family: var(--font-display);
}

.dropdown-item,
.dropdown-option {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 10px 16px;
	text-align: left;
	font-size: 13px;
	color: var(--charcoal);
	transition: background 0.15s;
}

.dropdown-item-label {
	flex: 1;
	min-width: 0;
}

.dropdown-item:hover,
.dropdown-option:hover {
	background: #f9fafb;
}

.dropdown-item small {
	display: block;
	font-size: 10px;
	color: var(--gray);
}

.dropdown-option.active {
	color: var(--cyan);
	font-weight: 700;
}

.header-icons {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 6px 8px;
	border-radius: 8px;
	color: var(--white);
	font-size: 9px;
	font-weight: 700;
	font-family: var(--font-display);
}

.header-icon:hover {
	background: rgba(255, 255, 255, 0.15);
}

.cart-wrap {
	position: relative;
	display: flex;
}

.cart-count {
	position: absolute;
	top: -6px;
	right: -6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--white);
	color: var(--cyan);
	font-size: 9px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	border-radius: 8px;
	color: var(--white);
	line-height: 1;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.menu-toggle:hover {
	background: rgba(255, 255, 255, 0.15);
}

.menu-toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-toggle-icon-close {
	display: none;
}

.menu-toggle.open .menu-toggle-icon-open {
	display: none;
}

.menu-toggle.open .menu-toggle-icon-close {
	display: flex;
}

.menu-toggle.open::before {
	content: none;
	display: none;
}

.header-nav {
	display: none;
	background: var(--cyan-dark);
	border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.nav-menu {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
	overflow-x: auto;
	scrollbar-width: none;
}

.nav-menu li {
	list-style: none;
}

.nav-menu::-webkit-scrollbar {
	display: none;
}

.nav-menu a {
	display: block;
	margin: 6px 2px;
	padding: 5px 14px;
	border-radius: 999px;
	border: 2px solid transparent;
	color: var(--white);
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
	text-transform: capitalize;
}

.nav-menu a:hover {
	background: rgba(255, 255, 255, 0.15);
}

.nav-menu .active a {
	font-weight: 700;
	border-color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.15);
}

.mobile-menu {
	display: none;
	background: var(--cyan);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu.open {
	display: block;
}

.mobile-search {
	display: flex;
	margin: 12px 16px 8px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-search input {
	flex: 1;
	min-width: 0;
	padding: 10px 16px;
	border: none;
	outline: none;
	font-size: 14px;
	color: var(--charcoal);
}

.mobile-search button {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 16px;
	background: var(--cyan);
	color: var(--white);
	flex-shrink: 0;
}

.mobile-links {
	padding: 0 16px 16px;
}

.mobile-links a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--white);
	font-family: var(--font-display);
	font-size: 14px;
	opacity: 0.82;
}

.mobile-links a.active {
	font-weight: 700;
	opacity: 1;
}

.mobile-account-links {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	margin-top: 4px;
	padding-top: 8px;
}

.mobile-account-links a {
	font-weight: 700;
	opacity: 1;
}

/* Desktop header ? must come AFTER base header display rules */
@media (min-width: 1024px) {
	.country-wrap.guest-only {
		display: block;
	}

	.country-wrap.member-only {
		display: none;
	}

	.logged-in .country-wrap.guest-only {
		display: none !important;
	}

	.logged-in .country-wrap.member-only {
		display: block !important;
	}

	.header-nav {
		display: block;
	}

	.menu-toggle {
		display: none;
	}

	.mobile-menu,
	.mobile-menu.open {
		display: none !important;
	}
}

.announcement {
	position: relative;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ann-1);
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: background 0.35s;
}

.announcement-slides {
	position: relative;
	flex: 1;
	min-width: 0;
	height: 100%;
}

.announcement-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 64px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease, transform 0.35s ease;
	transform: translateY(6px);
}

.announcement-slide.active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.announcement-text {
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	font-family: var(--font-display);
	letter-spacing: 0.02em;
	text-align: center;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.announcement-dots {
	position: absolute;
	right: 16px;
	display: flex;
	gap: 5px;
	align-items: center;
}

.announcement-dots button {
	width: 6px;
	height: 6px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.3);
	padding: 0;
	transition: all 0.3s;
}

.announcement-dots button.active {
	width: 20px;
	background: var(--white);
}

/* Split card sections (hero, soda, hydrogen) */
.split-card {
	display: flex;
	flex-direction: column;
	min-height: 0;
	border: 2.5px solid var(--cyan-darker);
	border-radius: 16px;
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 2px 20px rgba(0, 153, 187, 0.12);
}

@media (min-width: 480px) {
	.split-card {
		border-radius: 20px;
	}
}

.split-copy {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0;
	min-height: 0;
	overflow: hidden;
}

.split-inner {
	flex: 1;
	overflow-y: auto;
	padding: 16px 16px 12px;
	min-height: 0;
}

@media (min-width: 480px) {
	.split-inner {
		padding: 20px 20px 12px;
	}
}

@media (min-width: 768px) {
	.split-inner {
		padding: 24px 24px 12px;
	}
}

.split-video.flush {
	border-radius: 0;
	box-shadow: none;
}

.split-video {
	display: flex;
	flex-direction: column;
	min-height: 0;
	flex: 1;
	border-radius: 16px;
	overflow: hidden;
	background: var(--dark);
	border: 2px solid rgba(0, 180, 216, 0.4);
	box-shadow: 0 8px 48px rgba(0, 180, 216, 0.12), 0 4px 24px rgba(0, 0, 0, 0.25);
}

.split-video.pad {
	margin: 16px;
}

@media (min-width: 992px) {
	.split-card {
		flex-direction: row;
		height: 480px;
		min-height: 480px;
	}

	.split-card.split-reverse {
		flex-direction: row-reverse;
	}

	.split-copy {
		width: 36%;
		flex-shrink: 0;
		border-right: 2px solid var(--cyan-darker);
	}

	.split-card.split-reverse .split-copy {
		border-right: none;
		border-left: 2px solid var(--cyan-darker);
	}

	.split-video {
		flex: 1;
		min-width: 0;
	}

	.split-video.pad {
		margin: 20px;
	}
}

@media (max-width: 991px) {
	.split-card.split-reverse {
		flex-direction: column;
	}

	.split-copy {
		width: 100%;
		border-bottom: 2px solid var(--cyan-darker);
	}

	.split-card.split-reverse .split-copy {
		border-left: none;
	}

	.split-video {
		min-height: 280px;
	}
}

.split-inner h1 {
	font-size: clamp(24px, 7vw, 48px);
	font-weight: 800;
	line-height: 1;
	margin-bottom: 16px;
}

.split-inner h2 {
	font-size: clamp(20px, 5.5vw, 28px);
	line-height: 1.15;
	margin-bottom: 12px;
}

.subtitle {
	font-size: 16px;
	font-weight: 700;
	color: var(--cyan);
	margin-bottom: 12px;
}

.split-inner p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 20px;
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 500;
}

.split-footer {
	border-top: 2px solid var(--cyan-darker);
	background: var(--light-blue);
	padding: 12px 20px;
	flex-shrink: 0;
}

.video-head {
	flex-shrink: 0;
	background: var(--cyan);
	padding: 12px 20px;
	color: var(--white);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(13px, 1.6vw, 22px);
	text-align: center;
	line-height: 1.2;
	margin: 0;
}

.video-body {
	flex: 1 1 auto;
	min-height: 200px;
	position: relative;
	background: #111;
	overflow: hidden;
}

.video-body video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.video-foot {
	flex-shrink: 0;
	background: #111;
	border-top: 1px solid rgba(0, 180, 216, 0.2);
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}

.video-sound {
	position: absolute;
	bottom: 14px;
	right: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 2;
}

.sound-hint {
	background: rgba(0, 0, 0, 0.6);
	color: rgba(255, 255, 255, 0.9);
	font-size: 11px;
	padding: 5px 12px;
	border-radius: 20px;
	backdrop-filter: blur(4px);
	white-space: nowrap;
}

.sound-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	flex-shrink: 0;
}

.sound-btn .icon-on {
	display: none;
}

.sound-btn.unmuted .icon-muted {
	display: none;
}

.sound-btn.unmuted .icon-on {
	display: block;
}

.video-sound:has(.sound-btn.unmuted) .sound-hint {
	display: none;
}

.video-stat {
	display: flex;
	align-items: center;
	gap: 10px;
}

.video-stat>span {
	font-size: 20px;
}

.video-stat small {
	display: block;
	font-size: 10px;
	color: var(--gray);
	line-height: 1;
}

.video-stat strong {
	display: block;
	font-size: 15px;
	font-weight: 800;
	color: var(--cyan);
	font-family: var(--font-display);
	line-height: 1.3;
}

.video-tags {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.video-tags span {
	font-size: 10px;
	color: rgba(255, 255, 255, 0.55);
	display: flex;
	align-items: center;
	gap: 6px;
}

.video-tags span::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--cyan);
	flex-shrink: 0;
}

.spec-box {
	background: var(--white);
	border-radius: 12px;
	border: 1px solid rgba(0, 180, 216, 0.2);
	padding: 12px 16px;
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.spec-box div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.spec-box span {
	font-size: 11px;
	color: var(--gray);
}

.spec-box strong {
	font-size: 11px;
	font-weight: 700;
	font-family: var(--font-display);
}

.benefit-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}

.benefit-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 11px;
}

.benefit-list strong {
	font-size: 12px;
	font-weight: 700;
	font-family: var(--font-display);
	color: var(--charcoal);
}

.benefit-list li>div {
	color: var(--gray);
	line-height: 1.5;
}

/* Stats bar */
.stats-bar {
	background: var(--dark);
	margin-top: 16px;
	border-radius: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	padding: 32px 0;
}

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

.stat-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.stat-icon {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	flex-shrink: 0;
	background: rgba(0, 180, 216, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-icon img,
.stat-icon svg {
	width: 24px;
	height: 24px;
	object-fit: contain;
	color: var(--cyan);
	flex-shrink: 0;
}

.gtranslate_wrapper{
	padding: 6px 8px;
}

.stat-num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(18px, 2.2vw, 28px);
	color: var(--cyan);
	line-height: 1;
	font-variant-numeric: tabular-nums;
}

.stat-label {
	font-size: 12px;
	color: var(--gray);
	margin-top: 4px;
	line-height: 1.3;
}

/* GCC */
.gcc {
	background: var(--dark);
}

.gcc h2 {
	font-size: clamp(24px, 3vw, 30px);
	font-weight: 700;
	color: var(--white);
	margin-bottom: 8px;
}

.gcc-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.gcc-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 20px 24px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
	min-width: 120px;
}

.gcc-card.active {
	background: rgba(0, 180, 216, 0.12);
	border-color: var(--cyan);
}

.gcc-flag {
	width: 32px;
	height: 22px;
}

.gcc-name {
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
	color: var(--gray);
}

.gcc-card.active .gcc-name {
	color: var(--white);
}

.gcc-badge {
	font-size: 12px;
	padding: 2px 10px;
	border-radius: 999px;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.08);
	color: var(--gray);
}

.gcc-badge.available {
	background: var(--cyan);
	color: var(--white);
}

.gcc-ping {
	display: none;
	position: absolute;
	top: -6px;
	right: -6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--cyan);
	animation: ping 1.5s infinite;
}

.gcc-card.active .gcc-ping {
	display: block;
}

@keyframes ping {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	75%,
	100% {
		transform: scale(2);
		opacity: 0;
	}
}

/* Product carousel */
.carousel-section {
	background: var(--bg);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	padding: 40px 0 44px;
}

.carousel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 0 20px;
	margin-bottom: 14px;
}

.carousel-head h2 {
	font-size: 22px;
	font-weight: 800;
	font-family: var(--font-display);
}

.carousel-head p {
	font-size: 13px;
	color: var(--muted);
	margin-top: 4px;
}

.carousel-controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.carousel-arrow {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(0, 180, 216, 0.15);
	border: 1.5px solid rgba(0, 180, 216, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-wrap {
	overflow: hidden;
	padding: 4px 0 8px;
}

.carousel-track {
	display: flex;
	gap: 12px;
	width: max-content;
	padding-left: 12px;
	will-change: transform;
	align-items: start;
}

.carousel-wrap.is-paused .carousel-track {
	transition: transform 0.45s ease;
}

.product-card {
	flex-shrink: 0;
	width: 188px;
	border-radius: 14px;
	overflow: hidden;
	background: var(--white);
	border: 1.5px solid rgba(0, 0, 0, 0.07);
	transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
	border-color: var(--cyan);
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 180, 216, 0.25);
}

.product-img {
	position: relative;
	height: 160px;
	background: #222;
	overflow: hidden;
}

.product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

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

.product-badge {
	position: absolute;
	top: 8px;
	left: 8px;
	padding: 2px 8px;
	border-radius: 99px;
	font-size: 9px;
	font-weight: 700;
	color: var(--white);
	font-family: var(--font-display);
}

.product-badge.cyan {
	background: var(--cyan);
}

.product-badge.purple {
	background: var(--purple);
}

.product-badge.orange {
	background: var(--orange);
}

.product-badge.red {
	background: var(--red);
}

.sold-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
	font-family: var(--font-display);
}

.product-info {
	padding: 10px 12px;
}

.product-cat {
	font-size: 9px;
	color: var(--cyan);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.product-info h3 {
	font-size: 12px;
	font-weight: 700;
	font-family: var(--font-display);
	margin: 3px 0 4px;
	line-height: 1.3;
}

.product-rating {
	font-size: 10px;
	color: var(--gray);
	margin-bottom: 6px;
}

.product-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.product-price {
	font-size: 13px;
	font-weight: 800;
	color: var(--cyan);
	font-family: var(--font-display);
}

.stock {
	font-size: 9px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 99px;
}

.stock.in {
	background: rgba(34, 197, 94, 0.15);
	color: var(--green);
}

.stock.out {
	background: rgba(255, 255, 255, 0.08);
	color: var(--gray);
}

/* How it works */
.boxed {
	border: 2.5px solid var(--cyan-darker);
	border-radius: 24px;
	padding: 32px;
	background: var(--light-teal);
}

.tabs {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.tab-btn {
	padding: 10px 24px;
	border-radius: 999px;
	cursor: pointer;
	text-align: center;
	background: var(--bg);
	border: 2px solid rgba(0, 0, 0, 0.08);
	transition: all 0.2s;
}

.tab-btn span {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	color: var(--charcoal);
}

.tab-btn small {
	display: block;
	font-size: 10px;
	color: var(--gray);
	margin-top: 1px;
}

.tab-btn.active {
	background: var(--cyan);
	border-color: var(--cyan);
}

.tab-btn.active span {
	color: var(--white);
}

.tab-btn.active small {
	color: rgba(255, 255, 255, 0.8);
}

.tab-panels {
	background: var(--white);
	border-radius: 20px;
	padding: 32px 28px;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.tab-panel {
	display: none;
}

.tab-panel.active {
	display: block;
}

.tab-label {
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 32px;
	font-family: var(--font-display);
}

.tab-label.cyan {
	color: var(--cyan);
}

.tab-label.purple {
	color: var(--purple);
}

.tab-label.left {
	text-align: left;
	margin-bottom: 24px;
}

.steps-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

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

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

.step-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	position: relative;
}

.step-num {
	position: absolute;
	top: -8px;
	right: calc(50% - 38px);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--charcoal);
	color: var(--white);
	font-size: 10px;
	font-weight: 800;
	font-family: var(--font-display);
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 180, 216, 0.09);
	border: 2px solid rgba(0, 180, 216, 0.25);
}

.step-icon img,
.awg-icon img,
.credit-icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.step-icon.cyan {
	background: var(--cyan);
	border-color: var(--cyan);
}

.step-icon.purple-fill {
	background: var(--purple);
	border-color: var(--purple);
}

.step-card h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
}

.step-card p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.65;
}

.step-tag {
	display: inline-block;
	font-size: 9px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 99px;
	background: rgba(0, 180, 216, 0.09);
	color: var(--cyan);
	margin-bottom: 6px;
}

.step-tag.purple {
	background: rgba(99, 102, 241, 0.09);
	color: var(--purple);
}

.step-tag.green {
	background: rgba(34, 197, 94, 0.12);
	color: #16a34a;
}

.step-tag.orange {
	background: rgba(245, 158, 11, 0.12);
	color: #d97706;
}

.awg-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

@media (min-width: 1024px) {
	.awg-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.awg-flow {
	display: flex;
	flex-direction: column;
}

.awg-step {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding-bottom: 20px;
}

.awg-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.awg-icon.cyan {
	background: rgba(0, 180, 216, 0.09);
	border: 2px solid rgba(0, 180, 216, 0.31);
}

.awg-icon.green {
	background: rgba(34, 197, 94, 0.09);
	border: 2px solid rgba(34, 197, 94, 0.31);
}

.awg-icon.orange {
	background: rgba(245, 158, 11, 0.09);
	border: 2px solid rgba(245, 158, 11, 0.31);
}

.awg-step h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.awg-step p {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.65;
}

.warranty-card {
	background: var(--white);
	border-radius: 16px;
	padding: 24px;
	border: 2px solid rgba(0, 180, 216, 0.25);
	box-shadow: 0 4px 20px rgba(0, 180, 216, 0.08);
}

.warranty-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.warranty-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(0, 180, 216, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.warranty-head strong {
	display: block;
	font-size: 16px;
	font-weight: 800;
}

.warranty-head span {
	font-size: 11px;
	color: var(--cyan);
}

.check-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 16px;
}

.check-list li {
	padding-left: 23px;
	position: relative;
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
}

.check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 3px;
	width: 14px;
	height: 14px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='m9 12 2 2 4-4'%3E%3C/path%3E%3C/svg%3E") no-repeat center / contain;
}

.warranty-note {
	background: rgba(0, 180, 216, 0.06);
	border-radius: 10px;
	padding: 12px 14px;
	border-left: 3px solid var(--cyan);
}

.warranty-note strong {
	display: block;
	font-size: 12px;
	margin-bottom: 4px;
}

.warranty-note p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.6;
}

/* Credit section */
.credit {
	background: var(--light-teal);
	padding: 48px 24px;
}

.credit-box {
	border: 2.5px solid var(--cyan-darker);
	border-radius: 24px;
	background: var(--white);
	overflow: hidden;
}

.credit-head {
	border-bottom: 1px solid rgba(0, 180, 216, 0.15);
	padding: 40px 24px 32px;
}

.credit-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 16px;
	border-radius: 999px;
	background: rgba(0, 180, 216, 0.1);
	border: 1px solid rgba(0, 180, 216, 0.3);
	color: var(--cyan);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 16px;
	font-family: var(--font-display);
}

.credit-head h2 {
	font-size: clamp(22px, 4vw, 36px);
	font-weight: 800;
	margin-bottom: 10px;
}

.credit-head p {
	font-size: 14px;
	color: var(--muted);
	max-width: 580px;
	margin: 0 auto;
}

.credit-body {
	padding: 48px 32px;
}

.credit-label {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 13px;
	color: #374151;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 24px;
}

.credit-flow {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 48px;
}

.credit-step {
	flex: 1;
	min-width: 0;
	border-radius: 16px;
	padding: 20px 18px;
	position: relative;
	background: var(--white);
	border: 1.5px solid rgba(0, 0, 0, 0.08);
}

@media (min-width: 640px) {
	.credit-step {
		min-width: 200px;
	}
}

.credit-num {
	position: absolute;
	top: -10px;
	left: 16px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	color: var(--white);
	font-size: 12px;
	font-weight: 800;
	font-family: var(--font-display);
	display: flex;
	align-items: center;
	justify-content: center;
}

.credit-step:nth-child(1) .credit-num {
	background: var(--cyan);
}

.credit-step:nth-child(2) .credit-num {
	background: var(--purple);
}

.credit-step:nth-child(3) .credit-num {
	background: var(--orange);
}

.credit-step:nth-child(4) .credit-num {
	background: var(--green);
}

.credit-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.credit-icon.cyan {
	background: rgba(0, 180, 216, 0.09);
	border: 1.5px solid rgba(0, 180, 216, 0.25);
}

.credit-icon.purple {
	background: rgba(99, 102, 241, 0.09);
	border: 1.5px solid rgba(99, 102, 241, 0.25);
}

.credit-icon.orange {
	background: rgba(245, 158, 11, 0.09);
	border: 1.5px solid rgba(245, 158, 11, 0.25);
}

.credit-icon.green {
	background: rgba(34, 197, 94, 0.09);
	border: 1.5px solid rgba(34, 197, 94, 0.25);
}

.credit-icon.red {
	background: rgba(244, 63, 94, 0.09);
	border: 1.5px solid rgba(244, 63, 94, 0.25);
}

.credit-step h3 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 6px;
}

.credit-step p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
}

.credit-note {
	margin-top: 16px;
	padding: 10px 18px;
	border-radius: 10px;
	text-align: center;
	background: rgba(0, 180, 216, 0.06);
	border: 1px solid rgba(0, 180, 216, 0.15);
	font-size: 14px;
	color: #4b5563;
	margin-bottom: 40px;
}

.credit-note span {
	color: var(--cyan);
	font-weight: 700;
}

.credit-use-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-bottom: 40px;
}

@media (min-width: 640px) {
	.credit-use-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.credit-use-card {
	border-radius: 16px;
	padding: 20px;
	background: var(--white);
	border: 1.5px solid rgba(0, 0, 0, 0.07);
}

.credit-use-card h3 {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.credit-use-card p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
}

.partner-cta {
	border-radius: 20px;
	padding: 28px 32px;
	background: var(--light-teal);
	border: 1.5px solid rgba(0, 180, 216, 0.3);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.partner-info {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	flex: 1;
	min-width: 0;
}

.partner-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: rgba(0, 180, 216, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.partner-info h3 {
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 4px;
}

.partner-info>div>p {
	font-size: 14px;
	color: #4b5563;
	max-width: 480px;
	line-height: 1.6;
}

.partner-points {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 10px;
}

.partner-points li {
	font-size: 13px;
	color: #4b5563;
	padding-left: 18px;
	position: relative;
}

.partner-points li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 12px;
	height: 12px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='m9 12 2 2 4-4'%3E%3C/path%3E%3C/svg%3E") no-repeat center / contain;
}

.partner-btns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
}

/* Footer */
.footer-top {
	background: var(--light-blue);
	border-top: 1px solid rgba(0, 180, 216, 0.2);
	padding: 48px 0 40px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

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

.footer-brand {
	grid-column: span 2;
}

@media (min-width: 1024px) {
	.footer-brand {
		grid-column: span 1;
	}
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}

.footer-logo img {
	height: 45px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
	flex-shrink: 0;
	background: var(--white);
	border-radius: 10px;
	padding: 5px 6px;
}

.footer-logo strong {
	display: block;
	font-size: 14px;
	font-weight: 800;
	color: var(--cyan);
	font-family: var(--font-display);
	line-height: 1;
}

.footer-logo span {
	display: block;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--muted);
	margin-top: 2px;
}

.footer-brand p {
	font-size: 14px;
	color: #4b5563;
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer-brand p br + br {
	display: none;
}

.footer-col h4 {
	font-size: 14px;
	font-weight: 700;
	color: #1a3a4a;
	font-family: var(--font-display);
	margin-bottom: 16px;
}

.footer-col a {
	display: block;
	font-size: 14px;
	color: #4b5563;
	margin-bottom: 10px;
	transition: color 0.15s;
}

.footer-col a:hover {
	color: var(--cyan);
}

.footer-bottom {
	background: var(--dark);
}

.footer-bottom-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
}

@media (min-width: 640px) {
	.footer-bottom-row {
		flex-direction: row;
	}
}

.footer-bottom p {
	font-size: 12px;
	color: var(--gray);
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(209, 213, 219, 0.9);
	transform: translateY(0);
	box-shadow: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social a:hover {
	background: var(--cyan);
	border-color: var(--cyan);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 180, 216, 0.35);
}

.footer-social a:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(0, 180, 216, 0.25);
}

.footer-social a svg {
	width: 16px;
	height: 16px;
	display: block;
	transition: transform 0.2s ease;
}

.footer-social a:hover svg {
	transform: scale(1.08);
}

.whatsapp-float {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 40;
	padding: 12px 16px;
	border-radius: 999px;
	background: var(--whatsapp);
	color: var(--white);
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
	border: none;
	cursor: pointer;
}

.whatsapp-float:hover {
	transform: scale(1.05);
}

/* ==========================================================================
   Responsive ? mobile first from 320px
   ========================================================================== */

/* Header ? matches design: logo | search | cart | menu (< 1024px) */
@media (max-width: 1023px) {
	.contact-aside{
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.header-row {
		gap: 8px;
	}

	.search-bar {
		flex: 1;
		min-width: 0;
		height: 36px;
	}

	.search-input {
		font-size: 13px;
		padding: 0 10px;
	}

	.search-submit {
		padding: 0 14px;
	}

	.search-submit svg {
		width: 16px;
		height: 16px;
	}

	.menu-toggle {
		display: flex;
	}

	.header-icon .hide-mobile {
		display: none !important;
	}
}

@media (max-width: 479px) {
	.header-row {
		gap: 6px;
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.logo img {
		height: 32px;
		padding: 4px 5px;
	}

	.search-bar {
		height: 34px;
	}

	.search-input {
		font-size: 12px;
		padding: 0 8px;
	}

	.search-submit {
		padding: 0 12px;
	}

	.header-icon {
		padding: 4px 4px;
	}

	.menu-toggle {
		padding: 6px;
	}
}

@media (min-width: 480px) and (max-width: 1023px) {
	.logo img {
		height: 34px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.header-row {
		gap: 10px;
	}

	.search-input {
		font-size: 14px;
		padding: 0 14px;
	}
}

/* Header: logo + cart + menu on small screens; search in mobile menu */
@media (max-width: 767px) {
	.dropdown {
		max-width: min(220px, calc(100vw - 24px));
	}
}

/* Announcement band */
@media (max-width: 479px) {
	.announcement {
		height: auto;
		min-height: 48px;
		padding: 8px 0;
	}

	.announcement-text {
		font-size: 11px;
		white-space: normal;
		line-height: 1.35;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.announcement-slide {
		padding: 0 52px 0 12px;
	}

	.announcement-dots {
		right: 8px;
		gap: 4px;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.announcement-slide {
		padding: 0 56px;
	}

	.announcement-text {
		font-size: 13px;
	}
}

/* Split / video sections */
@media (max-width: 479px) {
	.badge {
		font-size: 11px;
		padding: 5px 12px;
		margin-bottom: 14px;
	}

	.split-inner p {
		font-size: 13px;
		margin-bottom: 14px;
	}

	.feature-list li {
		font-size: 12px;
		gap: 8px;
	}

	.split-footer {
		padding: 10px 14px;
	}

	.split-video.pad {
		margin: 12px;
	}

	.video-head {
		padding: 10px 12px;
		font-size: 12px;
		white-space: normal;
		line-height: 1.3;
	}

	.video-body {
		min-height: 180px;
	}

	.video-foot {
		flex-direction: column;
		align-items: flex-start;
		padding: 10px 12px;
		gap: 10px;
	}

	.video-tags {
		gap: 10px;
	}

	.video-sound {
		bottom: 10px;
		right: 10px;
	}

	.sound-hint {
		display: none;
	}

	.spec-box {
		padding: 10px 12px;
	}

	.spec-box span,
	.spec-box strong {
		font-size: 10px;
	}
}

@media (max-width: 380px) {
	.split-inner h1 {
		font-size: 24px;
	}
}

/* Stats */
@media (max-width: 479px) {
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 20px 12px;
	}

	.stat-item {
		gap: 12px;
	}

	.stat-icon {
		width: 40px;
		height: 40px;
		border-radius: 12px;
	}

	.stat-num {
		font-size: clamp(16px, 5vw, 22px);
	}
}

@media (min-width: 480px) and (max-width: 1023px) {
	.stats-grid {
		gap: 20px;
		padding: 24px 16px;
	}
}

/* GCC countries */
@media (max-width: 639px) {
	.gcc-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		margin-top: 24px;
	}

	.gcc-card {
		min-width: 0;
		padding: 14px 10px;
	}

	.gcc-flag {
		width: 34px;
		height: 24px;
	}

	.gcc-name {
		font-size: 12px;
	}

	.gcc-badge {
		font-size: 10px;
		padding: 2px 8px;
		text-align: center;
	}

	.section-intro {
		margin-bottom: 28px;
		padding: 0 var(--pad);
	}

	.section-intro h2 {
		font-size: clamp(22px, 6vw, 28px);
	}
}

/* Product carousel */
@media (max-width: 479px) {
	.carousel-section {
		padding: 28px 0 32px;
	}

	.carousel-head {
		padding: 0 var(--pad);
		gap: 12px;
	}

	.carousel-head h2 {
		font-size: 18px;
	}

	.carousel-head p {
		font-size: 12px;
	}

	.product-card {
		width: 160px;
	}

	.product-img {
		height: 130px;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.product-card {
		width: 172px;
	}
}

/* How it works */
@media (max-width: 639px) {
	.boxed {
		padding: 16px 14px;
		border-radius: 16px;
	}

	.tabs {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		gap: 8px;
		margin-bottom: 24px;
		padding-bottom: 4px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.tabs::-webkit-scrollbar {
		display: none;
	}

	.tab-btn {
		flex-shrink: 0;
		padding: 8px 14px;
	}

	.tab-btn span {
		font-size: 13px;
	}

	.tab-btn small {
		font-size: 9px;
	}

	.tab-panels {
		padding: 20px 14px;
		border-radius: 14px;
	}

	.tab-label {
		margin-bottom: 20px;
		font-size: 11px;
	}

	.step-icon {
		width: 48px;
		height: 48px;
	}

	.awg-step h3 {
		font-size: 14px;
	}

	.awg-step p {
		font-size: 13px;
	}

	.warranty-card {
		padding: 16px;
	}
}

/* Credit section */
@media (max-width: 767px) {
	.credit {
		padding: 32px var(--pad);
	}

	.credit-head {
		padding: 24px 16px 20px;
	}

	.credit-body {
		padding: 24px 16px;
	}

	.credit-step {
		min-width: 100%;
		flex: 1 1 100%;
	}

	.credit-use-grid {
		grid-template-columns: 1fr;
	}

	.partner-cta {
		flex-direction: column;
		align-items: stretch;
		padding: 28px 10px;
	}

	.partner-info {
		min-width: 0;
	}

	.partner-btns {
		width: 100%;
	}

	.partner-btns .btn {
		width: 100%;
		justify-content: center;
	}
}

/* Footer */
@media (max-width: 639px) {
	.footer-top {
		padding: 40px 0 32px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.footer-brand {
		grid-column: span 1;
	}

	.footer-bottom-row {
		gap: 16px;
		text-align: center;
	}

	.footer-bottom-row p {
		font-size: 12px;
	}

	.footer-social {
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media (min-width: 640px) and (max-width: 1023px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

	.footer-brand {
		grid-column: span 2;
	}
}

/* WhatsApp float */
@media (max-width: 479px) {
	.whatsapp-float {
		bottom: 14px;
		right: 14px;
		padding: 10px 14px;
		font-size: 12px;
	}
}

/* Shop page */
.shop-hero {
	background: var(--white);
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	padding: 32px 0;
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 12px;
}

.breadcrumb a:hover {
	color: var(--cyan);
}

.breadcrumb .current {
	color: var(--cyan);
}

.shop-hero h1 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 800;
}

.shop-body {
	padding: 32px 0 40px;
}

.shop-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	padding: 12px 16px;
	margin-bottom: 32px;
}

.shop-filters-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	flex-shrink: 0;
}

.shop-filters-label svg {
	color: var(--cyan);
}

.shop-filters-sep {
	width: 1px;
	height: 20px;
	background: #e5e7eb;
	flex-shrink: 0;
}

.shop-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pill {
	padding: 6px 16px;
	border-radius: 99px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
	border: 1px solid #e5e7eb;
	background: var(--white);
	color: var(--muted);
	cursor: pointer;
	white-space: nowrap;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.pill:hover {
	border-color: var(--cyan);
	color: var(--cyan);
}

.pill.active {
	background: var(--cyan);
	border-color: var(--cyan);
	color: var(--white);
}

.shop-sort {
	display: flex;
	align-items: center;
	gap: 8px;
}

.shop-sort-label {
	font-size: 14px;
	color: var(--gray);
}

.shop-sort select {
	font-size: 14px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 99px;
	padding: 6px 12px;
	background: var(--white);
	cursor: pointer;
	outline: none;
}

.shop-count {
	font-size: 14px;
	color: var(--gray);
	margin-bottom: 20px;
}

.shop-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 40px;
}

.shop-card {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}

.shop-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.shop-card-link {
	display: block;
	color: inherit;
}

.shop-card-img {
	position: relative;
	aspect-ratio: 1;
	background: #f9fafb;
	overflow: hidden;
}

.shop-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.shop-card:hover .shop-card-img img {
	transform: scale(1.05);
}

.shop-tags {
	position: absolute;
	top: 12px;
	left: 12px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.shop-tag {
	font-size: 12px;
	padding: 2px 10px;
	border-radius: 99px;
	font-weight: 600;
	color: var(--white);
}

.shop-tag.green {
	background: var(--green);
}

.shop-tag.cyan {
	background: var(--cyan);
}

.shop-tag.muted {
	background: #eef0f2;
	color: var(--gray);
}

.shop-card .shop-wish {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: none;
	background: var(--white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.shop-card .shop-wish svg {
	stroke: var(--gray);
	fill: none;
}

.shop-card .shop-wish.active svg {
	stroke: var(--red);
	fill: var(--red);
}

.shop-card-body {
	padding: 16px;
}

.shop-rating {
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 6px;
}

.shop-card-body h3 {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 4px;
}

.shop-spec {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.4;
	margin-bottom: 16px;
}

.shop-card-foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
}

.shop-price {
	display: block;
	font-size: 16px;
	font-weight: 800;
	font-family: var(--font-display);
}

.shop-card-foot small {
	display: block;
	font-size: 10px;
	color: var(--gray);
	margin-top: 2px;
}

.shop-empty {
	text-align: center;
	padding: 96px 16px;
	color: var(--gray);
}

.wishlist-empty {
	text-align: center;
	padding: 48px 16px 96px;
}

.wishlist-empty .btn {
	margin-top: 24px;
}

.shop-wish:disabled {
	opacity: 0.6;
	cursor: wait;
}

.shop-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 40px;
}

.shop-page-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: var(--white);
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shop-page-btn.active {
	background: var(--cyan);
	border-color: var(--cyan);
	color: var(--white);
}

.shop-page-btn:disabled {
	opacity: 0.3;
	cursor: default;
}

.shop-page-btn:hover:not(:disabled) {
	border-color: var(--cyan);
	color: var(--cyan);
}

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

@media (max-width: 639px) {

	.shop-filters-sep,
	.shop-sort-label {
		display: none;
	}

	.shop-sort {
		margin-left: 0;
		width: 100%;
	}

	.shop-sort select {
		flex: 1;
	}
}

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

/* Certificates page */
.page-certs {
	background: #f8f9fa;
}

.certs-hero {
	position: relative;
	background: #1a1a1a;
	padding: 28px 0 24px;
	overflow: hidden;
}

.certs-hero-grid {
	position: absolute;
	inset: 0;
	opacity: 0.035;
	background-image: linear-gradient(rgba(0, 180, 216, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 1) 1px, transparent 1px);
	background-size: 56px 56px;
}

.certs-hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 1064px;
}

@media (min-width: 1024px) {
	.certs-hero-inner {
		flex-direction: row;
		align-items: center;
	}
}

.certs-hero-text h1 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 4px;
}

.certs-hero-text p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	max-width: 36rem;
}

.certs-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 99px;
	font-size: 12px;
	font-weight: 600;
	color: var(--cyan);
	border: 1px solid rgba(0, 180, 216, 0.3);
	background: rgba(0, 180, 216, 0.08);
	margin-bottom: 12px;
}

.certs-badge-light {
	color: var(--cyan);
	border-color: rgba(0, 180, 216, 0.25);
	background: rgba(0, 180, 216, 0.07);
}

.certs-auth-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.certs-auth {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 8px 12px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
}

.certs-auth-abbr {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	font-family: var(--font-display);
}

.certs-auth small {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.35);
	text-align: center;
	max-width: 72px;
	line-height: 1.3;
}

.certs-section {
	padding: 56px 0;
	background: var(--white);
}

.certs-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
}

.certs-section-head h2 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 800;
}

.certs-section-head-dark h2 {
	color: var(--white);
}

.certs-note {
	font-size: 14px;
	color: var(--gray);
	flex-shrink: 0;
}

.certs-section-head-dark .certs-note {
	color: rgba(255, 255, 255, 0.3);
}

.certs-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

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

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

.cert-card {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.cert-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	border-color: var(--cyan);
}

.cert-card-accent {
	height: 4px;
	background: transparent;
	transition: background 0.2s;
}

.cert-card:hover .cert-card-accent {
	background: var(--cyan);
}

.cert-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.cert-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 20px;
}

.cert-icon {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: rgba(0, 180, 216, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cyan);
	flex-shrink: 0;
}

.cert-icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.cert-status {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 99px;
	background: rgba(34, 197, 94, 0.1);
	color: #16a34a;
}

.cert-card-body h3 {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 4px;
}

.cert-authority {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.5;
	margin-bottom: 16px;
	flex: 1;
}

.cert-dates {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	font-size: 11px;
	color: var(--gray);
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	margin-bottom: 16px;
}

.cert-dates strong {
	color: var(--muted);
	font-weight: 600;
}

.cert-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.cert-num {
	font-size: 10px;
	color: #d1d5db;
	font-family: ui-monospace, monospace;
}

.cert-view-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	font-family: var(--font-display);
	padding: 6px 12px;
	border-radius: 99px;
	border: 2px solid var(--cyan);
	background: transparent;
	color: var(--cyan);
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}

.cert-view-btn:hover {
	background: var(--cyan);
	color: var(--white);
}

.cert-view-btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.cert-view-btn:disabled:hover {
	background: transparent;
	color: var(--cyan);
}

.cert-actions {
	position: relative;
}

.cert-actions-menu {
	position: absolute;
	right: 0;
	bottom: calc(100% + 8px);
	min-width: 168px;
	padding: 6px;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	z-index: 5;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.cert-actions-menu[hidden] {
	display: none;
}

.cert-actions-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 600;
	color: var(--dark);
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s, color 0.15s;
}

.cert-actions-item:hover {
	background: rgba(0, 180, 216, 0.1);
	color: var(--cyan);
}

.cert-actions.is-open .cert-view-btn {
	background: var(--cyan);
	color: var(--white);
}

.cert-actions.is-open .cert-chevron {
	transform: rotate(180deg);
}

.cert-chevron {
	transition: transform 0.2s;
}


.certs-patents {
	padding: 56px 0;
	background: #1a1a1a;
}

.certs-patents-head {
	margin-bottom: 40px;
}

.certs-patents-head .certs-section-head {
	margin-top: 16px;
	margin-bottom: 0;
}

.patents-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

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

.patent-card {
	padding: 24px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.04);
	transition: border-color 0.2s;
}

.patent-card:hover {
	border-color: rgba(0, 180, 216, 0.4);
}

.patent-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.patent-id {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.patent-hash {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(0, 180, 216, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cyan);
	flex-shrink: 0;
}

.patent-num {
	display: block;
	font-size: 11px;
	font-family: ui-monospace, monospace;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 2px;
}

.patent-id h3 {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.35;
}

.patent-status {
	flex-shrink: 0;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 99px;
}

.patent-status.granted {
	background: rgba(0, 180, 216, 0.15);
	color: var(--cyan);
}

.patent-status.pending {
	background: rgba(245, 158, 11, 0.15);
	color: #f59e0b;
}

.patent-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.6;
	margin-bottom: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.patent-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.3);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 16px;
}

.patent-meta strong {
	color: rgba(255, 255, 255, 0.5);
	font-weight: 500;
}

.certs-compliance {
	padding: 40px 0;
	background: var(--cyan);
}

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

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

.certs-compliance-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
}

.certs-compliance-icon {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	margin-bottom: 4px;
}

.certs-compliance-icon img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.certs-compliance-item strong {
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	color: var(--white);
}

.certs-compliance-item span {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.75);
}

.certs-trust {
	padding: 24px 0;
	background: #1a1a1a;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.certs-trust-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

@media (min-width: 640px) {
	.certs-trust-row {
		flex-direction: row;
	}
}

.certs-trust-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.4);
}

.certs-trust-logo {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--cyan);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.certs-trust-date {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 639px) {
	.certs-note {
		display: none;
	}
}

/* Library page */
.page-library { background: #f8f9fa; }

.lib-hero {
	position: relative;
	background: #1a1a1a;
	padding: 28px 0;
	overflow: hidden;
	text-align: center;
}

.lib-hero-grid {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image: linear-gradient(rgba(0, 180, 216, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 1) 1px, transparent 1px);
	background-size: 48px 48px;
}

.lib-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
	margin: 0 auto;
}

.lib-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 99px;
	font-size: 12px;
	font-weight: 600;
	color: var(--cyan);
	border: 1px solid rgba(0, 180, 216, 0.3);
	background: rgba(0, 180, 216, 0.08);
	margin-bottom: 16px;
}

.lib-badge-light {
	color: var(--cyan);
	border-color: rgba(0, 180, 216, 0.3);
	background: rgba(0, 180, 216, 0.08);
}

.lib-hero h1 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 12px;
}

.lib-hero-lead {
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.35;
	margin-bottom: 24px;
	font-family: var(--font-display);
}

.lib-search {
	display: flex;
	align-items: center;
	max-width: 36rem;
	margin: 0 auto;
	background: var(--white);
	border-radius: 99px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.lib-search svg {
	flex-shrink: 0;
	margin-left: 20px;
	color: #9ca3af;
}

.lib-search input {
	flex: 1;
	border: none;
	outline: none;
	padding: 16px 12px;
	font-size: 14px;
	background: transparent;
	min-width: 0;
}

.lib-search button {
	flex-shrink: 0;
	padding: 16px 24px;
	border: none;
	background: var(--cyan);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
}

.lib-search button:hover { opacity: 0.9; }

.lib-tabs-wrap {
	position: sticky;
	top: 0;
	z-index: 30;
	background: var(--white);
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.lib-tabs {
	display: flex;
	gap: 8px;
	padding: 12px 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.lib-tabs::-webkit-scrollbar { display: none; }

.lib-tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	padding: 8px 16px;
	border-radius: 99px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: transparent;
	color: var(--muted);
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lib-tab svg { flex-shrink: 0; }

.lib-tab:hover:not(.active) {
	border-color: rgba(0, 0, 0, 0.15);
	color: var(--charcoal);
}

.lib-tab.active {
	background: var(--cyan);
	border-color: var(--cyan);
	color: var(--white);
}

.lib-body { padding: 40px 0; }

.lib-featured {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 40px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.lib-featured-link {
	display: block;
	color: inherit;
}

.lib-featured-bg {
	position: absolute;
	inset: 0;
}

.lib-featured-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s;
}

.lib-featured:hover .lib-featured-bg img { transform: scale(1.05); }

.lib-featured-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.6) 55%, rgba(26, 26, 26, 0.15) 100%);
}

.lib-featured-content {
	position: relative;
	z-index: 1;
	padding: 48px 32px;
	max-width: 36rem;
}

@media (min-width: 1024px) {
	.lib-featured-content { padding: 64px 56px; }
}

.lib-featured-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.lib-featured-meta .lib-read { color: rgba(255, 255, 255, 0.6); font-size: 12px; }

.lib-featured h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 800;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 16px;
}

.lib-featured p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
	margin-bottom: 28px;
}

.lib-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.lib-section-head h2 {
	font-size: 18px;
	font-weight: 700;
}

.lib-section-head h2 span {
	font-size: 14px;
	font-weight: 400;
	color: #9ca3af;
}

.lib-clear-search {
	border: none;
	background: none;
	font-size: 12px;
	color: var(--gray);
	cursor: pointer;
}

.lib-clear-search:hover { color: #f87171; }

.lib-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 56px;
}

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

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

.lib-card {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}

.lib-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.lib-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.lib-card-img {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f3f4f6;
}

.lib-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.lib-card:hover .lib-card-img img { transform: scale(1.05); }

.lib-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.lib-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	gap: 8px;
}

.lib-cat {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 99px;
	font-family: var(--font-body);
}

.lib-cat svg { width: 10px; height: 10px; flex-shrink: 0; }

.lib-cat-sm { font-size: 10px; padding: 2px 8px; gap: 3px; }

.lib-cat[data-cat="Water Science"] { background: #00B4D820; color: #00B4D8; }
.lib-cat[data-cat="Product Guides"] { background: #6366f120; color: #6366f1; }
.lib-cat[data-cat="How-To Manuals"] { background: #f59e0b20; color: #f59e0b; }
.lib-cat[data-cat="Sustainability"] { background: #22c55e20; color: #22c55e; }
.lib-cat[data-cat="Video Guides"] { background: #f43f5e20; color: #f43f5e; }

.lib-read {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	color: var(--gray);
}

.lib-card-body h3 {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.lib-card-body p {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.5;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 16px;
}

.lib-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--cyan);
	font-family: var(--font-display);
}

.lib-card:hover .lib-more svg { transform: translateX(4px); }
.lib-more svg { transition: transform 0.2s; }

.lib-empty {
	text-align: center;
	padding: 96px 16px;
	color: var(--gray);
	margin-bottom: 40px;
}

.lib-videos.container{
	max-width: 1310px;
	padding: 0 16px;
}

.lib-videos { margin-bottom: 40px; }

.lib-videos-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.lib-videos-head h2 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 2px;
}

.lib-videos-head p { font-size: 14px; color: var(--gray); }

.lib-video-nav { display: flex; gap: 8px; flex-shrink: 0; }

.lib-video-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray);
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
}

.lib-video-btn:hover { border-color: var(--cyan); color: var(--cyan); }

.lib-video-row {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	padding-bottom: 8px;
	scrollbar-width: none;
}

.lib-video-row::-webkit-scrollbar { display: none; }

.lib-video-card {
	flex-shrink: 0;
	width: 288px;
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
}

.lib-video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.lib-video-thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f3f4f6;
}

.lib-video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.lib-video-card:hover .lib-video-thumb img { transform: scale(1.05); }

.lib-video-overlay {
	position: absolute;
	inset: 0;
	transition: opacity 0.2s;
}

.lib-video-card:hover .lib-video-overlay { opacity: 0.5; }

.lib-play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.lib-play svg {
	width: 48px;
	height: 48px;
	padding: 14px;
	border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 4px 20px rgba(0, 180, 216, 0.5);
	transition: transform 0.2s;
}

.lib-video-card:hover .lib-play svg { transform: scale(1.12); }

.lib-duration {
	position: absolute;
	bottom: 8px;
	right: 8px;
	font-size: 10px;
	font-weight: 700;
	color: var(--white);
	padding: 2px 8px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.65);
}

.lib-video-body { padding: 16px; }

.lib-video-body h4 {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	margin-top: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Library video modal */
body.lib-video-open { overflow: hidden; }

.lib-video-modal {
	position: fixed;
	inset: 0;
	z-index: 9997;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
}

.lib-video-overlay {
	position: absolute;
	inset: 0;
}

.lib-video-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 960px;
	background: var(--white);
	border-radius: 20px;
	padding: 20px 20px 24px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
	animation: libVideoSlideUp 0.22s ease;
}

@keyframes libVideoSlideUp {
	from { opacity: 0; transform: translateY(16px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

.lib-video-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--muted);
	transition: background 0.2s, color 0.2s;
	z-index: 2;
}

.lib-video-close:hover {
	background: rgba(0, 180, 216, 0.12);
	color: var(--cyan);
}

.lib-video-modal-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	padding-right: 44px;
	margin-bottom: 16px;
}

.lib-video-player-wrap {
	border-radius: 14px;
	overflow: hidden;
	background: #0b1f28;
}

.lib-video-player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.lib-video-player iframe,
.lib-video-player video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background: #000;
}

@media (max-width: 640px) {
	.lib-video-dialog {
		padding: 16px 16px 20px;
		border-radius: 16px;
	}

	.lib-video-modal-title {
		font-size: 16px;
		margin-bottom: 12px;
	}
}

.lib-newsletter {
	padding: 56px 0;
	background: #e8f8fc;
	border-top: 1px solid rgba(0, 180, 216, 0.15);
}

.lib-newsletter-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

@media (min-width: 1024px) {
	.lib-newsletter-inner { flex-direction: row; }
	.lib-newsletter-text { text-align: left; }
}

.lib-newsletter-text { text-align: center; }

.lib-newsletter-text h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 4px;
}

.lib-newsletter-text p { font-size: 14px; color: var(--gray); }

.lib-subscribe {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 28rem;
	background: var(--white);
	border-radius: 99px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.lib-subscribe svg {
	flex-shrink: 0;
	margin-left: 16px;
	color: #9ca3af;
}

.lib-subscribe input {
	flex: 1;
	border: none;
	outline: none;
	padding: 14px 12px;
	font-size: 14px;
	background: transparent;
	min-width: 0;
}

.lib-subscribe button {
	flex-shrink: 0;
	padding: 14px 24px;
	border: none;
	background: var(--cyan);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
}

.lib-subscribed {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	background: var(--white);
	border: 1px solid rgba(0, 180, 216, 0.2);
	border-radius: 16px;
	width: 100%;
	max-width: 28rem;
}

.lib-subscribed-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #22c55e;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
	flex-shrink: 0;
}

.lib-subscribed strong {
	display: block;
	font-size: 14px;
	font-family: var(--font-display);
}

.lib-subscribed span { font-size: 12px; color: var(--gray); }

@media (max-width: 639px) {
	.lib-hero-lead { font-size: 16px; }
	.lib-search button { padding: 16px 18px; }
}

/* WhatsApp modals */
body.wa-open { overflow: hidden; }

.wa-modal {
	position: fixed;
	inset: 0;
	z-index: 9998;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.wa-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(4px);
}

.wa-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 380px;
	background: var(--white);
	border-radius: 20px;
	padding: 28px 24px 24px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
	animation: waSlideUp 0.2s ease;
}

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

.wa-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: none;
	background: rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--muted);
}

.wa-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.wa-icon-green {
	background: rgba(37, 211, 102, 0.1);
	border: 1.5px solid rgba(37, 211, 102, 0.25);
	color: var(--whatsapp);
}

.wa-icon-cyan {
	background: rgba(0, 180, 216, 0.08);
	border: 1.5px solid rgba(0, 180, 216, 0.2);
}

.wa-icon-cyan img { object-fit: contain; }

.wa-title {
	font-size: 16px;
	font-weight: 800;
	text-align: center;
	margin-bottom: 6px;
	font-family: var(--font-display);
}

.wa-desc {
	font-size: 13px;
	color: var(--muted);
	text-align: center;
	line-height: 1.5;
	margin-bottom: 20px;
}

.wa-phone-row {
	display: flex;
	gap: 8px;
	margin-bottom: 16px;
}

.wa-prefix {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 10px 12px;
	border-radius: 12px;
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	background: var(--bg);
	flex-shrink: 0;
	font-size: 13px;
	color: var(--muted);
}

.wa-phone-row input {
	flex: 1;
	padding: 10px 14px;
	border-radius: 12px;
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	font-size: 14px;
	outline: none;
	min-width: 0;
}

.wa-phone-row input:focus { border-color: var(--whatsapp); }

.wa-btn {
	width: 100%;
	padding: 13px;
	border-radius: 99px;
	border: none;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
}

.wa-btn-green {
	background: var(--whatsapp);
	color: var(--white);
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.wa-btn-green:disabled {
	background: #d1d5db;
	box-shadow: none;
	cursor: not-allowed;
}

.wa-btn-cyan {
	background: var(--cyan);
	color: var(--white);
	box-shadow: 0 4px 16px rgba(0, 180, 216, 0.35);
	margin-bottom: 10px;
}

.wa-btn-cancel {
	background: transparent;
	color: var(--muted);
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	padding: 11px;
}

.wa-consent-box {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	background: rgba(0, 180, 216, 0.06);
	border: 1px solid rgba(0, 180, 216, 0.15);
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 16px;
}

.wa-consent-box svg { flex-shrink: 0; color: var(--cyan); margin-top: 1px; }

.wa-consent-box p {
	font-size: 13px;
	color: #4b5563;
	line-height: 1.6;
	margin: 0;
}

.wa-privacy {
	font-size: 11px;
	color: var(--gray);
	text-align: center;
	margin-bottom: 18px;
}

.wa-privacy a { color: var(--cyan); text-decoration: underline; }

#whatsappConsentModal { z-index: 9999; }

/* FAQ page */
.page-faq { background: var(--bg); }

.faq-hero {
	position: relative;
	background: var(--dark);
	padding: 24px 0 20px;
	text-align: center;
	overflow: hidden;
}

.faq-hero-grid {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image: linear-gradient(rgba(0, 180, 216, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 1) 1px, transparent 1px);
	background-size: 48px 48px;
}

.faq-hero-inner { position: relative; z-index: 1; max-width: 56rem; margin: 0 auto; }

.faq-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 99px;
	font-size: 12px;
	font-weight: 600;
	background: rgba(0, 180, 216, 0.12);
	color: var(--cyan);
	margin-bottom: 12px;
}

.faq-hero h1 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 8px;
}

.faq-hero-lead {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 16px;
	font-family: var(--font-display);
	line-height: 1.35;
}

.faq-stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 20px;
}

.faq-stat {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-stat strong {
	font-size: 15px;
	font-weight: 800;
	color: var(--white);
	font-family: var(--font-display);
}

.faq-stat span { font-size: 11px; color: rgba(255, 255, 255, 0.65); }

.faq-search {
	display: flex;
	align-items: center;
	max-width: 36rem;
	margin: 0 auto;
	background: var(--white);
	border-radius: 99px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.faq-search svg { margin-left: 20px; color: var(--cyan); flex-shrink: 0; }

.faq-search input {
	flex: 1;
	border: none;
	outline: none;
	padding: 12px;
	font-size: 14px;
	min-width: 0;
}

.faq-search-clear {
	border: none;
	background: none;
	padding: 0 16px;
	color: var(--gray);
	cursor: pointer;
	font-size: 14px;
}

.faq-tabs-wrap {
	position: sticky;
	top: 0;
	z-index: 30;
	background: var(--white);
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-tabs {
	display: flex;
	gap: 8px;
	padding: 12px 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.faq-tabs::-webkit-scrollbar { display: none; }

.faq-tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	padding: 8px 16px;
	border-radius: 99px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: transparent;
	color: var(--muted);
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.faq-tab:hover:not(.active) { border-color: rgba(0, 0, 0, 0.15); color: var(--charcoal); }
.faq-tab.active { background: var(--cyan); border-color: var(--cyan); color: var(--white); }
.faq-tab svg,
.faq-tab img { flex-shrink: 0; }
.faq-tab svg { color: inherit; stroke: currentColor; }
.faq-tab.active img.faq-tab-icon,
.faq-tab.active .faq-tab-icon {
	filter: brightness(0) invert(1);
}

.faq-body { padding: 40px 0; max-width: 56rem; }

.faq-list-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.faq-list-head p { font-size: 14px; color: var(--gray); }

.faq-clear-search {
	border: none;
	background: none;
	font-size: 12px;
	color: var(--gray);
	cursor: pointer;
}

.faq-clear-search:hover { color: #f87171; }

.faq-group { margin-bottom: 16px; }

.faq-list:not(.faq-grouped) .faq-group-head { display: none; }

.faq-group-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding: 0 4px;
}

.faq-group-icon {
	width: 24px;
	height: 24px;
	border-radius: 8px;
	background: rgba(0, 180, 216, 0.1);
	color: var(--cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.faq-group-icon svg,
.faq-group-icon img {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.faq-group-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--cyan);
	font-family: var(--font-display);
	flex-shrink: 0;
}

.faq-group-line { flex: 1; height: 1px; background: rgba(0, 180, 216, 0.15); }

.faq-item {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 8px;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item.open {
	border-color: rgba(0, 180, 216, 0.3);
	box-shadow: 0 4px 24px rgba(0, 180, 216, 0.08);
}

.faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	border: none;
	background: transparent;
	text-align: left;
	cursor: pointer;
	font-size: 14px;
	font-weight: 700;
	color: var(--charcoal);
	font-family: var(--font-display);
	line-height: 1.35;
}

.faq-item.open .faq-q { background: rgba(0, 180, 216, 0.03); }

.faq-chevron {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s, background 0.2s;
	color: var(--gray);
}

.faq-item.open .faq-chevron {
	background: var(--cyan);
	color: var(--white);
	transform: rotate(180deg);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
	margin: 0 20px 20px;
	padding: 16px 20px;
	background: var(--bg);
	border-radius: 12px;
	border-left: 3px solid var(--cyan);
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
}

.faq-a-inner p { margin: 0 0 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--charcoal); }

.faq-empty {
	text-align: center;
	padding: 80px 16px;
	color: var(--gray);
}

.faq-empty span { display: block; font-size: 36px; margin-bottom: 12px; }

.faq-cta {
	padding: 48px 0;
	background: var(--light-blue);
	border-top: 1px solid rgba(0, 180, 216, 0.15);
}

.faq-cta-inner { max-width: 56rem; margin: 0 auto; text-align: center; }

.faq-cta-emoji { font-size: 30px; margin-bottom: 12px; }

.faq-cta h2 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 8px;
}

.faq-cta > .container > p,
.faq-cta-inner > p {
	font-size: 14px;
	color: var(--muted);
	margin-bottom: 32px;
	max-width: 28rem;
	margin-left: auto;
	margin-right: auto;
}

.faq-cta-btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 20px;
}

@media (min-width: 640px) {
	.faq-cta-btns { flex-direction: row; }
}

.faq-cta .btn-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.faq-contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border: 2px solid rgba(0, 0, 0, 0.15);
	background-color: #fff;
	color: rgb(51, 51, 51);
}

.faq-cta-phone {
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 0;
}

.faq-cta-phone a { color: var(--cyan); font-weight: 600; }

/* About page */
.page-about { background: var(--bg); }

.about-hero {
	position: relative;
	background: var(--dark);
	padding: 80px 0;
	overflow: hidden;
	min-height: 480px;
}

.about-hero-grid {
	position: absolute;
	inset: 0;
	opacity: 0.04;
	background-image: linear-gradient(rgba(0, 180, 216, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 1) 1px, transparent 1px);
	background-size: 56px 56px;
}

.about-hero-glow {
	position: absolute;
	top: 0;
	left: 0;
	width: 500px;
	height: 400px;
	opacity: 0.1;
	background: radial-gradient(ellipse at top left, var(--cyan), transparent 60%);
	pointer-events: none;
}

.about-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

@media (min-width: 1024px) {
	.about-hero-inner { grid-template-columns: 1fr 1fr; }
}

.about-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 99px;
	font-size: 12px;
	font-weight: 600;
	color: var(--cyan);
	border: 1px solid rgba(0, 180, 216, 0.3);
	background: rgba(0, 180, 216, 0.08);
	margin-bottom: 24px;
}

.about-badge-light {
	border-color: rgba(0, 180, 216, 0.3);
	background: rgba(0, 180, 216, 0.08);
}

.about-hero h1 {
	font-size: clamp(2.5rem, 6vw, 3.75rem);
	font-weight: 800;
	color: var(--white);
	line-height: 1;
	margin-bottom: 24px;
}

.about-hero-line {
	width: 64px;
	height: 4px;
	border-radius: 99px;
	background: var(--cyan);
	margin-bottom: 24px;
}

.about-hero-text p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	max-width: 32rem;
}

.about-hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
}

.about-hero-img-wrap {
	position: relative;
	width: 320px;
	height: 320px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 180, 216, 0.15);
}

@media (min-width: 1024px) {
	.about-hero-img-wrap { width: 384px; height: 384px; }
}

.about-hero-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-hero-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom right, transparent 50%, rgba(0, 180, 216, 0.15));
}

.about-hero-badge {
	position: absolute;
	background: var(--white);
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	padding: 12px 16px;
}

.about-hero-badge-bl {
	bottom: -20px;
	left: 85px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.about-hero-badge-bl span {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.about-hero-badge-bl small,
.about-hero-badge-tr small {
	display: block;
	font-size: 12px;
	color: var(--gray);
}

.about-hero-badge-bl strong,
.about-hero-badge-tr strong {
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	color: var(--charcoal);
}

.about-hero-badge-tr {
	top: -16px;
	right: 92px;
}

.about-hero-badge-tr strong {
	font-size: 16px;
	color: var(--cyan);
}

.about-story {
	padding: 80px 0;
	background: var(--white);
}

.about-story-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 56px;
	align-items: center;
}

@media (min-width: 1024px) {
	.about-story-grid { grid-template-columns: 1fr 1fr; }
}

.about-story-img {
	position: relative;
}

.about-story-img img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.about-deco {
	position: absolute;
	border-radius: 24px;
	z-index: -1;
}

.about-deco-br {
	width: 160px;
	height: 160px;
	bottom: -24px;
	right: -24px;
	background: rgba(0, 180, 216, 0.12);
}

.about-deco-tl {
	width: 96px;
	height: 96px;
	top: -24px;
	left: -24px;
	background: rgba(0, 180, 216, 0.08);
	border-radius: 16px;
}

.about-story-text h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 32px;
}

.about-story-text p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 20px;
}

.about-mini-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 32px;
}

.about-mini-stats strong {
	display: block;
	font-size: 24px;
	font-weight: 800;
	color: var(--cyan);
	font-family: var(--font-display);
}

.about-mini-stats span {
	font-size: 12px;
	color: var(--gray);
}

.about-mvv {
	padding: 64px 0;
	background: var(--bg);
}

.about-section-head {
	text-align: center;
	margin-bottom: 48px;
}

.about-section-head h2 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 800;
	margin-top: 16px;
}

.about-section-head p {
	font-size: 14px;
	color: var(--muted);
	max-width: 36rem;
	margin: 8px auto 0;
}

.about-section-head-dark h2 { color: var(--white); }

.about-mvv-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.about-mvv-grid { grid-template-columns: repeat(3, 1fr); }
}

.about-mvv-card {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-top: 4px solid var(--cyan);
	border-radius: 16px;
	padding: 28px;
	transition: transform 0.2s, box-shadow 0.2s;
}

.about-mvv-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.about-mvv-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(0, 180, 216, 0.1);
	color: var(--cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.about-mvv-icon img,
.about-mvv-icon svg {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.about-mvv-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--cyan);
	margin-bottom: 4px;
	font-family: var(--font-display);
}

.about-mvv-card h3 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 8px;
}

.about-mvv-card p {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.6;
}

.about-impact {
	padding: 64px 0;
	background: var(--dark);
}

.about-impact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

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

.about-impact-grid > div { text-align: center; }

.about-stat-num {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	color: var(--cyan);
	font-family: var(--font-display);
	line-height: 1;
	margin-bottom: 8px;
}

.about-impact-grid span {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

.about-sustain {
	padding: 64px 0;
	background: var(--light-blue);
	border-top: 1px solid rgba(0, 180, 216, 0.15);
	border-bottom: 1px solid rgba(0, 180, 216, 0.15);
}

.about-sustain-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.about-sustain-grid { grid-template-columns: repeat(3, 1fr); }
}

.about-sustain-grid article {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
}

.about-sustain-grid article:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.about-sustain-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(0, 180, 216, 0.1);
	color: var(--cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.about-sustain-icon img,
.about-sustain-icon svg {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}

.about-sustain-grid h3 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}

.about-sustain-grid p {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.6;
}

.about-gcc {
	padding: 64px 0;
	background: var(--white);
}

.about-gcc-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
}

@media (min-width: 1024px) {
	.about-gcc-grid { grid-template-columns: 1fr 1fr; }
}

.about-gcc-text h2 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 16px;
}

.about-gcc-text > p {
	font-size: 14px;
	color: var(--gray);
	line-height: 1.6;
	margin-bottom: 32px;
}

.about-country-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.about-country-list li {
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-country-list .gcc-flag {
	width: 24px;
	height: 17px;
}

.about-country-list strong {
	flex: 1;
	font-size: 14px;
	font-family: var(--font-display);
}

.about-country-list em {
	font-size: 12px;
	font-weight: 600;
	font-style: normal;
	padding: 4px 10px;
	border-radius: 99px;
	background: rgba(0, 0, 0, 0.05);
	color: var(--gray);
}

.about-country-list em.live {
	background: rgba(0, 180, 216, 0.12);
	color: var(--cyan);
}

.about-map {
	position: relative;
	aspect-ratio: 1;
	border-radius: 24px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	background: var(--bg);
	overflow: hidden;
}

.about-map-grid {
	position: absolute;
	inset: 0;
	opacity: 0.3;
	background-image: linear-gradient(rgba(0, 180, 216, 0.2) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 180, 216, 0.2) 1px, transparent 1px);
	background-size: 40px 40px;
}

.about-map-rings {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	color: var(--cyan);
}

.about-map-dot {
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.about-map-dot i {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #d1d5db;
	border: 2px solid #e5e7eb;
	position: relative;
	z-index: 1;
}

.about-map-dot.live i {
	background: var(--cyan);
	border-color: #0090b0;
}

.about-map-dot small {
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 99px;
	background: rgba(0, 0, 0, 0.1);
	color: var(--gray);
	white-space: nowrap;
	font-family: var(--font-display);
}

.about-map-dot.live small {
	background: var(--cyan);
	color: var(--white);
}

.about-map-ping {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--cyan);
	opacity: 0.3;
	animation: aboutPing 1.5s ease-out infinite;
}

@keyframes aboutPing {
	0% { transform: scale(1); opacity: 0.3; }
	100% { transform: scale(2.5); opacity: 0; }
}

.about-map-label {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	color: var(--gray);
	padding: 6px 16px;
	border-radius: 99px;
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-cta {
	padding: 64px 0;
	background: var(--cyan);
	text-align: center;
}

.about-cta-emoji { font-size: 36px; margin-bottom: 16px; }

.about-cta h2 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 800;
	color: var(--white);
	margin-bottom: 12px;
}

.about-cta-inner > p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	max-width: 28rem;
	margin: 0 auto 32px;
}

.about-cta-btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

@media (min-width: 640px) {
	.about-cta-btns { flex-direction: row; }
}

.about-shop-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background: var(--white);
	color: var(--charcoal);
	font-weight: 700;
	border-radius: 99px;
}

.about-cta .btn-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

/* Blog page */
.page-blog { background: var(--bg); }

.blog-header {
	background: var(--white);
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	padding: 32px 0;
}

.blog-header-inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media (min-width: 1024px) {
	.blog-header-inner {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}
}

.blog-header h1 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 800;
	line-height: 1;
	margin-bottom: 8px;
}

.blog-header p { font-size: 14px; color: var(--gray); }

.blog-cats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.blog-cat-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 99px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: transparent;
	color: var(--gray);
	cursor: pointer;
	white-space: nowrap;
	line-height: 1.2;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-cat-btn:hover { border-color: rgba(0, 0, 0, 0.15); color: var(--charcoal); }

.blog-cat-btn.active,
.blog-cat-btn[data-blog-cat="All"].active {
	background: rgba(0, 180, 216, 0.12);
	color: var(--cyan);
	border-color: var(--cyan);
}

.blog-cat-btn[data-blog-cat="Technology"].active {
	background: rgba(0, 180, 216, 0.12);
	color: #00b4d8;
	border-color: #00b4d8;
}

.blog-cat-btn[data-blog-cat="Sustainability"].active {
	background: rgba(34, 197, 94, 0.12);
	color: #16a34a;
	border-color: #16a34a;
}

.blog-cat-btn[data-blog-cat="Health"].active {
	background: rgba(245, 158, 11, 0.12);
	color: #d97706;
	border-color: #d97706;
}

.blog-cat-btn[data-blog-cat="News"].active {
	background: rgba(99, 102, 241, 0.12);
	color: #6366f1;
	border-color: #6366f1;
}

.blog-cat-btn[data-blog-cat="GCC Market"].active {
	background: rgba(244, 63, 94, 0.12);
	color: #e11d48;
	border-color: #e11d48;
}

.blog-body { padding: 40px 0; }

.blog-featured {
	display: grid;
	grid-template-columns: 1fr;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: var(--white);
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
	margin-bottom: 48px;
}

@media (min-width: 1024px) {
	.blog-featured { grid-template-columns: 1fr 1fr; }
}

.blog-featured-img {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f3f4f6;
	min-height: 280px;
	color: inherit;
}

@media (min-width: 1024px) {
	.blog-featured-img { aspect-ratio: auto; min-height: 100%; }
}

.blog-featured-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s;
}

.blog-featured:hover .blog-featured-img img { transform: scale(1.05); }

.blog-featured-body {
	padding: 32px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.blog-featured-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.blog-featured h2 {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 16px;
}

.blog-featured h2 a {
	color: inherit;
	text-decoration: none;
}

.blog-featured h2 a:hover {
	color: var(--cyan);
}

.blog-featured-body > p {
	font-size: 14px;
	color: var(--gray);
	line-height: 1.6;
	margin-bottom: 24px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-featured-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 28px;
}

.blog-featured-author strong {
	display: block;
	font-size: 14px;
	font-family: var(--font-display);
}

.blog-featured-author small {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--gray);
}

.blog-featured-cta {
	align-self: flex-start;
	padding: 12px 24px;
	border-radius: 99px;
	background: var(--cyan);
	color: var(--white) !important;
	font-size: 14px;
	font-weight: 700;
	gap: 8px;
	box-shadow: 0 4px 16px rgba(0, 180, 216, 0.35);
	transition: opacity 0.2s, transform 0.15s;
}

.blog-featured-cta:hover {
	opacity: 0.92;
	color: var(--white) !important;
}

.blog-featured-cta svg {
	transition: transform 0.2s;
}

.blog-featured:hover .blog-featured-cta svg,
.blog-featured-cta:hover svg {
	transform: translateX(4px);
}

.blog-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: start;
}

@media (min-width: 1024px) {
	.blog-layout { grid-template-columns: 2fr 1fr; }
}

.blog-count {
	font-size: 14px;
	color: var(--gray);
	margin-bottom: 20px;
}

.blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 32px;
}

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

.blog-card {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.blog-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
}

.blog-card-img {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f3f4f6;
}

.blog-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	gap: 8px;
}

.blog-cat {
	display: inline-flex;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 99px;
	font-family: var(--font-body);
}

.blog-cat[data-cat="Technology"] { background: rgba(0, 180, 216, 0.12); color: #00b4d8; }
.blog-cat[data-cat="Sustainability"] { background: rgba(34, 197, 94, 0.12); color: #16a34a; }
.blog-cat[data-cat="Health"] { background: rgba(245, 158, 11, 0.12); color: #d97706; }
.blog-cat[data-cat="News"] { background: rgba(99, 102, 241, 0.12); color: #6366f1; }
.blog-cat[data-cat="GCC Market"] { background: rgba(244, 63, 94, 0.12); color: #e11d48; }

.blog-read {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	color: var(--gray);
}

.blog-card-body h3 {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-card-body p {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.5;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 16px;
}

.blog-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	margin-top: auto;
}

.blog-author {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.blog-avatar {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--cyan);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-family: var(--font-display);
}

.blog-avatar-lg {
	width: 40px;
	height: 40px;
	font-size: 14px;
}

.blog-author strong {
	display: block;
	font-size: 11px;
	font-family: var(--font-display);
	line-height: 1.2;
}

.blog-author small {
	font-size: 10px;
	color: var(--gray);
}

.blog-more {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	color: var(--cyan);
	font-family: var(--font-display);
	flex-shrink: 0;
}

.blog-more.blog-featured-cta{
	width: 100%;
	justify-content: center;
}

.blog-card:hover .blog-more svg { transform: translateX(4px); }
.blog-more svg { transition: transform 0.2s; }

.blog-empty {
	text-align: center;
	padding: 96px 16px;
	color: var(--gray);
}

.blog-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.blog-page-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: var(--white);
	color: var(--charcoal);
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	line-height: 1;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-page-btn.active {
	background: var(--cyan);
	border-color: var(--cyan);
	color: var(--white);
}

.blog-page-btn:disabled { opacity: 0.3; cursor: default; }
.blog-page-btn:hover:not(:disabled):not(.active) { border-color: var(--cyan); color: var(--cyan); }

.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }

.blog-widget {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	padding: 20px;
}

.blog-widget h3 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.blog-widget h3 svg { color: var(--cyan); }

.blog-side-search {
	display: flex;
	align-items: center;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	overflow: hidden;
}

.blog-side-search svg {
	margin-left: 14px;
	color: var(--cyan);
	flex-shrink: 0;
}

.blog-side-search input {
	flex: 1;
	border: none;
	outline: none;
	padding: 10px 12px;
	font-size: 14px;
	min-width: 0;
}

.blog-side-search button {
	padding: 10px 12px;
	border: none;
	background: var(--cyan);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
}

.blog-popular {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.blog-popular a {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: inherit;
}

.blog-popular img {
	width: 64px;
	height: 48px;
	border-radius: 8px;
	object-fit: cover;
	flex-shrink: 0;
	background: #f3f4f6;
}

.blog-popular span { flex: 1; min-width: 0; }

.blog-popular strong {
	display: block;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.35;
	font-family: var(--font-display);
	transition: color 0.2s;
}

.blog-popular a:hover strong { color: var(--cyan); }

.blog-popular small {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 10px;
	color: var(--gray);
	margin-top: 2px;
}

.blog-popular em {
	font-size: 12px;
	font-weight: 700;
	font-style: normal;
	color: #e5e7eb;
	font-family: var(--font-display);
	flex-shrink: 0;
}

.blog-widget-newsletter {
	background: var(--light-blue);
	border-color: rgba(0, 180, 216, 0.2);
}

.blog-widget-emoji { font-size: 18px; margin-bottom: 4px; }

.blog-widget-newsletter p {
	font-size: 12px;
	color: var(--muted);
	margin-bottom: 16px;
}

.blog-subscribe {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.blog-subscribe input {
	padding: 10px 12px;
	border-radius: 12px;
	border: 1px solid rgba(0, 180, 216, 0.3);
	font-size: 14px;
	outline: none;
}

.blog-subscribe input:focus { border-color: var(--cyan); }

.blog-subscribe button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px;
	border: none;
	border-radius: 12px;
	background: var(--cyan);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
}

.blog-subscribed {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #16a34a;
	font-family: var(--font-display);
}

.blog-subscribed span {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(34, 197, 94, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.blog-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	border-radius: 99px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: transparent;
	font-size: 12px;
	font-weight: 500;
	font-family: var(--font-body);
	color: var(--muted);
	cursor: pointer;
	line-height: 1.2;
	transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.blog-tag:hover {
	border-color: var(--cyan);
	color: var(--cyan);
	background: rgba(0, 180, 216, 0.06);
}

/* Contact page */
.page-contact { background: var(--bg); }

.contact-hero {
	background: linear-gradient(135deg, #e8f8fc 0%, #f0fbfd 50%, var(--bg) 100%);
	border-bottom: 1px solid rgba(0, 180, 216, 0.15);
	padding: 48px 0;
}

.contact-hero h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	line-height: 1.15;
	margin-bottom: 16px;
}

.contact-hero p {
	font-size: 16px;
	color: var(--gray);
	line-height: 1.6;
	max-width: 36rem;
}

.contact-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 12px;
	border-radius: 99px;
	font-size: 12px;
	font-weight: 600;
	color: var(--cyan);
	border: 1px solid rgba(0, 180, 216, 0.3);
	background: rgba(0, 180, 216, 0.08);
	margin-bottom: 20px;
}

.contact-badge-sm { margin-bottom: 12px; }

.contact-body { padding: 48px 0; }

.contact-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}

@media (min-width: 1024px) {
	.contact-layout { grid-template-columns: 3fr 2fr; }
}

.contact-form-card {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	padding: 24px;
}

@media (min-width: 1024px) {
	.contact-form-card { padding: 32px; }
}

.contact-form-head { margin-bottom: 24px; }

.contact-form-head h2 {
	font-size: 20px;
	font-weight: 800;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form.is-hidden { display: none; }

/* CF7: keep wrappers from affecting layout */
.contact-form .wpcf7-form-control-wrap { display: block; }
.contact-form .wpcf7-spinner { display: none; }
.contact-form .wpcf7-not-valid-tip { display: none; }
.contact-form .wpcf7-response-output {
	display: block;
	margin: 0;
	padding: 12px 14px;
	border-radius: 14px;
	font-size: 12px;
	line-height: 1.6;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background: var(--bg);
	color: var(--charcoal);
}

/* CF7 status colors */
.contact-form .wpcf7 form.sent .wpcf7-response-output {
	border-color: rgba(34, 197, 94, 0.35);
	background: rgba(34, 197, 94, 0.08);
	color: #15803d;
}

.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.failed .wpcf7-response-output,
.contact-form .wpcf7 form.aborted .wpcf7-response-output,
.contact-form .wpcf7 form.spam .wpcf7-response-output {
	border-color: rgba(244, 63, 94, 0.35);
	background: rgba(244, 63, 94, 0.08);
	color: #be123c;
}

/* CF7 often injects <p> wrappers ? remove their spacing */
.contact-form .wpcf7 form,
.contact-form .wpcf7 form > p,
.contact-form .wpcf7 form p {
	margin: 0;
	padding: 0;
}

.contact-form .wpcf7 form br { display: none; }

/* Make the CF7 form itself use our spacing */
.contact-form .wpcf7 form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Hide the required acceptance input but keep it functional */
.contact-consent-input {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-field label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 6px;
	font-family: var(--font-display);
}

.contact-label-note {
	font-weight: 400;
	font-size: 12px;
	color: var(--gray);
}

.contact-field-label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

.contact-field-label-row label { margin-bottom: 0; }

.contact-field-label-row {
	display: flex;
	justify-content: space-between;
}

.contact-char-count {
	font-size: 10px;
	color: var(--gray);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 14px;
	font-family: var(--font-body);
	color: var(--charcoal);
	background: var(--white);
	outline: none;
	transition: border-color 0.2s;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-color: var(--cyan); }

.contact-field input.is-invalid,
.contact-field select.is-invalid,
.contact-field textarea.is-invalid { border-color: #f43f5e; }

.contact-field select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.contact-field textarea {
	resize: none;
	line-height: 1.6;
}

.contact-phone-row {
	display: flex;
	gap: 8px;
}

.contact-phone-row p{
	width: 100%;
}

.contact-phone-prefix {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 14px;
	background: var(--white);
	flex-shrink: 0;
}

.contact-phone-prefix span { color: var(--gray); }

.contact-phone-row input { flex: 1; min-width: 0; }

.contact-error {
	font-size: 12px;
	color: #f43f5e;
	margin-top: 4px;
}

.contact-consent {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	user-select: none;
}

.contact-check {
	width: 20px;
	height: 20px;
	border-radius: 6px;
	border: 2px solid rgba(0, 0, 0, 0.2);
	background: var(--white);
	flex-shrink: 0;
	margin-top: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, border-color 0.2s;
}

.contact-check.is-checked {
	background: var(--cyan);
	border-color: var(--cyan);
	color: var(--white);
}

.contact-consent span {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.6;
}

.contact-submit {
	width: 100%;
	padding: 16px;
	border: none;
	border-radius: 99px;
	background: var(--cyan);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 4px;
	box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
	transition: opacity 0.2s, transform 0.15s;
}

.contact-submit:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	box-shadow: none;
}

.contact-submit:not(:disabled):hover { opacity: 0.9; }
.contact-submit:not(:disabled):active { transform: scale(0.98); }

.contact-ai-note {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	border-radius: 16px;
	background: var(--bg);
	border: 1px solid rgba(0, 0, 0, 0.07);
}

.contact-ai-icon {
	width: 32px;
	height: 32px;
	border-radius: 12px;
	background: rgba(0, 180, 216, 0.12);
	color: var(--cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-ai-note p {
	font-size: 12px;
	color: var(--gray);
	line-height: 1.6;
}

.contact-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 56px 16px;
	gap: 16px;
}

.contact-success-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--cyan);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
}

.contact-success h3 {
	font-size: 20px;
	font-weight: 800;
}

.contact-success p {
	font-size: 14px;
	color: var(--gray);
	max-width: 20rem;
}

.contact-reset {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--cyan);
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--font-display);
}

.contact-aside h2 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 20px;
}

.contact-channels {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 24px;
}

.contact-channel {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-left-width: 4px;
	border-radius: 16px;
	text-align: left;
	width: 100%;
}

button.contact-channel {
	cursor: pointer;
	transition: box-shadow 0.2s;
}

button.contact-channel:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); }

.contact-channel-wa { border-left-color: #25d366; }
.contact-channel-form { border-left-color: var(--cyan); }
.contact-channel-loc { border-left-color: #f59e0b; }

.contact-channel-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-channel-icon-wa { background: rgba(37, 211, 102, 0.12); color: #25d366; }
.contact-channel-icon-cyan { background: rgba(0, 180, 216, 0.12); color: var(--cyan); }
.contact-channel-icon-amber { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }

.contact-channel small {
	display: block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #9ca3af;
	margin-bottom: 2px;
	font-family: var(--font-display);
}

.contact-channel strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
}

.contact-channel > div > span:not(.contact-channel-link) {
	display: block;
	font-size: 12px;
	color: var(--muted);
	margin-top: 2px;
}

.contact-channel-link {
	display: block;
	font-size: 12px;
	color: #25d366;
	margin-top: 2px;
}

button.contact-channel:hover .contact-channel-link { text-decoration: underline; }

.contact-map-wrap h3 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.contact-map-wrap h3 svg { color: var(--cyan); }

.contact-map {
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.contact-map iframe {
	display: block;
	border: 0;
}

.contact-map-foot {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	background: var(--white);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 12px;
	color: var(--gray);
}

.contact-map-foot svg { color: var(--cyan); flex-shrink: 0; }

.contact-map-foot span { flex: 1; min-width: 0; }

.contact-map-foot a {
	font-size: 12px;
	font-weight: 600;
	color: var(--cyan);
	font-family: var(--font-display);
	flex-shrink: 0;
}

.contact-map-foot a:hover { text-decoration: underline; }

.contact-hours {
	background: #f0f1f3;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
	padding: 40px 0;
}

.contact-hours-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.contact-hours-grid { grid-template-columns: repeat(3, 1fr); }
	.contact-hours-item + .contact-hours-item { border-left: 1px solid rgba(0, 0, 0, 0.08); }
}

.contact-hours-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 8px 24px;
}

.contact-hours-icon {
	width: 44px;
	height: 44px;
	border-radius: 16px;
	background: rgba(0, 0, 0, 0.06);
	color: var(--muted);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-hours-icon-ai {
	background: rgba(0, 180, 216, 0.12);
	color: var(--cyan);
}

.contact-hours-item strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 2px;
	font-family: var(--font-display);
}

.contact-hours-item em {
	display: block;
	font-size: 12px;
	font-weight: 600;
	font-style: normal;
	color: var(--muted);
	font-family: var(--font-display);
}

.contact-hours-item-ai em { color: var(--cyan); }

.contact-hours-item small {
	display: block;
	font-size: 10px;
	color: var(--gray);
	margin-top: 2px;
}

/* Service Request page */
.page-sr { background: var(--bg); }

.sr-hero {
	background: #e8f8fc;
	border-bottom: 1px solid rgba(0, 180, 216, 0.18);
	padding: 32px 0;
}

.sr-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 16px;
}

.sr-breadcrumb a { color: var(--gray); }
.sr-breadcrumb a:hover { color: var(--cyan); }
.sr-breadcrumb-active { color: var(--cyan); }

.sr-hero h1 {
	font-size: clamp(1.5rem, 4vw, 1.875rem);
	font-weight: 800;
	margin-bottom: 4px;
}

.sr-hero p { font-size: 14px; color: var(--gray); }

.sr-body { padding: 40px 0; }

.sr-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: start;
}

@media (min-width: 1024px) {
	.sr-layout { grid-template-columns: 2fr 1fr; }
}

.sr-layout.is-hidden { display: none; }

.sr-card {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	padding: 24px;
}

@media (min-width: 1024px) {
	.sr-card { padding: 32px; }
}

.sr-steps {
	display: flex;
	align-items: flex-start;
	margin-bottom: 32px;
}

.sr-step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	min-width: 0;
}

.sr-step-item:last-child { flex: none; }

.sr-step-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #eef0f2;
	color: #9ca3af;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s;
}

.sr-step-circle.active,
.sr-step-circle.done {
	background: var(--cyan);
	color: var(--white);
}

.sr-step-label {
	font-size: 11px;
	margin-top: 6px;
	text-align: center;
	line-height: 1.3;
	max-width: 80px;
	color: #9ca3af;
	font-family: var(--font-display);
	font-weight: 500;
}

.sr-step-label.active { color: var(--cyan); font-weight: 700; }

.sr-step-line {
	flex: 1;
	height: 2px;
	background: #eef0f2;
	margin: 18px 8px 0;
	transition: background 0.2s;
}

.sr-step-line.done { background: var(--cyan); }

.sr-panel-title {
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 24px;
}

.sr-field { margin-bottom: 24px; }

.sr-field label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 8px;
	font-family: var(--font-display);
}

.sr-optional {
	font-weight: 400;
	font-size: 12px;
	color: var(--gray);
}

.sr-select,
.sr-textarea,
.sr-field textarea {
	width: 100%;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 14px;
	font-family: var(--font-body);
	color: var(--charcoal);
	background: var(--white);
	outline: none;
}

.sr-select:focus,
.sr-textarea:focus,
.sr-field textarea:focus { border-color: var(--cyan); }

.sr-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 36px;
}

.sr-textarea-wrap { position: relative; }

.sr-textarea-wrap textarea {
	width: 100%;
	padding: 12px 16px 28px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 14px;
	resize: none;
	line-height: 1.6;
	outline: none;
}

.sr-textarea-wrap textarea:focus { border-color: var(--cyan); }

.sr-char-count {
	position: absolute;
	bottom: 10px;
	right: 12px;
	font-size: 10px;
	color: var(--gray);
}

.sr-char-count.is-warn { color: #f59e0b; }

.sr-type-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.sr-type-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 16px;
	border-radius: 16px;
	border: 2px solid rgba(0, 0, 0, 0.08);
	background: var(--white);
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.sr-type-tile:hover { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); }
.sr-type-tile:active { transform: scale(0.98); }

.sr-type-tile.active {
	border-color: var(--cyan);
	background: rgba(0, 180, 216, 0.04);
}

.sr-type-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--bg);
	color: #9ca3af;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sr-type-tile.active .sr-type-icon {
	background: rgba(0, 180, 216, 0.15);
	color: var(--cyan);
}

.sr-type-tile strong {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	font-family: var(--font-display);
}

.sr-type-tile.active strong { color: var(--cyan); }

.sr-type-tile small {
	font-size: 10px;
	color: var(--gray);
}

.sr-upload-input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
	pointer-events: none;
}

.sr-upload-zone {
	border: 2px dashed rgba(0, 0, 0, 0.12);
	border-radius: 16px;
	padding: 32px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	background: var(--bg);
	transition: border-color 0.2s, background 0.2s;
}

.sr-upload-zone.is-drag,
.sr-upload-zone:hover {
	border-color: var(--cyan);
	background: rgba(0, 180, 216, 0.04);
}

.sr-upload-zone.is-hidden { display: none; }

.sr-upload-icon {
	width: 48px;
	height: 48px;
	border-radius: 16px;
	background: rgba(0, 180, 216, 0.1);
	color: var(--cyan);
	display: flex;
	align-items: center;
	justify-content: center;
}

.sr-upload-zone strong {
	font-size: 14px;
	font-family: var(--font-display);
}

.sr-upload-zone strong em {
	font-style: normal;
	color: var(--cyan);
}

.sr-upload-zone small { font-size: 12px; color: var(--gray); }

.sr-upload-preview {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(0, 180, 216, 0.3);
	aspect-ratio: 16 / 9;
}

.sr-upload-preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sr-upload-remove {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: none;
	background: var(--white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--muted);
}

.sr-btn-primary {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 99px;
	background: var(--cyan);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: opacity 0.2s, transform 0.15s;
}

.sr-btn-primary:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.sr-btn-primary:not(:disabled):hover { opacity: 0.9; }
.sr-btn-primary:not(:disabled):active { transform: scale(0.98); }

.sr-btn-grow { flex: 1; }

.sr-nav-row {
	display: flex;
	gap: 12px;
}

.sr-btn-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 12px 20px;
	border-radius: 99px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: var(--white);
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
	font-family: var(--font-display);
	cursor: pointer;
}

.sr-btn-back:hover { border-color: rgba(0, 0, 0, 0.2); }

.sr-calendar {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	padding: 16px;
	user-select: none;
}

.sr-cal-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.sr-cal-prev,
.sr-cal-next {
	padding: 6px;
	border: none;
	background: transparent;
	border-radius: 50%;
	cursor: pointer;
	color: var(--muted);
}

.sr-cal-prev:hover,
.sr-cal-next:hover { background: var(--bg); }

.sr-cal-month {
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
}

.sr-cal-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	margin-bottom: 8px;
}

.sr-cal-weekdays span {
	text-align: center;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #9ca3af;
	font-family: var(--font-display);
}

.sr-cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px 0;
}

.sr-cal-empty { aspect-ratio: 1; }

.sr-cal-day {
	aspect-ratio: 1;
	border: none;
	border-radius: 50%;
	background: transparent;
	font-size: 12px;
	font-family: var(--font-body);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s, color 0.15s;
}

.sr-cal-day.is-today:not(.is-selected) {
	background: rgba(0, 180, 216, 0.1);
	color: var(--cyan);
	font-weight: 700;
}

.sr-cal-day.is-selected {
	background: var(--cyan);
	color: var(--white);
	font-weight: 700;
}

.sr-cal-day.is-unavail {
	color: #d1d5db;
	cursor: not-allowed;
}

.sr-cal-legend {
	display: flex;
	gap: 16px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 10px;
	color: #9ca3af;
}

.sr-legend-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 6px;
}

.sr-legend-selected { background: var(--cyan); }
.sr-legend-unavail { background: #e5e7eb; }

.sr-slot-group { margin-bottom: 12px; }

.sr-slot-group > small {
	display: block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #9ca3af;
	margin-bottom: 8px;
	font-family: var(--font-display);
}

.sr-slot-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.sr-slot {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 99px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: var(--white);
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
	font-family: var(--font-display);
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sr-slot.active {
	background: var(--cyan);
	border-color: var(--cyan);
	color: var(--white);
}

.sr-review {
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 20px;
}

.sr-review-row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sr-review-row:nth-child(even) { background: #fafafa; }
.sr-review-row:last-child { border-bottom: none; }

.sr-review-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(0, 180, 216, 0.1);
	color: var(--cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.sr-review-row small {
	display: block;
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 2px;
}

.sr-review-row strong {
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
}

.sr-review-sub {
	display: block;
	font-size: 12px;
	color: var(--gray);
	margin-top: 2px;
}

.sr-note {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	border-radius: 12px;
	margin-bottom: 16px;
	font-size: 12px;
	line-height: 1.6;
}

.sr-note-cyan {
	background: #e8f8fc;
	border: 1px solid rgba(0, 180, 216, 0.2);
}

.sr-note-green {
	background: rgba(34, 197, 94, 0.06);
	border: 1px solid rgba(34, 197, 94, 0.2);
	color: #16a34a;
}

.sr-note-green strong { color: #16a34a; }

.sr-cancel-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 12px;
	font-size: 14px;
	color: #e5e7eb;
}

.sr-link-back,
.sr-link-cancel {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	font-size: 14px;
	color: var(--gray);
	cursor: pointer;
	font-family: var(--font-body);
}

.sr-link-cancel { text-decoration: none; }
.sr-link-back:hover,
.sr-link-cancel:hover { color: var(--charcoal); }

.sr-sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media (min-width: 1024px) {
	.sr-sidebar { position: sticky; top: 96px; }
}

.sr-summary {
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	overflow: hidden;
}

.sr-summary-head {
	padding: 12px 16px;
	background: var(--bg);
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #9ca3af;
	font-family: var(--font-display);
}

.sr-summary-img {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #f3f4f6;
}

.sr-summary-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sr-summary-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sr-summary-block small {
	display: block;
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 2px;
}

.sr-summary-block strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
}

.sr-summary-block code {
	display: block;
	font-size: 10px;
	font-family: monospace;
	color: var(--gray);
	margin-top: 2px;
}

.sr-sum-muted { color: #d1d5db !important; font-weight: 600 !important; }
.sr-sum-active { color: var(--cyan) !important; }

.sr-sum-sub {
	display: block;
	font-size: 12px;
	color: var(--gray);
	margin-top: 2px;
}

.sr-warranty-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 12px;
	background: rgba(34, 197, 94, 0.08);
	color: #16a34a;
	font-size: 12px;
	font-weight: 600;
	font-family: var(--font-display);
}

.sr-help {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 16px;
	border-radius: 16px;
	background: #e8f8fc;
	border: 1px solid rgba(0, 180, 216, 0.2);
}

.sr-help > svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

.sr-help strong {
	display: block;
	font-size: 12px;
	margin-bottom: 4px;
}

.sr-help p {
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 8px;
}

.sr-help-link {
	background: none;
	border: none;
	font-size: 12px;
	font-weight: 700;
	color: var(--cyan);
	cursor: pointer;
	font-family: var(--font-display);
	padding: 0;
}

.sr-success {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 48px 16px;
}

.sr-success-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--cyan);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 4px 24px rgba(0, 180, 216, 0.4);
}

.sr-success h2 {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 8px;
}

.sr-success > p {
	font-size: 14px;
	color: var(--gray);
	max-width: 24rem;
	margin-bottom: 8px;
}

.sr-ref {
	font-size: 12px;
	color: #d1d5db;
	margin-bottom: 32px;
}

.sr-ref strong { color: var(--cyan); font-weight: 600; }

.sr-success-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.sr-success-outline {
	padding: 12px 24px;
	border-radius: 99px;
	border: 2px solid #d1d5db;
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	color: var(--muted);
	font-family: var(--font-display);
	cursor: pointer;
}

/* Product detail page (PDP) */
.page-product {
	background: var(--bg);
	min-height: 60vh;
}

.pdp-breadcrumb-bar {
	background: var(--white);
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.pdp-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	font-size: 12px;
	color: var(--gray);
	font-family: var(--font-body);
}

.pdp-breadcrumb a {
	color: inherit;
	transition: color 0.2s;
}

.pdp-breadcrumb a:hover { color: var(--cyan); }
.pdp-breadcrumb .current { color: var(--cyan); }

.pdp-body { padding: 40px 0 64px; }

.pdp-top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-bottom: 56px;
}

@media (min-width: 1024px) {
	.pdp-top {
		grid-template-columns: 3fr 2fr;
	}
}

.pdp-main-img {
	position: relative;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1;
	border: 1px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	margin-bottom: 12px;
}

.pdp-main-img img,
.pdp-main-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pdp-stock-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 99px;
	color: var(--white);
	background: #22c55e;
	font-family: var(--font-body);
}

.pdp-stock-badge.soldout {
	background: #9ca3af;
}

.pdp-thumbs {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.pdp-thumb {
	width: 80px;
	height: 80px;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid rgba(0, 0, 0, 0.08);
	background: var(--white);
	padding: 0;
	cursor: pointer;
	flex-shrink: 0;
	transition: border-color 0.2s;
}

.pdp-thumb.active { border-color: var(--cyan); }

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

/* Product gallery — images + video */
.pdp-main-img {
	position: relative;
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 1;
	border: 1px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	margin-bottom: 12px;
}

.pdp-main-media {
	width: 100%;
	height: 100%;
}

.pdp-main-img img,
.pdp-main-photo,
.pdp-main-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border: 0;
}

.pdp-main-video {
	background: #000;
	object-fit: contain;
}

.pdp-stock-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 99px;
	color: var(--white);
	background: #22c55e;
	font-family: var(--font-body);
}

.pdp-stock-badge.soldout {
	background: #9ca3af;
}

.pdp-thumbs {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.pdp-thumb {
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 12px;
	overflow: hidden;
	border: 2px solid rgba(0, 0, 0, 0.08);
	background: var(--white);
	padding: 0;
	cursor: pointer;
	flex-shrink: 0;
	transition: border-color 0.2s;
}

.pdp-thumb.active {
	border-color: var(--cyan);
}

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

.pdp-thumb-play-wrap {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.35);
	pointer-events: none;
}

.pdp-thumb-play {
	color: #fff;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.pdp-thumb.is-video.active .pdp-thumb-play-wrap {
	background: rgba(0, 180, 216, 0.45);
}

.pdp-summary {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pdp-title-block h1 {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.25;
	margin-bottom: 4px;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.pdp-tagline {
	font-size: 14px;
	color: var(--gray);
	margin-bottom: 12px;
	font-family: var(--font-body);
}

.pdp-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pdp-stars { display: flex; gap: 1px; }

.pdp-rating-text {
	font-size: 12px;
	color: var(--gray);
	font-family: var(--font-body);
}

.pdp-price-row {
	display: flex;
	align-items: baseline;
	gap: 12px;
	flex-wrap: wrap;
}

.pdp-price {
	font-size: 1.875rem;
	font-weight: 800;
	color: var(--charcoal);
	font-family: var(--font-display);
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
}

.pdp-price .woocommerce-Price-amount,
.pdp-price .amount,
.pdp-price bdi {
	font-size: inherit;
	font-weight: inherit;
	font-family: inherit;
	color: inherit;
}

/* Sale layout: current price large, regular price small + struck through */
.pdp-price del {
	order: 2;
	font-size: 12px;
	font-weight: 400;
	color: var(--gray);
	text-decoration: line-through;
	font-family: var(--font-body);
}

.pdp-price del .woocommerce-Price-amount,
.pdp-price del .amount,
.pdp-price del bdi {
	font-size: 12px;
	font-weight: 400;
	color: var(--gray);
}

.pdp-price ins {
	order: 1;
	text-decoration: none;
}

.pdp-discount {
	font-size: 12px;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 99px;
	color: var(--white);
	background: #f43f5e;
	font-family: var(--font-body);
}

.pdp-highlights {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.pdp-highlights li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #4b5563;
	font-family: var(--font-body);
}

.pdp-highlights svg { color: var(--cyan); flex-shrink: 0; }

.pdp-cart-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pdp-cart-form .quantity {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 99px;
	overflow: hidden;
	width: fit-content;
	background: var(--white);
}

.pdp-cart-form .quantity .qty,
.pdp-cart-form .quantity input.qty {
	width: 32px;
	border: none;
	outline: none;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
	color: var(--charcoal);
	background: transparent;
	padding: 8px 0;
	-moz-appearance: textfield;
	appearance: textfield;
}

.pdp-cart-form .quantity input.qty::-webkit-outer-spin-button,
.pdp-cart-form .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.pdp-qty-btn {
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	color: #6b7280;
	font-size: 18px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s;
}

.pdp-qty-btn:hover { background: #f9fafb; }

.pdp-qty-label {
	font-size: 14px;
	font-weight: 500;
	color: #4b5563;
	margin-right: 12px;
	font-family: var(--font-body);
}

.pdp-qty-row {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pdp-reserve {
	width: 100%;
	padding: 14px 20px;
	border: none;
	border-radius: 99px;
	background: var(--cyan);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
	transition: opacity 0.2s, transform 0.15s;
	text-decoration: none;
}

.pdp-reserve:hover { opacity: 0.9; color: var(--white); }
.pdp-reserve:active { transform: scale(0.98); }

.pdp-reserve-note {
	font-size: 12px;
	text-align: center;
	color: var(--gray);
	margin-top: -12px;
	font-family: var(--font-body);
}

.pdp-actions {
	display: flex;
	gap: 12px;
}

.pdp-wish,
.pdp-share {
	flex: 1;
	padding: 10px 16px;
	border-radius: 99px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: transparent;
	font-size: 14px;
	font-weight: 600;
	color: #6b7280;
	font-family: var(--font-display);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: border-color 0.2s, color 0.2s;
	position: static;
	width: auto;
	height: auto;
	box-shadow: none;
}

.pdp-wish svg {
	stroke: currentColor;
	fill: none;
	flex-shrink: 0;
}

.pdp-wish:hover { border-color: #fda4af; }
.pdp-wish.active { border-color: #f43f5e; color: #f43f5e; }
.pdp-wish.active svg { stroke: #f43f5e; fill: #f43f5e; }
.pdp-share { flex: 0 0 auto; padding-left: 16px; padding-right: 16px; font-weight: 400; font-family: var(--font-body); }
.pdp-share:hover { border-color: #d1d5db; }

.pdp-credit-note {
	border-radius: 12px;
	padding: 12px;
	font-size: 14px;
	border: 1px solid rgba(0, 180, 216, 0.2);
	background: #e8f8fc;
	font-family: var(--font-body);
}

.pdp-credit-title {
	color: var(--cyan);
	font-weight: 600;
}

.pdp-credit-text { color: #6b7280; }

.pdp-referral {
	font-size: 12px;
	color: var(--gray);
	font-family: var(--font-body);
	margin: 0;
}

.pdp-trust {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	padding-top: 4px;
}

.pdp-trust-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
	padding: 8px;
	border-radius: 12px;
	background: var(--white);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.pdp-trust-card svg { color: var(--cyan); }

.pdp-trust-label {
	font-size: 10px;
	color: var(--gray);
	line-height: 1;
	font-family: var(--font-body);
}

.pdp-trust-value {
	font-size: 12px;
	font-weight: 600;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.pdp-tabs-wrap {
	background: var(--white);
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	overflow: hidden;
	margin-bottom: 56px;
}

.pdp-tabs {
	display: flex;
	overflow-x: auto;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	scrollbar-width: none;
}

.pdp-tabs::-webkit-scrollbar { display: none; }

.pdp-tab {
	padding: 16px 20px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
	flex-shrink: 0;
	border: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	background: transparent;
	color: #9ca3af;
	font-family: var(--font-display);
	cursor: pointer;
	transition: color 0.2s, border-color 0.2s;
}

.pdp-tab.active {
	color: var(--cyan);
	border-bottom-color: var(--cyan);
}

.pdp-tab-panels { padding: 24px; }

@media (min-width: 1024px) {
	.pdp-tab-panels { padding: 32px; }
}

.pdp-panel { display: none; }
.pdp-panel.active { display: block; }

.pdp-panel-inner {
	max-width: 48rem;
	font-size: 14px;
	color: #4b5563;
	line-height: 1.7;
	font-family: var(--font-body);
}

.pdp-panel-inner p { margin-bottom: 16px; }

.pdp-desc-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 24px;
}

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

.pdp-desc-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 16px;
	border-radius: 12px;
	background: var(--bg);
}

.pdp-desc-emoji { font-size: 1.5rem; }

.pdp-desc-label {
	font-size: 12px;
	font-weight: 600;
	color: var(--charcoal);
	font-family: var(--font-display);
}

/* Specs table */
.pdp-panel-specs { max-width: 36rem; }

.pdp-spec-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 4px;
	font-size: 14px;
}

.pdp-spec-table tr.is-alt td { background: #f8f9fa; }
.pdp-spec-table tr:not(.is-alt) td { background: #fff; }

.pdp-spec-name {
	padding: 10px 16px;
	font-weight: 600;
	color: #6b7280;
	width: 10rem;
	border-radius: 8px 0 0 8px;
	font-family: var(--font-display);
	vertical-align: top;
}

.pdp-spec-detail {
	padding: 10px 16px;
	color: #333;
	border-radius: 0 8px 8px 0;
	font-family: var(--font-body);
}

/* Warranty cards */
.pdp-panel-warranty {
	max-width: 42rem;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.pdp-warranty-card {
	display: flex;
	gap: 12px;
	padding: 16px;
	border-radius: 12px;
}

.pdp-warranty-card.is-cyan { background: #e8f8fc; }
.pdp-warranty-card.is-muted { background: #f8f9fa; }

.pdp-warranty-icon {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--cyan);
}

.pdp-warranty-title {
	font-weight: 600;
	margin-bottom: 4px;
	color: #333;
	font-family: var(--font-display);
}

.pdp-warranty-body p {
	margin: 0;
	color: #4b5563;
	font-size: 14px;
	line-height: 1.6;
}

/* Water testing */
.pdp-panel-water { max-width: 42rem; }

.pdp-water-intro { margin-bottom: 16px; }

.pdp-water-metrics {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 640px) {
	.pdp-water-metrics { grid-template-columns: repeat(3, 1fr); }
}

.pdp-water-metric {
	padding: 16px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	text-align: center;
}

.pdp-water-value {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 4px;
	color: var(--cyan);
	font-family: var(--font-display);
}

.pdp-water-label {
	font-size: 12px;
	color: #9ca3af;
	margin-bottom: 8px;
	font-family: var(--font-body);
}

.pdp-water-status {
	display: inline-block;
	font-size: 12px;
	padding: 2px 10px;
	border-radius: 999px;
	color: #fff;
	font-weight: 600;
	background: #22c55e;
}

.pdp-water-status.is-fail,
.pdp-water-metric .pdp-water-status[data-status="FAIL"] {
	background: #ef4444;
}

.pdp-water-note {
	margin-top: 16px;
	margin-bottom: 0;
	font-size: 12px;
	color: #9ca3af;
}

/* Reviews */
.pdp-panel-reviews {
	max-width: 42rem;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pdp-reviews-summary {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	border-radius: 12px;
	background: #f8f9fa;
	margin-bottom: 8px;
}

.pdp-reviews-score { text-align: center; flex-shrink: 0; }

.pdp-reviews-avg {
	font-size: 2.25rem;
	font-weight: 800;
	color: #333;
	font-family: var(--font-display);
	line-height: 1;
}

.pdp-reviews-stars {
	display: flex;
	justify-content: center;
	gap: 2px;
	margin: 4px 0;
}

.pdp-reviews-count {
	font-size: 12px;
	color: #9ca3af;
	font-family: var(--font-body);
}

.pdp-reviews-bars {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pdp-reviews-bar-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-family: var(--font-body);
}

.pdp-reviews-bar-label {
	width: 12px;
	color: #9ca3af;
	text-align: center;
}

.pdp-reviews-bar-track {
	flex: 1;
	height: 6px;
	border-radius: 999px;
	background: #f3f4f6;
	overflow: hidden;
}

.pdp-reviews-bar-fill {
	height: 100%;
	border-radius: 999px;
	background: var(--cyan);
}

.pdp-reviews-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pdp-review-item {
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pdp-review-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.pdp-review-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	gap: 12px;
}

.pdp-review-author {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pdp-review-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	background: var(--cyan);
	font-family: var(--font-display);
	flex-shrink: 0;
}

.pdp-review-name {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	font-family: var(--font-display);
}

.pdp-review-verified {
	font-size: 10px;
	color: #22c55e;
	font-family: var(--font-body);
}

.pdp-review-date {
	font-size: 12px;
	color: #9ca3af;
	font-family: var(--font-body);
	flex-shrink: 0;
}

.pdp-review-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 8px;
}

.pdp-review-text {
	margin: 0;
	font-size: 14px;
	color: #6b7280;
	line-height: 1.6;
	font-family: var(--font-body);
}

.pdp-reviews-empty { margin: 0; }

.pdp-review-form-wrap {
	margin-top: 8px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pdp-review-form-wrap .comment-reply-title {
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.pdp-review-form-wrap label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #4b5563;
	font-family: var(--font-display);
}

.pdp-review-form-wrap input[type="text"],
.pdp-review-form-wrap input[type="email"],
.pdp-review-form-wrap textarea,
.pdp-review-form-wrap select {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	font-size: 14px;
	font-family: var(--font-body);
	background: var(--white);
	color: var(--charcoal);
}

.pdp-review-form-wrap textarea { min-height: 120px; resize: vertical; }

.pdp-review-form-wrap .comment-form-rating,
.pdp-review-form-wrap .pdp-review-rating {
	margin-bottom: 16px;
}

.pdp-review-form-wrap p.stars {
	margin: 8px 0 0;
	line-height: 1;
}

.pdp-review-form-wrap p.stars a {
	position: relative;
	height: 1em;
	width: 1em;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none;
	margin-right: 4px;
	font-size: 18px;
	color: #facc15;
}

.pdp-review-form-wrap p.stars a::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-family: WooCommerce, sans-serif;
	content: "\e021";
	text-indent: 0;
	color: #d1d5db;
}

.pdp-review-form-wrap p.stars a:hover ~ a::before,
.pdp-review-form-wrap p.stars.selected a.active ~ a::before {
	content: "\e021";
	color: #d1d5db;
}

.pdp-review-form-wrap p.stars:hover a::before,
.pdp-review-form-wrap p.stars.selected a:not(.active)::before,
.pdp-review-form-wrap p.stars:hover a:hover::before,
.pdp-review-form-wrap p.stars.selected a.active::before {
	content: "\e020";
	color: #facc15;
}

.pdp-review-form-wrap p.stars.selected a.active::before {
	content: "\e020";
	color: #facc15;
}

.pdp-review-form-wrap .form-submit { margin-top: 16px; }

.pdp-review-form-wrap .submit,
.pdp-review-form-wrap input[type="submit"] {
	padding: 12px 24px;
	border: none;
	border-radius: 99px;
	background: var(--cyan);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
}

.pdp-related h2 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.pdp-related-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.pdp-related-grid { grid-template-columns: repeat(3, 1fr); }
}

.pdp-related-card {
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.07);
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
}

.pdp-related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pdp-related-img {
	aspect-ratio: 1;
	background: #f9fafb;
	overflow: hidden;
	position: relative;
}

.pdp-related-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.pdp-related-card:hover .pdp-related-img img { transform: scale(1.05); }

.pdp-related-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	font-size: 12px;
	font-weight: 600;
	padding: 2px 10px;
	border-radius: 99px;
	background: #eef0f2;
	color: #9ca3af;
	font-family: var(--font-body);
}

.pdp-related-body { padding: 16px; }

.pdp-related-name {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 2px;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.pdp-related-spec {
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 12px;
	font-family: var(--font-body);
}

.pdp-related-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.pdp-related-price {
	font-size: 14px;
	font-weight: 700;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.pdp-related-cta {
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 99px;
	color: var(--white);
	background: var(--cyan);
	font-family: var(--font-display);
}

.pdp-related-cta.waitlist {
	background: transparent;
	color: var(--gray);
	border: 1px solid #d1d5db;
}

.sr-success-outline:hover {
	border-color: var(--cyan);
	color: var(--cyan);
}
/* ==========================================================================
   WooCommerce — Cart / Checkout / Account
   ========================================================================== */

.cko-breadcrumb-bar {
	background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
	border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.cko-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 0;
	font-size: 12px;
	color: var(--gray);
	font-family: var(--font-body);
	flex-wrap: wrap;
}

.cko-breadcrumb a {
	color: var(--muted);
	text-decoration: none;
	transition: color 0.15s;
}

.cko-breadcrumb a:hover { color: var(--cyan); }
.cko-breadcrumb .current {
	color: var(--cyan);
	font-weight: 600;
}
.cko-breadcrumb .cko-crumb-mid {
	max-width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.page-checkout,
.page-cart,
.page-account {
	background:
		radial-gradient(ellipse 80% 50% at 10% 0%, rgba(0, 180, 216, 0.06), transparent 55%),
		radial-gradient(ellipse 60% 40% at 90% 10%, rgba(0, 180, 216, 0.04), transparent 50%),
		var(--bg);
	min-height: 60vh;
	width: 100%;
	overflow: visible;
}

/* Kill WooCommerce float/width layout that overlaps our grid */
.woocommerce-cart .woocommerce::before,
.woocommerce-cart .woocommerce::after,
.woocommerce-checkout .woocommerce::before,
.woocommerce-checkout .woocommerce::after,
.page-cart::before,
.page-cart::after,
.page-checkout::before,
.page-checkout::after,
.cart-grid::before,
.cart-grid::after,
.cko-grid::before,
.cko-grid::after,
.cart-collaterals::before,
.cart-collaterals::after,
.cart_totals::before,
.cart_totals::after {
	content: none !important;
	display: none !important;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.page-cart,
.page-checkout,
.cart-layout,
.cko-form,
.cart-grid,
.cko-grid,
.cart-collaterals,
.cart_totals {
	float: none !important;
	clear: both;
	width: auto;
	max-width: none;
	box-sizing: border-box;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.cart-layout,
.cko-form,
.cart-grid,
.cko-grid {
	width: 100%;
	max-width: 100%;
}

.cart-main,
.cko-main,
.cart-sidebar,
.cko-sidebar,
.cko-card,
.cart-card,
.cko-summary,
.cart-summary,
.cart_totals {
	float: none !important;
	box-sizing: border-box;
	min-width: 0;
}

.cko-body,
.cart-body,
.account-body {
	padding-top: 28px;
	padding-bottom: 96px; /* room for WhatsApp float */
	width: 100%;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

@media (min-width: 640px) {
	.cko-body,
	.cart-body,
	.account-body {
		padding-top: 36px;
	}
}

/* Shared cards */
.cko-card,
.cart-card,
.account-card,
.cko-summary,
.cart-summary {
	background: #fff;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
	overflow: visible;
}

.cko-card { padding: 20px; }

.woocommerce-account .woocommerce-MyAccount-navigation{
	width: auto !important;
}

.woocommerce .quantity .qty{
   width: 5.631em;
   text-align: start;
}

@media (min-width: 768px) {
	.cko-card { padding: 28px; }
}
@media (min-width: 1024px) {
	.cko-card { padding: 32px; }
}

/* ---------- Checkout layout ---------- */
.cko-grid,
.cart-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: start;
	width: 100%;
}

.cko-main,
.cart-main,
.cko-sidebar,
.cart-sidebar {
	min-width: 0;
	width: 100%;
	max-width: 100%;
}

@media (min-width: 1100px) {
	.cko-grid,
	.cart-grid {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
		gap: 28px;
	}

	.cko-sidebar,
	.cart-sidebar {
		width: auto;
		max-width: 360px;
		justify-self: stretch;
	}
}

.cko-steps {
	display: flex;
	align-items: flex-start;
	gap: 0;
	margin-bottom: 28px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	width: 100%;
	overflow: visible;
}

.cko-step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 0;
	min-width: 0;
	max-width: 33%;
}

.cko-step-item:last-child {
	flex: 1 1 0;
}

.cko-step-num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	font-family: var(--font-display);
	background: #eef2f5;
	color: #9ca3af;
	border: 2px solid transparent;
	transition: background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
	flex-shrink: 0;
}

@media (min-width: 640px) {
	.cko-step-num {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}
}

.cko-step-item.is-active .cko-step-num {
	background: var(--cyan);
	color: #fff;
	box-shadow: 0 6px 18px rgba(0, 180, 216, 0.35);
}

.cko-step-item.is-done .cko-step-num {
	background: var(--cyan-dark);
	color: #fff;
}

.cko-step-label {
	font-size: 10px;
	margin-top: 8px;
	white-space: normal;
	text-align: center;
	line-height: 1.25;
	font-family: var(--font-display);
	font-weight: 500;
	color: #9ca3af;
	transition: color 0.2s;
	max-width: 100%;
	padding: 0 2px;
	overflow-wrap: anywhere;
}

@media (min-width: 640px) {
	.cko-step-label {
		font-size: 12px;
		white-space: nowrap;
		overflow-wrap: normal;
	}
}

.cko-step-item.is-active .cko-step-label {
	color: var(--cyan);
	font-weight: 700;
}

.cko-step-item.is-done .cko-step-label {
	color: var(--charcoal);
}

.cko-step-line {
	flex: 1 1 24px;
	min-width: 12px;
	max-width: 80px;
	height: 2px;
	margin: 0 6px;
	margin-top: 17px;
	background: #e8ecf0;
	align-self: flex-start;
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}

@media (min-width: 640px) {
	.cko-step-line {
		margin: 0 10px;
		margin-top: 19px;
		min-width: 24px;
	}
}

.cko-step-item.is-done + .cko-step-line,
.cko-step-line.is-done {
	background: rgba(0, 180, 216, 0.35);
}

.cko-panel-title {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0;
	color: var(--charcoal);
	font-family: var(--font-display);
	letter-spacing: -0.02em;
	line-height: 1.3;
}

.cko-panel > .cko-panel-title {
	margin-bottom: 24px;
}

.cko-panel-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
}

.cko-panel-head .cko-panel-title {
	margin: 0;
}

.cko-title-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: #9ca3af;
	cursor: pointer;
	flex-shrink: 0;
	transition: background 0.15s, color 0.15s;
}

.cko-title-back svg {
	transform: rotate(180deg);
	display: block;
}

.cko-title-back:hover {
	background: #f3f4f6;
	color: var(--charcoal);
}

.cko-panel[data-cko-panel] > .cko-panel-title + .cko-fields,
.cko-panel[data-cko-panel] > .cko-panel-head + .cko-fields,
.cko-panel[data-cko-panel] > .cko-panel-head + .cko-pay-notice,
.cko-panel[data-cko-panel] > .cko-panel-title + .cko-pay-notice {
	margin-top: 0;
}

/* Address step: 2-column field widths (design) */
.cko-field-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	width: 100%;
	margin-bottom: 4px;
}

@media (min-width: 640px) {
	.cko-field-grid {
		grid-template-columns: 1fr 1fr;
		gap: 16px 16px;
	}

	.cko-field-grid .form-row {
		margin-bottom: 0 !important;
		width: 100% !important;
	}
}

.cko-fields-details .form-row {
	max-width: 100%;
}

/* ---------- Unified checkout field system ---------- */
.cko-form .form-row,
.cko-fields .form-row,
.page-checkout .form-row,
.woocommerce-checkout .form-row {
	margin: 0 0 18px !important;
	float: none !important;
	clear: both !important;
	width: 100% !important;
	max-width: 100% !important;
	padding: 0 !important;
	display: block !important;
}

.cko-form .form-row:last-child,
.cko-fields .form-row:last-child {
	margin-bottom: 0 !important;
}

.page-checkout .form-row-first,
.page-checkout .form-row-last,
.page-checkout .form-row-wide,
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last,
.woocommerce-checkout .form-row-wide {
	float: none !important;
	width: 100% !important;
	clear: both !important;
}

.cko-form label,
.cko-fields label,
.page-checkout .woocommerce-billing-fields label,
.page-checkout .cko-payment label:not(.woocommerce-form__label-for-checkbox),
.account-card label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 7px;
	color: var(--charcoal);
	font-family: var(--font-display);
	line-height: 1.3;
}

.cko-form .required,
.cko-fields .required,
.cko-form abbr.required,
.cko-fields abbr.required {
	color: var(--red);
	text-decoration: none;
	border: none;
	font-weight: 700;
}

.cko-form input.input-text,
.cko-form input[type="text"],
.cko-form input[type="email"],
.cko-form input[type="tel"],
.cko-form input[type="password"],
.cko-form input[type="number"],
.cko-form select,
.cko-form textarea,
.cko-fields input.input-text,
.cko-fields select,
.cko-fields textarea,
.cko-payment .payment_box input.input-text,
.cko-payment .payment_box input[type="text"],
.cko-payment .payment_box input[type="tel"],
.cko-payment .payment_box input[type="number"],
.cko-payment .payment_box select,
.cko-payment .payment_box textarea,
.account-card input.input-text,
.account-card input[type="email"],
.account-card input[type="password"],
.account-card input[type="text"],
.cart-card input.input-text,
.page-checkout .select2-container .select2-selection--single {
	width: 100% !important;
	min-height: 48px;
	padding: 12px 16px !important;
	border-radius: 12px !important;
	border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
	font-size: 14px !important;
	font-family: var(--font-body) !important;
	font-weight: 400;
	line-height: 1.4 !important;
	color: var(--charcoal) !important;
	background: #fff !important;
	outline: none !important;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
	box-sizing: border-box !important;
	appearance: none;
	-webkit-appearance: none;
	box-shadow: none !important;
	margin: 0 !important;
}

.cko-form textarea,
.cko-fields textarea,
.cko-payment .payment_box textarea {
	min-height: 96px;
	resize: vertical;
}

.cko-form input::placeholder,
.cko-fields input::placeholder,
.cko-payment .payment_box input::placeholder {
	color: #b0b7c0 !important;
	opacity: 1;
}

.cko-form input:hover,
.cko-form select:hover,
.cko-form textarea:hover,
.cko-fields input:hover,
.cko-fields select:hover,
.cko-payment .payment_box input:hover,
.cko-payment .payment_box select:hover,
.account-card input:hover {
	border-color: rgba(0, 180, 216, 0.35) !important;
}

.cko-form input:focus,
.cko-form select:focus,
.cko-form textarea:focus,
.cko-fields input:focus,
.cko-fields select:focus,
.cko-payment .payment_box input:focus,
.cko-payment .payment_box select:focus,
.account-card input:focus,
.cart-card input.input-text:focus,
.page-checkout .select2-container--open .select2-selection--single {
	border-color: var(--cyan) !important;
	box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12) !important;
	background: #fff !important;
}

/* Phone row — same height/border language as other fields */
.cko-phone-wrap {
	display: flex;
	gap: 10px;
	align-items: stretch;
	width: 100%;
}

.cko-phone-prefix {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 48px;
	padding: 0 14px;
	border-radius: 12px;
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	background: #f8fafb;
	font-size: 14px;
	font-family: var(--font-body);
	color: var(--charcoal);
	flex-shrink: 0;
	white-space: nowrap;
	box-sizing: border-box;
}

.cko-phone-prefix span {
	color: var(--muted);
	font-weight: 600;
}

.cko-phone-wrap input.input-text {
	flex: 1;
	min-width: 0;
}

.cko-hidden-field { display: none !important; }

/* Select2 match */
.page-checkout .select2-container .select2-selection--single {
	display: flex !important;
	align-items: center;
	height: 48px !important;
}

.page-checkout .select2-container .select2-selection__rendered {
	padding: 0 !important;
	line-height: 1.4 !important;
	color: var(--charcoal) !important;
}

.page-checkout .select2-container .select2-selection__arrow {
	height: 46px !important;
	top: 1px !important;
	right: 8px !important;
}

.cko-continue,
.cko-place-order,
.woocommerce-form-login__submit,
.woocommerce-form-register__submit,
.checkout-button,
.wc-proceed-to-checkout .checkout-button {
	width: 100%;
	padding: 15px 22px;
	border: none;
	border-radius: 999px;
	background: linear-gradient(135deg, #00B4D8 0%, #0096b8 100%);
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
	box-shadow: 0 8px 24px rgba(0, 180, 216, 0.32);
	transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
	text-decoration: none;
	line-height: 1.2;
}

.cko-continue:hover,
.cko-place-order:hover,
.woocommerce-form-login__submit:hover,
.checkout-button:hover,
.wc-proceed-to-checkout .checkout-button:hover {
	opacity: 0.95;
	color: #fff !important;
	box-shadow: 0 10px 28px rgba(0, 180, 216, 0.4);
	transform: translateY(-1px);
}

.cko-continue:active,
.cko-place-order:active { transform: scale(0.98); }

.cko-continue:disabled,
.cko-place-order:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}

.cko-step-nav {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 8px;
}

.cko-step-nav .cko-continue,
.cko-step-nav .cko-place-order { flex: 1; margin-top: 0; }

.cko-back {
	padding: 14px 20px;
	border-radius: 999px;
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
	color: var(--muted);
	cursor: pointer;
	transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.cko-back:hover {
	border-color: rgba(0, 180, 216, 0.4);
	color: var(--cyan);
	background: var(--light-blue);
}

.cko-map-block { margin: 8px 0 24px; }

.cko-map-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	gap: 12px;
}

.cko-map-label {
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-display);
	color: var(--charcoal);
}

.cko-map-locate {
	border: none;
	background: none;
	color: var(--cyan);
	font-size: 12px;
	font-weight: 700;
	font-family: var(--font-display);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 0;
}

.cko-map-locate:hover { color: var(--cyan-dark); }

.cko-map-preview {
	position: relative;
	width: 100%;
	height: 180px;
	border-radius: 16px;
	overflow: hidden;
	border: 1.5px solid rgba(0, 180, 216, 0.15);
	background:
		radial-gradient(circle at 50% 45%, rgba(0, 180, 216, 0.12), transparent 55%),
		linear-gradient(160deg, #e8f8fc 0%, #f0fafb 100%);
}

.cko-map-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 180, 216, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 180, 216, 0.08) 1px, transparent 1px);
	background-size: 28px 28px;
}

.cko-map-pin {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.cko-map-pin-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--cyan);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(0, 180, 216, 0.4);
	animation: cko-pin-pulse 2.4s ease-in-out infinite;
}

@keyframes cko-pin-pulse {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

.cko-map-city {
	font-size: 12px;
	font-weight: 600;
	padding: 7px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	color: #4b5563;
	font-family: var(--font-body);
}

.cko-pay-notice {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px 18px;
	border-radius: 14px;
	border: 1px solid rgba(0, 180, 216, 0.22);
	background: linear-gradient(135deg, #e8f8fc 0%, #f0fafb 100%);
	margin-bottom: 22px;
}

.cko-pay-notice svg { color: var(--cyan); flex-shrink: 0; margin-top: 2px; }

.cko-pay-notice-title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.cko-pay-notice-text {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.55;
	font-family: var(--font-body);
}

/* Order summary (checkout + cart) */
.cko-summary,
.cart-summary {
	overflow: visible;
	position: relative;
	top: auto;
	z-index: 1;
	width: 100%;
}

@media (min-width: 1100px) {
	.cko-summary,
	.cart-summary {
		position: sticky;
		top: 120px;
	}
}

.cko-summary-head,
.cart-summary-head {
	padding: 18px 22px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
}

.cko-summary-head h3,
.cart-summary-head h2 {
	font-size: 15px;
	font-weight: 800;
	margin: 0;
	color: var(--charcoal);
	font-family: var(--font-display);
	letter-spacing: -0.01em;
}

.cko-summary-body,
.cart-summary-body { padding: 22px; }

.cko-review-item {
	display: flex;
	gap: 14px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cko-review-thumb {
	width: 72px;
	height: 72px;
	border-radius: 14px;
	overflow: hidden;
	background: #f3f6f8;
	flex-shrink: 0;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.cko-review-name {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--charcoal);
	font-family: var(--font-display);
	line-height: 1.35;
}

.cko-review-qty {
	font-weight: 500;
	color: var(--gray);
}

.cko-review-spec {
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 6px;
	font-family: var(--font-body);
	line-height: 1.4;
}

.cko-review-price {
	font-size: 15px;
	font-weight: 800;
	color: var(--cyan);
	font-family: var(--font-display);
}

.cko-review-rows,
.cart-summary-rows {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
	margin-bottom: 18px;
}

.cko-review-row,
.cart-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}

.cko-review-row > span:first-child,
.cart-summary-row > span:first-child {
	color: var(--muted);
	font-family: var(--font-body);
}

.cko-review-row > span:last-child,
.cart-summary-row > span:last-child {
	font-weight: 600;
	color: var(--charcoal);
	font-family: var(--font-display);
	text-align: right;
}

.cko-review-row .is-free,
.cart-summary-row .is-free {
	color: var(--green) !important;
	font-weight: 700 !important;
}

.cko-review-shipping .woocommerce-shipping-totals th,
.cko-review-shipping .woocommerce-shipping-totals td,
.cart-summary-shipping .woocommerce-shipping-totals th,
.cart-summary-shipping .woocommerce-shipping-totals td {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-size: 14px;
	padding: 0;
	border: none;
	font-weight: 400;
}

.cko-review-total,
.cart-summary-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: 16px;
	font-weight: 800;
	padding-top: 16px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	margin-bottom: 18px;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.cko-review-total > span:last-child,
.cart-summary-total > span:last-child {
	color: var(--cyan);
	font-size: 1.15rem;
}

.cko-review-notes {
	border-radius: 12px;
	padding: 14px;
	background: var(--bg);
	font-size: 12px;
	font-family: var(--font-body);
}

.cko-review-note {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	margin-bottom: 6px;
	line-height: 1.4;
}

.cko-review-note:last-child { margin-bottom: 0; }
.cko-review-note svg { color: var(--cyan); flex-shrink: 0; }
.cko-review-note.is-credit { color: var(--gray); }

.cko-payment .wc_payment_methods {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cko-payment .wc_payment_method {
	border: 1.5px solid rgba(0, 0, 0, 0.08);
	border-radius: 14px;
	padding: 16px 18px;
	background: #fff;
	cursor: pointer;
	transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.cko-payment .wc_payment_method:hover {
	border-color: rgba(0, 180, 216, 0.35);
}

.cko-payment .wc_payment_method:has(input:checked) {
	border-color: var(--cyan);
	background: var(--light-blue);
	box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.cko-payment .wc_payment_method > label {
	font-weight: 600;
	font-size: 14px;
	font-family: var(--font-display);
	color: var(--charcoal);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}

.cko-payment .payment_box {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 13px;
	color: var(--muted);
	font-family: var(--font-body);
}

.cko-payment .payment_box .form-row {
	margin-bottom: 14px !important;
}

.cko-payment .payment_box label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 7px;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.cko-payment .woocommerce-terms-and-conditions-wrapper {
	margin-bottom: 12px;
	font-size: 13px;
	color: var(--muted);
}

.cko-place-nav { display: block; }
.cko-place-nav .cko-back { display: none; }
.cko-place-nav .cko-place-order {
	width: 100%;
	margin-top: 0;
}

.page-checkout .woocommerce-form-coupon-toggle,
.page-checkout .woocommerce-form-login-toggle {
	margin-bottom: 16px;
}

.page-checkout .woocommerce-info,
.page-cart .woocommerce-message,
.page-cart .woocommerce-info,
.page-checkout .woocommerce-message {
	border-radius: 14px;
	border: 1px solid rgba(0, 180, 216, 0.22);
	background: var(--light-blue);
	color: var(--charcoal);
	padding: 14px 18px;
	font-size: 14px;
	margin-bottom: 20px;
}

.bidoki-checkout .woocommerce-billing-fields > h3,
.page-checkout #order_review_heading,
.cko-hidden-field { display: none !important; }

/* ---------- Cart ---------- */
.cart-page-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 28px;
	flex-wrap: wrap;
}

.cko-page-head {
	margin-bottom: 28px;
}

.cko-page-title {
	font-size: clamp(1.5rem, 2.5vw, 1.85rem);
	font-weight: 800;
	margin: 0 0 6px;
	color: var(--charcoal);
	font-family: var(--font-display);
	letter-spacing: -0.03em;
}

.cko-page-lead {
	margin: 0;
	font-size: 14px;
	color: var(--muted);
	font-family: var(--font-body);
}

.cart-page-title,
.account-page-title {
	font-size: clamp(1.5rem, 2.5vw, 1.85rem);
	font-weight: 800;
	margin: 0;
	color: var(--charcoal);
	font-family: var(--font-display);
	letter-spacing: -0.03em;
}

.cart-page-count {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-body);
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(0, 180, 216, 0.08);
	color: var(--cyan-dark);
}

.cart-card {
	padding: 8px 8px 20px;
	overflow: visible;
}

@media (min-width: 640px) {
	.cart-card { padding: 12px 12px 24px; }
}

.cart-line {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	gap: 12px;
	padding: 16px 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	transition: background 0.15s;
	width: 100%;
	box-sizing: border-box;
	align-items: start;
}

@media (min-width: 640px) {
	.cart-line {
		grid-template-columns: 112px minmax(0, 1fr);
		gap: 20px;
		padding: 24px 20px;
	}
}

.cart-line:last-of-type { border-bottom: none; }

.cart-line:hover {
	background: rgba(0, 180, 216, 0.03);
	border-radius: 16px;
}

.cart-line-media,
.cart-line-thumb {
	display: block;
	min-width: 0;
}

.cart-line-thumb,
.cart-line-media img {
	width: 72px;
	height: 72px;
	border-radius: 14px;
	object-fit: cover;
	display: block;
	background: #f3f6f8;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
	.cart-line-thumb,
	.cart-line-media img {
		width: 112px;
		height: 112px;
	}
}

.cart-line-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	overflow: visible;
}

.cart-line-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	min-width: 0;
}

.cart-line-info {
	min-width: 0;
	flex: 1;
}

.cart-line-name {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 4px;
	font-family: var(--font-display);
	line-height: 1.35;
	letter-spacing: -0.01em;
	overflow-wrap: anywhere;
	word-break: break-word;
}

@media (min-width: 640px) {
	.cart-line-name { font-size: 15px; }
}

.cart-line-name a {
	color: var(--charcoal);
	text-decoration: none;
	transition: color 0.15s;
}

.cart-line-name a:hover { color: var(--cyan); }

.cart-line-spec {
	margin: 0 0 8px;
	font-size: 13px;
	color: var(--gray);
	line-height: 1.4;
	font-family: var(--font-body);
}

.cart-line-unit {
	font-size: 13px;
	color: var(--muted);
	font-family: var(--font-body);
}

.cart-line-unit .amount {
	font-weight: 600;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.cart-line-remove,
.page-cart a.remove.cart-line-remove {
	display: inline-flex !important;
	width: 36px !important;
	height: 36px !important;
	align-items: center;
	justify-content: center;
	border-radius: 10px !important;
	background: #f3f4f6 !important;
	color: var(--muted) !important;
	text-decoration: none !important;
	flex-shrink: 0;
	border: none !important;
	line-height: 1 !important;
	font-size: 0 !important;
	transition: background 0.15s, color 0.15s;
	position: relative;
	z-index: 2;
}

.cart-line-remove:hover,
.page-cart a.remove.cart-line-remove:hover {
	background: #fee2e2 !important;
	color: var(--red) !important;
}

.cart-line-remove svg {
	display: block;
	width: 16px;
	height: 16px;
}

.cart-line-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.cart-line-qty .quantity {
	display: inline-flex;
	align-items: center;
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
}

.cart-line-qty .qty {
	width: 52px;
	text-align: center;
	padding: 10px 4px;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	font-weight: 600;
	font-family: var(--font-display);
	-moz-appearance: textfield;
}

.cart-line-qty .qty::-webkit-outer-spin-button,
.cart-line-qty .qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.cart-line-subtotal {
	font-size: 16px;
	font-weight: 800;
	color: var(--cyan);
	font-family: var(--font-display);
	letter-spacing: -0.01em;
}

.cart-actions {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px 16px 8px;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	margin-top: 4px;
}

@media (min-width: 768px) {
	.cart-actions {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 24px 20px 8px;
	}
}

.page-cart .coupon {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	flex: 1;
	max-width: 360px;
}

.page-cart .coupon .coupon-error-notice{
	width: 100%;
	color: red;
}

.page-cart .coupon .input-text {
	flex: 1;
	min-width: 0;
	padding: 11px 16px;
	border-radius: 999px;
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	font-size: 14px;
	font-family: var(--font-body);
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.page-cart .coupon .input-text:focus {
	border-color: var(--cyan);
	box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.12);
}

.page-cart .coupon-apply,
.page-cart .cart-update-btn {
	padding: 11px 18px;
	border-radius: 999px;
	border: 1.5px solid rgba(0, 0, 0, 0.1);
	background: #fff;
	font-weight: 600;
	font-size: 13px;
	font-family: var(--font-display);
	cursor: pointer;
	color: var(--charcoal);
	white-space: nowrap;
	transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.page-cart .coupon-apply:hover,
.page-cart .cart-update-btn:hover {
	border-color: var(--cyan);
	color: var(--cyan);
	background: var(--light-blue);
}

.cart-actions-right {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.cart-continue-shop {
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-display);
	color: var(--muted);
	text-decoration: none;
	transition: color 0.15s;
}

.cart-continue-shop:hover { color: var(--cyan); }

.cart-collaterals .cart_totals {
	background: transparent;
	border: none;
	padding: 0;
	border-radius: 0;
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
}

/* Extra WooCommerce layout overrides (floats / half widths) */
.woocommerce-cart .cart-collaterals,
.woocommerce-page.woocommerce-cart .cart-collaterals,
.page-cart .cart-collaterals {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-page.woocommerce-cart .cart-collaterals .cart_totals {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2,
.page-checkout #customer_details,
.page-checkout #customer_details .col-1,
.page-checkout #customer_details .col-2 {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

.page-checkout .select2-container {
	width: 100% !important;
	max-width: 100%;
}

.page-cart .shop_table.cart,
.page-cart .woocommerce-cart-form__contents {
	display: block;
	width: 100%;
	border: none;
	margin: 0;
	padding: 0;
}

.page-cart .quantity,
.cart-line-qty .quantity {
	margin: 0;
}

body.woocommerce-cart .whatsapp-float,
body.woocommerce-checkout .whatsapp-float {
	bottom: 16px;
	right: 16px;
	z-index: 30;
}

body.woocommerce-cart .page-cart,
body.woocommerce-checkout .page-checkout {
	position: relative;
	z-index: 1;
}

.cart-summary-note {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 16px 0 0;
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--bg);
	font-size: 12px;
	line-height: 1.45;
	color: var(--muted);
	font-family: var(--font-body);
}

.cart-summary-note svg {
	color: var(--cyan);
	flex-shrink: 0;
	margin-top: 1px;
}

.wc-proceed-to-checkout { margin-top: 4px; }

.wc-proceed-to-checkout .checkout-button {
	margin-top: 0;
}

/* Cross-sells under cart */
.page-cart .cross-sells {
	margin-top: 40px;
	grid-column: 1 / -1;
}

.page-cart .cross-sells > h2 {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 800;
	margin-bottom: 20px;
}

/* ---------- Account ---------- */
.page-login .account-auth-grid::before,
.page-login .account-auth-grid::after,
.page-account .account-auth-grid::before,
.page-account .account-auth-grid::after {
	content: none !important;
	display: none !important;
}

.account-auth-grid {
	display: grid;
	gap: 24px;
	width: 100%;
	float: none !important;
	clear: both;
}

@media (min-width: 768px) {
	.account-auth-grid { grid-template-columns: 1fr 1fr; }
}

.account-auth-grid .account-card,
.page-login .account-card {
	float: none !important;
	width: 100% !important;
	max-width: none;
	margin: 0;
	min-width: 0;
	box-sizing: border-box;
}

.account-card { padding: 28px; }

.account-card-single {
	max-width: 28rem;
	margin: 0 auto;
}

.account-card h2 {
	font-size: 1.25rem;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--charcoal);
	font-family: var(--font-display);
}

.account-lead {
	font-size: 14px;
	color: var(--gray);
	margin-bottom: 24px;
	font-family: var(--font-body);
}

.account-form-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.page-login .form-row,
.page-account .account-card .form-row {
	float: none !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.page-login .woocommerce-form .show-password-input,
.page-account .account-card .show-password-input {
	right: 12px;
}

.account-form-actions .button,
.account-card .woocommerce-form-login__submit,
.account-card .woocommerce-form-register__submit {
	width: 100%;
	justify-content: center;
	min-height: 48px;
	border-radius: 12px !important;
	background: var(--cyan) !important;
	border-color: var(--cyan) !important;
	color: #fff !important;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
}

.account-form-actions .button:hover,
.account-card .woocommerce-form-login__submit:hover,
.account-card .woocommerce-form-register__submit:hover {
	background: var(--cyan-dark, #0096b4) !important;
	border-color: var(--cyan-dark, #0096b4) !important;
}

.account-dashboard {
	display: grid;
	gap: 24px;
	width: 100%;
}

.woocommerce-account .account-dashboard .woocommerce-MyAccount-navigation,
.woocommerce-account .account-dashboard .woocommerce-MyAccount-content {
	float: none !important;
	clear: none !important;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
	min-width: 0;
}

@media (min-width: 768px) {
	.account-dashboard {
		grid-template-columns: 240px minmax(0, 1fr);
		align-items: start;
	}
}

.woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	background: var(--white);
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
}

.woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 14px 18px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-display);
	color: var(--muted);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: color 0.15s, background 0.15s;
	text-decoration: none;
}

.woocommerce-MyAccount-navigation li:last-child a { border-bottom: none; }

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
	color: var(--cyan);
	background: var(--light-blue);
}

.woocommerce-MyAccount-content.account-card {
	min-height: 200px;
	width: 100% !important;
	box-sizing: border-box;
}

/* Service request fills account content without double-card feel */
.woocommerce-MyAccount-content:has(.page-sr) {
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
}

.woocommerce-MyAccount-content .page-sr {
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 16px;
	font-family: var(--font-display);
}

.lost_password a { color: var(--cyan); font-size: 13px; }

.woocommerce-form-login__rememberme {
	font-size: 13px;
	color: var(--muted);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* Core WooCommerce account tables / addresses / orders */
.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-error {
	border-radius: 12px;
	padding: 14px 16px;
	margin-bottom: 16px;
}

.woocommerce-MyAccount-content .shop_table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
}

.woocommerce-MyAccount-content .shop_table th,
.woocommerce-MyAccount-content .shop_table td {
	padding: 12px 14px;
	text-align: left;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 13px;
	vertical-align: middle;
}

.woocommerce-MyAccount-content .shop_table thead th {
	background: #e8f8fc;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 12px;
	color: var(--charcoal);
}

.woocommerce-MyAccount-content .shop_table tr:last-child td {
	border-bottom: none;
}

.woocommerce-MyAccount-content .shop_table .button,
.woocommerce-MyAccount-content .woocommerce-Button,
.woocommerce-MyAccount-content .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 10px !important;
	background: var(--cyan) !important;
	border: 1px solid var(--cyan) !important;
	color: #fff !important;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	line-height: 1.3;
}

.woocommerce-MyAccount-content .woocommerce-Addresses,
.woocommerce-MyAccount-content .account-addresses {
	display: grid;
	gap: 16px;
	width: 100%;
	float: none !important;
	clear: both;
}

.woocommerce-MyAccount-content .woocommerce-Addresses::before,
.woocommerce-MyAccount-content .woocommerce-Addresses::after,
.woocommerce-MyAccount-content .account-addresses::before,
.woocommerce-MyAccount-content .account-addresses::after {
	content: none !important;
	display: none !important;
}

@media (min-width: 768px) {
	.woocommerce-MyAccount-content .woocommerce-Addresses.has-two,
	.woocommerce-MyAccount-content .account-addresses.has-two {
		grid-template-columns: 1fr 1fr;
	}
}

.woocommerce-MyAccount-content .woocommerce-Address,
.woocommerce-MyAccount-content .account-address-card {
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 20px;
	border: 1px solid rgba(0, 0, 0, 0.07);
	border-radius: 16px;
	background: #fafbfc;
	box-sizing: border-box;
	min-width: 0;
}

.woocommerce-MyAccount-content .woocommerce-Address-title,
.woocommerce-MyAccount-content .account-address-card .title {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}

.woocommerce-MyAccount-content .woocommerce-Address-title h2,
.woocommerce-MyAccount-content .woocommerce-Address-title h3,
.woocommerce-MyAccount-content .account-address-card .title h2 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	font-family: var(--font-display);
	color: var(--charcoal);
}

.woocommerce-MyAccount-content .account-address-edit,
.woocommerce-MyAccount-content .woocommerce-Address-title .edit {
	display: inline-flex;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(0, 180, 216, 0.1);
	color: var(--cyan-dark) !important;
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none !important;
	white-space: nowrap;
}

.woocommerce-MyAccount-content .account-address-edit:hover,
.woocommerce-MyAccount-content .woocommerce-Address-title .edit:hover {
	background: rgba(0, 180, 216, 0.18);
}

.woocommerce-MyAccount-content .woocommerce-Address address,
.woocommerce-MyAccount-content .account-address-card address {
	margin: 0;
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
	color: var(--muted);
	font-family: var(--font-body);
}

.woocommerce-MyAccount-content .account-address-lead {
	margin-bottom: 20px;
}

.woocommerce-MyAccount-content .account-back-link {
	margin: 0 0 16px;
}

.woocommerce-MyAccount-content .account-back-link a {
	color: var(--cyan);
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	font-family: var(--font-display);
}

.woocommerce-MyAccount-content .account-edit-address h2 {
	margin-bottom: 20px;
}

.woocommerce-MyAccount-content .account-address-fields,
.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 16px;
	width: 100%;
}

@media (min-width: 640px) {
	.woocommerce-MyAccount-content .account-address-fields,
	.woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
		grid-template-columns: 1fr 1fr;
	}
}

.woocommerce-MyAccount-content .woocommerce-address-fields .form-row,
.woocommerce-MyAccount-content .account-address-fields .form-row {
	float: none !important;
	width: 100% !important;
	margin: 0 0 14px !important;
	padding: 0 !important;
	clear: none !important;
}

.woocommerce-MyAccount-content .woocommerce-address-fields .form-row-wide,
.woocommerce-MyAccount-content .account-address-fields .form-row-wide,
.woocommerce-MyAccount-content .woocommerce-address-fields .address-field,
.woocommerce-MyAccount-content .account-address-fields #billing_company_field,
.woocommerce-MyAccount-content .account-address-fields #shipping_company_field,
.woocommerce-MyAccount-content .account-address-fields #billing_address_1_field,
.woocommerce-MyAccount-content .account-address-fields #shipping_address_1_field,
.woocommerce-MyAccount-content .account-address-fields #billing_address_2_field,
.woocommerce-MyAccount-content .account-address-fields #shipping_address_2_field,
.woocommerce-MyAccount-content .account-address-fields #billing_email_field,
.woocommerce-MyAccount-content .account-address-fields #billing_phone_field,
.woocommerce-MyAccount-content .account-address-fields #billing_country_field,
.woocommerce-MyAccount-content .account-address-fields #shipping_country_field {
	grid-column: 1 / -1;
}

.woocommerce-MyAccount-content .woocommerce-address-fields .form-row input.input-text,
.woocommerce-MyAccount-content .woocommerce-address-fields .form-row select,
.woocommerce-MyAccount-content .woocommerce-address-fields .form-row textarea,
.woocommerce-MyAccount-content .account-address-fields .form-row input.input-text,
.woocommerce-MyAccount-content .account-address-fields .form-row select,
.woocommerce-MyAccount-content .account-address-fields .select2-container {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.woocommerce-MyAccount-content .account-edit-address .account-form-actions .button {
	width: auto;
	min-width: 160px;
	min-height: 48px;
	padding: 12px 20px;
	border-radius: 12px !important;
	background: var(--cyan) !important;
	border-color: var(--cyan) !important;
	color: #fff !important;
	font-family: var(--font-display);
	font-weight: 700;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row,
.woocommerce-MyAccount-content .woocommerce-address-fields .form-row {
	margin-bottom: 14px;
}

.woocommerce-MyAccount-content mark {
	background: transparent;
	color: var(--cyan-dark, #0096b4);
	font-weight: 700;
}

.bidoki-checkout .woocommerce-billing-fields > h3,
.page-checkout #order_review_heading { display: none; }

@media (max-width: 639px) {
	.cko-step-label { font-size: 10px; }
	.cko-step-num { width: 32px; height: 32px; font-size: 12px; }
	.cko-step-line { margin: 0 6px; margin-top: 15px; }
	.cart-line {
		grid-template-columns: 72px 1fr;
		gap: 12px;
		padding: 16px 12px;
	}
	.cart-line-thumb,
	.cart-line-media img {
		width: 72px;
		height: 72px;
	}
	.cart-line-name { font-size: 14px; }

	.woocommerce-MyAccount-content .shop_table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

/* ---------- Single post ---------- */
.page-single-post {
	background: var(--bg);
}

.single-post-banner {
	position: relative;
	isolation: isolate;
	min-height: clamp(280px, 42vw, 460px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background:
		radial-gradient(ellipse 70% 80% at 15% 20%, rgba(0, 180, 216, 0.35), transparent 55%),
		radial-gradient(ellipse 50% 60% at 90% 80%, rgba(0, 136, 170, 0.25), transparent 50%),
		linear-gradient(145deg, #0b3a45 0%, #005566 45%, #00b4d8 100%);
}

.single-post-banner-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.single-post-banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.single-post-banner-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(8, 24, 32, 0.35) 0%, rgba(8, 24, 32, 0.55) 40%, rgba(8, 24, 32, 0.82) 100%),
		linear-gradient(90deg, rgba(0, 85, 102, 0.35), transparent 55%);
	pointer-events: none;
}

.single-post-banner.no-image .single-post-banner-overlay {
	background:
		linear-gradient(180deg, transparent 0%, rgba(8, 24, 32, 0.45) 100%);
}

.single-post-banner-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 72px;
	padding-bottom: 40px;
	color: #fff;
}

@media (min-width: 768px) {
	.single-post-banner-inner {
		padding-top: 96px;
		padding-bottom: 56px;
	}
}

.single-post-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.65);
	font-family: var(--font-body);
}

.single-post-breadcrumb a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	transition: color 0.15s;
}

.single-post-breadcrumb a:hover {
	color: #fff;
}

.single-post-breadcrumb .current {
	color: rgba(255, 255, 255, 0.95);
	max-width: 28rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.single-post-cat {
	display: inline-flex;
	align-items: center;
	margin-bottom: 14px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(0, 180, 216, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.single-post-title {
	margin: 0 0 12px;
	max-width: 18ch;
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 5vw, 3rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: #fff;
	text-wrap: balance;
}

@media (min-width: 768px) {
	.single-post-title {
		max-width: 22ch;
	}
}

.single-post-date {
	margin: 0;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.78);
}

.single-post-updated {
	color: rgba(255, 255, 255, 0.55);
}

.single-post-article {
	padding: 40px 0 80px;
}

@media (min-width: 768px) {
	.single-post-article {
		padding: 56px 0 100px;
	}
}

.single-post-container {
	max-width: var(--container);
}

.single-post-content {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.75;
	color: var(--charcoal);
}

.single-post-content > *:first-child {
	margin-top: 0;
}

.single-post-content > *:last-child {
	margin-bottom: 0;
}

.single-post-content p {
	margin: 0 0 1.25em;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--charcoal);
	line-height: 1.25;
	margin: 1.75em 0 0.65em;
}

.single-post-content h2 { font-size: clamp(1.35rem, 3vw, 1.65rem); }
.single-post-content h3 { font-size: 1.2rem; }
.single-post-content h4 { font-size: 1.05rem; }

.single-post-content a {
	color: var(--cyan-dark);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.single-post-content a:hover {
	color: var(--cyan);
}

.single-post-content ul,
.single-post-content ol {
	margin: 0 0 1.25em;
	padding-left: 1.35em;
}

.single-post-content li {
	margin-bottom: 0.4em;
}

.single-post-content blockquote {
	margin: 1.5em 0;
	padding: 16px 20px;
	border-left: 4px solid var(--cyan);
	background: var(--light-blue);
	border-radius: 0 12px 12px 0;
	font-style: italic;
	color: var(--muted);
}

.single-post-content img,
.single-post-content figure,
.single-post-content .wp-block-image img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
}

.single-post-content figure {
	margin: 1.75em 0;
}

.single-post-content figcaption {
	margin-top: 8px;
	font-size: 13px;
	color: var(--gray);
	text-align: center;
}

.single-post-content pre,
.single-post-content code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.single-post-content pre {
	padding: 16px;
	overflow-x: auto;
	border-radius: 12px;
	background: #0f2530;
	color: #e8f8fc;
	font-size: 13px;
}

.single-post-content :not(pre) > code {
	padding: 2px 6px;
	border-radius: 6px;
	background: var(--light-blue);
	color: var(--cyan-darker);
	font-size: 0.9em;
}

.single-post-pages {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 28px;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
}

.single-post-footer {
	margin-top: 40px;
	padding-top: 28px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.single-post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.single-post-tags > span {
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: 700;
	color: var(--gray);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-right: 4px;
}

.single-post-tags a {
	display: inline-flex;
	padding: 6px 12px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	color: var(--muted);
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	font-family: var(--font-display);
	transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.single-post-tags a:hover {
	border-color: rgba(0, 180, 216, 0.4);
	color: var(--cyan-dark);
	background: var(--light-blue);
}

.single-post-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	color: var(--cyan-dark);
	font-family: var(--font-display);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: color 0.15s, gap 0.15s;
}

.single-post-back:hover {
	color: var(--cyan);
	gap: 10px;
}



.page-showrooms {
	background: var(--bg);
	min-height: 50vh;
}

.page-showrooms .showroom-hero {
	position: relative;
	overflow: hidden;
}

.page-showrooms .showroom-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.page-showrooms .showroom-hero__gradient {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(
		to right,
		var(--bg),
		rgba(248, 249, 250, 0.85),
		rgba(248, 249, 250, 0.3)
	);
}

.page-showrooms .showroom-hero__glow {
	position: absolute;
	top: -6rem;
	right: -6rem;
	width: 18rem;
	height: 18rem;
	border-radius: 9999px;
	background-color: rgba(0, 180, 216, 0.1);
	filter: blur(64px);
	pointer-events: none;
}

.page-showrooms .showroom-hero__content {
	position: relative;
	max-width: 48rem;
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
	.page-showrooms .showroom-hero__content {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}

.page-showrooms .showroom-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
	border-radius: 9999px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background-color: #fff;
	padding: 0.25rem 0.75rem;
	font-size: 0.75rem;
	line-height: 1rem;
	font-weight: 500;
	color: var(--cyan-dark);
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
	font-family: var(--font-body);
}

.page-showrooms .showroom-badge svg {
	display: block;
	flex-shrink: 0;
	color: var(--cyan);
}

.page-showrooms .showroom-hero__title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2.25rem;
	line-height: 1.05;
	letter-spacing: -0.025em;
	color: var(--charcoal);
	margin: 0 0 1rem;
}

.page-showrooms .showroom-hero__title span {
	color: var(--cyan);
}

@media (min-width: 768px) {
	.page-showrooms .showroom-hero__title {
		font-size: 3rem;
		line-height: 1;
	}
}

@media (min-width: 1024px) {
	.page-showrooms .showroom-hero__title {
		font-size: 3.75rem;
	}
}

.page-showrooms .showroom-hero__text {
	max-width: 36rem;
	margin: 0 0 2rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--muted);
	font-family: var(--font-body);
}

@media (min-width: 768px) {
	.page-showrooms .showroom-hero__text {
		font-size: 1.125rem;
		line-height: 1.75;
	}
}

.page-showrooms .btn-cyan {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: none;
	border-radius: 9999px;
	background-color: var(--cyan);
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 600;
	font-family: var(--font-display);
	color: #fff;
	box-shadow: 0 8px 20px rgba(0, 180, 216, 0.25);
	text-decoration: none;
	transition: filter 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.page-showrooms .btn-cyan:hover {
	filter: brightness(1.08);
	color: #fff;
}

.page-showrooms .btn-cyan svg {
	display: block;
	flex-shrink: 0;
}

.page-showrooms .btn-cyan--outline {
	background-color: #fff;
	color: var(--cyan-dark);
	border: 1px solid rgba(0, 180, 216, 0.2);
	box-shadow: none;
}

.page-showrooms .btn-cyan--outline:hover {
	filter: none;
	background-color: var(--light-blue);
	color: var(--cyan-dark);
}

.page-showrooms .showrooms-list {
	padding-top: 1.5rem;
	padding-bottom: 4rem;
}

@media (min-width: 768px) {
	.page-showrooms .showrooms-list {
		padding-top: 2rem;
		padding-bottom: 5rem;
	}
}

.page-showrooms .showrooms-list:has(+ .showroom-coming-wrap) {
	padding-bottom: 0;
}

.page-showrooms .showroom-coming-wrap {
	padding-bottom: 4rem;
}

@media (min-width: 768px) {
	.page-showrooms .showroom-coming-wrap {
		padding-bottom: 5rem;
	}
}

.page-showrooms .country-filter {
	position: sticky;
	top: 0;
	z-index: 10;
	margin: 0 0 2rem;
	padding: 1rem 0;
	background-color: rgba(248, 249, 250, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-showrooms .country-filter__scroll {
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.page-showrooms .country-filter__scroll::-webkit-scrollbar {
	display: none;
}

.page-showrooms .country-filter__row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: max-content;
}

.page-showrooms .chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: 0.75rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	background-color: #fff;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
	font-family: var(--font-display);
	color: var(--charcoal);
	cursor: pointer;
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.page-showrooms .chip:hover {
	border-color: rgba(0, 180, 216, 0.4);
	background-color: var(--light-blue);
}

.page-showrooms .chip-active,
.page-showrooms .chip-active:hover {
	border-color: var(--cyan);
	background-color: var(--cyan);
	color: #fff;
}

.page-showrooms .chip-count {
	font-size: 0.75rem;
	line-height: 1rem;
	border-radius: 9999px;
	padding: 0.125rem 0.375rem;
	background-color: var(--light-blue);
	color: var(--cyan-dark);
	font-weight: 600;
}

.page-showrooms .chip-count--active {
	background-color: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.page-showrooms .country-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.page-showrooms .country-header h2 {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.5rem;
	line-height: 2rem;
	color: var(--charcoal);
	margin: 0;
}

@media (min-width: 768px) {
	.page-showrooms .country-header h2 {
		font-size: 1.875rem;
		line-height: 2.25rem;
	}
}

.page-showrooms .country-header span {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: var(--muted);
	font-family: var(--font-body);
}

.page-showrooms .city-section {
	margin-bottom: 2.5rem;
}

.page-showrooms .city-heading {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.page-showrooms .city-dot {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 9999px;
	background-color: var(--cyan);
	flex-shrink: 0;
}

.page-showrooms .city-heading h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.75rem;
	color: var(--charcoal);
	margin: 0;
}

.page-showrooms .city-count {
	font-size: 0.75rem;
	line-height: 1rem;
	color: var(--muted);
	white-space: nowrap;
	font-family: var(--font-body);
}

.page-showrooms .city-line {
	flex: 1;
	height: 1px;
	min-width: 1rem;
	background-image: linear-gradient(
		to right,
		rgba(0, 180, 216, 0.2),
		rgba(0, 0, 0, 0.06),
		transparent
	);
}

.page-showrooms .showroom-grid {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.page-showrooms .showroom-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.page-showrooms .showroom-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.page-showrooms .showroom-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background-color: #fff;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	text-decoration: none;
	color: inherit;
}

.page-showrooms .showroom-card:hover {
	transform: translateY(-0.125rem);
	border-color: rgba(0, 180, 216, 0.4);
	box-shadow: 0 8px 20px rgba(0, 180, 216, 0.2);
}

.page-showrooms .showroom-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: #f3f4f6;
}

.page-showrooms .showroom-card__media img,
.page-showrooms .showroom-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.page-showrooms .showroom-card__placeholder {
	background: linear-gradient(135deg, #e8f8fc 0%, #f3f4f6 100%);
}

.page-showrooms .showroom-card:hover .showroom-card__media img {
	transform: scale(1.05);
}

.page-showrooms .showroom-card__tag {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	padding: 0.25rem 0.625rem;
	border-radius: 9999px;
	font-size: 11px;
	font-weight: 600;
	font-family: var(--font-display);
	color: var(--cyan-dark);
}

.page-showrooms .showroom-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
	padding: 1.25rem;
}

.page-showrooms .showroom-card__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.375;
	color: var(--charcoal);
	margin: 0;
	transition: color 0.15s ease;
}

.page-showrooms .showroom-card:hover .showroom-card__title {
	color: var(--cyan);
}

.page-showrooms .showroom-card__meta {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	color: var(--muted);
	font-family: var(--font-body);
}

.page-showrooms .showroom-card__meta--sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.page-showrooms .showroom-card__meta--xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

.page-showrooms .showroom-card__meta--center {
	align-items: center;
}

.page-showrooms .showroom-card__meta svg {
	flex-shrink: 0;
	margin-top: 0.125rem;
	color: var(--cyan);
}

.page-showrooms .showroom-card__meta--xs svg {
	color: rgba(0, 180, 216, 0.7);
}

.page-showrooms .showroom-card__meta--center svg {
	margin-top: 0;
}

.page-showrooms .showroom-card__meta span {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.page-showrooms .showroom-card__footer {
	margin-top: auto;
	padding-top: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	gap: 0.75rem;
}

.page-showrooms .showroom-card__directions {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	font-family: var(--font-display);
	color: var(--cyan);
	transition: gap 0.15s ease;
}

.page-showrooms .showroom-card:hover .showroom-card__directions {
	gap: 0.375rem;
}

.page-showrooms .showroom-card__directions svg {
	display: block;
}

.page-showrooms .whatsapp-btn {
	width: 2rem;
	height: 2rem;
	display: grid;
	place-items: center;
	border: none;
	border-radius: 9999px;
	background-color: rgba(37, 211, 102, 0.1);
	color: var(--whatsapp);
	cursor: pointer;
	flex-shrink: 0;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.page-showrooms .whatsapp-btn:hover {
	background-color: var(--whatsapp);
	color: #fff;
}

.page-showrooms .coming-soon {
	margin-top: 3.5rem;
	border-radius: 1rem;
	background-color: var(--light-blue);
	border: 1px solid rgba(0, 180, 216, 0.1);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

@media (min-width: 768px) {
	.page-showrooms .coming-soon {
		flex-direction: row;
		align-items: center;
		padding: 2rem;
	}
}

.page-showrooms .coming-soon h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.75rem;
	margin: 0 0 0.25rem;
	color: var(--charcoal);
}

.page-showrooms .coming-soon p {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: var(--muted);
	margin: 0;
	font-family: var(--font-body);
}

.page-showrooms .showrooms-empty {
	padding: 2rem 0;
	color: var(--muted);
	font-family: var(--font-body);
}

.page-showrooms .showroom-country-panel[hidden] {
	display: none !important;
}

.woocommerce-order-received .woocommerce-order{
	max-width: 1310px;
    margin: 0 auto;
    margin-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
}

#announcement{
	display: none;
}

.post-type-archive-product #announcement,
.home #announcement{
	display: block;
}

.page-id-534 #pageMain{
	max-width: 1310px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	margin-top: 40px;
}

.carousel-section .product-foot{
	display: none;
}

.header-icons .gtranslate_wrapper .notranslate span{
	margin-right: 3px !important;
   font-size: 12px !important;
   vertical-align: middle !important;
   color: #fff !important;
}