/* =============================================================
   Bullion Motors — global design system + widget styles
   ============================================================= */

:root {
	--bm-gold: #C9A24B;
	--bm-gold-light: #F0D48A;
	--bm-gold-deep: #9A7524;
	--bm-gold-grad: linear-gradient(135deg, #F0D48A 0%, #C9A24B 45%, #9A7524 100%);
	--bm-dark: #0B0B0D;
	--bm-dark-2: #131316;
	--bm-dark-3: #1C1C21;
	--bm-light: #F7F5F0;
	--bm-text: #1A1A1C;
	--bm-text-muted: #7A7A80;
	--bm-font: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	--bm-header-h: 84px;
	--bm-ease: cubic-bezier(.22, .61, .36, 1);
}

.bullion-theme {
	margin: 0;
	font-family: var(--bm-font);
	color: var(--bm-text);
	background: var(--bm-dark);
	-webkit-font-smoothing: antialiased;
}

.bullion-content {
	display: block;
}

.bm-container {
	width: min(1240px, calc(100% - 48px));
	margin-inline: auto;
}

/* ---------- Buttons ---------- */
.bm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 38px;
	font-family: var(--bm-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 2px;
	cursor: pointer;
	transition: all .4s var(--bm-ease);
	position: relative;
	overflow: hidden;
}

.bm-btn--sm { padding: 10px 24px; font-size: 11px; }

.bm-btn--gold {
	color: #14100a;
	background: var(--bm-gold-grad);
	border: 1px solid transparent;
	box-shadow: 0 6px 24px rgba(201, 162, 75, .28);
}
.bm-btn--gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(201, 162, 75, .45);
	color: #14100a;
}

.bm-btn--ghost {
	color: #fff;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, .6);
}
.bm-btn--ghost:hover {
	border-color: var(--bm-gold);
	color: var(--bm-gold-light);
	background: rgba(201, 162, 75, .1);
}

.bm-btn--outline {
	color: var(--bm-gold-deep);
	background: transparent;
	border: 1px solid var(--bm-gold);
}
.bm-btn--outline:hover {
	background: var(--bm-gold);
	color: #14100a;
}

/* ---------- Text logo ---------- */
.bm-logo-text {
	display: inline-flex;
	flex-direction: column;
	line-height: 1;
	text-decoration: none;
}
.bm-logo-text__main {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 4px;
	background: var(--bm-gold-grad);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.bm-logo-text__sub {
	font-size: 11px;
	font-weight: 300;
	letter-spacing: 10px;
	color: var(--bm-gold-light);
	margin-top: 5px;
	text-indent: 3px;
}

/* ---------- Section heading ---------- */
.bm-section-head {
	text-align: center;
	margin-bottom: 56px;
}
.bm-section-head__sub {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--bm-gold);
	margin-bottom: 12px;
}
.bm-section-head__title {
	margin: 0;
	font-size: clamp(30px, 4.5vw, 48px);
	font-weight: 300;
	letter-spacing: 6px;
	text-transform: uppercase;
}
.bm-section-head__line {
	display: block;
	width: 72px;
	height: 2px;
	margin: 22px auto 0;
	background: var(--bm-gold-grad);
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(42px);
	transition: opacity .9s var(--bm-ease), transform .9s var(--bm-ease);
	transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}
/* Never hide content inside the Elementor editor */
.elementor-editor-active [data-reveal] {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] { opacity: 1; transform: none; transition: none; }
	.bm-hero--kenburns .bm-hero__slide.is-active .bm-hero__bg { animation: none !important; }
}

/* =============================================================
   Header
   ============================================================= */
.bm-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 999;
	background: rgba(11, 11, 13, .96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(201, 162, 75, .18);
	transition: background .45s var(--bm-ease), border-color .45s var(--bm-ease), box-shadow .45s var(--bm-ease);
}
.bm-header--transparent:not(.is-scrolled) {
	background: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent);
	backdrop-filter: none;
	border-bottom-color: transparent;
}
.bm-header.is-scrolled {
	box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

.bm-header__inner {
	width: min(1360px, calc(100% - 48px));
	margin-inline: auto;
	height: var(--bm-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.bm-header__logo { display: inline-flex; align-items: center; text-decoration: none; }
.bm-header__logo img { max-height: 52px; width: auto; display: block; }

.bm-header__nav { display: flex; align-items: center; gap: 36px; }
.bm-header__menu {
	display: flex;
	align-items: center;
	gap: 34px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.bm-header__menu a {
	position: relative;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	padding: 6px 0;
	transition: color .3s;
}
.bm-header__menu a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--bm-gold-grad);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .4s var(--bm-ease);
}
.bm-header__menu a:hover { color: var(--bm-gold-light); }
.bm-header__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.bm-header__lang-item { margin-inline-start: 4px; }
.bm-header__lang-link {
	display: inline-flex;
	align-items: center;
	padding: 5px 14px !important;
	border: 1px solid rgba(201, 162, 75, .55);
	border-radius: 20px;
	transition: background .3s, border-color .3s, color .3s;
}
.bm-header__lang-link::after { display: none; }
.bm-header__lang-link:hover {
	background: var(--bm-gold-grad);
	border-color: transparent;
	color: #14100a !important;
}

.bm-header__burger {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
}
.bm-header__burger span {
	width: 26px;
	height: 2px;
	background: var(--bm-gold);
	transition: transform .35s var(--bm-ease), opacity .35s;
}
.bm-header__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.bm-header__burger.is-open span:nth-child(2) { opacity: 0; }
.bm-header__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 991px) {
	.bm-header__burger { display: flex; }
	.bm-header__nav {
		position: fixed;
		top: var(--bm-header-h);
		right: 0;
		bottom: 0;
		z-index: 1000;
		width: min(340px, 85vw);
		flex-direction: column;
		align-items: flex-start;
		padding: 40px 32px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: rgba(11, 11, 13, .98);
		border-left: 1px solid rgba(201, 162, 75, .2);
		transform: translateX(100%);
		transition: transform .5s var(--bm-ease);
	}
	.bm-header__nav.is-open { transform: translateX(0); }
	.bm-header__menu { flex-direction: column; align-items: flex-start; gap: 26px; }
	.bm-header__lang-item { margin-inline-start: 0; }
}

/* =============================================================
   Hero slider
   ============================================================= */
.bm-hero {
	position: relative;
	height: 100vh;
	min-height: 540px;
	overflow: hidden;
	background: var(--bm-dark);
}
.bm-hero__track, .bm-hero__slide { position: absolute; inset: 0; }

.bm-hero__slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.2s var(--bm-ease), visibility 1.2s;
	z-index: 1;
}
.bm-hero__slide.is-active { opacity: 1; visibility: visible; z-index: 2; }

