:root{
  --bk-bg:#ffffff;
  --bk-card:#ffffff;
  --bk-text:#0b0b0f;
  --bk-muted:#5a5a68;
  --bk-line:rgba(0,0,0,.10);
  --bk-accent:#7c5cff;
  /* Shop colors (requested): sky-blue prices + sky-blue badge with black text */
  --bk-price-color:#38c9ff;
  --bk-sale-price-color:#38c9ff;
  --bk-regular-price-with-sale-color:#000;
  --bk-sale-badge-bg:#38c9ff;
  --bk-sale-badge-text:#000;
  --bk-radius:18px;
  --bk-shadow: 0 10px 30px rgba(0,0,0,.12);
}
*{box-sizing:border-box}
body.boldkicks{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;background:var(--bk-bg);color:var(--bk-text)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.bk-container{width:min(1180px,92vw);margin:0 auto}

.bk-section-title{font-size:20px;font-weight:800;margin:0 0 14px;color:var(--bk-section-title-color,var(--bk-text));letter-spacing:.3px}
.bk-section-title--center{text-align:center}

.bk-main{padding-bottom:60px}

/* Header (white) */
.bk-header{position:relative;border-bottom:1px solid rgba(0,0,0,.08);background:#fff;backdrop-filter:blur(10px);z-index:40}
.bk-header.is-sticky{position:sticky;top:0}
.bk-header__inner{
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:10px;
  padding:14px 16px;width:min(1180px,92vw);margin:0 auto;
}
.bk-header__inner--v2{grid-template-columns:1fr auto 1fr}
.bk-header__left{display:flex;gap:10px;align-items:center;justify-content:flex-start}
.bk-header__center{display:flex;justify-content:center}
.bk-header__right{display:flex;gap:12px;align-items:center;justify-content:flex-end}
.bk-header a,.bk-header button{color:#111}
.bk-logo .custom-logo{max-width:var(--logoW,140px);height:auto}
.bk-logo__text{font-weight:900;letter-spacing:.5px;text-transform:uppercase;color:#111}
.bk-icon-btn{
  border:1px solid rgba(0,0,0,.18);background:rgba(0,0,0,.04);color:#111;
  padding:10px 12px;border-radius:999px;cursor:pointer;display:inline-flex;align-items:center;gap:8px;
}
.bk-burger .bk-ico{font-size:20px;line-height:1}

.bk-cart-count{font-size:12px;background:var(--bk-accent);color:#fff;padding:2px 7px;border-radius:999px}
.bk-nav--desktop{display:none}
.bk-burger{display:inline-flex}
.bk-menu{list-style:none;display:flex;gap:18px;padding:0;margin:0}
.bk-menu a{opacity:.9}
.bk-menu a:hover{opacity:1}
@media (min-width: 980px){
  .bk-nav--desktop{display:block}
  .bk-burger{display:none}
}


/* Sticky top bar */
.bk-drawer__top{
  position:sticky;
  top:0;
  z-index:2;
  background:#fff;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.bk-drawer__top .bk-icon-btn{
  border:1px solid rgba(0,0,0,.18);
  background:rgba(0,0,0,.04);
  color:#000;
}

.bk-drawer__title{font-weight:800;letter-spacing:.4px;color:#000}

/* Scroll area for long menus */
.bk-nav--mobile{
  flex:1;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
  padding-bottom:24px;
}

.bk-drawer__panel a,
.bk-drawer__panel button{color:#000 !important}

.bk-menu--mobile{flex-direction:column;gap:0;margin:0;padding:0}
.bk-menu--mobile > li > a{padding:14px 16px;display:block}
.bk-menu--mobile li{border-bottom:1px solid rgba(0,0,0,.06)}
/* Search modal */
.bk-search[hidden]{display:none}
.bk-search{position:fixed;inset:0;z-index:70}
.bk-search__overlay{position:absolute;inset:0;background:rgba(0,0,0,.55)}
.bk-search__panel{
  position:absolute;left:50%;top:10%;transform:translateX(-50%);
  width:min(760px,92vw);background:var(--bk-card);border:1px solid var(--bk-line);
  border-radius:var(--bk-radius);box-shadow:var(--bk-shadow);padding:16px;
}
.bk-search__top{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px}
.bk-search__input{
  width:100%;padding:14px;border-radius:14px;border:1px solid var(--bk-line);
  outline:none;background:rgba(0,0,0,.03);color:var(--bk-text);
}
.bk-search__results{margin-top:12px;display:grid;gap:10px}
.bk-search__results.is-loading{opacity:.85}
.bk-result--empty{grid-template-columns:1fr;justify-content:center;text-align:center;color:var(--bk-muted);padding:14px}
.bk-result{
  display:grid;grid-template-columns:56px 1fr auto;gap:10px;align-items:center;
  padding:10px;border:1px solid var(--bk-line);border-radius:14px;background:rgba(0,0,0,.02);
}
.bk-result__img{width:56px;height:56px;border-radius:12px;overflow:hidden}
.bk-result__title{font-weight:700}
.bk-result__price{color:var(--bk-muted);font-size:14px}

/* Hero */
.bk-hero{position:relative;min-height:100vh;min-height:100svh;display:grid;place-items:center;border-bottom:1px solid var(--bk-line)}
.bk-hero__media{position:absolute;inset:0;overflow:hidden}
.bk-hero__img,.bk-hero__video{width:100%;height:100%;object-fit:cover}
.bk-hero__overlay{position:absolute;inset:0;background:rgba(0,0,0,var(--ov,.35))}
.bk-hero__content{position:relative;z-index:2;text-align:center;padding:60px 16px;width:min(900px,92vw)}
.bk-hero__title{
  font-size:clamp(34px,6vw,62px);line-height:1.0;letter-spacing:-.6px;
  text-transform:uppercase;margin:0 0 10px;font-weight:950;color:#fff;
}
.bk-hero__sub{margin:0 0 18px;color:rgba(255,255,255,.85);font-size:clamp(14px,2vw,18px)}
.bk-btn{display:inline-flex;padding:12px 18px;border-radius:999px;background:var(--bk-accent);color:#fff;font-weight:800;letter-spacing:.2px}

/* Sections */
.bk-payments,.bk-brands,.bk-collection{padding:26px 0}
/* Make Brands section a bit more compact */
.bk-brands{padding:16px 0}
.bk-payments__grid{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;opacity:.95}
.bk-payments__item{padding:10px 14px;border:1px solid var(--bk-line);border-radius:999px;background:rgba(0,0,0,.02)}
.bk-payments__item img{height:26px;width:auto}

.bk-brands__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
@media(min-width:680px){.bk-brands__grid{grid-template-columns:repeat(4,1fr)}}
@media(min-width:980px){.bk-brands__grid{grid-template-columns:repeat(6,1fr)}}
.bk-brand{border:1px solid var(--bk-line);border-radius:14px;padding:0;background:rgba(0,0,0,.02);display:flex;align-items:stretch;justify-content:stretch;overflow:hidden;min-height:48px;transition:transform .15s ease,border-color .15s ease}
.bk-brand:hover{transform:translateY(-2px);border-color:rgba(0,0,0,.18)}
.bk-brand:hover{transform:translateY(-2px);border-color:rgba(0,0,0,.18)}
.bk-brand img{width:100%;height:100%;object-fit:contain;display:block}

/* Collection */
.bk-collection__banner{margin-bottom:14px}
.bk-collection__banner img{border-radius:var(--bk-radius);border:1px solid var(--bk-line);width:100%;height:var(--bk-banner-h-d,360px);object-fit:cover}
@media (max-width: 979px){
  .bk-collection__banner img{height:var(--bk-banner-h-m,220px)}
}
.bk-collection__head{display:flex;justify-content:space-between;align-items:center;margin:16px 0 12px}
.bk-collection__title{margin:0;text-align:center;flex:1;font-weight:950;text-transform:uppercase;letter-spacing:.3px}
.bk-link{padding:10px 14px;border:1px solid var(--bk-line);border-radius:999px;background:rgba(0,0,0,.02);font-weight:700}
.bk-products{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
@media(min-width:768px){.bk-products{grid-template-columns:repeat(2,1fr)}}
@media(min-width:980px){.bk-products{grid-template-columns:repeat(4,1fr)}}
.bk-card{border:1px solid var(--bk-line);border-radius:var(--bk-radius);overflow:hidden;background:var(--bk-card)}
.bk-card__img{display:block;background:rgba(0,0,0,.02)}
.bk-card__img img{width:100%;aspect-ratio:1/1;object-fit:contain;background:transparent}
.bk-card__body{padding:12px}
.bk-card__title{display:block;font-weight:800;margin-bottom:6px}
.bk-card__price{color:var(--bk-muted);margin-bottom:10px}
.bk-card__actions .button{
  width:100%;text-align:center;border-radius:999px!important;border:1px solid var(--bk-line)!important;
  background:rgba(0,0,0,.04)!important;color:var(--bk-text)!important;font-weight:800!important;
}

/* Helpers */
.bk-only-desktop{display:none}
.bk-only-mobile{display:block}
@media(min-width:980px){.bk-only-desktop{display:block}.bk-only-mobile{display:none}}
.bk-footer{border-top:1px solid var(--bk-line);padding:30px 0;color:var(--bk-muted)}
.bk-footer__grid{display:grid;grid-template-columns:1fr;gap:24px}
@media (min-width: 768px){
  .bk-footer__grid{grid-template-columns:1fr 1fr;align-items:start}
}
.bk-footer__brand{font-weight:950;letter-spacing:.3px;text-transform:uppercase;color:var(--bk-text)}
.bk-footer__copy{margin-top:6px;font-size:14px}
.bk-footer__title{font-weight:800;color:var(--bk-text);margin-bottom:10px}
.bk-footer__links{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.bk-footer__links a{color:var(--bk-text);opacity:.9}
.bk-footer__links a:hover{opacity:1}

/* Social icons under Useful Links */
.bk-footer__social{display:flex;gap:10px;margin-top:14px}
.bk-social{
  width:32px;height:32px;border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  display:inline-flex;align-items:center;justify-content:center;
  transition:transform .12s ease, background .12s ease;
}
.bk-social svg{width:16px;height:16px;fill:currentColor}
.bk-social{color:#000}
.bk-social:hover{transform:translateY(-1px)}
.bk-muted{color:var(--bk-muted)}


/* ===== Brand Highlight ===== */
.bk-brand-highlight{padding:24px 0}
.bk-brand-highlight__img{width:100%;border-radius:18px;overflow:hidden;background:#0b0b0b}
.bk-brand-highlight__img img{width:100%;height:auto;display:block;object-fit:cover}

/* ===== Lifestyle (Stacked) ===== */
.bk-lifestyle{padding:32px 0}
.bk-lifestyle__grid{display:grid;grid-template-columns:1fr;gap:24px}
@media (min-width: 992px){
  .bk-lifestyle__grid{grid-template-columns:repeat(2,1fr);align-items:start}
  .bk-life__img{max-width:none}
}
.bk-life{display:flex;flex-direction:column;align-items:center;text-align:center;text-decoration:none}
.bk-life__img{width:100%;max-width:720px;aspect-ratio:1/1;border-radius:20px;overflow:hidden;background:#f6f6f6}
.bk-life__img img{width:100%;height:100%;object-fit:contain;display:block}
.bk-life__title{margin-top:12px;font-weight:800;letter-spacing:.4px;text-transform:uppercase;color:inherit}

/* ===== Brand logos: fill tiles (no gaps) ===== */
.bk-brand-logo{overflow:hidden}
.bk-brand-logo img{width:100%;height:100%;object-fit:cover;display:block}

/* ===============================
   Dropdown Menus (Desktop + Mobile)
   - Desktop: hover opens
   - Mobile: tap toggle button opens/closes
================================ */

/* Desktop dropdown */
@media (min-width: 992px){
  .bk-nav--desktop ul{list-style:none;margin:0;padding:0}
  .bk-nav--desktop li{position:relative}
  .bk-nav--desktop .sub-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#000;
    border:1px solid rgba(255,255,255,0.14);
    border-radius:14px;
    padding:8px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index:9999;
  }
  .bk-nav--desktop li:hover > .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }
  .bk-nav--desktop .sub-menu a{
    display:block;
    padding:10px 14px;
    color:#111;
    white-space:nowrap;
  }
  .bk-nav--desktop .sub-menu a:hover{
    background:rgba(0,0,0,.06);
  }
}

/* Mobile dropdown styles are defined later (white full-screen drawer) */

/* ===============================
   Sticky Header + Original Menu Dropdown
================================ */
.bk-header{
  position: sticky;
  top: 0;
  z-index: 10000;
  background:#fff !important;
}
.bk-header a, .bk-header .bk-logo__text, .bk-header .bk-ico{ color:#111 !important; }

/* Desktop dropdown (hover) */
@media (min-width: 992px){
  .bk-nav--desktop .bk-menu > li{ position:relative; }
  .bk-nav--desktop .sub-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    /* Menu like m-sneakeerss.com: light dropdown over dark header */
    background:#fff;
    min-width:220px;
    padding:8px 0;
    border:1px solid rgba(0,0,0,.12);
    border-radius:14px;
    z-index:10001;
    box-shadow: 0 14px 40px rgba(0,0,0,.18);
  }
  .bk-nav--desktop li:hover > .sub-menu{ display:block; }
  .bk-nav--desktop .sub-menu a{
    display:block;
    padding:10px 14px;
    color:#111 !important;
    white-space:nowrap;
  }
  .bk-nav--desktop .sub-menu a:hover{ background:rgba(0,0,0,.06); }
}

/* Arrow indicator for items with children (desktop only) */
@media (min-width: 992px){
  .menu-item-has-children > a::after{
    content:'▾';
    margin-left:6px;
    font-size:12px;
    opacity:.9;
  }
}

@import url('hover-override.css');

/* Mobile dropdown inside full-screen drawer (white bg + black text + arrow button) */
@media (max-width: 991px){
  /* Hide desktop arrow on mobile */
  .bk-nav--mobile .menu-item-has-children > a::after{ content:''; margin:0; }

  .bk-nav--mobile .menu-item-has-children{position:relative}
  .bk-nav--mobile .sub-menu{
    display:none;
    padding:8px 0 8px 16px;
    margin:0 0 8px 0;
    border-left:1px solid rgba(0,0,0,.12);
  }
  .bk-nav--mobile li.bk-open > .sub-menu{display:block}

  .bk-nav--mobile .bk-sub-toggle{
    position:absolute;
    right:10px;
    top:8px;
    width:40px;
    height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(0,0,0,.18);
    background:rgba(0,0,0,.04);
    border-radius:12px;
    cursor:pointer;
    z-index:2;
  }

  /* Give parent link space so it doesn't sit under toggle */
  .bk-nav--mobile .menu-item-has-children > a{padding-right:60px}
}


/* MOBILE MENU OVERLAY FIX */

#mobile-menu-overlay{position:fixed;inset:0;background:#fff;z-index:999999;display:none;flex-direction:column;overflow-y:auto}
#mobile-menu-overlay.active{display:flex}

/* ======================================================
   Custom fixes requested (menu + scrolling + Woo styles)
   Added without changing existing rules above.
====================================================== */

/* 1) Prevent unwanted horizontal scroll on the whole site */
html, body{overflow-x:hidden}

/* 2) When the drawer is open: lock background scroll */
html.bk-drawer-open, html.bk-drawer-open body{overflow:hidden;height:100%}

/* 3) Mobile menu tweaks: bigger close button + bigger submenu text */
@media (max-width: 991px){
  .bk-drawer__top [data-bk-close].bk-icon-btn{
    padding:14px 16px;
    font-size:22px;
    line-height:1;
  }

  /* Submenu typography */
  .bk-nav--mobile .sub-menu a{
    font-size:16px;
    padding:10px 14px;
    display:block;
  }
}

/* 4) Make long submenus scrollable (inside each opened submenu) */
@media (max-width: 991px){
  .bk-nav--mobile li.bk-open > .sub-menu{
    max-height:45vh;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
}

/* 5) Hide default WP widgets if they appear inside the mobile menu overlay/drawer
      (Pages / Archives / Categories / Search) */
.bk-drawer .widget_pages,
.bk-drawer .widget_archive,
.bk-drawer .widget_categories,
.bk-drawer .widget_search,
#mobile-menu-overlay .widget_pages,
#mobile-menu-overlay .widget_archive,
#mobile-menu-overlay .widget_categories,
#mobile-menu-overlay .widget_search{display:none!important}

/* 6) Lifestyle section: keep Men/Women side-by-side on mobile without cropping */
@media (max-width: 991px){
  .bk-lifestyle__grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .bk-life__img{max-width:none}
}

/* 7) Remove internal scrollbars from common Woo filter widgets (e.g., Brands lists) */
.woocommerce-widget-layered-nav-list,
.woocommerce-widget-layered-nav ul,
.wc-block-components-checkbox-list,
.wc-block-product-categories-list,
.wc-block-attribute-filter ul,
.wc-block-product-filter,
.wc-block-product-filter__list{max-height:none!important;overflow:visible!important}

/* 8) Sale badges (Woo + Theme cards) */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce div.product span.onsale,
.bk-sale-badge{
  background:var(--bk-sale-badge-bg,#b04cff) !important;
  color:var(--bk-sale-badge-text,#fff) !important;
}

/* Make sale badge a true circle with centered text */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce div.product span.onsale,
.bk-sale-badge{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  min-width:56px;
  min-height:56px;
  padding:0 !important;
  border-radius:999px !important;
  font-size:12px;
  font-weight:700;
  line-height:1;
  text-align:center;
}

/* 9) Prices: global + keep del/ins side-by-side */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price,
.bk-card__price{color:var(--bk-regular-price-no-sale-color,var(--bk-price-color,#111)) !important}

.woocommerce .price del,
.woocommerce .price ins{display:inline-block;margin:0}
.woocommerce .price del{
  opacity:1;
  color:var(--bk-regular-price-with-sale-color,var(--bk-price-color,#111)) !important;
}
.woocommerce .price ins{
  color:var(--bk-sale-price-color,#b04cff) !important;
  background:transparent;
  padding:0;
  margin-left:8px;
  text-decoration:none;
}

/* Ensure product titles never disappear (especially on-sale items) */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .bk-card__title,
.bk-card__title{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  color:var(--bk-text) !important;
}

/* Theme home collections cards price states */
.bk-card__price.bk-price--regular{
  color:var(--bk-regular-price-no-sale-color,var(--bk-price-color,#111)) !important;
}
.bk-card__price.bk-price--on-sale .bk-price-regular{
  color:var(--bk-regular-price-with-sale-color,var(--bk-price-color,#111)) !important;
  text-decoration:line-through;
  margin-right:8px;
}
.bk-card__price.bk-price--on-sale .bk-price-sale{
  color:var(--bk-sale-price-color,#b04cff) !important;
}

/* Some themes/plugins wrap amounts in separate spans; keep inline */
.woocommerce .price .woocommerce-Price-amount{display:inline}


/* Dark Mode */
body.bk-dark{
  background:#0b0b0b;
  color:#f5f5f5;
}
body.bk-dark a{color:#fff}
body.bk-dark .bk-header{background:#000}

/* Brands images fill rectangle */
.bk-brands__grid .bk-payments__item{
  border-radius:12px;
  padding:0;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.bk-brands__grid .bk-payments__item img{
  width:100%;
  height:100%;
  object-fit:contain;
}


/* Force black header */
.bk-header{background:#000 !important;color:#fff;}
.bk-header a{color:#fff}

/* Hero video responsive */
.bk-hero__video video{
  display:block !important;
  width:100%;
  height:100%;
  object-fit:cover;
}


/* Force dark mode button visible */
.bk-dark-toggle{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  color:#fff;
}

/* Menu text white */
.bk-header nav a,
.bk-header .menu a{
  color:#fff !important;
}

/* Submenu button white */
.bk-header .sub-menu a{
  color:#fff !important;
}

/* SALE badge text black */
.onsale,
.sale,
.bk-sale{
  color:#000 !important;
}

/* Force hero video visible everywhere */
.bk-hero__video,
.bk-hero__video video{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
}


/* Ensure logo text is white (site title / text logo) */
.bk-logo,
.bk-logo a,
.bk-logo span,
.bk-logo strong{
  color:#fff !important;
}

/* Submenu toggle button in mobile menu */
.bk-sub-toggle{
  color:#fff !important;
}
.bk-sub-toggle svg,
.bk-sub-toggle .bk-ico{
  color:#fff !important;
  fill:#fff !important;
}

/* Dark mode toggle visibility in header icons row */
.bk-header__right .bk-dark-toggle{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  margin-left:8px;
  color:#fff !important;
}

/* Hero video: always visible */
.bk-hero__video,
.bk-hero__media video{
  display:block !important;
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
}


/* SALE badge black */
.onsale,
.sale,
.bk-sale{
  background:#000 !important;
  color:#000 !important;
}


/* Header white, text black */
.bk-header{
  background:#fff !important;
  color:#000 !important;
}
.bk-header a,
.bk-header nav a,
.bk-header .menu a,
.bk-header .bk-icon-btn,
.bk-header .bk-ico{
  color:#000 !important;
}


/* SALE badge: background black, text white */
.onsale,
.sale,
.bk-sale{
  background:#000 !important;
  color:#fff !important;
}

/* Fix product card background */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product{
  background:#fff !important;
}

/* Submenu text black */
.bk-header .sub-menu a,
.bk-header .sub-menu{
  color:#000 !important;
}


/* Sale badge should be controlled by Customizer vars */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce div.product span.onsale{
  background:var(--bk-sale-badge-bg,#b04cff) !important;
  color:var(--bk-sale-badge-text,#fff) !important;
}


/* FORCE single product page white background */
.single-product,
.single-product body,
.single-product .site,
.single-product main,
.single-product .bk-container,
.single-product .woocommerce,
.single-product .product{
  background:#fff !important;
  color:#000 !important;
}

/* Tabs & related background */
.single-product .woocommerce-tabs,
.single-product .related.products{
  background:#fff !important;
}

/* Remove description/reviews tabs if needed */
.single-product .woocommerce-tabs{
  display:none !important;
}


/* FORCE hero video to show on mobile */
@media (max-width: 767px){
  .bk-hero__video,
  .bk-hero__media video{
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
  }
}

/* ===============================
   Homepage Tweaks (Requested)
   =============================== */

/* Apply one background color to homepage sections (customizable) */
.bk-payments,
.bk-brands,
.bk-collection,
.bk-brand-highlight,
.bk-lifestyle{
  background: var(--bk-sections-bg, transparent);
}

/* Hero: full-viewport media on desktop/tablet/mobile */
.bk-hero{height:100vh;height:100svh;}

/* Prices: customizable colors (use new vars) */
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price,
.bk-card__price{
  color: var(--bk-regular-price-no-sale-color, var(--bk-price-color, #111)) !important;
}
.woocommerce .price del{
  color: var(--bk-regular-price-with-sale-color, var(--bk-price-color, #111)) !important;
  opacity: 1;
}
.woocommerce .price ins{
  color: var(--bk-sale-price-color, var(--bk-price-color, #111)) !important;
}

/* Sale badge: customizable (bg + text) */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale{
  background: var(--bk-sale-badge-bg, #38c9ff) !important;
  color: var(--bk-sale-badge-text,#000) !important;
}

/* Payments: creative auto-moving marquee (no cropping) */
.bk-payments__marquee{overflow:hidden;position:relative;}
.bk-payments__track{display:flex;flex-wrap:nowrap;gap:14px;width:max-content;animation:bk-marquee 18s linear infinite;will-change:transform;}
.bk-payments__marquee:hover .bk-payments__track{animation-play-state:paused;}
.bk-payments__item{padding:10px 14px;border:1px solid var(--bk-line);border-radius:999px;background:rgba(0,0,0,.02);backdrop-filter:saturate(120%) blur(6px);}
.bk-payments__item a{display:flex;align-items:center;justify-content:center}
.bk-payments__item img{height:34px;width:auto;max-width:140px;object-fit:contain;display:block}

@keyframes bk-marquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

/* Brands: always 4 per row (mobile + desktop). JS will auto-rotate positions */
.bk-brands__grid{grid-template-columns:repeat(4,1fr)!important;}
.bk-brand{min-height:54px;}
.bk-brand img{padding:10px;}

/* Smooth rotate effect */
.bk-brands__grid{transition:opacity .25s ease;}
.bk-brands__grid.is-fading{opacity:.15;}

/* Sale badge (base) */
.bk-sale-badge{display:inline-flex;align-items:center;justify-content:center;pointer-events:none;}
.bk-card__price.bk-price--on-sale{display:flex;gap:8px;align-items:baseline;flex-wrap:wrap}

/* =====================================
   Dual Menu Tabs (Primary / Secondary)
===================================== */
.bk-dual-menu{display:flex;flex-direction:column;gap:8px;}
.bk-dual-tabs{display:flex;gap:10px;align-items:center;}
.bk-dual-tab{
  border:1px solid rgba(0,0,0,.14);
  background:rgba(0,0,0,.02);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
  opacity:.55;
  transition:opacity .15s ease, background .15s ease, border-color .15s ease;
}
.bk-dual-tab.is-active{opacity:1;background:#fff;border-color:rgba(0,0,0,.22);}

.bk-dual-panel{display:none;}
.bk-dual-panel.is-active{display:block;}

/* Desktop: keep menus horizontal like before */
@media (min-width: 992px){
  .bk-dual-menu{gap:6px;}
  .bk-dual-panels .bk-menu{display:flex;gap:18px;}
}

/* Mobile: make tabs full width and panels scroll nicely */
@media (max-width: 991px){
  .bk-dual-menu--mobile .bk-dual-tabs{gap:8px;}
  .bk-dual-menu--mobile .bk-dual-tab{flex:1;text-align:center;padding:10px 12px;}
}


/* ----------------------------------------------------------
   Dark mode (final overrides)
   NOTE: This block is intentionally at the END of the file so
   it wins against earlier "force header" rules.
---------------------------------------------------------- */
body.bk-dark{
  background:#0b0b0b !important;
  color:#f5f5f5 !important;
}

body.bk-dark a{color:#fff !important;}

/* Header */
body.bk-dark .bk-header{
  background:#000 !important;
  color:#fff !important;
}
body.bk-dark .bk-header a,
body.bk-dark .bk-header nav a,
body.bk-dark .bk-header .menu a,
body.bk-dark .bk-header .bk-icon-btn,
body.bk-dark .bk-header .bk-ico{
  color:#fff !important;
}
body.bk-dark .bk-header .sub-menu,
body.bk-dark .bk-header .sub-menu a{color:#fff !important;}

/* Cards / product grids */
body.bk-dark .bk-card,
body.bk-dark .woocommerce ul.products li.product,
body.bk-dark .woocommerce-page ul.products li.product{
  background:#111 !important;
  color:#f5f5f5 !important;
}

/* Single product page */
body.bk-dark.single-product,
body.bk-dark .single-product .site,
body.bk-dark .single-product main,
body.bk-dark .single-product .bk-container,
body.bk-dark .single-product .woocommerce,
body.bk-dark .single-product .product,
body.bk-dark .single-product .woocommerce-tabs,
body.bk-dark .single-product .related.products{
  background:#0b0b0b !important;
  color:#f5f5f5 !important;
}

/* Inputs */
body.bk-dark input,
body.bk-dark select,
body.bk-dark textarea{
  background:#0f0f0f !important;
  color:#fff !important;
  border-color:rgba(255,255,255,.18) !important;
}

/* Keep sale badge readable */
body.bk-dark .woocommerce span.onsale,
body.bk-dark .woocommerce ul.products li.product .onsale,
body.bk-dark .woocommerce div.product span.onsale{
  background:var(--bk-sale-badge-bg,#b04cff) !important;
  color:var(--bk-sale-badge-text,#fff) !important;
}









/* ===== Product Payment Icons ===== */
.bk-product-payments {
  margin-top: 15px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.bk-product-payments img {
  height: 26px;
  width: auto;
  opacity: 0.9;
}


/* ===== Product Payment Icons (Advanced) ===== */
.bk-product-payments {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bk-product-payments img {
  height: 28px;
  opacity: 0.95;
}

.bk-product-payments-text {
  margin-top: 6px;
  font-size: 13px;
  color: #777;
}


/* ===== Payment Icons Mobile Only ===== */
@media (min-width: 769px) {
  .bk-mobile-only {
    display: none;
  }
}


/* ===== FIX Payment Icons Mobile Layout ===== */
.bk-product-payments,
.bk-product-payments-text {
  position: relative;
  z-index: 2;
  clear: both;
}

@media (max-width: 768px) {

  .single-product .summary {
    padding-bottom: 20px;
  }

  .bk-product-payments {
    margin-top: 14px;
    justify-content: flex-start;
  }

  .bk-product-payments img {
    height: 26px;
  }

}


/* ===== Payment Icons – Mobile Safe ===== */
.bk-product-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.bk-product-payments img {
  height: 26px;
}

.bk-product-payments-text {
  margin-top: 6px;
  font-size: 13px;
  color: #777;
}


.bk-faq-section{background:#f2f2f2;padding:40px 0}
.bk-faq-item{background:#eaeaea;margin-bottom:10px}
.bk-faq-question{width:100%;padding:15px;border:0;background:none;font-weight:600}
.bk-faq-answer{display:none;padding:15px;background:#fff}
.bk-faq-item.active .bk-faq-answer{display:block}


/* ===== FAQ PRO ===== */
.bk-faq-pro{background:#f3f3f3;padding:50px 0}
.bk-faq-pro h2{text-align:center;font-size:30px;margin-bottom:8px}
.bk-faq-desc{text-align:center;color:#555;margin-bottom:30px}

.bk-faq-item{background:#eee;border-radius:6px;margin-bottom:12px;overflow:hidden}
.bk-faq-head{display:flex;justify-content:space-between;align-items:center;padding:16px;cursor:pointer}
.bk-faq-question{font-size:16px;font-weight:600}
.bk-faq-toggle img{width:18px;height:18px;transition:transform .3s}
.bk-faq-body{display:none;padding:16px;background:#fff;color:#444;font-size:14px}

.bk-faq-item.active .bk-faq-body{display:block}
.bk-faq-item.active .bk-faq-toggle img{transform:rotate(180deg)}


/* ===== FAQ PRO Polished UI ===== */
.bk-faq-item {border:1px solid #ddd}
.bk-faq-head {background:#f2f2f2}
.bk-faq-toggle {background:#fff;border-radius:50%;width:26px;height:26px;display:flex;align-items:center;justify-content:center}


/* ===== FAQ Answer Styled List ===== */
.bk-faq-body ul {
  margin: 0;
  padding-left: 18px;
}

.bk-faq-body li {
  list-style: disc;
  margin-bottom: 8px;
  line-height: 1.6;
}

.bk-faq-body p {
  margin-bottom: 8px;
}
