/* =========================================================================
   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__title { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.bo-section__title--invert { color: #fff; }
.bo-section__sub { color: var(--bo-text-muted); margin: 0; font-size: 1.05rem; }

.bo-layout { display: grid; gap: 40px; padding-block: 40px; }
.bo-layout--sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
.bo-layout__main--wide { max-width: 860px; 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: #fff; box-shadow: 0 8px 20px rgba(247,148,29,.32); }
.bo-btn--accent:hover { background: var(--bo-accent-dark); color: #fff; box-shadow: 0 12px 28px rgba(247,148,29,.4); }
.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-sale); }
.bo-badge--accent { background: var(--bo-accent); }

/* ---------- 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; }
.bo-header.is-sticky { position: sticky; top: 0; }
.bo-header.is-stuck { box-shadow: var(--bo-shadow); }
.bo-header__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding-block: 18px; }
.bo-header__brand { display: flex; align-items: center; gap: 14px; }

.bo-logo { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.bo-logo:hover { color: #fff; }
.bo-logo__mark {
	width: 44px; height: 44px; border-radius: 12px; flex: 0 0 44px;
	background: linear-gradient(135deg, var(--bo-accent), var(--bo-accent-dark));
	color: #fff; font-weight: 800; font-size: 1.5rem; display: grid; place-items: center;
	box-shadow: 0 6px 16px rgba(247,148,29,.35);
}
.bo-logo__text { display: flex; flex-direction: column; line-height: 1.05; 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 img { max-height: 56px; width: auto; }

/* Search */
.bo-header__search { max-width: 640px; width: 100%; }
.bo-search { position: relative; display: flex; background: #fff; border-radius: 999px; overflow: visible; box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.bo-search__field {
	flex: 1; border: 0; padding: 14px 18px; font-size: .95rem; border-radius: 999px 0 0 999px;
	background: transparent; color: var(--bo-text);
}
.bo-search__field:focus { outline: none; }
.bo-search__submit {
	border: 0; background: var(--bo-accent); color: #fff; padding: 0 20px; border-radius: 0 999px 999px 0;
	display: grid; place-items: center; transition: background var(--bo-dur);
}
.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 */
.bo-header__actions { display: flex; align-items: center; gap: 8px; }
.bo-header__action {
	display: flex; align-items: center; gap: 10px; color: #fff; padding: 8px 12px; border-radius: 12px;
	background: transparent; border: 0; transition: background var(--bo-dur);
}
.bo-header__action:hover { background: rgba(255,255,255,.1); color: #fff; }
.bo-header__action-ico { font-size: 1.3rem; position: relative; }
.bo-header__action-label { display: flex; flex-direction: column; line-height: 1.1; 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: -8px; right: -10px; min-width: 18px; height: 18px; padding: 0 4px;
	background: var(--bo-accent); color: #fff; 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: #fff; 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); }

/* ---------- Hero slider ---------- */
.bo-hero { padding-top: 28px; }
.bo-hero__viewport { position: relative; border-radius: var(--bo-radius-lg); overflow: hidden; box-shadow: var(--bo-shadow); }
.bo-hero__track { display: flex; }
.bo-slide {
	min-width: 100%; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 24px;
	padding: clamp(28px, 5vw, 64px); color: #fff; position: relative;
}
.bo-slide--navy { background: linear-gradient(120deg, #0a2540 0%, #14375e 100%); }
.bo-slide--accent { background: linear-gradient(120deg, #b35e00 0%, #f7941d 100%); }
.bo-slide--teal { background: linear-gradient(120deg, #1c6b62 0%, #2a9d8f 100%); }
.bo-slide__eyebrow { display: inline-block; background: rgba(255,255,255,.18); padding: 6px 14px; border-radius: 999px; font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.bo-slide__title { color: #fff; font-size: clamp(1.6rem, 4vw, 3rem); margin-bottom: 14px; }
.bo-slide__text { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 26px; max-width: 36ch; }
.bo-slide__visual { aspect-ratio: 4/3; border-radius: var(--bo-radius); background: rgba(255,255,255,.12); backdrop-filter: blur(2px); }
.bo-slide__visual::after { content: "📦"; font-size: 5rem; display: grid; place-items: center; height: 100%; opacity: .5; }
.bo-hero__nav {
	position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%;
	border: 0; background: rgba(255,255,255,.9); color: var(--bo-primary); font-size: 1.6rem; line-height: 1;
	display: grid; place-items: center; box-shadow: var(--bo-shadow-sm);
}
.bo-hero__nav--prev { left: 18px; }
.bo-hero__nav--next { right: 18px; }
.bo-hero__nav:hover { background: #fff; }
.bo-hero__dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.bo-hero__dot { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255,255,255,.45); padding: 0; }
.bo-hero__dot.is-active { background: #fff; width: 26px; border-radius: 999px; }
@media (max-width: 768px) { .bo-slide { grid-template-columns: 1fr; } .bo-slide__visual { display: none; } }

/* ---------- Category grid ---------- */
.bo-cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--bo-gap); }
.bo-cat-card {
	display: flex; align-items: center; gap: 18px; padding: 26px; border-radius: var(--bo-radius-lg);
	color: #fff; position: relative; overflow: hidden; min-height: 150px;
	transition: transform var(--bo-dur) var(--bo-ease), box-shadow var(--bo-dur);
}
.bo-cat-card:hover { transform: translateY(-4px); box-shadow: var(--bo-shadow-lg); color: #fff; }
.bo-cat--navy { background: linear-gradient(135deg, #0a2540, #14375e); }
.bo-cat--accent { background: linear-gradient(135deg, #d97c08, #f7941d); }
.bo-cat--teal { background: linear-gradient(135deg, #1c6b62, #2a9d8f); }
.bo-cat-card__icon { font-size: 2.6rem; }
.bo-cat-card__body { display: flex; flex-direction: column; gap: 4px; }
.bo-cat-card__title { font-size: 1.25rem; }
.bo-cat-card__desc { font-size: .9rem; opacity: .85; }
.bo-cat-card__cta { position: absolute; bottom: 18px; right: 22px; font-weight: 700; font-size: .85rem; opacity: 0; transform: translateX(-8px); transition: all var(--bo-dur); }
.bo-cat-card:hover .bo-cat-card__cta { opacity: 1; transform: translateX(0); }
@media (max-width: 860px) { .bo-cat-grid { grid-template-columns: 1fr; } }

/* ---------- 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: #08203a; 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: #fff; }
@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; }

/* ---------- 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); }