.bm-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	will-change: transform;
}
.bm-hero--kenburns .bm-hero__slide.is-active .bm-hero__bg {
	animation: bm-kenburns 9s var(--bm-ease) forwards;
}
@keyframes bm-kenburns {
	from { transform: scale(1); }
	to   { transform: scale(1.1); }
}

.bm-hero__slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(75deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .4) 55%, rgba(0, 0, 0, .15) 100%);
	opacity: .75;
	pointer-events: none;
}

.bm-hero__caption {
	position: absolute;
	z-index: 3;
	left: max(6vw, 32px);
	right: max(6vw, 32px);
	bottom: 16vh;
	max-width: 640px;
	color: #fff;
}

.bm-hero-anim {
	opacity: 0;
	transform: translateY(36px);
}
.bm-hero__slide.is-active .bm-hero-anim {
	animation: bm-fade-up 1s var(--bm-ease) forwards;
	animation-delay: calc(var(--d, 0s) + .35s);
}
@keyframes bm-fade-up {
	to { opacity: 1; transform: none; }
}

.bm-hero__pretitle {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: var(--bm-gold-light);
	margin-bottom: 14px;
}
.bm-hero__title {
	margin: 0 0 14px;
	font-size: clamp(42px, 7vw, 86px);
	font-weight: 800;
	letter-spacing: 6px;
	line-height: 1.02;
	text-transform: uppercase;
	background: linear-gradient(135deg, #fff 30%, var(--bm-gold-light) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.bm-hero__subtitle {
	margin: 0 0 32px;
	font-size: clamp(15px, 1.6vw, 19px);
	font-weight: 300;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, .85);
}
.bm-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.bm-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	font-size: 18px;
	color: #fff;
	background: rgba(0, 0, 0, .25);
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 50%;
	cursor: pointer;
	transition: all .35s var(--bm-ease);
}
.bm-hero__arrow:hover { background: var(--bm-gold); border-color: var(--bm-gold); color: #14100a; }
.bm-hero__arrow--prev { left: 28px; }
.bm-hero__arrow--next { right: 28px; }

.bm-hero__dots {
	position: absolute;
	z-index: 5;
	left: max(6vw, 32px);
	bottom: 7vh;
	display: flex;
	gap: 12px;
}
.bm-hero__dot {
	position: relative;
	width: 46px;
	height: 3px;
	padding: 0;
	background: rgba(255, 255, 255, .3);
	border: 0;
	cursor: pointer;
	overflow: hidden;
}
.bm-hero__dot-progress {
	position: absolute;
	inset: 0;
	background: var(--bm-gold-grad);
	transform: scaleX(0);
	transform-origin: left;
}
.bm-hero__dot.is-active .bm-hero__dot-progress {
	transform: scaleX(1);
	transition: transform var(--dot-duration, 6s) linear;
}

.bm-hero__scrollhint {
	position: absolute;
	z-index: 5;
	right: max(6vw, 32px);
	bottom: 6vh;
	width: 24px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .5);
	border-radius: 14px;
}
.bm-hero__scrollhint span {
	position: absolute;
	left: 50%;
	top: 8px;
	width: 3px;
	height: 8px;
	margin-left: -1.5px;
	border-radius: 2px;
	background: var(--bm-gold);
	animation: bm-scrollhint 1.8s ease-in-out infinite;
}
@keyframes bm-scrollhint {
	0%, 100% { transform: translateY(0); opacity: 1; }
	60% { transform: translateY(12px); opacity: 0; }
}

@media (max-width: 767px) {
	.bm-hero__arrow { display: none; }
	.bm-hero__caption { bottom: 14vh; }
}

/* =============================================================
   Models showcase
   ============================================================= */
.bm-models {
	padding: 110px 0;
	background: var(--bm-light);
}
.bm-models .bm-section-head__title { color: var(--bm-dark); }

.bm-models__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 48px;
}
.bm-models__filter {
	padding: 10px 26px;
	font-family: var(--bm-font);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bm-text-muted);
	background: transparent;
	border: 1px solid rgba(0, 0, 0, .14);
	border-radius: 30px;
	cursor: pointer;
	transition: all .3s var(--bm-ease);
}
.bm-models__filter:hover { border-color: var(--bm-gold); color: var(--bm-gold-deep); }
.bm-models__filter.is-active {
	background: var(--bm-gold-grad);
	border-color: transparent;
	color: #14100a;
}

.bm-models__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.bm-model-card {
	background: #fff;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 6px 30px rgba(0, 0, 0, .07);
	transition: transform .5s var(--bm-ease), box-shadow .5s var(--bm-ease), opacity .4s;
}
.bm-model-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 50px rgba(0, 0, 0, .14);
}
.bm-model-card.is-filtered-out { display: none; }

.bm-model-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--bm-dark-2);
}
.bm-model-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s var(--bm-ease);
}
.bm-model-card:hover .bm-model-card__media img { transform: scale(1.07); }

.bm-model-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 5px 14px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #14100a;
	background: var(--bm-gold-grad);
	border-radius: 20px;
}

