/* =========================================================================
   Baniya Oasis Electronics — main.css
   Core layout, header, footer, homepage, buttons, utilities.
   Design tokens live in style.css (:root). RTL in /rtl.css.
   ========================================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--bo-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--bo-text);
	background: var(--bo-body);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--bo-primary); text-decoration: none; transition: color var(--bo-dur) var(--bo-ease); }
a:hover { color: var(--bo-accent); }
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.2; color: var(--bo-text); margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--bo-accent); outline-offset: 2px; border-radius: 4px; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.bo-skip-link {
	position: absolute; left: -999px; top: 0; z-index: 1000;
	background: var(--bo-primary); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.bo-skip-link:focus { left: 0; }

/* ---------- Layout primitives ---------- */
.bo-container { width: 100%; max-width: var(--bo-container); margin-inline: auto; padding-inline: 20px; }
.bo-section { padding-block: clamp(40px, 6vw, 80px); }
.bo-section--surface { background: var(--bo-surface); }
.bo-section--primary { background: var(--bo-primary); }

.bo-section__head { margin-bottom: 36px; }
.bo-section__head--center { text-align: center; }
.bo-section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.bo-section__feature { font-size: clamp(1.5rem, 3vw, 2.25rem); color: black; }
.bo-section__title { font-size: clamp(1.5rem, 3vw, 2.25rem); color: white; }
.bo-section__title--invert { color: #fff; }
.bo-section__sub { color: var(--bo-text-muted); margin: 0; font-size: 1.05rem; }

.bo-layout { padding-block: 70px; }
.bo-layout--sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
.bo-layout__main--wide {  margin-inline: auto; }
@media (max-width: 1024px) { .bo-layout--sidebar { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.bo-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 24px; border: 2px solid transparent; border-radius: 999px;
	font-weight: 700; font-size: .95rem; line-height: 1; cursor: pointer;
	transition: transform var(--bo-dur) var(--bo-ease), background var(--bo-dur), box-shadow var(--bo-dur), color var(--bo-dur);
	white-space: nowrap;
}
.bo-btn:hover { transform: translateY(-2px); }
.bo-btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.bo-btn--accent { background: var(--bo-accent); color: var(--bo-black); box-shadow: var(--bo-shadow-gold); }
.bo-btn--accent:hover { background: var(--bo-accent-dark); color: var(--bo-black); box-shadow: 0 14px 32px rgba(201,151,26,.45); }
.bo-btn--primary { background: var(--bo-primary); color: #fff; }
.bo-btn--primary:hover { background: var(--bo-primary-light); color: #fff; }
.bo-btn--ghost { background: transparent; border-color: var(--bo-border); color: var(--bo-text); }
.bo-btn--ghost:hover { border-color: var(--bo-primary); color: var(--bo-primary); }

.bo-link-arrow { font-weight: 700; color: var(--bo-primary); white-space: nowrap; }
.bo-link-arrow:hover { color: var(--bo-accent); }

/* ---------- Badges ---------- */
.bo-badge {
	display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 8px;
	font-size: .75rem; font-weight: 800; letter-spacing: .02em; color: #fff;
}
.bo-badge--sale { background: var(--bo-black); color: var(--bo-accent); border: 1px solid var(--bo-accent); }
.bo-badge--accent { background: var(--bo-accent); color: var(--bo-black); }

/* ---------- Top bar ---------- */
.bo-topbar { background: var(--bo-primary-dark); color: rgba(255,255,255,.85); font-size: .85rem; }
.bo-topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.bo-topbar__msg { margin: 0; font-weight: 500; }
.bo-topbar__links, .bo-topbar__menu { list-style: none; display: flex; gap: 18px; align-items: center; margin: 0; }
.bo-topbar a { color: rgba(255,255,255,.85); }
.bo-topbar a:hover { color: #fff; }
@media (max-width: 768px) { .bo-topbar__links { display: none; } }

/* ---------- Header ---------- */
.bo-header { background: var(--bo-primary); color: #fff; position: relative; z-index: 50; transition: background var(--bo-dur), box-shadow var(--bo-dur); }
.bo-header.is-sticky { position: sticky; top: 0; z-index: 100; }

.bo-header.is-stuck {
	box-shadow: var(--bo-shadow-lg);
	background: rgba(7, 28, 51, .92);
	backdrop-filter: blur(var(--bo-glass-blur));
	-webkit-backdrop-filter: blur(var(--bo-glass-blur));
}
.bo-header__inner {
	display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: var(--bo-sp-4);
	padding-block: var(--bo-sp-2); min-height: 88px;
}
.bo-header__brand { display: flex; align-items: center; gap: var(--bo-sp-2); height: 100%; }

.bo-logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; height: 100%; }
.bo-logo:hover { color: #fff; }
.bo-logo__mark {
	width: 46px; height: 46px; border-radius: 12px; flex: 0 0 46px;
	background: linear-gradient(135deg, var(--bo-accent), var(--bo-accent-dark));
	color: var(--bo-black); font-weight: 800; font-size: 1.5rem; display: grid; place-items: center;
	box-shadow: var(--bo-shadow-gold);
}
.bo-logo__text { display: flex; flex-direction: column; justify-content: center; line-height: 1.1; font-weight: 800; font-size: 1.3rem; }
.bo-logo__text small { font-weight: 600; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bo-accent); }
.custom-logo-link { display: flex; align-items: center; height: 100%; }
.custom-logo-link img { max-height: 52px; width: auto; display: block; }

/* Search — vertically centered, fixed height to match header actions */
.bo-header__search { max-width: 640px; width: 100%; display: flex; align-items: center; height: 100%; }
.bo-search {
	position: relative; display: flex; align-items: stretch; width: 100%; height: 52px;
	background: #fff; border-radius: 999px; overflow: visible; box-shadow: 0 4px 14px rgba(0,0,0,.16);
}
.bo-search__field {
	flex: 1; border: 0; padding: 0 20px; font-size: .95rem; border-radius: 999px 0 0 999px;
	background: transparent; color: var(--bo-text); height: 100%;
}
.bo-search__field:focus { outline: none; }
.bo-search__submit {
	border: 0; background: var(--bo-accent); color: var(--bo-black); width: 60px; border-radius: 0 999px 999px 0;
	display: grid; place-items: center; transition: background var(--bo-dur); flex-shrink: 0;
}
.bo-search__submit:hover { background: var(--bo-accent-dark); }
.bo-search__results {
	position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: #fff; color: var(--bo-text);
	border-radius: var(--bo-radius); box-shadow: var(--bo-shadow-lg); overflow: hidden; display: none; z-index: 60;
	max-height: 70vh; overflow-y: auto;
}
.bo-search__results.is-open { display: block; }
.bo-suggest { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--bo-border); }
.bo-suggest:last-child { border-bottom: 0; }
.bo-suggest:hover { background: var(--bo-surface); }
.bo-suggest img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; flex: 0 0 48px; }
.bo-suggest__title { font-weight: 600; font-size: .9rem; color: var(--bo-text); }
.bo-suggest__price { font-size: .85rem; color: var(--bo-text-muted); }
.bo-suggest__empty, .bo-suggest__loading { padding: 16px; color: var(--bo-text-muted); text-align: center; }

/* Header actions — same 52px height as search, all vertically centered */
.bo-header__actions { display: flex; align-items: center; gap: var(--bo-sp-1); height: 52px; }
.bo-header__action {
	display: flex; align-items: center; gap: 10px; color: #fff; padding: 0 14px; border-radius: 12px;
	background: transparent; border: 0; height: 100%; transition: background var(--bo-dur); cursor: pointer;
}
.bo-header__action:hover { background: rgba(255,255,255,.1); color: #fff; }
.bo-header__action-ico { font-size: 1.3rem; position: relative; display: grid; place-items: center; line-height: 1; }
.bo-header__action-label { display: flex; flex-direction: column; justify-content: center; line-height: 1.15; text-align: left; }
.bo-header__action-label small { font-size: .68rem; opacity: .75; }
.bo-header__action-label strong { font-size: .88rem; font-weight: 700; }
.bo-cart-count {
	position: absolute; top: -9px; right: -12px; min-width: 18px; height: 18px; padding: 0 4px;
	background: var(--bo-accent); color: var(--bo-black); border-radius: 999px; font-size: .68rem; font-weight: 800;
	display: grid; place-items: center; line-height: 1;
}

/* ---------- Primary nav + mega menu ---------- */
.bo-nav { background: var(--bo-primary-light); border-top: 1px solid rgba(255,255,255,.08); }
.bo-nav__inner { display: flex; align-items: center; gap: 28px; min-height: 54px; }
.bo-nav__support { margin: 0 0 0 auto; color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: 8px; }

.bo-primary-nav__list { list-style: none; display: flex; gap: 6px; margin: 0; }
.bo-primary-nav__list a { color: rgba(255,255,255,.9); padding: 10px 14px; border-radius: 8px; font-weight: 600; font-size: .92rem; display: block; }
.bo-primary-nav__list a:hover, .bo-primary-nav .current-menu-item > a { background: rgba(255,255,255,.12); color: #fff; }
.bo-nav-deal > a { color: var(--bo-accent) !important; }

/* Mega menu */
.bo-mega { position: relative; }
.bo-mega__toggle {
	display: flex; align-items: center; gap: 12px; background: var(--bo-accent); color: var(--bo-black); border: 0;
	padding: 12px 22px; border-radius: 10px; font-weight: 700; font-size: .95rem; height: 100%;
}
.bo-mega__toggle:hover { background: var(--bo-accent-dark); }
.bo-mega__burger { display: inline-flex; flex-direction: column; gap: 3px; }
.bo-mega__burger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; }
.bo-mega__list { list-style: none; position: absolute; top: calc(100% + 8px); left: 0; width: 290px; background: #fff; border-radius: var(--bo-radius); box-shadow: var(--bo-shadow-lg); padding: 8px; display: none; z-index: 70; }
.bo-mega.is-open .bo-mega__list { display: block; }
.bo-mega__item { position: relative; }
.bo-mega__link { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 10px; color: var(--bo-text); font-weight: 600; }
.bo-mega__link:hover { background: var(--bo-surface); color: var(--bo-primary); }
.bo-mega__ico { font-size: 1.2rem; }
.bo-mega__caret { margin-left: auto; color: var(--bo-text-muted); }
.bo-mega__panel {
	position: absolute; top: -8px; left: 100%; width: 560px; background: #fff; border-radius: var(--bo-radius);
	box-shadow: var(--bo-shadow-lg); padding: 24px; display: none;
}
.bo-mega__item.has-mega:hover .bo-mega__panel { display: block; }
.bo-mega__panel-inner { display: grid; grid-template-columns: 1fr 200px; gap: 24px; }
.bo-mega__heading { font-size: 1rem; margin-bottom: 12px; color: var(--bo-primary); }
.bo-mega__sublist { list-style: none; columns: 2; column-gap: 18px; }
.bo-mega__sublist a { display: block; padding: 7px 0; color: var(--bo-text-muted); font-size: .9rem; font-weight: 500; }
.bo-mega__sublist a:hover { color: var(--bo-accent); }
.bo-mega__promo { background: var(--bo-surface); border-radius: var(--bo-radius); padding: 18px; }
.bo-mega__promo h5 { font-size: 1rem; margin: 10px 0 6px; }
.bo-mega__promo p { font-size: .82rem; color: var(--bo-text-muted); margin-bottom: 14px; }

/* ---------- Breadcrumbs ---------- */
.bo-breadcrumbs-wrap { padding-top: 18px; }
.bo-breadcrumbs { font-size: .85rem; color: var(--bo-text-muted); display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.bo-breadcrumbs a { color: var(--bo-text-muted); }
.bo-breadcrumbs a:hover { color: var(--bo-accent); }
.bo-breadcrumbs__sep { color: var(--bo-border); }

/* ---------- Fullscreen video hero ---------- */
.bo-video-hero {
	position: relative; width: 100%; height: min(92vh, 880px); min-height: 560px;
	overflow: hidden; background: var(--bo-black); isolation: isolate;
}
.bo-video-hero__slide {
	position: absolute; inset: 0; opacity: 0; visibility: hidden;
	transition: opacity 1.1s var(--bo-ease-soft), visibility 0s linear 1.1s;
}
.bo-video-hero__slide.is-active { opacity: 1; visibility: visible; transition: opacity 1.1s var(--bo-ease-soft); z-index: 1; }
.bo-video-hero__media {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
	object-position: center; display: block;
}
.bo-video-hero__slide--fallback { background-size: cover; background-position: center; }
.bo-video-hero__slide--fallback-0 { background: radial-gradient(120% 140% at 20% 15%, var(--bo-primary-light) 0%, var(--bo-primary) 45%, var(--bo-black) 100%); }
.bo-video-hero__slide--fallback-1 { background: radial-gradient(120% 140% at 80% 20%, #3a2c0d 0%, var(--bo-black-soft) 55%, var(--bo-black) 100%); }
.bo-video-hero__slide--fallback-2 { background: radial-gradient(120% 140% at 50% 80%, var(--bo-primary) 0%, var(--bo-black) 100%); }
.bo-video-hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(7,12,20,.35) 38%, rgba(7,12,20,.75) 100%),
		linear-gradient(90deg, rgba(10,10,10,.75) 0%, rgba(10,10,10,.15) 55%, rgba(10,10,10,.05) 100%);
}
.bo-video-hero__content-wrap { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.bo-video-hero__content { max-width: 640px; color: #fff; }
.bo-video-hero__eyebrow {
	display: inline-flex; align-items: center; gap: 8px; background: rgba(201,151,26,.16); border: 1px solid rgba(201,151,26,.4);
	color: var(--bo-accent-light); padding: 7px 16px; border-radius: 999px; font-size: .8rem; font-weight: 700;
	letter-spacing: .06em; text-transform: uppercase; margin-bottom: var(--bo-sp-3);
}
.bo-video-hero__title { color: #fff; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.08; margin-bottom: var(--bo-sp-2); text-shadow: 0 4px 24px rgba(0,0,0,.35); }
.bo-video-hero__text { color: rgba(255,255,255,.88); font-size: 1.2rem; margin-bottom: var(--bo-sp-4); max-width: 42ch; }
.bo-video-hero__ctas { display: flex; gap: var(--bo-sp-2); flex-wrap: wrap; }

.bo-btn--glass {
	background: var(--bo-glass-bg); color: #fff; border: 1px solid var(--bo-glass-border);
	backdrop-filter: blur(var(--bo-glass-blur)); -webkit-backdrop-filter: blur(var(--bo-glass-blur));
}
.bo-btn--glass:hover { background: rgba(10,10,10,.55); border-color: rgba(255,255,255,.3); color: #fff; }

.bo-video-hero__nav {
	position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; z-index: 3;
	border: 1px solid var(--bo-glass-border); background: var(--bo-glass-bg); color: #fff; font-size: 1.7rem; line-height: 1;
	display: grid; place-items: center; backdrop-filter: blur(var(--bo-glass-blur)); transition: all var(--bo-dur);
}
.bo-video-hero__nav--prev { left: var(--bo-sp-3); }
.bo-video-hero__nav--next { right: var(--bo-sp-3); }
.bo-video-hero__nav:hover { background: var(--bo-accent); color: var(--bo-black); border-color: var(--bo-accent); }
.bo-video-hero__dots { position: absolute; bottom: var(--bo-sp-4); left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.bo-video-hero__dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.25); padding: 0; transition: all var(--bo-dur); }
.bo-video-hero__dot.is-active { background: var(--bo-accent); width: 30px; border-radius: 999px; border-color: var(--bo-accent); }
.bo-video-hero__scroll-cue { position: absolute; bottom: var(--bo-sp-2); right: var(--bo-sp-3); z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 20px; display: none; }
.bo-video-hero__scroll-cue span { position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: var(--bo-accent); border-radius: 2px; transform: translateX(-50%); animation: boScrollCue 1.8s infinite; }
@keyframes boScrollCue { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 20px; } 100% { opacity: 0; top: 6px; } }
@media (min-width: 1024px) { .bo-video-hero__scroll-cue { display: block; } }
@media (max-width: 768px) {
	.bo-video-hero { height: min(78vh, 640px); min-height: 460px; }
	.bo-video-hero__nav { width: 40px; height: 40px; font-size: 1.3rem; }
}

/* ---------- Scroll-reveal utility (used across new sections) ---------- */
.bo-animate-up { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--bo-ease-soft), transform .7s var(--bo-ease-soft); }
.bo-animate-up.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	.bo-animate-up { opacity: 1; transform: none; transition: none; }
	.bo-video-hero__slide { transition: opacity .3s linear, visibility 0s; }
}

/* ---------- Category showcase — overlapping slideshow banners ---------- */
.bo-cat-showcase__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--bo-sp-3);
}
.bo-cat-slide {
	position: relative; display: block; overflow: hidden; border-radius: var(--bo-radius-lg);
	aspect-ratio: 3/4; box-shadow: var(--bo-shadow); color: #fff;
	transition: transform var(--bo-dur-slow) var(--bo-ease-soft), box-shadow var(--bo-dur);
}
.bo-cat-slide:hover { transform: translateY(-8px) scale(1.015); box-shadow: var(--bo-shadow-lg); color: #fff; z-index: 2; }
.bo-cat-slide__images { position: absolute; inset: 0; }
.bo-cat-slide__img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0;
	transition: opacity 1.2s ease-in-out, transform 6s linear;
}
.bo-cat-slide__img.is-active { opacity: 1; z-index: 1; }
.bo-cat-slide:hover .bo-cat-slide__img.is-active { transform: scale(1.12); }
.bo-cat-slide__overlay {
	position: absolute; inset: 0; z-index: 2;
	background: linear-gradient(180deg, rgba(10,10,10,.15) 0%, rgba(7,12,20,.35) 55%, rgba(7,12,20,.92) 100%);
	transition: background var(--bo-dur);
}
.bo-cat-slide:hover .bo-cat-slide__overlay { background: linear-gradient(180deg, rgba(10,10,10,.25) 0%, rgba(7,12,20,.45) 45%, rgba(10,10,10,.95) 100%); }
.bo-cat-slide__icon {
	position: absolute; top: var(--bo-sp-2); right: var(--bo-sp-2); z-index: 3; font-size: 1.5rem;
	width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
	background: var(--bo-glass-bg); border: 1px solid var(--bo-glass-border); backdrop-filter: blur(var(--bo-glass-blur));
}
.bo-cat-slide__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: var(--bo-sp-3); }
.bo-cat-slide__count { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--bo-accent-light); margin-bottom: 6px; }
.bo-cat-slide__title { color: #fff; font-size: 1.3rem; margin-bottom: 6px; }
.bo-cat-slide__desc { color: rgba(255,255,255,.82); font-size: .85rem; margin-bottom: var(--bo-sp-2); }
.bo-cat-slide__cta {
	display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .85rem; color: var(--bo-accent-light);
	transform: translateY(4px); opacity: .9; transition: all var(--bo-dur);
}
.bo-cat-slide:hover .bo-cat-slide__cta { transform: translateY(0); opacity: 1; }
.bo-cat-slide:hover .bo-cat-slide__cta span { transform: translateX(4px); display: inline-block; transition: transform var(--bo-dur); }
@media (max-width: 1100px) { .bo-cat-showcase__grid { grid-template-columns: repeat(2, 1fr); } .bo-cat-slide { aspect-ratio: 4/3; } }
@media (max-width: 560px) { .bo-cat-showcase__grid { grid-template-columns: 1fr; } }

/* ---------- 4-banner auto-swipe promotional slider ---------- */
.bo-banner-slider { padding-block: var(--bo-sp-3) 0; }
.bo-banner-slider__viewport { position: relative; border-radius: var(--bo-radius-lg); overflow: hidden; box-shadow: var(--bo-shadow); touch-action: pan-y; }
.bo-banner-slider__track { position: relative; height: clamp(260px, 42vw, 420px); }
.bo-banner-slide {
	position: absolute; inset: 0; display: block; opacity: 0; visibility: hidden; color: #fff;
	transition: opacity .9s var(--bo-ease-soft), visibility 0s linear .9s;
}
.bo-banner-slide.is-active { opacity: 1; visibility: visible; transition: opacity .9s var(--bo-ease-soft); z-index: 1; }
.bo-banner-slide__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bo-banner-slide--0 .bo-banner-slide__img, .bo-banner-slide--0 { background: linear-gradient(120deg, var(--bo-primary-light), var(--bo-primary)); }
.bo-banner-slide--1 { background: linear-gradient(120deg, #3a2c0d, var(--bo-black-soft)); }
.bo-banner-slide--2 { background: linear-gradient(120deg, var(--bo-primary), var(--bo-black)); }
.bo-banner-slide--3 { background: linear-gradient(120deg, var(--bo-black-soft), var(--bo-primary-dark)); }
.bo-banner-slide__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(7,12,20,.88) 0%, rgba(7,12,20,.5) 45%, rgba(7,12,20,.1) 85%);
}
.bo-banner-slide__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: clamp(24px, 4vw, 56px); max-width: 480px; }
.bo-banner-slide__tag { display: inline-block; background: rgba(201,151,26,.18); border: 1px solid rgba(201,151,26,.45); color: var(--bo-accent-light); padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; width: fit-content; }
.bo-banner-slide__title { color: #fff; font-size: clamp(1.4rem, 3vw, 2.2rem); margin: 0; }
.bo-banner-slide__sub { color: rgba(255,255,255,.85); margin: 0 0 6px; font-size: 1rem; }
.bo-banner-slide .bo-btn { width: fit-content; pointer-events: none; }
.bo-banner-slider__nav {
	position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; z-index: 3;
	border: 1px solid var(--bo-glass-border); background: var(--bo-glass-bg); color: #fff; font-size: 1.5rem; line-height: 1;
	display: grid; place-items: center; backdrop-filter: blur(var(--bo-glass-blur)); transition: all var(--bo-dur);
}
.bo-banner-slider__nav--prev { left: var(--bo-sp-2); }
.bo-banner-slider__nav--next { right: var(--bo-sp-2); }
.bo-banner-slider__nav:hover { background: var(--bo-accent); color: var(--bo-black); border-color: var(--bo-accent); }
.bo-banner-slider__dots { position: absolute; bottom: var(--bo-sp-2); left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.bo-banner-slider__dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); background: rgba(255,255,255,.3); padding: 0; transition: all var(--bo-dur); }
.bo-banner-slider__dot.is-active { background: var(--bo-accent); width: 26px; border-radius: 999px; border-color: var(--bo-accent); }
@media (max-width: 640px) { .bo-banner-slide__content { max-width: 80%; } }

/* ---------- Why choose us ---------- */
.bo-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--bo-gap); }
.bo-why { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--bo-radius); padding: 26px; text-align: center; color: #fff; }
.bo-why__icon { font-size: 2.4rem; display: block; margin-bottom: 14px; }
.bo-why__title { color: #fff; font-size: 1.05rem; }
.bo-why__text { color: rgba(255,255,255,.8); font-size: .9rem; margin: 0; }
@media (max-width: 900px) { .bo-why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .bo-why-grid { grid-template-columns: 1fr; } }

/* ---------- Brands ---------- */
.bo-brands__strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.bo-brand-chip { padding: 14px 28px; background: var(--bo-surface); border: 1px solid var(--bo-border); border-radius: 12px; font-weight: 700; color: var(--bo-text-muted); letter-spacing: .02em; transition: all var(--bo-dur); }
.bo-brand-chip:hover { color: var(--bo-primary); border-color: var(--bo-primary); transform: translateY(-2px); }

/* ---------- Deal of the day ---------- */
.bo-deal__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 5vw, 64px); align-items: center; background: var(--bo-surface); border-radius: var(--bo-radius-lg); padding: clamp(24px, 4vw, 48px); }
.bo-deal__media { position: relative; }
.bo-deal__media img { border-radius: var(--bo-radius); margin-inline: auto; }
.bo-deal__media .bo-badge { position: absolute; top: 12px; left: 12px; }
.bo-deal__eyebrow { color: var(--bo-sale); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: .85rem; }
.bo-deal__title { font-size: clamp(1.4rem, 3vw, 2rem); margin: 10px 0; }
.bo-deal__title a { color: inherit; }
.bo-deal__price { font-size: 1.4rem; font-weight: 800; color: var(--bo-primary); margin-bottom: 12px; }
.bo-deal__price del { color: var(--bo-text-muted); font-weight: 500; font-size: 1rem; }
.bo-deal__desc { color: var(--bo-text-muted); margin-bottom: 22px; }
.bo-countdown { display: flex; align-items: center; gap: 8px; margin-bottom: 26px; }
.bo-countdown__unit { background: var(--bo-primary); color: #fff; border-radius: 12px; padding: 12px 14px; text-align: center; min-width: 64px; }
.bo-countdown__num { font-size: 1.6rem; font-weight: 800; display: block; line-height: 1; }
.bo-countdown__unit small { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; opacity: .8; }
.bo-countdown__sep { font-size: 1.6rem; font-weight: 800; color: var(--bo-primary); }
@media (max-width: 768px) { .bo-deal__inner { grid-template-columns: 1fr; } }

/* ---------- Newsletter ---------- */
.bo-newsletter { background: var(--bo-primary); }
.bo-newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.bo-newsletter__title { color: #fff; font-size: clamp(1.4rem, 3vw, 2rem); }
.bo-newsletter__copy p { color: rgba(255,255,255,.85); margin: 0; }
.bo-subscribe { display: flex; gap: 10px; }
.bo-subscribe input { flex: 1; border: 0; padding: 16px 20px; border-radius: 999px; font-size: 1rem; }
.bo-subscribe input:focus { outline: 3px solid var(--bo-accent); }
.bo-newsletter__note { color: rgba(255,255,255,.6); font-size: .8rem; margin: 12px 0 0; }
@media (max-width: 768px) { .bo-newsletter__inner { grid-template-columns: 1fr; } }

/* ---------- Blog cards / prose ---------- */
.bo-posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--bo-gap); }
@media (max-width: 680px) { .bo-posts { grid-template-columns: 1fr; } }
.bo-post-card { background: #fff; border: 1px solid var(--bo-border); border-radius: var(--bo-radius); overflow: hidden; transition: box-shadow var(--bo-dur), transform var(--bo-dur); display: flex; flex-direction: column; }
.bo-post-card:hover { box-shadow: var(--bo-shadow); transform: translateY(-3px); }
.bo-post-card__media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.bo-post-card__body { padding: 22px; }
.bo-post-card__meta { font-size: .8rem; color: var(--bo-text-muted); display: flex; gap: 8px; margin-bottom: 10px; }
.bo-post-card__title { font-size: 1.2rem; margin-bottom: 10px; }
.bo-post-card__title a { color: inherit; }
.bo-post-card__excerpt { color: var(--bo-text-muted); font-size: .92rem; margin-bottom: 14px; }

.bo-page-head { margin-bottom: 28px; }
.bo-page-head__title { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.bo-prose { font-size: 1.05rem; line-height: 1.75; }
.bo-prose img { border-radius: var(--bo-radius); margin: 1.5em 0; }
.bo-prose h2 { margin-top: 1.6em; }
.bo-single__media img, .bo-page__media img { border-radius: var(--bo-radius-lg); width: 100%; object-fit: cover; }

/* ---------- Sidebar / widgets ---------- */
.bo-widget { background: #fff; border: 1px solid var(--bo-border); border-radius: var(--bo-radius); padding: 22px; margin-bottom: 24px; }
.bo-widget__title { font-size: 1.05rem; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--bo-surface-2); }
.bo-cat-filter, .bo-cat-filter li { list-style: none; }
.bo-cat-filter a { display: flex; justify-content: space-between; padding: 8px 0; color: var(--bo-text-muted); font-weight: 500; border-bottom: 1px solid var(--bo-surface-2); }
.bo-cat-filter a:hover { color: var(--bo-accent); }
.bo-cat-filter span { color: var(--bo-border); }

/* ---------- Footer ---------- */
.bo-footer { background: var(--bo-black); color: rgba(255,255,255,.78); margin-top: 60px; }
.bo-footer__trust { background: var(--bo-primary); border-bottom: 1px solid rgba(255,255,255,.08); }
.bo-footer__trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 28px; }
.bo-trust { display: flex; align-items: center; gap: 14px; color: #fff; }
.bo-trust span { font-size: 1.8rem; }
.bo-trust strong { display: block; font-size: .95rem; }
.bo-trust small { color: rgba(255,255,255,.6); font-size: .8rem; }
@media (max-width: 900px) { .bo-footer__trust-grid { grid-template-columns: repeat(2,1fr); } }

.bo-footer__main { padding-block: 50px; }
.bo-footer__cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.bo-footer .bo-logo { color: #fff; margin-bottom: 16px; }
.bo-footer__about p { font-size: .9rem; line-height: 1.7; max-width: 36ch; }
.bo-footer-widget__title, .bo-footer__col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.bo-footer__links, .bo-footer__links li, .bo-contact-list, .bo-contact-list li { list-style: none; }
.bo-footer__links a { color: rgba(255,255,255,.7); display: block; padding: 6px 0; font-size: .9rem; }
.bo-footer__links a:hover { color: var(--bo-accent); }
.bo-contact-list li { display: flex; gap: 10px; padding: 6px 0; font-size: .9rem; }
.bo-contact-list a { color: rgba(255,255,255,.7); }
.bo-contact-list a:hover { color: var(--bo-accent); }
.bo-social { display: flex; gap: 10px; }
.bo-social__link { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); color: #fff; display: grid; place-items: center; font-weight: 700; }
.bo-social__link:hover { background: var(--bo-accent); color: var(--bo-black); }
@media (max-width: 900px) { .bo-footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bo-footer__cols { grid-template-columns: 1fr; } }

.bo-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); }
.bo-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 20px; flex-wrap: wrap; }
.bo-copy { margin: 0; font-size: .85rem; }
.bo-pay { display: flex; gap: 8px; flex-wrap: wrap; }
.bo-pay__chip { background: rgba(255,255,255,.1); padding: 6px 12px; border-radius: 8px; font-size: .78rem; font-weight: 700; color: #fff; }

/* ---------- Floating buttons ---------- */
.bo-whatsapp {
	position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
	background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.5);
	transition: transform var(--bo-dur);
}
.bo-whatsapp:hover { transform: scale(1.08); color: #fff; }
.bo-backtop {
	position: fixed; bottom: 92px; right: 24px; z-index: 90; width: 46px; height: 46px; border-radius: 50%;
	background: var(--bo-primary); color: #fff; border: 0; font-size: 1.3rem; box-shadow: var(--bo-shadow);
	opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--bo-dur);
}
.bo-backtop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Cookie bar ---------- */
.bo-cookie {
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; background: var(--bo-primary); color: #fff;
	display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 24px; flex-wrap: wrap;
	box-shadow: 0 -6px 24px rgba(0,0,0,.2);
}
.bo-cookie p { margin: 0; font-size: .88rem; max-width: 70ch; }
.bo-cookie__actions { display: flex; align-items: center; gap: 16px; }
.bo-cookie__link { color: rgba(255,255,255,.8); font-size: .85rem; text-decoration: underline; }