.bm-model-card__body { padding: 28px 28px 32px; }
.bm-model-card__name {
	margin: 0 0 6px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--bm-dark);
}
.bm-model-card__price {
	margin: 0 0 18px;
	font-size: 14px;
	font-weight: 500;
	color: var(--bm-gold-deep);
	letter-spacing: 1px;
}
.bm-model-card__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}
.bm-model-card__specs li {
	padding: 6px 12px;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1px;
	color: var(--bm-text-muted);
	background: var(--bm-light);
	border: 1px solid rgba(0, 0, 0, .06);
	border-radius: 3px;
}

/* =============================================================
   Feature section
   ============================================================= */
.bm-feature {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 85vh;
	overflow: hidden;
	background: var(--bm-dark-2);
}
.bm-feature__bg {
	position: absolute;
	inset: -12% 0;
	background-size: cover;
	background-position: center;
	will-change: transform;
}
.bm-feature::after {
	content: '';
	position: absolute;
	inset: 0;
	background: #000;
	opacity: .55;
	pointer-events: none;
}
.bm-feature__inner {
	position: relative;
	z-index: 2;
	display: flex;
	width: min(1240px, calc(100% - 48px));
}
.bm-feature--left  .bm-feature__inner { justify-content: flex-start; text-align: left; }
.bm-feature--center .bm-feature__inner { justify-content: center; text-align: center; }
.bm-feature--right .bm-feature__inner { justify-content: flex-end; text-align: right; }

.bm-feature__content { max-width: 560px; padding: 90px 0; }
.bm-feature--light .bm-feature__content { color: #fff; }

.bm-feature__pretitle {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--bm-gold);
	margin-bottom: 16px;
}
.bm-feature__title {
	margin: 0 0 18px;
	font-size: clamp(30px, 4.2vw, 52px);
	font-weight: 300;
	letter-spacing: 3px;
	line-height: 1.12;
	text-transform: uppercase;
}
.bm-feature__desc {
	margin: 0 0 34px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	opacity: .88;
}

/* =============================================================
   Stats counter
   ============================================================= */
.bm-stats { padding: 90px 0; background: var(--bm-light); }
.bm-stats--dark { background: var(--bm-dark); }

.bm-stats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 40px;
	text-align: center;
}
.bm-stats__value {
	font-size: clamp(44px, 5vw, 68px);
	font-weight: 200;
	line-height: 1;
	color: var(--bm-dark);
	letter-spacing: 2px;
}
.bm-stats--dark .bm-stats__value { color: #fff; }
.bm-stats__suffix {
	font-size: .5em;
	font-weight: 500;
	color: var(--bm-gold);
	margin-left: 4px;
}
.bm-stats__label {
	margin-top: 14px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--bm-text-muted);
}

/* =============================================================
   News grid
   ============================================================= */
.bm-news { padding: 110px 0; background: #fff; }
.bm-news .bm-section-head__title { color: var(--bm-dark); }

.bm-news__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.bm-news-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 4px;
	overflow: hidden;
	transition: transform .5s var(--bm-ease), box-shadow .5s var(--bm-ease);
}
.bm-news-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 44px rgba(0, 0, 0, .12);
}
.bm-news-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--bm-dark-2);
}
.bm-news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s var(--bm-ease);
}
.bm-news-card:hover .bm-news-card__media img { transform: scale(1.06); }

.bm-news-card__body { padding: 26px 26px 30px; }
.bm-news-card__date {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--bm-gold-deep);
	margin-bottom: 10px;
}
.bm-news-card__title { margin: 0 0 12px; font-size: 19px; font-weight: 600; line-height: 1.4; }
.bm-news-card__title a { color: var(--bm-dark); text-decoration: none; transition: color .3s; }
.bm-news-card__title a:hover { color: var(--bm-gold-deep); }
.bm-news-card__excerpt {
	margin: 0 0 18px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.7;
	color: var(--bm-text-muted);
}
.bm-news-card__more {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bm-gold-deep);
	text-decoration: none;
}
.bm-news-card__more span { transition: transform .3s var(--bm-ease); display: inline-block; }
.bm-news-card__more:hover span { transform: translateX(6px); }

/* =============================================================
   CTA banner
   ============================================================= */
.bm-cta {
	position: relative;
	padding: 130px 0;
	overflow: hidden;
	background: var(--bm-dark-2);
	text-align: center;
}
.bm-cta__bg {
	position: absolute;
	inset: -12% 0;
	background-size: cover;
	background-position: center;
	will-change: transform;
}
.bm-cta::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, .45), #000 130%);
	opacity: .75;
	pointer-events: none;
}
.bm-cta .bm-container { position: relative; z-index: 2; }
.bm-cta__title {
	margin: 0 0 16px;
	font-size: clamp(30px, 4.5vw, 54px);
	font-weight: 300;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #fff;
}
.bm-cta__desc {
	margin: 0 auto 38px;
	max-width: 560px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	color: rgba(255, 255, 255, .82);
}
.bm-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

/* =============================================================
   Footer
   ============================================================= */
.bm-footer {
	padding: 90px 0 40px;
	background: var(--bm-dark);
	color: rgba(255, 255, 255, .72);
}
.bm-footer__top {
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 60px;
}
.bm-footer__logo { max-height: 64px; width: auto; }
.bm-footer__tagline {
	margin: 18px 0 24px;
	font-size: 14px;
	font-weight: 300;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, .6);
}
.bm-footer__social { display: flex; gap: 12px; }
.bm-footer__social a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	color: var(--bm-gold);
	border: 1px solid rgba(201, 162, 75, .4);
	border-radius: 50%;
	text-decoration: none;
	transition: all .35s var(--bm-ease);
}
.bm-footer__social a:hover { background: var(--bm-gold); color: #14100a; }
.bm-footer__social svg { width: 16px; height: 16px; fill: currentColor; }

.bm-footer__columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 32px;
}
.bm-footer__col-title {
	margin: 0 0 20px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #fff;
}
.bm-footer__col ul { list-style: none; margin: 0; padding: 0; }
.bm-footer__col li { margin-bottom: 12px; }
.bm-footer__col a {
	font-size: 14px;
	font-weight: 300;
	color: rgba(255, 255, 255, .62);
	text-decoration: none;
	transition: color .3s, padding-left .3s;
}
.bm-footer__col a:hover { color: var(--bm-gold-light); padding-left: 6px; }

/* Contact block (email / phone / working hours). */
.bm-footer__contact-list { list-style: none; margin: 0 0 20px; padding: 0; }
.bm-footer__contact-list li { margin-bottom: 12px; }
.bm-footer__contact-list a {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, .78);
	text-decoration: none;
	transition: color .3s;
	unicode-bidi: plaintext;
}
.bm-footer__contact-list a:hover { color: var(--bm-gold-light); }
.bm-footer__hours { display: flex; flex-direction: column; gap: 6px; }
.bm-footer__hours-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--bm-gold, #C9A24B);
	margin-bottom: 2px;
	unicode-bidi: plaintext;
}
.bm-footer__hours-row {
	font-size: 13px;
	font-weight: 300;
	line-height: 1.5;
	color: rgba(255, 255, 255, .6);
	/* Each row reads in its own natural direction, so English rows stay
	   readable even when the page is RTL and vice-versa. */
	unicode-bidi: plaintext;
}

.bm-footer__bottom { margin-top: 70px; text-align: center; }
.bm-footer__line {
	display: block;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 162, 75, .5), transparent);
	margin-bottom: 28px;
}
.bm-footer__copy {
	margin: 0;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 1.5px;
	color: rgba(255, 255, 255, .45);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
	.bm-models__grid, .bm-news__grid { grid-template-columns: repeat(2, 1fr); }
	.bm-footer__top { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
	.bm-models__grid, .bm-news__grid { grid-template-columns: 1fr; }
	.bm-models, .bm-news { padding: 70px 0; }
	.bm-cta { padding: 90px 0; }
}

/* =============================================================
   V2 — Topbar header (BYD-style layout)
   ============================================================= */
.bm-header2 {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 999;
	--bm-h2-topbar: 36px;
	--bm-h2-main: 76px;
}
.bm-header2__topbar {
	height: var(--bm-h2-topbar);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 28px;
	background: #000;
}
.bm-header2__topbar a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1.5px;
	color: rgba(255, 255, 255, .85);
	text-decoration: none;
	transition: color .3s;
}
.bm-header2__topbar a:hover { color: var(--bm-gold-light); }

.bm-header2__main {
	height: var(--bm-h2-main);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 0 40px;
	background: #141419;
}
.bm-header2__logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.bm-header2__logo img { max-height: 46px; width: auto; display: block; }
.bm-header2__logo .bm-logo-text__main { font-size: 22px; }
.bm-header2__logo .bm-logo-text__sub { font-size: 9px; letter-spacing: 8px; margin-top: 4px; }

.bm-header2__nav { flex: 1; display: flex; justify-content: center; }
.bm-header2__menu {
	display: flex;
	align-items: center;
	gap: 38px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.bm-header2__menu a {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .5px;
	color: #fff;
	text-decoration: none;
	padding: 8px 0;
	transition: color .3s;
}
.bm-header2__menu a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--bm-gold-grad);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .4s var(--bm-ease);
}
.bm-header2__menu a:hover { color: var(--bm-gold-light); }
.bm-header2__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

.bm-header2__lang-item { margin-inline-start: 4px; }
.bm-header2__lang-link {
	display: inline-flex;
	align-items: center;
	padding: 6px 16px !important;
	border: 1px solid rgba(201, 162, 75, .55);
	border-radius: 20px;
	transition: background .3s, border-color .3s, color .3s;
}
.bm-header2__lang-link::after { display: none; }
.bm-header2__lang-link:hover {
	background: var(--bm-gold-grad);
	border-color: transparent;
	color: #14100a !important;
}

.bm-header2__right { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.bm-header2__store {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	transition: color .3s;
}
.bm-header2__store:hover { color: var(--bm-gold-light); }

.bm-header2__burger {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: 0;
	padding: 8px;
	cursor: pointer;
}
.bm-header2__burger span {
	width: 26px;
	height: 2px;
	background: var(--bm-gold);
	transition: transform .35s var(--bm-ease), opacity .35s;
}
.bm-header2__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.bm-header2__burger.is-open span:nth-child(2) { opacity: 0; }
.bm-header2__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.bm-header2--no-topbar { --bm-h2-topbar: 0px; }

@media (max-width: 991px) {
	.bm-header2__burger { display: flex; }
	.bm-header2__store span { display: none; }
	.bm-header2__nav {
		position: fixed;
		top: calc(var(--bm-h2-topbar) + var(--bm-h2-main));
		right: 0;
		bottom: 0;
		z-index: 1000;
		width: min(340px, 85vw);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 40px 32px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: rgba(11, 11, 13, .98);
		border-left: 1px solid rgba(201, 162, 75, .2);
		transform: translateX(100%);
		transition: transform .5s var(--bm-ease);
	}
	.bm-header2__nav.is-open { transform: translateX(0); }
	.bm-header2__menu { flex-direction: column; align-items: flex-start; gap: 26px; }
	.bm-header2__lang-item { margin-inline-start: 0; }
}

/* =============================================================
   V2 — Model banner (fullscreen stacked sections)
   ============================================================= */
.bm-banner {
	position: relative;
	height: 100vh;
	min-height: 480px;
	overflow: hidden;
	background: var(--bm-dark);
}
.bm-banner__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	will-change: transform;
	transform: translateZ(0);
	backface-visibility: hidden;
}
video.bm-banner__media { width: 100%; height: 100%; object-fit: cover; }

.bm-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.25) 30%, rgba(0,0,0,.25) 65%, rgba(0,0,0,.65) 100%);
	opacity: .85;
	pointer-events: none;
}
.bm-banner__cover { position: absolute; inset: 0; z-index: 2; }