/* ---------- Mini cart drawer ---------- */
.bo-overlay { position: fixed; inset: 0; background: rgba(8,16,30,.5); opacity: 0; visibility: hidden; transition: opacity var(--bo-dur); z-index: 98; }
.bo-overlay.is-open { opacity: 1; visibility: visible; }
.bo-mini-cart {
	position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 92vw); background: #fff; z-index: 99;
	transform: translateX(100%); transition: transform var(--bo-dur) var(--bo-ease); display: flex; flex-direction: column;
	box-shadow: -10px 0 40px rgba(0,0,0,.18);
}
.bo-mini-cart.is-open { transform: translateX(0); }
.bo-mini-cart__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--bo-border); }
.bo-mini-cart__head h3 { margin: 0; font-size: 1.2rem; }
.bo-mini-cart__close { background: var(--bo-surface); border: 0; width: 36px; height: 36px; border-radius: 50%; font-size: 1.4rem; line-height: 1; color: var(--bo-text); }
.bo-mini-cart__close:hover { background: var(--bo-surface-2); }
/* .bo-mini-cart__body { padding: 20px 22px; overflow-y: auto; flex: 1; }
 */


/* Mini cart body */
.bo-mini-cart__body{
    padding:20px 22px;
    flex:1;
    overflow-y:auto;
    overflow-x:hidden; /* Prevent image overflow */
}