.bm-banner__head {
	position: absolute;
	z-index: 3;
	left: 24px;
	right: 24px;
	top: calc(112px + 5vh);
	text-align: center;
	pointer-events: none;
}
.bm-banner--center .bm-banner__head {
	top: 50%;
	transform: translateY(-50%);
}
.bm-banner--bottom .bm-banner__head {
	top: auto;
	bottom: 22vh;
}
.bm-banner__title {
	margin: 0;
	font-size: clamp(36px, 5.2vw, 68px);
	font-weight: 700;
	letter-spacing: 8px;
	text-transform: uppercase;
	line-height: 1.05;
}
.bm-banner--light-text .bm-banner__title { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.bm-banner--dark-text .bm-banner__title { color: var(--bm-dark); }
.bm-banner__subtitle {
	margin: 14px 0 0;
	font-size: clamp(14px, 1.5vw, 18px);
	font-weight: 300;
	letter-spacing: 2px;
}
.bm-banner--light-text .bm-banner__subtitle { color: rgba(255,255,255,.85); }
.bm-banner--dark-text .bm-banner__subtitle { color: rgba(20,20,25,.75); }

.bm-banner__foot {
	position: absolute;
	z-index: 3;
	left: 0;
	right: 0;
	bottom: 6vh;
	display: flex;
	justify-content: center;
}
.bm-btn--banner {
	color: #fff;
	background: rgba(0, 0, 0, .12);
	border: 1px solid #fff;
	border-radius: 0;
	padding: 16px 44px;
	letter-spacing: 3px;
	backdrop-filter: blur(2px);
}
.bm-btn--banner:hover {
	background: var(--bm-gold-grad);
	border-color: transparent;
	color: #14100a;
}
.bm-banner--dark-text .bm-btn--banner { color: var(--bm-dark); border-color: var(--bm-dark); background: transparent; }
.bm-banner--dark-text .bm-btn--banner:hover { color: #14100a; }

/* Caption animation: replays each time the banner enters the viewport */
.bm-banner-anim {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity .9s var(--bm-ease), transform .9s var(--bm-ease);
	transition-delay: var(--d, 0s);
}
.bm-banner.is-inview .bm-banner-anim { opacity: 1; transform: none; }
.elementor-editor-active .bm-banner-anim { opacity: 1; transform: none; }

/* =============================================================
   V2 — Promo banner
   ============================================================= */
.bm-promo {
	position: relative;
	height: 100vh;
	min-height: 320px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bm-dark-2);
}
.bm-promo__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	will-change: transform;
	transform: translateZ(0);
	backface-visibility: hidden;
}
.bm-promo__overlay {
	position: absolute;
	inset: 0;
	background: #000;
	opacity: .45;
	pointer-events: none;
}
.bm-promo__cover { position: absolute; inset: 0; z-index: 2; }
.bm-promo__content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: #fff;
	padding: 0 24px;
	max-width: 760px;
}
.bm-promo__title {
	margin: 0 0 14px;
	font-size: clamp(30px, 4.5vw, 56px);
	font-weight: 300;
	letter-spacing: 6px;
	text-transform: uppercase;
}
.bm-promo__desc {
	margin: 0 0 30px;
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 1px;
	color: rgba(255,255,255,.85);
}

/* =============================================================
   Fullpage snap scrolling
   ============================================================= */
.bm-fullpage-active { overflow-x: hidden; }

/* Lock page scroll while the mobile nav drawer is open. */
html.bm-nav-open,
html.bm-nav-open body {
	overflow: hidden;
}

/* Native scroll-snap on desktop AND mobile. Each .bm-snap section fills one
   viewport (svh keeps it right on mobile browsers with dynamic toolbars) and
   its top is a snap point. A tiny wheel handler (desktop) advances exactly
   one section per notch; touch scrolling settles on sections natively.
   proximity + scroll-snap-stop:always keeps normal scrolling free but never
   lets it skip or overshoot a section, and the footer (no snap-align) scrolls
   in cleanly after the last section. */
html.bm-fullpage-active {
	scroll-snap-type: y proximity;
	scroll-padding-top: 0;
}
html.bm-fullpage-active .bm-snap {
	height: 100vh !important;
	height: 100svh !important;
	min-height: 0 !important;
	scroll-snap-align: start;
}

@media (pointer: coarse), (max-width: 991px) {
	/* No phantom scroll gap after the footer on mobile. */
	html.bm-fullpage-active .bm-footer {
		margin-bottom: 0;
	}
	html.bm-fullpage-active .elementor-element:has(.bm-footer) {
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
	}
}

.bm-fullpage-dots {
	position: fixed;
	right: 26px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 998;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.bm-fullpage-dots button {
	position: relative;
	width: 10px;
	height: 10px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .7);
	background: transparent;
	cursor: pointer;
	transition: all .35s var(--bm-ease);
	box-shadow: 0 0 6px rgba(0,0,0,.4);
}
.bm-fullpage-dots button:hover { border-color: var(--bm-gold, #C9A24B); }
.bm-fullpage-dots button.is-active {
	background: var(--bm-gold, #C9A24B);
	border-color: var(--bm-gold, #C9A24B);
	transform: scale(1.25);
}
.bm-fullpage-dots button span {
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	padding: 3px 10px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	white-space: nowrap;
	color: #fff;
	background: rgba(0, 0, 0, .55);
	border-radius: 2px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.bm-fullpage-dots button:hover span { opacity: 1; }

@media (max-width: 767px) {
	.bm-fullpage-dots { right: 12px; }
}

/* =============================================================
   V3 — Highlight stats (model page fullscreen sections)
   ============================================================= */
.bm-highlight {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100vh;
	overflow: hidden;
	background: var(--bm-dark-2);
	color: #fff;
}
.bm-highlight__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	will-change: transform;
	transform: translateZ(0);
	backface-visibility: hidden;
}
.bm-highlight::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.35) 45%, rgba(0,0,0,.75));
	opacity: .8;
	pointer-events: none;
}
.bm-highlight__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: inherit;
	padding-top: 20vh;
	padding-bottom: 10vh;
	text-align: center;
}
.bm-highlight__pretitle {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--bm-gold-light);
	margin-bottom: 14px;
}
.bm-highlight__title {
	margin: 0;
	font-size: clamp(32px, 4.6vw, 58px);
	font-weight: 300;
	letter-spacing: 4px;
	text-transform: uppercase;
}
.bm-highlight__desc {
	margin: 16px auto 0;
	max-width: 620px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.7;
	color: rgba(255,255,255,.85);
}
.bm-highlight__stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(30px, 6vw, 90px);
	margin-top: 40px;
}
.bm-highlight__value {
	font-size: clamp(40px, 4.6vw, 64px);
	font-weight: 200;
	line-height: 1;
	letter-spacing: 2px;
}
.bm-highlight__suffix {
	font-size: .48em;
	font-weight: 500;
	color: var(--bm-gold);
	margin-left: 4px;
}
.bm-highlight__label {
	margin-top: 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(255,255,255,.7);
}

/* =============================================================
   V3 — Gallery slider
   ============================================================= */
.bm-gallery { padding: 110px 0; background: var(--bm-light); }
.bm-gallery--dark { background: var(--bm-dark); }
.bm-gallery--dark .bm-section-head__title { color: #fff; }
.bm-gallery:not(.bm-gallery--dark) .bm-section-head__title { color: var(--bm-dark); }

.bm-gallery__viewport {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
}
.bm-gallery__track {
	display: flex;
	transition: transform .8s var(--bm-ease);
}
.bm-gallery__slide {
	flex: 0 0 100%;
	margin: 0;
	position: relative;
}
.bm-gallery__slide img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}
.bm-gallery__slide figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 28px 20px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
}
.bm-gallery__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	font-size: 16px;
	color: #fff;
	background: rgba(0,0,0,.35);
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 50%;
	cursor: pointer;
	transition: all .3s var(--bm-ease);
}
.bm-gallery__arrow:hover { background: var(--bm-gold); border-color: var(--bm-gold); color: #14100a; }
.bm-gallery__arrow--prev { left: 20px; }
.bm-gallery__arrow--next { right: 20px; }

.bm-gallery__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}
.bm-gallery__dots button {
	width: 38px;
	height: 3px;
	padding: 0;
	border: 0;
	background: rgba(128,128,128,.35);
	cursor: pointer;
	transition: background .3s;
}
.bm-gallery__dots button.is-active { background: var(--bm-gold); }

/* =============================================================
   V3 — Split cards (alternating image/text)
   ============================================================= */
.bm-split { padding: 110px 0; background: #fff; }
.bm-split--dark { background: var(--bm-dark); color: #fff; }
.bm-split:not(.bm-split--dark) .bm-section-head__title { color: var(--bm-dark); }
.bm-split--dark .bm-section-head__title { color: #fff; }

.bm-split__rows { display: flex; flex-direction: column; gap: 72px; }
.bm-split__row {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
}
.bm-split__row--flip .bm-split__media { order: 2; }
.bm-split__row--flip .bm-split__body { order: 1; }

.bm-split__media {
	overflow: hidden;
	border-radius: 4px;
}
.bm-split__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
	transition: transform 1s var(--bm-ease);
}
.bm-split__row:hover .bm-split__media img { transform: scale(1.05); }

.bm-split__title {
	margin: 0 0 14px;
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}
.bm-split:not(.bm-split--dark) .bm-split__title { color: var(--bm-dark); }
.bm-split__text {
	margin: 0 0 26px;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.8;
	color: var(--bm-text-muted);
}
.bm-split--dark .bm-split__text { color: rgba(255,255,255,.72); }

@media (max-width: 860px) {
	.bm-split__row { grid-template-columns: 1fr; }
	.bm-split__row--flip .bm-split__media { order: 0; }
	.bm-split__row--flip .bm-split__body { order: 1; }
}

/* =============================================================
   V3 — Rich text
   ============================================================= */
.bm-richtext { padding: 110px 0; background: #fff; }
.bm-richtext--dark { background: var(--bm-dark); color: #fff; }
.bm-richtext__inner { max-width: 860px; }
.bm-richtext__pretitle {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--bm-gold);
	margin-bottom: 10px;
}
.bm-richtext__title {
	margin: 0 0 18px;
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 300;
	letter-spacing: 4px;
	text-transform: uppercase;
}
.bm-richtext:not(.bm-richtext--dark) .bm-richtext__title { color: var(--bm-dark); }
.bm-richtext__content {
	margin-top: 30px;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.9;
	color: var(--bm-text-muted);
}
.bm-richtext--dark .bm-richtext__content { color: rgba(255,255,255,.75); }
.bm-richtext__content h3, .bm-richtext__content h4 {
	margin: 34px 0 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: inherit;
}
.bm-richtext:not(.bm-richtext--dark) .bm-richtext__content h3,
.bm-richtext:not(.bm-richtext--dark) .bm-richtext__content h4 { color: var(--bm-dark); }
.bm-richtext__content a { color: var(--bm-gold-deep); }
.bm-richtext__content ul { padding-left: 20px; }

/* Spec / feature list used by the BYD Specs importer. */
.bm-richtext__content .bm-spec-list {
	list-style: none;
	margin: 0;
	padding: 0;
	columns: 2;
	column-gap: 44px;
}
.bm-richtext__content .bm-spec-list li {
	break-inside: avoid;
	position: relative;
	padding-inline-start: 22px;
	margin-bottom: 14px;
	font-size: 15px;
	line-height: 1.6;
}
.bm-richtext__content .bm-spec-list li::before {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	top: .55em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--bm-gold);
}
.bm-richtext__content .bm-spec-list--power {
	columns: 1;
}
.bm-richtext__content .bm-spec-list--power li {
	margin-bottom: 16px;
	font-size: 16px;
}
@media (max-width: 640px) {
	.bm-richtext__content .bm-spec-list { columns: 1; }
}

/* =============================================================
   V3 — FAQ accordion
   ============================================================= */
.bm-faq { padding: 110px 0; background: var(--bm-light); }
.bm-faq .bm-section-head__title { color: var(--bm-dark); }
.bm-faq__inner { max-width: 860px; }
.bm-faq__item {
	background: #fff;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 4px;
	margin-bottom: 14px;
	overflow: hidden;
	transition: box-shadow .3s;
}
.bm-faq__item.is-open { box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.bm-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	font-family: var(--bm-font);
	font-size: 15px;
	font-weight: 600;
	text-align: left;
	color: var(--bm-dark);
	background: none;
	border: 0;
	cursor: pointer;
}
.bm-faq__icon {
	position: relative;
	flex: 0 0 18px;
	height: 18px;
}
.bm-faq__icon::before, .bm-faq__icon::after {
	content: '';
	position: absolute;
	inset: 8px 0;
	background: var(--bm-gold);
	transition: transform .35s var(--bm-ease);
}
.bm-faq__icon::after { transform: rotate(90deg); }
.bm-faq__item.is-open .bm-faq__icon::after { transform: rotate(0); }
.bm-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .45s var(--bm-ease);
}
.bm-faq__answer p {
	margin: 0;
	padding: 0 24px 22px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8;
	color: var(--bm-text-muted);
}

/* =============================================================
   V3 — Card links
   ============================================================= */
.bm-cardlinks { padding: 110px 0; background: #fff; }
.bm-cardlinks .bm-section-head__title { color: var(--bm-dark); }
.bm-cardlinks__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.bm-cardlink {
	display: block;
	text-decoration: none;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
	transition: transform .45s var(--bm-ease), box-shadow .45s var(--bm-ease);
}
.bm-cardlink:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,.12); }
.bm-cardlink__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.bm-cardlink__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 1s var(--bm-ease);
}
.bm-cardlink:hover .bm-cardlink__media img { transform: scale(1.06); }
.bm-cardlink__body { display: block; position: relative; padding: 22px 56px 24px 24px; }
.bm-cardlink__title {
	display: block;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--bm-dark);
}
.bm-cardlink__subtitle {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	font-weight: 300;
	color: var(--bm-text-muted);
}
.bm-cardlink__arrow {
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: var(--bm-gold);
	transition: transform .3s var(--bm-ease);
}
.bm-cardlink:hover .bm-cardlink__arrow { transform: translateY(-50%) translateX(6px); }