/* Product row */
.woocommerce-mini-cart-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
}

/* Product image */
.woocommerce-mini-cart-item img{
    width:72px !important;
    height:72px !important;
    object-fit:cover;
    border-radius:10px;
    flex-shrink:0;
}

/* Product details */
.woocommerce-mini-cart-item .quantity,
.woocommerce-mini-cart-item a{
    font-size:14px;
    line-height:1.4;
}

/* Keep content inside drawer */
.woocommerce-mini-cart-item > *{
    min-width:0;
}
.bo-mini-cart{
    width:380px;
    max-width:100vw;
    background:#fff;
}

.bo-mini-cart__body{
    padding:20px 22px;
    overflow-y:auto;
    overflow-x:hidden;
}

.woocommerce-mini-cart-item{
    display:flex;
    gap:12px;
    margin-bottom:16px;
}

.woocommerce-mini-cart-item img{
    width:72px !important;
    height:72px !important;
    object-fit:cover;
    border-radius:10px;
    flex-shrink:0;
}


/* ---------- Empty states & misc ---------- */
.bo-empty { text-align: center; padding: 60px 20px; color: var(--bo-text-muted); }
.bo-empty h2 { color: var(--bo-text); }
.bo-tags { margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.bo-tags a { background: var(--bo-surface); padding: 6px 12px; border-radius: 8px; font-size: .82rem; color: var(--bo-text-muted); }

/* ---------- Mobile menu toggle ---------- */
.bo-mobile-toggle { display: none; flex-direction: column; gap: 4px; background: rgba(255,255,255,.12); border: 0; padding: 10px; border-radius: 10px; }
.bo-mobile-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ---------- Pagination ---------- */
.woocommerce-pagination ul, .pagination .nav-links, .bo-pagination { display: flex; gap: 8px; justify-content: center; list-style: none; margin-top: 40px; flex-wrap: wrap; }
.page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--bo-border); color: var(--bo-text); font-weight: 600; }
.page-numbers.current { background: var(--bo-primary); color: #fff; border-color: var(--bo-primary); }
.page-numbers:hover:not(.current) { border-color: var(--bo-accent); color: var(--bo-accent); }