@media (max-width: 991px) { .bm-cardlinks__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bm-cardlinks__grid { grid-template-columns: 1fr; } }

/* =============================================================
   V3 — Store locator
   ============================================================= */
.bm-stores { padding: 110px 0; background: var(--bm-light); }
.bm-stores .bm-section-head__title { color: var(--bm-dark); }
.bm-stores__map {
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 40px;
	border: 1px solid rgba(0,0,0,.08);
}
.bm-stores__map iframe, .bm-stores__map img {
	display: block;
	width: 100%;
	height: clamp(320px, 48vh, 560px);
	object-fit: cover;
	border: 0;
}
.bm-stores__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}
.bm-store-card {
	background: #fff;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 4px;
	padding: 26px;
}
.bm-store-card__name {
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--bm-dark);
}
.bm-store-card__row {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6;
	color: var(--bm-text-muted);
}
.bm-store-card__row a { color: var(--bm-gold-deep); text-decoration: none; }
.bm-store-card__hours { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.bm-store-card .bm-btn { margin-top: 12px; }

/* =============================================================
   V3 — Contact section
   ============================================================= */
.bm-contact { padding: 110px 0; background: #fff; }
.bm-contact .bm-section-head__title { color: var(--bm-dark); }
.bm-contact__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	margin-bottom: 50px;
}
.bm-contact-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 32px 24px;
	text-align: center;
	text-decoration: none;
	background: var(--bm-light);
	border: 1px solid rgba(0,0,0,.06);
	border-radius: 4px;
	transition: transform .4s var(--bm-ease), box-shadow .4s var(--bm-ease);
}
.bm-contact-card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(0,0,0,.1); }
.bm-contact-card__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 8px;
	color: #14100a;
	background: var(--bm-gold-grad);
	border-radius: 50%;
}
.bm-contact-card__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--bm-text-muted);
}
.bm-contact-card__value {
	font-size: 16px;
	font-weight: 500;
	color: var(--bm-dark);
}
.bm-contact__form {
	max-width: 760px;
	margin: 0 auto;
}
.bm-contact__form input[type="text"],
.bm-contact__form input[type="email"],
.bm-contact__form input[type="tel"],
.bm-contact__form textarea,
.bm-contact__form select {
	width: 100%;
	padding: 14px 16px;
	margin-bottom: 6px;
	font-family: var(--bm-font);
	font-size: 14px;
	border: 1px solid rgba(0,0,0,.14);
	border-radius: 3px;
	background: #fff;
	transition: border-color .3s;
}
.bm-contact__form input:focus, .bm-contact__form textarea:focus {
	outline: none;
	border-color: var(--bm-gold);
}
.bm-contact__form input[type="submit"], .bm-contact__form button[type="submit"] {
	display: inline-flex;
	padding: 15px 44px;
	font-family: var(--bm-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #14100a;
	background: var(--bm-gold-grad);
	border: 0;
	border-radius: 2px;
	cursor: pointer;
}

/* =============================================================
   Direction — follows the page language (Polylang):
   English pages render LTR, Arabic pages render RTL.
   ============================================================= */
[dir="ltr"] .bullion-theme,
[dir="ltr"] .bm-header2, [dir="ltr"] .bm-header, [dir="ltr"] .bm-footer {
	direction: ltr;
	text-align: initial;
}

/* Arabic typography — Cairo replaces Montserrat on RTL pages */
[dir="rtl"] .bullion-theme,
[dir="rtl"] .bm-header2,
[dir="rtl"] .bm-header,
[dir="rtl"] .bm-footer {
	--bm-font: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
	font-family: var(--bm-font);
}

/* RTL refinements for Arabic pages */
[dir="rtl"] .bm-hero__caption { left: auto; right: max(6vw, 32px); }
[dir="rtl"] .bm-hero__dots { left: auto; right: max(6vw, 32px); }
[dir="rtl"] .bm-hero__scrollhint { right: auto; left: max(6vw, 32px); }
[dir="rtl"] .bm-fullpage-dots { right: auto; left: 26px; }
[dir="rtl"] .bm-fullpage-dots button span { right: auto; left: 22px; }
[dir="rtl"] .bm-richtext__inner,
[dir="rtl"] .bm-richtext__content { text-align: right; }
[dir="rtl"] .bm-richtext__content ul { padding-left: 0; padding-right: 20px; }
[dir="rtl"] .bm-faq__question { text-align: right; }
[dir="rtl"] .bm-mega-card:hover img { transform: translateX(-6px); }
[dir="rtl"] .bm-cardlink__body { padding: 22px 24px 24px 56px; }
[dir="rtl"] .bm-cardlink__arrow { right: auto; left: 22px; transform: translateY(-50%) scaleX(-1); }
[dir="rtl"] .bm-cardlink:hover .bm-cardlink__arrow { transform: translateY(-50%) scaleX(-1) translateX(6px); }
@media (max-width: 991px) {
	[dir="rtl"] .bm-header2__nav, [dir="rtl"] .bm-header__nav {
		right: auto;
		left: 0;
		border-left: 0;
		border-right: 1px solid rgba(201, 162, 75, .2);
		transform: translateX(-100%);
	}
	[dir="rtl"] .bm-header2__nav.is-open, [dir="rtl"] .bm-header__nav.is-open { transform: translateX(0); }
}

/* =============================================================
   Header mega menu (Models dropdown)
   ============================================================= */
.bm-header2 { --bm-mega-bg: #fff; }
.bm-has-mega { position: static; }
.bm-has-mega > a::before {
	/* hover bridge so the panel doesn't close between link and panel */
	content: '';
	position: absolute;
	left: -20px;
	right: -20px;
	top: 100%;
	height: 26px;
}
.bm-mega {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 998;
	background: var(--bm-mega-bg);
	box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
	border-top: 1px solid rgba(0, 0, 0, .06);
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity .35s var(--bm-ease), transform .35s var(--bm-ease), visibility .35s;
}
.bm-has-mega:hover .bm-mega,
.bm-has-mega.is-open .bm-mega,
.bm-has-mega:focus-within .bm-mega {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.bm-mega__inner {
	width: min(1360px, calc(100% - 48px));
	margin-inline: auto;
	padding: 44px 0 52px;
}
.bm-mega__group {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 32px;
	align-items: start;
}
.bm-mega__group + .bm-mega__group { margin-top: 40px; padding-top: 36px; border-top: 1px solid rgba(0,0,0,.07); }
.bm-mega__cat {
	position: relative;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: .5px;
	color: var(--bm-dark);
	padding-bottom: 8px;
}
.bm-mega__cat::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: var(--bm-dark);
}
.bm-mega__cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
	gap: 8px;
	justify-content: space-around;
}
.bm-mega-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 8px 12px 14px;
	text-decoration: none;
	border-radius: 4px;
	transition: background .3s;
}
.bm-mega-card:hover { background: rgba(201, 162, 75, .07); }
.bm-mega-card__name {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--bm-dark);
}
.bm-mega-card img {
	width: 100%;
	max-width: 190px;
	height: 82px;
	object-fit: contain;
	transition: transform .5s var(--bm-ease);
}
.bm-mega-card:hover img { transform: translateX(6px); }
.bm-mega-card__more {
	position: relative;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #3a3a40;
	padding-bottom: 3px;
}
.bm-mega-card__more::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--bm-gold-grad);
	transform: scaleX(0);
	transition: transform .35s var(--bm-ease);
}
.bm-mega-card:hover .bm-mega-card__more { color: var(--bm-gold-deep); }
.bm-mega-card:hover .bm-mega-card__more::after { transform: scaleX(1); }

@media (max-width: 991px) {
	/* Tapping "Models" expands the mega inline INSIDE the drawer (not a
	   separate overlay), keeping the card grid with images. */
	.bm-mega {
		position: static;
		display: none;
		max-height: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		box-shadow: none;
		border: 0;
		padding: 0;
	}
	.bm-has-mega.is-open .bm-mega { display: block; }
	.bm-mega__inner { width: 100%; padding: 12px 0 4px; }
	.bm-mega__group { grid-template-columns: 1fr; gap: 12px; }
	.bm-mega__group + .bm-mega__group {
		margin-top: 22px;
		padding-top: 20px;
		border-top: 1px solid rgba(255, 255, 255, .08);
	}
	.bm-mega__cat { color: var(--bm-gold-light); margin-bottom: 12px; }
	.bm-mega__cat::after { background: var(--bm-gold); }
	.bm-mega__cards { grid-template-columns: repeat(2, 1fr); gap: 10px; justify-content: stretch; }
	.bm-mega-card {
		flex-direction: column;
		align-items: center;
		gap: 8px;
		padding: 12px 8px;
		background: rgba(255, 255, 255, .04);
		border-radius: 10px;
	}
	.bm-mega-card:hover { background: rgba(201, 162, 75, .12); }
	.bm-mega-card__name { color: #fff; font-size: 12px; text-align: center; }
	.bm-mega-card img { display: block; width: 100%; max-width: none; height: 64px; }
	.bm-mega-card__more { color: var(--bm-gold); }
}
