/*
Theme Name: Babolat Child
Template: storefront
Version: 0.1.0
*/

:root{
  --bbl-max: 1320px;
  --bbl-pad: 20px;
  --bbl-text: #0b0b0d;
  --bbl-muted: #646970;
  --bbl-line: #dcdcde;
  --bbl-bg: #ffffff;
  --bbl-soft: #f6f7f7;
  --bbl-accent: #000000;
}

.bbl-container{
  max-width: var(--bbl-max);
  margin: 0 auto;
  padding: 0 var(--bbl-pad);
}

.bbl-topbar{
  background: #0b0b0d;
  color: #fff;
  font-size: 12px;
  padding: 10px 0;
}
.bbl-topbar__text{opacity:.9}

.bbl-header{
  background: var(--bbl-bg);
  border-bottom: 1px solid var(--bbl-line);
}
.bbl-header__row{
  display:flex;
  gap:16px;
  align-items:center;
  padding: 16px 0;
}
.bbl-header__left{flex:0 0 auto}
.bbl-header__center{flex:1 1 auto}
.bbl-header__right{flex:0 0 auto; display:flex; gap:14px; align-items:center}

.bbl-logo img{height:40px; width:auto}
.bbl-logo__text{font-weight:700; letter-spacing:.5px; color: var(--bbl-text); text-decoration:none}

.bbl-iconlink{
  text-decoration:none;
  color: var(--bbl-text);
  font-weight:600;
  font-size:14px;
}

.bbl-search{display:flex; gap:8px}
.bbl-search__input{
  width:100%;
  border:1px solid var(--bbl-line);
  border-radius: 999px;
  padding: 10px 14px;
  font-size:14px;
}
.bbl-search__btn{
  border:1px solid var(--bbl-text);
  background: var(--bbl-text);
  color:#fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight:700;
  cursor:pointer;
}

.bbl-nav{border-top:1px solid var(--bbl-line)}
.bbl-menu{
  list-style:none;
  display:flex;
  gap:20px;
  margin:0;
  padding: 12px 0;
}
.bbl-menu a{
  text-decoration:none;
  color: var(--bbl-text);
  font-weight:700;
  text-transform: uppercase;
  letter-spacing:.4px;
  font-size:12px;
}

/* HERO */
.bbl-hero{
  background: #0b0b0d;
  color:#fff;
}
.bbl-hero__slide{
  min-height: 520px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.2)),
    url('') center/cover no-repeat; /* ieliksi bildi vēlāk */
}
.bbl-hero__content{max-width: 560px; padding: 72px 0}
.bbl-hero h1{font-size:48px; line-height:1.05; margin:0 0 12px}
.bbl-hero p{margin:0 0 18px; opacity:.9; font-size:16px}

/* Buttons */
.bbl-btn{
  display:inline-block;
  background:#fff;
  color:#0b0b0d;
  padding: 12px 18px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
}
.bbl-btn--outline{
  background:transparent;
  color: var(--bbl-text);
  border:2px solid var(--bbl-text);
}

/* Tiles */
.bbl-tiles{padding: 56px 0; background: #fff}
.bbl-tiles__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.bbl-tile{
  position:relative;
  border-radius:16px;
  min-height: 220px;
  border:1px solid var(--bbl-line);
  background: var(--bbl-soft);
  text-decoration:none;
  color: var(--bbl-text);
  padding: 18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.bbl-tile__title{font-size:22px; font-weight:900}
.bbl-tile__cta{font-weight:800; text-transform:uppercase; font-size:12px; letter-spacing:.5px}

/* Story */
.bbl-story{padding: 72px 0; background:#fff}
.bbl-story__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  align-items:center;
}
.bbl-eyebrow{
  text-transform:uppercase;
  letter-spacing:.6px;
  font-size:12px;
  color: var(--bbl-muted);
  font-weight:800;
}
.bbl-story h2{font-size:36px; margin:10px 0}
.bbl-story p{color: var(--bbl-muted); font-size:16px}
.bbl-story__media{
  border-radius:16px;
  background: var(--bbl-soft);
  min-height: 320px;
  border:1px solid var(--bbl-line);
}

/* USP */
.bbl-usp{padding: 40px 0; background: var(--bbl-soft); border-top:1px solid var(--bbl-line)}
.bbl-usp__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.bbl-usp__item{
  background:#fff;
  border:1px solid var(--bbl-line);
  border-radius:16px;
  padding: 16px;
}
.bbl-usp__title{font-weight:900}
.bbl-muted{color: var(--bbl-muted)}

/* Footer */
.bbl-footer{border-top:1px solid var(--bbl-line); padding: 40px 0; background:#fff}
.bbl-footer__cols{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.bbl-footer__bottom{margin-top:18px; color: var(--bbl-muted); font-size:12px}

/* Responsive */
@media (max-width: 900px){
  .bbl-header__row{flex-wrap:wrap}
  .bbl-header__center{flex: 1 1 100%}
  .bbl-menu{flex-wrap:wrap}
  .bbl-hero__slide{min-height: 420px}
  .bbl-hero h1{font-size:36px}
  .bbl-tiles__grid{grid-template-columns: 1fr}
  .bbl-story__grid{grid-template-columns: 1fr}
  .bbl-usp__grid{grid-template-columns: 1fr 1fr}
}


/* Mega menu */
.bbl-menu{position:relative}
.bbl-menu__item{position:relative}
.bbl-menu__link{display:inline-block; padding: 6px 0}

.bbl-menu__item.has-mega > .bbl-mega{
  position:absolute;
  left:0;
  top:100%;
  width: min(1320px, calc(100vw - 40px));
  transform: translateY(10px);
  opacity:0;
  pointer-events:none;
  transition: all .18s ease;
  z-index: 999;
}

.bbl-menu__item.has-mega:hover > .bbl-mega,
.bbl-menu__item.has-mega:focus-within > .bbl-mega{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

.bbl-mega{
  background:#fff;
  border:1px solid var(--bbl-line);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.bbl-mega__inner{
  padding: 18px;
}

.bbl-mega__cols{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bbl-mega__col{margin:0}
.bbl-mega__colhead a{
  text-decoration:none;
  color: var(--bbl-text);
  font-weight: 900;
  display:inline-block;
  margin-bottom: 8px;
}

.bbl-mega__links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.bbl-mega__link{
  text-decoration:none;
  color: var(--bbl-text);
  font-weight: 600;
  font-size: 14px;
}

.bbl-mega__link:hover{
  text-decoration: underline;
}

/* Mobile fallback: disable mega dropdown hover panels */
@media (max-width: 900px){
  .bbl-menu__item.has-mega > .bbl-mega{
    position:static;
    width:auto;
    transform:none;
    opacity:1;
    pointer-events:auto;
    box-shadow:none;
    border-radius: 0;
    border: 0;
  }
  .bbl-mega__cols{grid-template-columns: 1fr 1fr}
}


.bbl-menu__link {
  position: relative;
  padding-bottom: 10px;
}

.bbl-menu__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

/* Nav wrapper */
.bbl-nav {
  border-top: 1px solid rgba(0,0,0,.06);
}

/* Nekāds justify-content: center */
.bbl-nav .bbl-container {
  display: block;
}

/* Pats menu */
.bbl-menu {
  display: flex;
  justify-content: flex-start;   /* ← galvenais */
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Top item */
.bbl-menu__item {
  position: relative;
}

/* Top link */
.bbl-menu__link {
  display: inline-block;
  padding: 18px 0;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
  text-decoration: none;
  color: #111;
}


.bs-shop-layout{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items:start;
  margin: 24px 0;
}

.bs-shop-filters{
  border-right: 1px solid #eee;
  padding-right: 16px;
}

.bs-shop-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 16px;
}

.bs-filter-widget{
  margin-bottom: 18px;
}

.bs-filter-title{
  margin: 0 0 10px;
  font-size: 18px;
}

@media (max-width: 980px){
  .bs-shop-layout{
    grid-template-columns: 1fr;
  }
  .bs-shop-filters{
    border-right:0;
    padding-right:0;
  }
}

.bs-shop-layout{
  display:grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items:start;
  margin: 24px 0;
}

.bs-shop-filters{
  padding-right: 16px;
  border-right: 1px solid #eee;
}

.bs-shop-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  margin-bottom: 18px;
}

.bs-filter-block{ margin-bottom: 22px; }
.bs-filter-block h3{ margin:0 0 10px; font-size:20px; }

.bs-cat-list,
.bs-cat-children{
  list-style:none;
  margin:0;
  padding:0;
}

.bs-cat-children{
  padding-left:14px;
  margin-top:6px;
  margin-bottom:10px;
}

.bs-cat-item{ margin:6px 0; }
.bs-cat-item a{ text-decoration:none; }
.bs-cat-item.is-active a{ font-weight:700; }

.bs-muted{ color:#666; font-size:13px; }

@media (max-width: 980px){
  .bs-shop-layout{ grid-template-columns: 1fr; }
  .bs-shop-filters{ border-right:0; padding-right:0; }
}


.bs-shop-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}
.bs-shop-top-left .woocommerce-ordering{
  margin:0;
}
.bs-shop-top-center .woocommerce-result-count{
  margin:0;
  white-space:nowrap;
}


.bs-shop-filters{
  padding-right:16px;
  border-right:1px solid #eee;
}

.bs-cat-list > li{
  margin:0;
  padding:10px 0;
  border-bottom:1px solid #f0f0f0;
}

.bs-cat-children{
  padding-left:14px;
  margin:6px 0 0;
}

.bs-cat-children .bs-cat-item{
  padding:6px 0;
  border-bottom:0;
  opacity:.9;
}

.bs-cat-item a{
  color:#111;
  text-decoration:none;
}

.bs-cat-item a:hover{
  text-decoration:underline;
}

.bs-cat-item.is-active > a{
  font-weight:700;
}

.bs-shop-layout{
  display:grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items:start;
  margin: 24px 0;
}

.bs-shop-filters{
  padding-right:16px;
  border-right:1px solid #eee;
}

.bs-cat-list > li{
  padding:10px 0;
  border-bottom:1px solid #f0f0f0;
  margin:0;
}

.bs-cat-children{
  padding-left:14px;
  margin:6px 0 0;
}

.bs-cat-item a{
  color:#111;
  text-decoration:none;
}

.bs-cat-item a:hover{ text-decoration:underline; }

.bs-cat-item.is-active > a{ font-weight:700; }

@media (max-width:980px){
  .bs-shop-layout{ grid-template-columns:1fr; }
  .bs-shop-filters{ border-right:0; padding-right:0; }
}


.bs-prod-slider{
  margin: 28px 0;
}

.bs-prod-slider__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.bs-prod-slider__title{
  margin:0;
  font-size:28px;
  font-weight:700;
}

.bs-prod-slider__nav{
  display:flex;
  gap:10px;
}

.bs-prod-slider__btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid #e5e5e5;
  background:#fff;
  font-size:26px;
  line-height:1;
  cursor:pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

.bs-prod-slider__viewport{
  overflow:hidden;
}

.bs-prod-slider__track{
  display:flex;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
  transition: transform 350ms ease;
  will-change: transform;
}

.bs-prod-slider__track{
  gap: 18px;
}

.bs-prod-slider__item{
  flex: 0 0 calc((100% - 54px) / 4); /* 4 kartītes + 3 gaps */
}

.bs-card{
  border:1px solid #eee;
  background:#fff;
  border-radius:0;
}

.bs-card__img{
  display:block;
  padding:18px 18px 6px;
}

.bs-card__img img{
  width:100%;
  height:280px;
  object-fit:contain;
}

.bs-card__body{
  padding:12px 18px 18px;
}

.bs-card__cat{
  font-size:13px;
  opacity:.75;
  margin-bottom:2px;
}

.bs-card__title{
  display:block;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  color:#111;
  margin-bottom:8px;
}

.bs-card__price{
  font-size:18px;
  font-weight:600;
}

.bs-prod-slider__dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:14px;
}

.bs-prod-slider__dot{
  width:8px;
  height:8px;
  border-radius:2px;
  border:1px solid #111;
  background:transparent;
  cursor:pointer;
  opacity:.45;
}

.bs-prod-slider__dot.is-active{
  opacity:1;
  background:#111;
}

@media (max-width: 1100px){
  .bs-prod-slider__item{ flex-basis: calc((100% - 36px) / 3); }
  .bs-card__img img{ height:240px; }
}

@media (max-width: 780px){
  .bs-prod-slider__item{ flex-basis: calc((100% - 18px) / 2); }
  .bs-card__img img{ height:220px; }
}

@media (max-width: 520px){
  .bs-prod-slider__item{ flex-basis: 100%; }
}


.bs-prod-slider{
  margin: 28px auto;
  max-width: 1400px;   /* maini pēc vajadzības: 1100–1400 */
  padding: 0 18px;     /* malas uz mazākiem ekrāniem */
}

.bs-prod-slider{
  position: relative;
}

.bs-prod-slider__nav{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* lai netraucē klikšķus uz kartēm */
  padding: 0 6px;
  z-index: 5;
}

.bs-prod-slider__btn{
  pointer-events: auto;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.bs-prod-slider__head{
  display:block;
  margin-bottom: 12px;
}

.bs-prod-slider__title{
  margin:0;
  font-size: 28px;
  font-weight: 800;
}


@media (max-width: 1100px){
  .bs-prod-slider__item{ flex-basis: 240px; }
}
@media (max-width: 780px){
  .bs-prod-slider__item{ flex-basis: 70%; } /* 1.5 kartītes redzamas */
}
@media (max-width: 520px){
  .bs-prod-slider__item{ flex-basis: 85%; }
}

.bs-card{
  border: 0;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.bs-card__img{
  padding: 18px;
}

.bs-card__img img{
  width:100%;
  height: 280px;
  object-fit: contain;
  display:block;
}

.bs-card__body{
  padding: 10px 18px 18px;
}

.bs-card__cat{
  font-size: 12px;
  opacity: .8;
  margin-bottom: 2px;
}

.bs-card__title{
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.bs-card__price{
  font-size: 18px;
  font-weight: 700;
}

.bs-prod-slider__dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top: 16px;
}

.bs-prod-slider__dot{
  width: 8px;
  height: 8px;
  border-radius: 0;
  border: 1px solid #111;
  background: transparent;
  opacity: .4;
}

.bs-prod-slider__dot.is-active{
  background:#111;
  opacity: 1;
}

.bs-prod-slider > *{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.bs-prod-slider__nav{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}

.bs-prod-slider__btn{
  pointer-events: auto;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 0;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  font-size: 28px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.bs-prod-slider__viewport{
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

/* FULL WIDTH STRIP */
.bs-prod-slider-full{
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background: #74ecf7;
  padding: 70px 0;
}

/* INNER CONTAINER (centrēts saturs) */
.bs-prod-slider-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.bs-prod-slider-full{
  padding: 35px 0;
}

.bs-card__img img{
  height: 320px;   /* bija 280px */
}

.bs-prod-slider__track{
  gap: 18px;
}

@media (max-width: 1100px){
  .bs-prod-slider__item{ flex-basis: 240px; }
}

.bs-prod-slider__item{
  flex: 0 0 320px;
}

.bs-prod-slider__track{ gap: 18px; }


.bs-prod-slider__track{
  gap: 18px;
}

.bs-prod-slider__item{
  flex: 0 0 calc((100% - 54px) / 4); /* 4 kartītes + 3 gaps */
}

.bs-prod-slider__track{
  gap: 12px;   /* bija 18px */
}

.bs-prod-slider__item{
  flex: 0 0 calc((100% - 36px) / 4); /* 3 * 12px = 36px */
}

.bs-card{
  background: #fff;
  border: 1px solid #e2e2e2;  /* smalks border */
  box-shadow: none;           /* noņem lielo ēnu */
  transition: transform .2s ease, box-shadow .2s ease;
}


.bs-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.bs-card__img img{
  height: 300px;  /* mazliet lielāks */
}


.bs-prod-slider__viewport{
  overflow: hidden;
  padding-right: 0; 
}
.bs-prod-slider__track{
  transform: translate3d(0,0,0);
}

.bs-prod-slider__viewport{
  overflow: hidden;
  padding-right: 0;
  margin-left: -1px;
  margin-right: -1px;
}

.bs-prod-slider__track{
  transform: translate3d(0,0,0);
}

.bs-prod-slider__viewport{
  overflow: hidden;
  margin-left: -2px;
  margin-right: -2px;
}

.bs-prod-slider__viewport{
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.bs-prod-slider__viewport{
  background: #74ecf7;
}

.bs-prod-slider__viewport{
  overflow: hidden;
  transform: translate3d(0,0,0);
  margin-left: -2px;
  margin-right: -2px;
  background: #74ecf7;
}

.bs-prod-slider__viewport{
  overflow: hidden;
  margin-left: -2px;
  margin-right: -2px;
  background: #74ecf7;
}

.bs-prod-slider__track{
  transform: translate3d(0,0,0);
}


/* ===== Babolat UGC section fixes (Storefront override guard) ===== */

.bs-ugc { padding: 30px 0 45px; }
.bs-ugc__title { margin: 0 0 18px; }

/* svarīgākais: track nedrīkst wrapoties */
.bs-ugc .bs-ugc__track{
  display:flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: 16px !important;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.bs-ugc .bs-ugc__viewport{
  overflow: hidden !important;
}

/* piespiež kartītes būt vienāda platuma (nevis 100%) */
.bs-ugc .bs-ugc__card{
  flex: 0 0 calc((100% - (16px * 4)) / 5) !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

/* attēli lai neizstiepjas dīvaini */
.bs-ugc .bs-ugc__img{
  display:block;
  width:100% !important;
  height: 360px !important;
  object-fit: cover !important;
}

/* bultas lai nestāv ārā un nav nogrieztas */
.bs-ugc .bs-ugc__nav{
  z-index: 5 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.bs-ugc .bs-ugc__nav--prev{ left: 8px !important; }
.bs-ugc .bs-ugc__nav--next{ right: 8px !important; }

/* responsive */
@media (max-width:1100px){
  .bs-ugc .bs-ugc__card{ flex-basis: calc((100% - (16px * 3)) / 4) !important; }
  .bs-ugc .bs-ugc__img{ height: 330px !important; }
}
@media (max-width:900px){
  .bs-ugc .bs-ugc__card{ flex-basis: calc((100% - (16px * 2)) / 3) !important; }
  .bs-ugc .bs-ugc__img{ height: 300px !important; }
}
@media (max-width:650px){
  .bs-ugc .bs-ugc__card{ flex-basis: calc((100% - 16px) / 2) !important; }
  .bs-ugc .bs-ugc__img{ height: 260px !important; }
}

.bs-ugc .bs-ugc__track > a.bs-ugc__card { width: auto !important; }


/* ===== UGC centering fix ===== */

.bs-ugc__inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* lai wrapper būtu reference punkts pogām */
.bs-ugc__wrap{
  position: relative;
}

/* noņem lieko sānu padding, ja Storefront to liek */
.bs-ugc__viewport{
  padding: 0 !important;
}

/* ===== POGAS TIEŠI PIE BILDĒM ===== */

.bs-ugc__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  z-index: 10;
}

/* ŠIS IR SVARĪGAIS */
.bs-ugc__nav--prev{
  left: -22px;   /* puse no pogas platuma */
}

.bs-ugc__nav--next{
  right: -22px;  /* puse no pogas platuma */
}

/* hover efekts */
.bs-ugc__nav:hover{
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* Optional – ja gribi mazliet tuvāk bildēm */
@media (max-width: 1200px){
  .bs-ugc__nav--prev{ left: 0; }
  .bs-ugc__nav--next{ right: 0; }
}

.bbl-story__media{
  min-height:420px;
  background-image:url('/wp-content/themes/babolat-child/assets/images/babolat-story.png');
  background-size:cover;
  background-position:center;
  border-radius:12px;
}


/* ===== Babolat About Section ===== */

.bbl-about__title{
  color:#000;
}

.bbl-about p{
  color:#333;
}

.bbl-about p:last-of-type{
  margin-bottom:50px;
}

/* ===== UGC SHOW MORE BUTTON ===== */

.bs-ugc__footer{
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.bs-ugc__more{
  display:inline-block;
  padding:14px 32px;
  background:#000;
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  letter-spacing:.06em;
  text-transform:uppercase;
  border-radius:2px;
  transition:all .25s ease;
}

/* hover efekts */
.bs-ugc__more:hover{
  background:#111;
  transform:translateY(-2px);
}


/* =========================
   FOOTER TOP BAR
========================= */

.bbl-footer-top {
  background: #f4f4f4;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 25px 0;
}

.bbl-footer-top-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.bbl-footer-top-item {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bbl-footer-top-item .icon {
  font-size: 22px;
}



/* =========================
   MAIN FOOTER
========================= */

.bbl-footer {
  background: #111;
  color: #fff;
  padding: 70px 0 0;
}

.bbl-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.bbl-footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 25px;
}

.bbl-footer h5 {
  margin-top: 30px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .7;
}

.bbl-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bbl-footer ul li {
  margin-bottom: 12px;
  font-size: 14px;
  opacity: .75;
  transition: opacity .2s ease, transform .2s ease;
  cursor: pointer;
}

.bbl-footer ul li:hover {
  opacity: 1;
  transform: translateX(3px);
}



/* =========================
   BUTTON STYLE
========================= */

.bbl-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}

.bbl-btn--light {
  background: #fff;
  color: #111;
}

.bbl-btn--light:hover {
  background: #ddd;
}



/* =========================
   SOCIAL LIST
========================= */

.bbl-social li {
  font-size: 14px;
}



/* =========================
   FOOTER BOTTOM BAR
========================= */

.bbl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 60px;
  padding: 25px 0;
}

.bbl-footer-bottom .bbl-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.bbl-legal {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bbl-legal li {
  font-size: 13px;
  opacity: .7;
  cursor: pointer;
  transition: opacity .2s ease;
}

.bbl-legal li:hover {
  opacity: 1;
}



/* =========================
   CONTAINER FIX
========================= */

.bbl-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .bbl-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .bbl-footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 640px) {
  .bbl-footer-grid {
    grid-template-columns: 1fr;
  }

  .bbl-footer-top-grid {
    grid-template-columns: 1fr;
  }

  .bbl-footer-bottom .bbl-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .bbl-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}


.bbl-footer-logo {
  margin-bottom: 30px;
}

.bbl-footer-logo img {
  max-width: 140px;
  height: auto;
}

.bbl-footer a {
  color: inherit;
  text-decoration: none;
}

.bbl-footer a:hover {
  opacity: 1;
}


/* =========================
   TOP INFO BAR (FULL WIDTH)
========================= */

.bbl-footer-top-bar {
  width: 100%;
  background: #f3f3f3;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.bbl-footer-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.bbl-top-item {
  text-align: center;
  padding: 35px 20px;
  position: relative;
}

.bbl-top-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #ddd;
}

.bbl-top-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.bbl-top-text {
  font-size: 14px;
  font-weight: 500;
  color: #111;
}


@media (max-width: 1024px) {
  .bbl-footer-top-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .bbl-top-item:not(:last-child)::after {
    display: none;
  }

  .bbl-top-item {
    border-bottom: 1px solid #e5e5e5;
  }
}

@media (max-width: 640px) {
  .bbl-footer-top-inner {
    grid-template-columns: 1fr;
  }
}


.bbl-top-icon {
  font-size: 26px;
  color: #111;     /* vienkrāsaina */
  margin-bottom: 12px;
  transition: opacity .2s ease;
}

.bbl-top-item:hover .bbl-top-icon {
  opacity: .6;
}


/* TOP INFO BAR */
.bbl-footer-top-bar{
  width:100%;
  background:#f3f3f3;
  border-top:1px solid #e5e5e5;
  border-bottom:1px solid #e5e5e5;
}

.bbl-footer-top-inner{
  max-width:1400px;
  margin:0 auto;
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0,1fr)) !important;
}

.bbl-top-item{
  text-align:center;
  padding:35px 20px;
  position:relative;
}

.bbl-top-item:not(:last-child)::after{
  content:"";
  position:absolute;
  right:0;
  top:25%;
  height:50%;
  width:1px;
  background:#ddd;
}

.bbl-top-icon{
  width:26px;
  height:26px;
  stroke:#111;
  stroke-width:1.5;
  margin:0 auto 12px;
  display:block;
}

.bbl-top-text{
  font-size:14px;
  font-weight:500;
  color:#111;
}

/* Responsive */
@media (max-width:1024px){
  .bbl-footer-top-inner{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
  }
  .bbl-top-item:not(:last-child)::after{ display:none; }
  .bbl-top-item{ border-bottom:1px solid #e5e5e5; }
}
@media (max-width:640px){
  .bbl-footer-top-inner{
    grid-template-columns:1fr !important;
  }
}


/* TOP BAR - height & spacing fix */
.bbl-top-item{
  padding: 18x 12px !important;  /* bija 35px */
}

.bbl-top-text{
  line-height: 1.2;
}

/* Storefront bieži uzliek p margin */
.bbl-footer-top-bar p,
.bbl-footer-top-bar .bbl-top-text{
  margin: 0 !important;
}

.bbl-top-icon{
  width: 22px;
  height: 22px;
  stroke: #111;
  stroke-width: 1.5;
  margin: 0 auto 8px;
  display: block;
}

/* TOP BAR height fix */
.bbl-top-item { padding: 14px 14px !important; }
.bbl-top-icon { margin-bottom: 6px !important; }
.bbl-top-text { margin: 0 !important; line-height: 1.2; }


.bbl-footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.bbl-footer-logo svg {
  width: 150px;     /* pielāgo */
  height: auto;
  display: block;
}

/* ja SVG ir melns (fill=#000) un uz tumša fona pazūd */
.bbl-footer-logo svg * {
  fill: #fff !important;
  stroke: #fff !important;
}


/* Footer headings */
.bbl-footer h4,
.bbl-footer h5 {
  color: #ffffff !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

/* Footer button */
.bbl-footer .bbl-btn--light {
  background: #ffffff;
  color: #000000 !important;
  font-weight: 600;
}

.bbl-footer .bbl-btn--light:hover {
  background: #e5e5e5;
  color: #000000 !important;
}

/* Tennis sub-nav bar */
.sport-subnav-wrap{
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.sport-subnav-inner{
  max-width: 1200px;          /* pieskaņo savam container */
  margin: 0 auto;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.sport-subnav-title span{
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
  display:block;
  white-space: nowrap;
}

.sport-subnav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap: 22px;
  flex-wrap: nowrap;
  overflow-x: auto;           /* ja daudz kategoriju – scroll pa horizontāli */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;      /* Firefox */
}
.sport-subnav ul::-webkit-scrollbar{ display:none; }

.sport-subnav a{
  display:inline-block;
  text-decoration:none;
  color:#111;
  font-size:14px;
  line-height:1;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  opacity: .9;
}

.sport-subnav a:hover{
  opacity: 1;
}

.sport-subnav a.is-active{
  border-bottom-color:#111;   /* aktīvajai kategorijai */
  opacity: 1;
}

/* Mobile: virsrakstu var atstāt, bet samazina */
@media (max-width: 768px){
  .sport-subnav-inner{ padding: 14px 12px; gap: 18px; }
  .sport-subnav-title span{ font-size: 18px; }
}


.bblt-single-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:48px;
  align-items:start;
}

/* sticky right column */
.bblt-single-summary{
  position: sticky;
  top: 110px; /* pieskaņo header augstumam */
}

/* typography */
.bblt-single-summary .product_title{
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 8px;
}
.bblt-single-cat{
  font-size: 13px;
  opacity: .7;
  margin: 0 0 10px;
}
.bblt-single-summary .price{
  font-size: 22px;
  font-weight: 800;
  margin: 12px 0 10px;
}

/* big button */
.bblt-single-summary .single_add_to_cart_button{
  width:100%;
  min-height:56px;
  background:#000;
  border:0;
  border-radius:0;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

/* mobile */
@media (max-width: 900px){
  .bblt-single-grid{ grid-template-columns:1fr; gap:24px; }
  .bblt-single-summary{ position: static; }
}


/* === SINGLE PRODUCT LAYOUT (Babolat) === */

.bblt-single-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items:start;
}

/* noņem Storefront/Woo floatus un width */
.bblt-single .woocommerce-product-gallery,
.bblt-single .summary{
  float: none !important;
  width: 100% !important;
}

/* sticky info labajā pusē */
.bblt-single-summary{
  position: sticky;
  top: 110px; /* pielāgo header augstumam */
}

/* === GALLERY: thumbs pa kreisi, bilde pa labi === */
.bblt-single-media .woocommerce-product-gallery{
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  column-gap: 16px;
  align-items: start;
}

.bblt-single-media .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs{
  position: static !important;
  grid-column: 1;
  grid-row: 1;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.bblt-single-media .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li{
  width: 90px !important;
  margin: 0 !important;
}

.bblt-single-media .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs img{
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 6px;
  display:block;
}

.bblt-single-media .woocommerce-product-gallery .flex-viewport{
  grid-column: 2;
  grid-row: 1;
  margin: 0 !important;
}

/* typography */
.bblt-single-summary .product_title{
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 6px;
}

.bblt-single-cat{
  font-size: 13px;
  opacity: .7;
  margin: 0 0 10px;
}

.bblt-single-summary .price{
  font-size: 22px;
  font-weight: 800;
  margin: 12px 0 10px;
}

.bblt-perks{
  display:grid;
  gap:6px;
  font-size: 12px;
  opacity: .8;
  margin: 0 0 14px;
}

.bblt-single-summary form.cart{
  display:grid;
  gap: 16px;
}

/* big button */
.bblt-single-summary .single_add_to_cart_button{
  width:100%;
  min-height:56px;
  background:#000;
  border:0;
  border-radius:0;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

/* Mobile */
@media (max-width: 900px){
  .bblt-single-grid{ grid-template-columns:1fr; gap:24px; }
  .bblt-single-summary{ position: static; }
  .bblt-single-media .woocommerce-product-gallery{
    grid-template-columns: 1fr;
  }
  .bblt-single-media .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs{
    flex-direction: row;
    overflow-x: auto;
  }
  .bblt-single-media .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li{
    width: 72px !important;
  }
  .bblt-single-media .woocommerce-product-gallery .flex-viewport{
    grid-column: 1;
  }
}


/* === Babolat-like gallery === */
.bblt-gallery{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items:start;
}

.bblt-gallery__thumbs .bblt-gallery__thumb{
  padding: 6px;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  cursor:pointer;
}

.bblt-gallery__thumbs img{
  width:100%;
  height:auto;
  display:block;
}

.bblt-gallery__main{
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  padding: 18px;
}

.bblt-gallery__main img{
  width:100%;
  height:auto;
  display:block;
  object-fit: contain;
}

/* slick spacing */
.bblt-gallery__thumbs .slick-slide{ margin: 0 0 12px; }
.bblt-gallery__thumbs .slick-slide:last-child{ margin-bottom: 0; }

/* active thumb */
.bblt-gallery__thumbs .slick-current .bblt-gallery__thumb{
  border-color:#000;
}

/* mobile: thumbs zem bildes */
@media (max-width: 900px){
  .bblt-gallery{ grid-template-columns: 1fr; }
  .bblt-gallery__thumbs{ order: 2; }
  .bblt-gallery__main{ order: 1; }

  .bblt-gallery__thumbs .slick-track{ display:flex !important; }
  .bblt-gallery__thumbs .slick-slide{ margin: 0 12px 0 0; }
}


/* Layout */
.bblt-single-grid{
  display:grid;
  grid-template-columns: minmax(520px, 1.2fr) minmax(360px, .8fr);
  gap: 56px;
  align-items:start;
}

/* Neļauj Storefront floatiem lauzt */
.bblt-single .woocommerce-product-gallery,
.bblt-single .summary{
  float:none !important;
  width:100% !important;
}

/* Gallery */
.bblt-gallery{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items:start;
  max-width: 820px;      /* <-- šis neļauj bildei kļūt “pa visu ekrānu” */
}

.bblt-gallery__main{
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  padding: 18px;
}

.bblt-gallery__main img{
  width:100%;
  height:auto;
  max-height: 720px;     /* <-- šis ierobežo augstumu */
  object-fit: contain;
  display:block;
}

.bblt-gallery__thumbs .bblt-gallery__thumb{
  padding: 6px;
  border: 1px solid rgba(0,0,0,.12);
  background:#fff;
  cursor:pointer;
}

.bblt-gallery__thumbs img{ width:100%; height:auto; display:block; }

.bblt-gallery__thumbs .slick-slide{ margin: 0 0 12px; }
.bblt-gallery__thumbs .slick-slide:last-child{ margin-bottom: 0; }

.bblt-gallery__thumbs .slick-current .bblt-gallery__thumb{ border-color:#000; }

/* Summary */
.bblt-single-summary{
  position: sticky;
  top: 110px;
}

.bblt-single-summary form.cart{ display:grid; gap:16px; }

.bblt-single-summary .single_add_to_cart_button{
  width:100%;
  min-height:56px;
  background:#000;
  border:0;
  border-radius:0;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

/* Mobile */
@media (max-width: 900px){
  .bblt-single-grid{ grid-template-columns:1fr; gap:24px; }
  .bblt-single-summary{ position: static; }
  .bblt-gallery{ max-width: 100%; grid-template-columns: 1fr; }
  .bblt-gallery__thumbs{ order:2; }
  .bblt-gallery__main{ order:1; }
  .bblt-gallery__thumbs .slick-track{ display:flex !important; }
  .bblt-gallery__thumbs .slick-slide{ margin: 0 12px 0 0; }
}
/* Pārņemam pilnu kontroli */
.bblt-single-grid{
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(320px, 420px);
  column-gap: 20px;
  justify-content: center;
  align-items: start;
  width: 100%;
}

.bblt-single-media,
.bblt-single-summary{
  min-width: 0;
}

/* Noņem jebkādus liekus width no child elementiem */
.bblt-single-media,
.bblt-single-summary{
  width: auto !important;
  max-width: none !important;
}

/* Labā puse */
.bblt-single-summary{
  margin: 0;
  justify-self: start;
}


.bblt-sections{
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 16px;
}

.bblt-section{
  padding: 34px 0;
  border-top: 1px solid rgba(0,0,0,.10);
}

.bblt-h2{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .03em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.bblt-desc{
  max-width: 920px;
  line-height: 1.7;
}

.bblt-advantages{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 60px;
}

.bblt-h3{
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.bblt-adv p{
  margin: 0;
  opacity: .9;
  line-height: 1.6;
}

.bblt-tech{
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.bblt-tech-row{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.bblt-tech-k{
  font-weight: 800;
}

.bblt-tech-v{
  opacity: .9;
}

@media (max-width: 900px){
  .bblt-advantages{ grid-template-columns: 1fr; gap: 22px; }
  .bblt-tech-row{ grid-template-columns: 1fr; }
}

.bblt-shop-layout{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 16px;
}

.bblt-shop-filters{
  border-right: 1px solid rgba(0,0,0,.08);
  padding-right: 24px;
}

.bblt-filter-block{
  margin-bottom: 22px;
}

.bblt-filter-block h3{
  font-weight: 900;
  font-size: 22px;
  margin: 18px 0 12px;
}

.bblt-reset{
  width:100%;
  height:44px;
  border:1px solid #000;
  background:#fff;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
}

.bblt-cat-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 8px;
}

.bblt-cat-list a{
  text-decoration:none;
  color:#111;
}

.bblt-shop-results .woocommerce-result-count{
  margin: 0 0 16px;
  text-align: center; /* ja gribi kā bildē, ieliec center */
}

/* Mobile */
@media (max-width: 900px){
  .bblt-shop-layout{
    grid-template-columns: 1fr;
  }
  .bblt-shop-filters{
    border-right:0;
    padding-right:0;
  }
}


/* === Product Card (Babolat style) === */
.bblt-card{
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  padding: 18px;
}

.bblt-card__link{
  text-decoration:none;
  color:inherit;
  display:block;
}

.bblt-card__media{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 10px 0 18px;
}

.bblt-card__media img{
  max-height: 250px;
  width:auto;
  height:auto;
  object-fit: contain;
}

.bblt-card__badge-row{
  height: 18px;
  display:flex;
  align-items:center;
}

.bblt-card__dot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #f3ff00; /* tu vari to nomainīt */
  border: 2px solid rgba(0,0,0,.15);
  display:inline-block;
}

.bblt-card__divider{
  width: 56px;
  height: 1px;
  background: rgba(0,0,0,.25);
  margin: 10px 0 12px;
}

.bblt-card__cats{
  font-size: 12px;
  opacity: .8;
  margin-bottom: 4px;
}

.bblt-card__title{
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px;
}

.bblt-card__rating{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}

.bblt-card__rating .star-rating{
  margin: 0 !important;
}

.bblt-card__rating-text{
  font-size: 12px;
  opacity: .85;
}

.bblt-card__price{
  font-size: 18px;
  font-weight: 800;
}

/* noņem default Woo “Add to cart” pogu uz kartītes, ja tā lec ārā */
.bblt-card .button{
  display:none !important;
}

/* Visa product card teksta izlīdzināšana pa kreisi */
.bblt-card,
.bblt-card *{
  text-align: left !important;
}

/* Drošībai arī konkrētiem elementiem */
.bblt-card__meta,
.bblt-card__title,
.bblt-card__cats,
.bblt-card__rating,
.bblt-card__price{
  text-align: left !important;
}

/* Centrē pagination */
.woocommerce-pagination{
  margin: 40px 0;
  text-align: center;
}

.woocommerce-pagination ul.page-numbers{
  display: inline-flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}


/* ===== FORCE CENTER PAGINATION ===== */

.woocommerce-pagination{
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  margin: 50px 0;
}

.woocommerce-pagination ul.page-numbers{
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* noņem Storefront float */
.woocommerce-pagination ul.page-numbers li{
  float: none !important;
}

/* pamata stils */
.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  background: transparent;
  color: #111;
}

/* aktīvā lapa */
.woocommerce-pagination ul.page-numbers li .current{
  background: #000;
  color: #fff;
}

/* hover */
.woocommerce-pagination ul.page-numbers li a:hover{
  background: #000;
  color: #fff;
}

/* ACTIVE page: black bg + white number */
.woocommerce-pagination .page-numbers .current,
.woocommerce-pagination ul.page-numbers li span.current{
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

/* Optional: hover arī melns */
.woocommerce-pagination ul.page-numbers li a:hover{
  background: #000 !important;
  color: #fff !important;
}

.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span{
  background:#000 !important;
  color:#fff !important;
}

/* Global white background */
html,
body,
.site,
.site-content,
.content-area{
  background: #ffffff !important;
}


/* ===== Cart page layout ===== */
.woocommerce-cart .site-main{
  background:#fff;
}

.woocommerce-cart .woocommerce{
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 16px 60px;
}

/* steps bar */
.bblt-steps{
  border-top: 3px solid #5ee6ff;
  border-bottom: 3px solid #5ee6ff;
  background:#fff;
  margin: 0 0 24px;
}
.bblt-steps__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 16px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items:center;
  text-align:center;
}
.bblt-step__title{
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
}
.bblt-step__dot{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 2px solid #5ee6ff;
  font-weight: 800;
  font-size: 12px;
  background:#fff;
  color:#111;
}
.bblt-step.is-active .bblt-step__dot{
  background:#000;
  color:#fff;
  border-color:#000;
}

/* 2 columns: cart form + collaterals (totals/coupon) */
.woocommerce-cart form.woocommerce-cart-form{
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}

/* Cart table becomes “cards-like” */
.woocommerce-cart .shop_table{
  border: none;
}
.woocommerce-cart .shop_table thead{ display:none; }

.woocommerce-cart .shop_table tr{
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
}

/* Right sidebar sticky */
.woocommerce-cart .cart-collaterals{
  position: sticky;
  top: 110px;
}
.woocommerce-cart .cart_totals{
  float: none !important;
  width: 100% !important;
}

/* Primary button – black full width */
.woocommerce-cart .checkout-button,
.woocommerce-cart button[name="proceed"]{
  width: 100%;
  background:#000 !important;
  color:#fff !important;
  border:0 !important;
  min-height: 54px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Mobile */
@media (max-width: 900px){
  .woocommerce-cart form.woocommerce-cart-form{
    grid-template-columns: 1fr;
  }
  .woocommerce-cart .cart-collaterals{
    position: static;
  }
  .bblt-steps__inner{
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
  }
}

/* Cart page wrapper */
.bblt-cart-page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

/* Steps bar */
.bblt-steps{
  border-top: 3px solid #111;
  border-bottom: 3px solid #111;
  background:#fff;
  margin: 0 0 24px;
}
.bblt-steps__inner{
  padding: 18px 0;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align:center;
  align-items:center;
}
.bblt-step__title{ font-weight: 800; font-size: 14px; margin-bottom: 10px; }
.bblt-step__dot{
  width: 28px; height: 28px; border-radius: 999px;
  display:inline-flex; align-items:center; justify-content:center;
  border: 2px solid #111; font-weight: 800; font-size: 12px;
  background:#fff; color:#111;
}
.bblt-step.is-active .bblt-step__dot{ background:#000; color:#fff; border-color:#000; }

/* Grid */
.bblt-cart-grid{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items:start;
}

/* Items */
.bblt-cart-item{
  display:grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  padding: 16px;
  margin-bottom: 14px;
}

.bblt-ci-thumb img{ width:72px; height:auto; display:block; }

.bblt-ci-top{
  display:flex;
  justify-content:space-between;
  gap: 12px;
}
.bblt-ci-title a{ font-weight: 900; color:#111; text-decoration:none; }
.bblt-ci-remove .remove{ color:#111; text-decoration:none; font-size: 20px; }

.bblt-ci-bottom{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
  align-items:end;
}
.bblt-ci-label{ font-size: 11px; opacity:.65; margin-bottom: 6px; }

/* Right summary sticky */
.bblt-cart-right{
  position: sticky;
  top: 110px;
}

/* Make checkout button black */
.woocommerce-cart .checkout-button{
  width: 100%;
  background:#000 !important;
  color:#fff !important;
  border:0 !important;
  min-height: 54px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Mobile */
@media (max-width: 900px){
  .bblt-cart-grid{ grid-template-columns: 1fr; }
  .bblt-cart-right{ position: static; }
  .bblt-steps__inner{ grid-template-columns: 1fr 1fr; }
}

/* Force no sidebar layout on Woo pages */
.woocommerce-cart #secondary,
.woocommerce-checkout #secondary,
.woocommerce-account #secondary{
  display:none !important;
}

.woocommerce-cart #primary,
.woocommerce-checkout #primary,
.woocommerce-account #primary{
  width:100% !important;
}


/* Right summary block */
.bblt-summary{
  border: 1px solid rgba(0,0,0,.10);
  background:#fff;
  padding: 18px;
}

.bblt-accordion{
  border-top: 1px solid rgba(0,0,0,.10);
  border-bottom: 1px solid rgba(0,0,0,.10);
  padding: 10px 0;
  margin-bottom: 18px;
}

.bblt-accordion__summary{
  cursor:pointer;
  font-weight: 800;
  display:flex;
  justify-content: space-between;
  align-items:center;
  list-style:none;
}
.bblt-accordion__summary::-webkit-details-marker{ display:none; }

.bblt-accordion__content{
  padding-top: 12px;
}

.bblt-coupon{
  display:grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
}

.bblt-coupon__input{
  height: 42px;
  border: 1px solid rgba(0,0,0,.20);
  padding: 0 12px;
}

.bblt-coupon__btn{
  height: 42px;
  background:#000;
  color:#fff;
  border:0;
  font-weight: 800;
  text-transform: uppercase;
}

/* Rows */
.bblt-row{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.bblt-row__left{
  font-weight: 700;
}

.bblt-row__right{
  font-weight: 700;
}

.bblt-info{
  display:inline-flex;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.25);
  align-items:center;
  justify-content:center;
  font-size: 11px;
  opacity:.8;
  margin-left: 6px;
}

.bblt-row--total{
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: 16px;
  margin-top: 6px;
}

.bblt-total-title{
  font-weight: 900;
  font-size: 18px;
}

.bblt-total-sub{
  font-size: 12px;
  opacity: .7;
  margin-top: 4px;
}

.bblt-total-price{
  font-weight: 900;
  font-size: 22px;
}

/* Confirm button */
.bblt-confirm-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height: 54px;
  background:#000;
  color:#fff;
  text-decoration:none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 18px;
}

/* Continue shopping */
.bblt-continue{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 14px;
  text-decoration:none;
  color:#111;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}
.bblt-continue span{
  text-decoration: underline;
}


.bblt-checkout-grid{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items:start;
}

.bblt-checkout-right .bblt-summary{
  background:#f3f3f3;
  padding:24px;
  border-radius: 6px;
}

.bblt-summary-title{
  margin:0 0 16px;
  font-weight:700;
  letter-spacing:.02em;
}


/* 2-column layout */
.bblt-checkout-grid{
  display:grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items:start;
}

/* right panel */
.bblt-summary{
  background:#f3f3f3;
  border:1px solid #e2e2e2;
  padding:22px;
}

@media (min-width: 992px){
  .bblt-checkout-right{
    position:sticky;
    top:24px;
    align-self:start;
  }
}

@media (max-width: 991px){
  .bblt-checkout-grid{ grid-template-columns: 1fr; }
}

/* delivery methods */
.checkout-shipping-methods{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid #e6e6e6;
}

.checkout-shipping-methods__title{
  margin:0 0 14px;
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.checkout-shipping-methods #shipping_method{
  list-style:none;
  margin:0;
  padding:0;
}

.checkout-shipping-methods #shipping_method li{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid #eee;
}

.checkout-shipping-methods #shipping_method input{
  margin-top:3px;
}

.checkout-shipping-methods #shipping_method label{
  margin:0;
  font-size:13px;
}

.checkout-shipping-methods .woocommerce-Price-amount{
  font-weight:700;
}


/* Force all checkout fields to stack (one per row) */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last{
  float: none !important;
  width: 100% !important;
  margin-right: 0 !important;
}

/* just in case theme uses flex */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper{
  display: block !important;
}

/* spacing */
.woocommerce-checkout .form-row{
  margin-bottom: 18px;
}


.bbl-menu .menu-item-has-children:hover > .sub-menu{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}


.woocommerce-cart .entry-header,
.woocommerce-cart .post-edit-link,
.woocommerce-checkout .entry-header,
.woocommerce-checkout .post-edit-link {
  display: none !important;
}


.bblt-minicart-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:9998;
  opacity:0;
  transition:opacity .25s ease;
}

.bblt-minicart{
  position:fixed;
  top:0;
  right:0;
  width:420px;
  max-width:100%;
  height:100vh;
  background:#fff;
  z-index:9999;
  transform:translateX(100%);
  transition:transform .25s ease;
  box-shadow:-8px 0 30px rgba(0,0,0,.15);
}

.bblt-minicart.is-open{
  transform:translateX(0);
}

.bblt-minicart-overlay.is-open{
  opacity:1;
}

.bblt-minicart__inner{
  height:100%;
  display:flex;
  flex-direction:column;
}

.bblt-minicart__content{
  overflow:auto;
  flex:1;
  padding:24px;
}

.bblt-minicart__close{
  position:absolute;
  top:16px;
  right:16px;
  border:0;
  background:none;
  font-size:28px;
  cursor:pointer;
}


.woocommerce-notices-wrapper:empty {
  display: none !important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: none !important;
}


.tennis-editorial-wrap {
    padding: 48px 0 24px;
    background: #ececec;
}

.tennis-editorial {
    position: relative;
    border: 1px solid #cfcfcf;
    margin-bottom: 32px;
    background: #ececec;
    overflow: hidden;
}

.tennis-editorial__link {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.tennis-editorial__row {
    display: grid;
    grid-template-columns: 36% 64%;
    min-height: 420px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.tennis-editorial--family .tennis-editorial__row {
    grid-template-columns: 74% 26%;
    min-height: 420px;
}

.tennis-editorial__col {
    min-width: 0;
}

.tennis-editorial__col--content {
    display: flex;
    align-items: center;
}

.tennis-editorial__content {
    width: 100%;
    max-width: 360px;
    padding: 40px 46px;
    position: relative;
    z-index: 2;
}

.tennis-editorial__content--right {
    margin-left: auto;
    text-align: left;
}

.tennis-editorial__content--family {
    max-width: 320px;
    padding: 40px 36px 40px 30px;
}

.tennis-editorial__title {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    letter-spacing: 0;
}

.tennis-editorial__desc {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.45;
    color: #222;
}

.tennis-editorial__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #8fddea;
    background: transparent;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.tennis-editorial--family .tennis-editorial__button {
    border-color: #111;
}

.tennis-editorial__visual {
    height: 100%;
    min-height: 420px;
}

.tennis-editorial__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* social */
.tennis-social {
    padding: 0;
    background: transparent;
}

.tennis-social .bbl-container {
    max-width: none;
    width: 100%;
    padding: 0;
}

.tennis-social__box {
    min-height: 96px;
    background: #73ddea;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    padding: 20px 40px;
    max-width: none;
    margin: 0;
    text-align: left;
}

.tennis-social__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    font-style: italic;
    color: #111;
    white-space: nowrap;
}

.tennis-social__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 34px;
}

.tennis-social__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.tennis-social__links a:hover {
    background: transparent;
    color: #111;
    opacity: .75;
}

@media (max-width: 991px) {
    .tennis-editorial__row,
    .tennis-editorial--family .tennis-editorial__row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tennis-editorial__content,
    .tennis-editorial__content--right,
    .tennis-editorial__content--family {
        max-width: none;
        padding: 28px 24px;
        margin-left: 0;
    }

    .tennis-editorial__visual {
        min-height: 280px;
    }

    .tennis-social__box {
        flex-direction: column;
        gap: 18px;
        text-align: center;
        padding: 24px 20px;
    }

    .tennis-social__title {
        white-space: normal;
    }

    .tennis-social__links {
        justify-content: center;
        gap: 18px;
    }
}


/* TEXT CONTENT */

.tennis-editorial__content {
    max-width: 320px;
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tennis-editorial__content--right {
    margin-left: auto;
    text-align: left;
}

.tennis-editorial__content--family {
    max-width: 300px;
    padding: 40px 36px;
}

/* TITLE */

.tennis-editorial__title {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
}

/* DESCRIPTION */

.tennis-editorial__desc {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
}

/* BUTTON */

.tennis-editorial__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #9adbe8;
    background: transparent;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    width: fit-content;
}



/* IMAGE */

.tennis-editorial__visual {
    height: 100%;
    min-height: 420px;
}

.tennis-editorial__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.tennis-seo {
    background: #ececec;
    padding: 24px 0 40px;
}

.tennis-seo .bbl-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 44px;
}

.tennis-seo__article {
    max-width: 860px;
    margin: 0;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
}

.tennis-seo__article h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.tennis-seo__article h3 {
    margin: 0 0 2px;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
    color: #111;
}

.tennis-seo__article p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 400;
    color: #111;
    max-width: 780px;
}

.tennis-seo__article p:last-child {
    margin-bottom: 0;
}

.tennis-seo {
    background: #fff;
}

.tennis-seo,
.tennis-seo .bbl-container,
.tennis-seo__article {
    background: #fff;
}

.tennis-editorial-wrap {
    background: #fff;
}


.tennis-editorial-wrap,
.tennis-editorial-wrap .bbl-container {
    background: #fff;
}

.tennis-editorial {
    background: #fff;
}


.tennis-editorial {
    border: none;
}


.bs-ugc-gallery{background:#fff;padding:36px 0 60px}
.bs-ugc-gallery__inner{max-width:1280px;margin:0 auto;padding:0 20px}
.bs-ugc-gallery__title{margin:0;text-align:center;font-size:34px;line-height:1.1;font-weight:800}
.bs-ugc-gallery__subtitle{margin:12px auto 0;text-align:center;max-width:760px;color:#666;font-size:15px;line-height:1.6}
.bs-ugc-gallery__grid{display:grid;grid-template-columns:repeat(var(--bs-ugc-gallery-desktop,4),minmax(0,1fr));gap:18px;margin-top:30px}
.bs-ugc-gallery__card{position:relative;display:block;overflow:hidden;border-radius:12px;background:#f3f3f3;box-shadow:0 0 0 1px rgba(0,0,0,.08);transition:transform .2s ease, box-shadow .2s ease}
.bs-ugc-gallery__card:hover{transform:translateY(-2px);box-shadow:0 10px 24px rgba(0,0,0,.12)}
.bs-ugc-gallery__img{display:block;width:100%;aspect-ratio:4/5;object-fit:cover}
.bs-ugc-gallery__play{position:absolute;left:16px;top:16px;width:44px;height:44px;border-radius:999px;background:rgba(0,0,0,.55)}
.bs-ugc-gallery__play:before{content:'';position:absolute;left:18px;top:14px;width:0;height:0;border-left:14px solid #fff;border-top:9px solid transparent;border-bottom:9px solid transparent}
@media (max-width:1024px){
  .bs-ugc-gallery__grid{grid-template-columns:repeat(var(--bs-ugc-gallery-tablet,3),minmax(0,1fr))}
}
@media (max-width:640px){
  .bs-ugc-gallery__title{font-size:28px}
  .bs-ugc-gallery__grid{grid-template-columns:repeat(var(--bs-ugc-gallery-mobile,2),minmax(0,1fr));gap:12px}
}


.bblt-single-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 1fr);
  gap: 20px;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  align-items: start;
}

.bblt-single-media,
.bblt-single-summary{
  min-width: 0;
}

.bblt-gallery,
.bblt-gallery__main,
.bblt-gallery__slide,
.bblt-gallery__slide img{
  width: 100%;
  max-width: 100%;
}

.bblt-gallery__slide img{
  display: block;
  height: auto;
}

@media (max-width: 900px){
  .bblt-single-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bblt-single-summary{
    position: static;
  }

  .bblt-gallery{
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .bblt-gallery__thumbs{
    order: 2;
  }

  .bblt-gallery__main{
    order: 1;
  }

  .bblt-gallery__thumbs .slick-track{
    display:flex !important;
  }

  .bblt-gallery__thumbs .slick-slide{
    margin: 0 12px 0 0;
  }
}


.bblt-single-grid{
  display:grid;
  grid-template-columns: minmax(0, 720px) minmax(320px, 420px);
  column-gap:20px;
  justify-content:center;
  align-items:start;
  width:100%;
}

.bblt-single-media,
.bblt-single-summary{
  min-width:0;
}

.bblt-gallery{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:18px;
  align-items:start;
  max-width:820px;
}

.bblt-gallery__main{
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  padding:18px;
}

.bblt-gallery__main img{
  width:100%;
  height:auto;
  max-height:720px;
  object-fit:contain;
  display:block;
}

.bblt-single-summary{
  position:sticky;
  top:110px;
}

@media (max-width:900px){
  .bblt-single-grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .bblt-single-summary{
    position:static;
  }

  .bblt-gallery{
    max-width:100%;
    grid-template-columns:1fr;
  }

  .bblt-gallery__thumbs{ order:2; }
  .bblt-gallery__main{ order:1; }
}


/* =========================================
   MOBILE HEADER / BURGER
========================================= */
.bbl-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.bbl-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  transition: transform .25s ease, opacity .25s ease;
}

.bbl-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bbl-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.bbl-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 900px) {
  .bbl-header__row {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
  }

  .bbl-header__center {
    display: none;
  }

  .bbl-header__right {
    gap: 10px;
  }

  .bbl-burger {
    display: inline-flex;
  }

  .bbl-nav {
    display: none;
    border-top: 1px solid var(--bbl-line);
    background: #fff;
  }

  .bbl-nav.is-open {
    display: block;
  }

  .bbl-nav .bbl-container {
    padding-top: 10px;
    padding-bottom: 14px;
  }

  .bbl-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .bbl-menu__item {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .bbl-menu__link {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
  }

  .bbl-menu__link::after {
    display: none;
  }

  .bbl-menu__item.has-mega > .bbl-mega {
    display: none;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .bbl-menu__item.has-mega.is-open > .bbl-mega {
    display: block;
  }

  .bbl-mega__inner {
    padding: 0 0 10px;
  }

  .bbl-mega__cols {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bbl-mega__colhead a,
  .bbl-mega__link {
    display: block;
    padding: 6px 0;
  }
}

/* =========================================
   FRONT PAGE MOBILE CLEANUP
========================================= */
@media (max-width: 900px) {
  .bbl-story {
    padding: 44px 0;
  }

  .bbl-story h2 {
    font-size: 28px;
    line-height: 1.1;
  }

  .bbl-story p {
    font-size: 15px;
    line-height: 1.6;
  }

  .bbl-story__media {
    min-height: 240px;
  }

  .bbl-about {
    padding: 10px 0 30px;
  }

  .bbl-about__title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .bbl-about p {
    font-size: 15px;
    line-height: 1.7;
  }

  .bbl-btn,
  .bbl-btn--outline {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }
}

@media (max-width: 640px) {
  .bbl-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bbl-hero__slide {
    min-height: 360px;
  }

  .bbl-hero__content {
    padding: 42px 0;
  }

  .bbl-hero h1 {
    font-size: 28px;
    line-height: 1.08;
  }

  .bbl-hero p {
    font-size: 15px;
  }

  .bbl-story__media {
    min-height: 200px;
    border-radius: 10px;
  }

  .bs-prod-slider__btn {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
}

html, body {
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
}

.bbl-header,
.bbl-header__row,
.bbl-header__right {
  position: relative;
}

.bbl-burger {
  display: inline-flex !important;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 44px;
  position: relative;
  z-index: 9999;
}

.bbl-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  transition: transform .25s ease, opacity .25s ease;
}

.bbl-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bbl-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.bbl-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 901px) {
  .bbl-burger {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .bbl-header__center {
    display: none !important;
  }

  .bbl-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .bbl-nav {
    display: none;
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 9998;
  }

  .bbl-nav.is-open {
    display: block;
  }
}


@media (min-width: 1025px) {
  .bbl-burger {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .bbl-header__center {
    display: none !important;
  }

  .bbl-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .bbl-burger {
    display: inline-flex !important;
  }

  .bbl-nav {
    display: none;
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 9998;
  }

  .bbl-nav.is-open {
    display: block;
  }
}


@media (max-width: 1024px) {
  .bbl-header__account,
  .bbl-header__cart {
    font-size: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .bbl-header__account::before,
  .bbl-header__cart::before {
    font-family: dashicons;
    font-size: 20px;
    line-height: 1;
    color: #111;
  }

  .bbl-header__account::before {
    content: "\f110";
  }

  .bbl-header__cart::before {
    content: "\f174";
  }
}


html, body {
  overflow-x: hidden;
}

@media (max-width: 1024px) {
  .bbl-header__center {
    display: none !important;
  }

  .bbl-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .bbl-header__left {
    flex: 1 1 auto;
    min-width: 0;
  }

  .bbl-header__right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
  }

  .bbl-burger {
    display: inline-flex;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 38px;
    order: 3;
  }

  .bbl-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    transition: transform .25s ease, opacity .25s ease;
  }

  .bbl-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .bbl-burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .bbl-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .bbl-iconlink {
    font-size: 0 !important;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    min-width: 36px;
  }




  .bbl-cartcount {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px !important;
    line-height: 1;
  }

  .bbl-nav {
    display: none;
  }

  .bbl-nav.is-open {
    display: block;
  }
}

@media (min-width: 1025px) {
  .bbl-burger {
    display: none !important;
  }
}


html, body {
  overflow-x: hidden;
}

/* Desktop - viss paliek normāli */
@media (min-width: 1025px) {
  .bbl-burger {
    display: none !important;
  }

  .bbl-iconlink {
    font-size: inherit !important;
    width: auto;
    height: auto;
    padding: initial;
  }

  .bbl-nav {
    display: block !important;
  }
}

/* Mobile / tablet */
@media (max-width: 1024px) {
  .bbl-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .bbl-header__center {
    display: none !important;
  }

  .bbl-header__left {
    flex: 1 1 auto;
    min-width: 0;
  }

  .bbl-header__right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
  }

  .bbl-burger {
    display: inline-flex !important;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 38px;
    order: 3;
    position: relative;
    z-index: 1002;
  }

  .bbl-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    transition: transform .25s ease, opacity .25s ease;
  }

  .bbl-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .bbl-burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .bbl-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Konts/Grozs kā ikonas tikai mobilajā */
  .bbl-iconlink {
    font-size: 0 !important;
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    line-height: 1;
  }

  .bbl-iconlink[href*="myaccount"]::before {
    content: "👤";
    font-size: 20px;
    line-height: 1;
  }



  .bbl-cartcount {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px !important;
    line-height: 1;
    background: #111;
    color: #fff;
    z-index: 2;
  }

  /* MENU CLOSED by default */
  .bbl-nav {
    display: none !important;
    width: 100%;
    position: relative;
    z-index: 1001;
    background: #fff;
  }

  /* MENU OPEN */
  .bbl-nav.is-open {
    display: block !important;
  }

  .bbl-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .bbl-menu > li,
  .bbl-menu__item {
    width: 100%;
  }

  .bbl-menu a,
  .bbl-menu__link {
    display: block;
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .bbl-header__right .bbl-iconlink {
    color: inherit !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}


/* ===== MOBILE HEADER FIX ===== */

html, body {
  overflow-x: hidden;
}

.bbl-burger {
  display: none;
}

/* Desktop */
@media (min-width: 1025px) {
  .bbl-header__right .bbl-iconlink {
    font-size: 14px !important;
    width: auto;
    height: auto;
    min-width: 0;
    padding: 0;
  }

  #site-navigation.bbl-nav {
    display: block !important;
  }
}

/* Mobile / tablet */
@media (max-width: 1024px) {
  .bbl-header__center {
    display: none !important;
  }

  .bbl-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .bbl-header__left {
    flex: 1 1 auto;
    min-width: 0;
  }

  .bbl-header__right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
  }

  .bbl-burger {
    display: inline-flex !important;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    flex: 0 0 38px;
    position: relative;
    z-index: 1002;
  }

  .bbl-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    transition: transform .25s ease, opacity .25s ease;
  }

  .bbl-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .bbl-burger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .bbl-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .bbl-header__right .bbl-iconlink {
    font-size: 0 !important;
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    line-height: 1;
  }



  .bbl-header__right .bbl-cartcount {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px !important;
    line-height: 1;
    background: #111;
    color: #fff;
    z-index: 2;
  }

  #site-navigation.bbl-nav {
    display: none !important;
    width: 100%;
    background: #fff;
    position: relative;
    z-index: 1001;
    border-top: 1px solid rgba(0,0,0,.06);
  }

  #site-navigation.bbl-nav.is-open {
    display: block !important;
  }

  #site-navigation .bbl-menu {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px 0;
  }

  #site-navigation .bbl-menu > li,
  #site-navigation .bbl-menu__item {
    width: 100%;
  }

  #site-navigation .bbl-menu a,
  #site-navigation .bbl-menu__link {
    display: block;
    width: 100%;
    padding: 14px 0;
  }

  #site-navigation .bbl-menu__item.has-mega > .bbl-mega {
    position: static;
    width: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border-radius: 0;
    border: 0;
  }

  #site-navigation .bbl-mega__cols {
    grid-template-columns: 1fr;
  }
}

.bbl-iconlink svg {
  width: 20px;
  height: 20px;
  stroke: #111;
  fill: none;
}

.bbl-cartlink svg circle {
  fill: #111;
}


/* ===== PRODUCT SLIDER MOBILE FIX ===== */

.bs-prod-slider-full{
  background: #74ecf7;
  padding: 28px 0;
}

.bs-prod-slider-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

.bs-prod-slider{
  position: relative;
  margin: 0;
  max-width: none;
  padding: 0;
}

.bs-prod-slider__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.bs-prod-slider__title{
  margin:0;
  font-size: clamp(22px, 4vw, 28px);
  font-weight:800;
  line-height:1.1;
}

.bs-prod-slider__viewport{
  overflow:hidden;
  margin:0;
  background: transparent;
}

.bs-prod-slider__track{
  display:flex;
  gap:12px;
  list-style:none;
  margin:0;
  padding:0;
  transition:transform .35s ease;
  will-change:transform;
}

.bs-prod-slider__item{
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 0;
}

.bs-card{
  height:100%;
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid #e2e2e2;
  box-shadow:none;
  transition:transform .2s ease, box-shadow .2s ease;
}

.bs-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.bs-card__img{
  display:block;
  padding:16px 16px 8px;
}

.bs-card__img img{
  width:100%;
  height:260px;
  object-fit:contain;
  display:block;
}

.bs-card__body{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:10px 16px 16px;
}

.bs-card__cat{
  min-height:16px;
  font-size:12px;
  line-height:1.3;
  color:#646970;
  opacity:1;
}

.bs-card__title{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:2.8em;
  font-size:17px;
  line-height:1.4;
  font-weight:800;
  color:#111;
  text-decoration:none;
}

.bs-card__price{
  margin-top:auto;
  font-size:18px;
  font-weight:800;
  color:#111;
}

.bs-prod-slider__nav{
  position:absolute;
  top:50%;
  left:0;
  right:0;
  transform:translateY(-50%);
  display:flex;
  justify-content:space-between;
  align-items:center;
  pointer-events:none;
  z-index:10;
}

.bs-prod-slider__btn{
  pointer-events:auto;
  width:48px;
  height:48px;
  border:0;
  border-radius:999px;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.15);
  font-size:24px;
  display:grid;
  place-items:center;
  cursor:pointer;
}

.bs-prod-slider__dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:14px;
}

.bs-prod-slider__dot{
  width:8px;
  height:8px;
  padding:0;
  border:1px solid #111;
  background:transparent;
  opacity:.45;
  cursor:pointer;
}

.bs-prod-slider__dot.is-active{
  opacity:1;
  background:#111;
}

/* tablet */
@media (max-width: 1100px){
  .bs-prod-slider__item{
    flex: 0 0 calc((100% - 24px) / 3);
  }

  .bs-card__img img{
    height:220px;
  }
}

/* mobile */
@media (max-width: 780px){
  .bs-prod-slider-full{
    padding: 22px 0;
  }

  .bs-prod-slider-inner{
    padding: 0 12px;
  }

  .bs-prod-slider__head{
    margin-bottom:12px;
  }

  .bs-prod-slider__title{
    font-size:22px;
  }

  .bs-prod-slider__item{
    flex: 0 0 84%;
  }

  .bs-card__img{
    padding:14px 14px 6px;
  }

  .bs-card__img img{
    height:180px;
  }

  .bs-card__body{
    padding:10px 14px 14px;
  }

  .bs-card__title{
    font-size:15px;
    min-height:2.6em;
  }

  .bs-card__price{
    font-size:16px;
  }

  .bs-prod-slider__btn{
    width:38px;
    height:38px;
    font-size:20px;
  }
}

/* very small phones */
@media (max-width: 520px){
  .bs-prod-slider__item{
    flex: 0 0 88%;
  }

  .bs-prod-slider__nav{
    display:none;
  }

  .bs-prod-slider__dots{
    margin-top:12px;
  }
}


/* Slider navigācijas pogas */
.bs-prod-slider__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bs-prod-slider__btn {
  -webkit-appearance: button;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  user-select: none;
  cursor: pointer;
  border: unset;
  outline: none;
  background: #fff;
  color: #343a40;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: none;
  padding: 0;
  margin: 0;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.545, 0.015, 0.335, 1);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.14),
              0 1px 10px rgba(0, 0, 0, 0.12),
              0 2px 4px -1px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bs-prod-slider__btn:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
}

.bs-prod-slider__btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
}

.bs-prod-slider__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.bs-prod-slider__btn[data-prev]::before,
.bs-prod-slider__btn[data-next]::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #343a40;
  border-right: 2px solid #343a40;
}

.bs-prod-slider__btn[data-prev]::before {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.bs-prod-slider__btn[data-next]::before {
  transform: rotate(45deg);
  margin-right: 3px;
}

/* Telefoniem */
@media (max-width: 575px) {
  .bs-prod-slider__nav {
    gap: 8px;
  }

  .bs-prod-slider__btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .bs-prod-slider__btn[data-prev]::before,
  .bs-prod-slider__btn[data-next]::before {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 1024px) {
  .bbl-mega__media,
  .bbl-mega__media-card,
  .bbl-mega__media-img,
  .bbl-mega__media-btn {
    display: none !important;
  }
}

.single-product .storefront-product-pagination {
    display: none !important;
}

/* ===== HEADER SPACING TUNEUP ===== */

:root{
  --bbl-max: 1360px;   /* bija 1320px */
  --bbl-pad: 28px;     /* bija 20px */
}

.bbl-header__row{
  gap: 28px;
  padding: 22px 0;
}

.bbl-header__left{
  flex: 0 0 auto;
  min-width: 180px;
}

.bbl-header__center{
  flex: 1 1 auto;
  max-width: 640px;
  margin: 0 auto;
}

.bbl-header__right{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.bbl-logo{
  display: inline-flex;
  align-items: center;
}

.bbl-logo img,
.bbl-logo svg{
  height: 34px;
  width: auto;
  display: block;
}

.bbl-iconlink{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  font-size: 14px;
}

.bbl-iconlink svg{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.bbl-search{
  display: flex;
  align-items: center;
  gap: 10px;
}

.bbl-search__input{
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
}

.bbl-search__btn{
  min-height: 46px;
  padding: 12px 18px;
}

.bbl-nav{
  border-top: 1px solid rgba(0,0,0,.08);
}

.bbl-menu{
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0;
}

.bbl-menu__link,
.bbl-menu a{
  display: inline-block;
  padding: 18px 0;
  font-size: 13px;
  letter-spacing: .04em;
}

/* Mega menu lai neizskatās saspiests */
.bbl-mega__inner{
  padding: 26px 28px;
}

.bbl-mega__cols{
  gap: 24px;
}

.bbl-mega__links{
  gap: 10px;
}

/* Tablet/mobile */
@media (max-width: 1024px){
  .bbl-container{
    padding: 0 18px;
  }

  .bbl-header__row{
    gap: 12px;
    padding: 14px 0;
  }

  .bbl-header__right{
    gap: 10px;
  }

  .bbl-logo img,
  .bbl-logo svg{
    height: 40px;
  }

  .bbl-iconlink{
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

/* ===== HEADER ICON-ONLY LINKS ===== */

.bbl-header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.bbl-header__right .bbl-iconlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
  position: relative;
  text-decoration: none;
  color: #111;
}

.bbl-header__right .bbl-iconlink svg {
  width: 22px;
  height: 22px;
  display: block;
}

.bbl-header__right .bbl-linktext {
  display: none !important;
}

.bbl-storelink,
.bbl-accountlink,
.bbl-cartlink {
  transition: opacity .2s ease, transform .2s ease;
}

.bbl-storelink:hover,
.bbl-accountlink:hover,
.bbl-cartlink:hover {
  opacity: .75;
  transform: translateY(-1px);
}

.bbl-cartlink .bbl-cartcount {
  position: absolute;
  top: -3px;
  right: -3px;
}

@media (max-width: 1024px) {
  .bbl-header__right {
    gap: 8px;
  }

  .bbl-header__right .bbl-iconlink {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .bbl-header__right .bbl-iconlink svg {
    width: 20px;
    height: 20px;
  }
}


.home-latest-products {
  clear: both;
  display: block;
  width: 100%;
  padding: 40px 0;
}

.home-latest-products::before,
.home-latest-products::after {
  content: "";
  display: table;
}

.home-latest-products::after {
  clear: both;
}

.home-latest-products .bbl-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.home-latest-products .bbl-latest-products {
  clear: both;
  width: 100%;
  display: block;
  margin: 0;
}

.home-latest-products .bbl-latest-products__viewport {
  overflow: hidden;
  width: 100%;
}

.home-latest-products .bbl-latest-products__track {
  display: flex;
}

.home-latest-products .bbl-latest-products__item {
  float: none !important;
}


.home-latest-products {
  clear: both;
  display: block;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 40px 0;
}

.home-latest-products .bs-prod-slider-full {
  width: 100%;
  margin: 0;
  clear: both;
}

.home-latest-products .bs-prod-slider-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
}

.home-latest-products .bs-prod-slider {
  width: 100%;
}
.bbl-latest-products-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.bbl-latest-products-wrap .bs-prod-slider-inner,
.bbl-latest-products-wrap .bs-prod-slider {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.bbl-latest-products-wrap .bs-prod-slider__head {
  justify-content: space-between;
}

.bbl-latest-products-wrap .bs-prod-slider__title {
  margin-left: 0;
}

.bbl-latest-products-wrap .bs-prod-slider {
  margin: 0 auto !important;
  left: auto !important;
  right: auto !important;
  float: none !important;
}


/* ===== SHOP SIDEBAR LAYOUT ===== */
.bblt-shop-layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 40px;
	align-items: start;
}

.bblt-shop-filters {
	background: #fff;
	padding: 24px;
	border: 1px solid #e5e5e5;
}

.bblt-filter-block {
	padding: 0 0 28px;
	margin: 0 0 28px;
	border-bottom: 1px solid #e3e3e3;
}

.bblt-filter-block:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* ===== HEADINGS ===== */
.bblt-filter-block h3 {
	margin: 0 0 18px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: #111;
}

.bblt-filter-group h4 {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 500;
	color: #111;
}

/* ===== SORT DROPDOWN ===== */
.bblt-shop-filters .woocommerce-ordering {
	margin: 0;
	width: 100%;
}

.bblt-shop-filters .woocommerce-ordering select,
.bblt-shop-filters select.orderby {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	border: 1px solid #e3e3e3;
	border-radius: 0;
	background: #fff;
	color: #111;
	font-size: 15px;
	box-shadow: none;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 38px;
}

/* ===== RESET BUTTON ===== */
.bblt-reset {
	display: block;
	width: 100%;
	text-align: center;
	padding: 13px 16px;
	border: 2px solid #111;
	background: #fff;
	color: #111;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	transition: all 0.2s ease;
	box-sizing: border-box;
}

.bblt-reset:hover {
	background: #111;
	color: #fff;
	text-decoration: none;
}

/* ===== CATEGORY LIST ===== */
.bblt-cat-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bblt-cat-list li {
	margin: 0 0 10px;
	padding: 0;
}

.bblt-cat-list li:last-child {
	margin-bottom: 0;
}

.bblt-cat-list a {
	color: #111;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.4;
	display: inline-block;
}

.bblt-cat-list a:hover {
	text-decoration: underline;
}

.bblt-cat-list a.is-active {
	font-weight: 700;
}

/* root category label */
.bblt-filter-block > div[style*="opacity:.7"] {
	font-size: 16px !important;
	font-weight: 700;
	color: #111 !important;
	opacity: 1 !important;
	margin-bottom: 10px !important;
}

/* ===== FORM FIELDS ===== */
.bblt-filter-group {
	margin-bottom: 22px;
}

.bblt-filter-group input[type="search"],
.bblt-filter-group input[type="number"],
.bblt-filter-group input[type="text"],
.bblt-filter-group select {
	width: 100%;
	height: 46px;
	padding: 0 14px;
	border: 1px solid #d7d7d7;
	background: #fff;
	color: #111;
	font-size: 15px;
	box-sizing: border-box;
	outline: none;
	box-shadow: none;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
}

.bblt-filter-group input[type="number"],
.bblt-filter-group input[type="search"],
.bblt-filter-group input[type="text"] {
	-moz-appearance: textfield;
}

.bblt-filter-group input[type="number"]::-webkit-outer-spin-button,
.bblt-filter-group input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.bblt-filter-group input[type="search"]:focus,
.bblt-filter-group input[type="number"]:focus,
.bblt-filter-group input[type="text"]:focus,
.bblt-filter-group select:focus {
	border-color: #111;
}

.bblt-filter-group input + input {
	margin-top: 10px;
}

/* ===== FILTER DROPDOWNS ===== */
.bblt-filter-group select {
	padding-right: 38px;
	cursor: pointer;
	background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.bblt-filter-group select:hover {
	border-color: #111;
}

/* ===== CHECKBOX ===== */
.filter-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
	color: #111;
	cursor: pointer;
	line-height: 1.4;
}

.filter-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	appearance: auto;
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	cursor: pointer;
	flex: 0 0 18px;
}

/* ===== SUBMIT BUTTON ===== */
.bblt-filter-block button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	height: 46px;
	padding: 0 20px;
	border: 0;
	background: #fff;
	color: #111;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
	box-shadow: none;
	border-radius: 0;
}

.bblt-filter-block button[type="submit"]:hover {
	background: #111;
	color: #fff;
}

/* ===== SHOP RESULTS ===== */
.bblt-shop-results {
	min-width: 0;
}

/* ===== MOBILE ONLY ===== */
@media (max-width: 900px) {

  .bblt-shop-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bblt-shop-filters {
    padding: 20px;
  }

  /* HIDE ALL ICONS */
  .bbl-header__right svg,
  .bbl-header__right i,
  .bbl-header__right img,
  .bbl-header__right .icon,
  .bbl-header__right .bbl-icon,
  .bbl-cartcount {
    display: none !important;
  }

}


.bblt-card__badge-row:empty {
  display: none;
}


/* HEADER tuvāk babolat.nl stilam */
.bbl-topbar {
    background: #111;
    color: #fff;
    height: 34px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.bbl-topbar__text {
    margin: 0;
    text-align: center;
}

/* Galvenā header zona */
.bbl-header__row {
    min-height: 88px;
    display: grid;
    grid-template-columns: 260px minmax(420px, 620px) 220px;
    align-items: center;
    gap: 24px;
}

/* Logo */
.bbl-logo svg,
.bbl-logo img {
    max-width: 190px;
    height: auto;
    display: block;
}

/* Search pa vidu */
.bbl-header__center {
    width: 100%;
}

.bbl-header__center form {
    display: flex;
    width: 100%;
    gap: 10px;
}

.bbl-header__center input[type="search"],
.bbl-header__center input[type="text"] {
    width: 100%;
    height: 52px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #f4f4f6;
    padding: 0 24px;
    font-size: 14px;
}

.bbl-header__center button,
.bbl-header__center input[type="submit"] {
    height: 52px;
    border-radius: 999px;
    background: #070707;
    color: #fff;
    border: 0;
    padding: 0 26px;
    font-weight: 700;
}

/* Ikonas labajā pusē */
.bbl-header__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 26px;
}

.bbl-iconlink {
    color: #111;
}

.bbl-iconlink .bbl-linktext {
    display: none;
}

.bbl-iconlink svg {
    width: 22px;
    height: 22px;
}

.bbl-cartcount {
    position: absolute;
    top: -10px;
    right: -12px;
    background: #111;
    color: #fff;
    font-weight: 700;
}

/* Apakšējais menu */
.bbl-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.bbl-nav .bbl-container {
    max-width: 1160px;
}

.bbl-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    min-height: 52px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bbl-menu > li > a,
.bbl-menu__link {
    display: flex;
    align-items: center;
    height: 52px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
}

.bbl-menu > li > a:hover,
.bbl-menu__link:hover {
    color: #111;
    text-decoration: underline;
}

/* Noņem lieko saspiestību */
.bbl-container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* MENU teksts lielāks */
.bbl-menu > li > a,
.bbl-menu__link {
    font-size: 16px;   /* bija ~13px */
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* Header search teksts */
.bbl-header__center input[type="search"],
.bbl-header__center input[type="text"] {
    font-size: 16px;
}

/* Augšējā josla */
.bbl-topbar {
    font-size: 14px;
}

/* Ikonas (lai neizskatās mazas blakus tekstam) */
.bbl-iconlink svg {
    width: 26px;
    height: 26px;
}

/* Logo +30% */
.bbl-logo img,
.bbl-logo svg {
    transform: scale(1.6);
    transform-origin: left center;
}


/* Paslēpt augšējo joslu uz telefona */
@media (max-width: 768px) {
    .bbl-topbar {
        display: none;
    }
}


/* Plašāks header kā babolat.nl */
.bbl-header__row {
    min-height: 112px;
    grid-template-columns: 300px minmax(520px, 680px) 260px;
    gap: 42px;
}

/* Lielāks attālums starp logo/search/ikonām */
.bbl-header__left {
    display: flex;
    align-items: center;
}

.bbl-header__center {
    justify-self: center;
    max-width: 680px;
}

.bbl-header__right {
    gap: 34px;
}

/* Meklēšanas lauks brīvāks */
.bbl-header__center input[type="search"],
.bbl-header__center input[type="text"] {
    height: 54px;
    padding-left: 28px;
    padding-right: 28px;
}

/* Menu sadaļas plašāk */
.bbl-menu {
    min-height: 62px;
    gap: 52px;
}

.bbl-menu > li > a,
.bbl-menu__link {
    height: 62px;
    font-size: 16px;
    font-weight: 800;
}

/* Vairāk telpas pašam konteinerim */
.bbl-container {
    max-width: 1420px;
    padding-left: 48px;
    padding-right: 48px;
}

/* ===== HEADER KOPSKATS ===== */
.bbl-container {
    max-width: 1420px;
    margin: 0 auto;
    padding-left: 40px;   /* logo tuvāk */
    padding-right: 25px;  /* ikonas tuvāk */
}

/* Augšējā josla (desktop only) */
.bbl-topbar {
    background: #111;
    color: #fff;
    height: 34px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

/* Mobile - paslēpt */
@media (max-width: 768px) {
    .bbl-topbar {
        display: none;
    }
}

/* ===== GALVENAIS HEADER ===== */
.bbl-header__row {
    min-height: 110px;
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 42px;
}

/* LOGO +30% */
.bbl-logo img,
.bbl-logo svg {
    transform: scale(1.6);
    transform-origin: left center;
}

/* SEARCH */
.bbl-header__center form {
    display: flex;
    width: 100%;
    gap: 10px;
}

.bbl-header__center input[type="search"],
.bbl-header__center input[type="text"] {
    width: 100%;
    height: 54px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #f4f4f6;
    padding: 0 28px;
    font-size: 16px;
}

.bbl-header__center button,
.bbl-header__center input[type="submit"] {
    height: 54px;
    border-radius: 999px;
    background: #070707;
    color: #fff;
    border: 0;
    padding: 0 26px;
    font-weight: 700;
}

/* ===== IKONAS ===== */
.bbl-header__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px; /* ciešāk */
    margin-left: auto;
}

.bbl-iconlink svg {
    width: 24px;
    height: 24px;
}

/* ===== MENU ===== */
.bbl-nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.bbl-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    min-height: 62px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bbl-menu > li > a,
.bbl-menu__link {
    display: flex;
    align-items: center;
    height: 62px;
    font-size: 16px; /* lielāks */
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
}

.bbl-menu > li > a:hover {
    text-decoration: underline;
}

/* ===== ORDER TABLE FIX ===== */
.woocommerce-account .woocommerce-orders-table__cell-order-number a {
    color: #000 !important;
    font-weight: 700;
    text-decoration: none;
}


/* Ikonas vēl vairāk pa labi (~20%) */
.bbl-header__right {
    margin-right: -40px;
}

.woocommerce ul.products li.product .woocommerce-loop-category {
    color: #000 !important;
}

/* Produktu kategoriju linki MELNI */
.woocommerce ul.products li.product a[href*="product-category"] {
    color: #000 !important;
    text-decoration: none;
}

/* Hover arī melns */
.woocommerce ul.products li.product a[href*="product-category"]:hover {
    color: #000 !important;
    text-decoration: underline;
}


.bbl-nav .bbl-menu {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 28px !important;
}

.bbl-nav .bbl-menu__item {
  flex: 0 0 auto !important;
}

.bbl-nav .bbl-menu__link {
  white-space: nowrap !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}

/* MEGA MENU - Babolat.nl style */
.bbl-nav {
  position: relative !important;
}

.bbl-menu__item {
  position: static !important;
}

.bbl-mega {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;

  width: min(1320px, calc(100vw - 80px)) !important;
  min-height: 420px !important;

  background: #fff !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  z-index: 9999 !important;
}

.bbl-mega__inner {
  width: 100% !important;
  max-width: none !important;
  padding: 48px 72px !important;
  box-sizing: border-box !important;
}

.bbl-mega__grid {
  display: grid !important;
  grid-template-columns: 1fr 320px !important;
  gap: 60px !important;
  align-items: start !important;
}

.bbl-mega__cols {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(160px, 1fr)) !important;
  gap: 34px 70px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.bbl-mega__col {
  list-style: none !important;
  width: auto !important;
  min-width: 0 !important;
}

.bbl-mega__colhead a {
  display: block !important;
  color: #000 !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: normal !important;
}

/* Labā bilde / reklāmas zona */
.bbl-mega__media {
  display: block !important;
  background: #f4f4f6 !important;
  min-height: 320px !important;
  padding: 36px !important;
  box-sizing: border-box !important;
}

.bbl-mega__media-card {
  width: 100% !important;
}

.bbl-mega__media-img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  display: block !important;
}

.bbl-mega__media-btn {
  display: block !important;
  margin-top: 16px !important;
  background: #000 !important;
  color: #fff !important;
  text-align: center !important;
  padding: 14px 20px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}


/* SADARBĪBAS kā mazais dropdown */
.bbl-menu__item:has(a[href="#"]) .bbl-mega {
  left: auto !important;
  transform: none !important;
  width: 260px !important;
  min-height: auto !important;
  padding: 0 !important;
  background: #fff !important;
}

.bbl-menu__item:has(a[href="#"]) .bbl-mega__inner {
  padding: 18px 24px !important;
}

.bbl-menu__item:has(a[href="#"]) .bbl-mega__grid {
  display: block !important;
}

.bbl-menu__item:has(a[href="#"]) .bbl-mega__cols {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bbl-menu__item:has(a[href="#"]) .bbl-mega__col {
  display: block !important;
  margin-bottom: 14px !important;
}

.bbl-menu__item:has(a[href="#"]) .bbl-mega__media {
  display: none !important;
}

.bbl-menu__item:has(a[href="#"]) {
  position: relative !important;
}

.bbl-menu__item:has(a[href="#"]) .bbl-mega {
  left: 0 !important;
  transform: none !important;
  top: 100% !important;
}


/* Fix: mega menu lai nepārslēdzas uz citu kategoriju, braucot lejā */
.bbl-nav,
.bbl-menu {
  position: relative !important;
  z-index: 10000 !important;
}

.bbl-menu__item {
  position: static !important;
}

.bbl-menu__item .bbl-mega {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.bbl-menu__item:hover > .bbl-mega {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 99999 !important;
}

/* Mega panelis sākas uzreiz zem navigācijas, bez spraugas */
.bbl-mega {
  top: 100% !important;
}

/* Lai panelis pats uztur hover, kamēr esi virs tā */
.bbl-menu__item:hover > .bbl-mega,
.bbl-menu__item > .bbl-mega:hover {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.bbl-footer {
  background: #171717;
  color: #bababa;
  padding: 45px 0 20px;
}

.bbl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bbl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 45px;
}

.bbl-footer-logo {
  margin-bottom: 25px;
}

.bbl-footer-logo svg {
  max-width: 160px;
  height: auto;
}

.bbl-footer h4 {
  color: #fff;
  margin: 0 0 16px;
  font-size: 16px;
  text-transform: none;
}

.bbl-footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.bbl-footer li {
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.5;
}

.bbl-footer a {
  color: #bababa;
  text-decoration: none;
}

.bbl-footer a:hover {
  color: #305bb1;
}

.bbl-store-list svg {
  width: 15px;
  height: 15px;
  margin-right: 6px;
  vertical-align: middle;
}

.bbl-footer-more {
  display: inline-block;
  color: #d0d0d0 !important;
  text-decoration: underline !important;
  margin-bottom: 24px;
  font-size: 14px;
}

.bbl-footer-email {
  font-size: 14px;
  line-height: 1.5;
}

.bbl-newsletter-form {
  margin-bottom: 30px;
}

.bbl-newsletter-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.bbl-newsletter-form input[type="email"] {
  width: 100%;
  padding: 11px;
  border: none;
  margin-bottom: 12px;
}

.bbl-newsletter-form button {
  background: #305bb1;
  color: #fff;
  border: none;
  padding: 11px 20px;
  cursor: pointer;
}

.bbl-newsletter-form button:hover {
  background: #24478e;
}

.bbl-help-title {
  margin-top: 25px !important;
}

.bbl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 30px;
  padding-top: 18px;
  font-size: 13px;
  color: #999;
}

@media (max-width: 900px) {
  .bbl-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .bbl-footer {
    padding-top: 35px;
  }
}


/* ===== FOOTER NEWSLETTER ===== */

.bbl-newsletter-form {
  margin-top: 20px;
}

.bbl-newsletter-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.bbl-newsletter-form form,
.bbl-newsletter-form .mc4wp-form-fields,
.bbl-newsletter-form .newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* INPUT */
.bbl-newsletter-form input[type="email"] {
  width: 100%;
  max-width: 420px;
  height: 44px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #000;
  color: #111;
  font-size: 14px;
  border-radius: 0;
  margin: 0 0 34px; /* lielāka atstarpe zem input */
  box-shadow: none;
}

.bbl-newsletter-form input[type="email"]::placeholder {
  color: #666;
}

.bbl-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #000;
}

/* BUTTON */
.bbl-newsletter-form button,
.bbl-newsletter-form input[type="submit"] {
  height: 40px;
  padding: 0 18px;
  background: #305bb1;
  border: 1px solid #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
  border-radius: 0;
  min-width: auto;
}

.bbl-newsletter-form button:hover,
.bbl-newsletter-form input[type="submit"]:hover {
  background: #24478e;
  color: #fff;
}

.bbl-newsletter-form input[type="email"] {
  margin: 0 0 16px; /* bija 34px */
}

.bbl-footer-email a{
  white-space: nowrap;
}

.bbl-footer-email,
.bbl-footer-email a,
.bbl-footer-email p {
  white-space: nowrap !important;
}

.bbl-footer-grid {
  grid-template-columns: 2fr 1fr 1.8fr;
}


/* Footer virsraksti lielāki */

.bbl-footer h4 {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 22px;
}


/* Noņem violeto focus outline */

*:focus {
  outline: none !important;
  box-shadow: none !important;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}


/* Mazais dropdown priekš SADARBĪBAS */

.bbl-menu__item:has(a[href="#"]) .bbl-mega {
  width: auto !important;
  min-width: 260px !important;
  min-height: auto !important;
  background: #fff !important;
}

.bbl-menu__item:has(a[href="#"]) .bbl-mega__inner {
  padding: 18px 22px !important;
}

.bbl-menu__item:has(a[href="#"]) .bbl-mega__cols {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.bbl-menu__item:has(a[href="#"]) .bbl-mega__col {
  margin: 0 !important;
}

.bbl-menu__item:has(a[href="#"]) .bbl-mega__colhead a {
  font-size: 14px !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
}


/* Compact dropdown */

.bbl-mega {
  width: fit-content !important;
  min-width: unset !important;
  max-width: 320px !important;
  min-height: unset !important;
}

.bbl-mega__inner {
  padding: 16px 20px !important;
}

.bbl-mega__cols {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.bbl-mega__col {
  width: auto !important;
  min-width: unset !important;
  flex: unset !important;
  margin: 0 !important;
}

.bbl-mega__colhead a {
  display: inline-block !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
}


.bbl-mega__colhead,
.bbl-mega__colhead a {
  width: 100% !important;
  display: block !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
  line-height: 1.4 !important;
}

.bbl-mega__col {
  width: 220px !important;
  max-width: 220px !important;
}


/* Tikai SADARBĪBAS dropdown */

.bbl-menu__item:nth-child(6) .bbl-mega {
  width: fit-content !important;
  min-width: 260px !important;
  max-width: 320px !important;
  min-height: auto !important;
}

.bbl-menu__item:nth-child(6) .bbl-mega__inner {
  padding: 18px 22px !important;
}

.bbl-menu__item:nth-child(6) .bbl-mega__cols {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
}

.bbl-menu__item:nth-child(6) .bbl-mega__col {
  width: auto !important;
  min-width: unset !important;
  flex: unset !important;
  margin: 0 !important;
}

.bbl-menu__item:nth-child(6) .bbl-mega__colhead a {
  display: block !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  white-space: normal !important;
}


/* ===== ONLY SADARBĪBAS DROPDOWN FIX ===== */

.bbl-menu > .bbl-menu__item:nth-child(6) {
  position: relative !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega {
  left: 0 !important;
  right: auto !important;
  top: 100% !important;
  transform: none !important;

  width: 340px !important;
  min-width: 340px !important;
  max-width: 340px !important;
  min-height: auto !important;

  padding: 0 !important;
  background: #fff !important;
  overflow: hidden !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__inner {
  padding: 24px 28px !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__grid {
  display: block !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__cols {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__col {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__colhead a {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__media {
  display: none !important;
}


/* Šaurāks SADARBĪBAS dropdown */

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega {
  width: 270px !important;
  min-width: 270px !important;
  max-width: 270px !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__inner {
  padding: 20px 22px !important;
}


/* Noņem labo bildes/pogas bloku no mega menu */

.bbl-mega__media,
.bbl-mega__promo,
.bbl-mega__aside {
  display: none !important;
}

/* Atstāj full width mega menu */

.bbl-mega__grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

/* Nedaudz kompaktāks */

.bbl-mega__inner {
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}


/* ===== Mega menu layout kā reference, bet bez bildes ===== */

/* paslēpj tikai attēlu */
.bbl-mega__media img,
.bbl-mega__media picture,
.bbl-mega__media-image {
  display: none !important;
}

/* atstāj promo kolonnu */
.bbl-mega__media,
.bbl-mega__promo,
.bbl-mega__aside {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 260px;
}

/* poga centrā */
.bbl-mega__media .button,
.bbl-mega__media a.button,
.bbl-mega__media .btn {
  margin: 0 auto;
}

/* galvenais grid */
.bbl-mega__grid {
  display: grid !important;
  grid-template-columns: 1fr 280px !important;
  align-items: stretch;
}

/* kolonnas */
.bbl-mega__cols {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 42px;
}

/* spacing */
.bbl-mega__inner {
  padding: 34px 38px !important;
}


/* Mega menu teksts paliek baltajā dropdown laukā */

.bbl-mega {
  width: min(1320px, calc(100vw - 80px)) !important;
  max-width: 1320px !important;
  min-height: auto !important;
  overflow: hidden !important;
}

.bbl-mega__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 280px !important;
  gap: 40px !important;
}

.bbl-mega__cols {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 34px 48px !important;
  width: 100% !important;
}

.bbl-mega__col {
  min-width: 0 !important;
  width: auto !important;
}

.bbl-mega__colhead a {
  display: block !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  max-width: 100% !important;
  line-height: 1.35 !important;
}

.bbl-mega__inner {
  padding: 38px 50px !important;
}


/* Noņem labo "Skatīt vairāk" / attēla rāmi mega menu */

.bbl-mega__media,
.bbl-mega__media-card,
.bbl-mega__media-img,
.bbl-mega__media-btn {
  display: none !important;
}

/* Pārkārto mega menu bez labās kolonnas */
.bbl-mega__grid {
  display: block !important;
  grid-template-columns: 1fr !important;
}

.bbl-mega__cols {
  width: 100% !important;
}


/* Mazāks mega menu logs */

.bbl-mega {
  width: min(1100px, calc(100vw - 120px)) !important;
  max-width: 1100px !important;
}

.bbl-mega__inner {
  padding: 28px 36px !important;
}

.bbl-mega__cols {
  gap: 28px 36px !important;
}


.bbl-mega {
  width: 950px !important;
}


/* Compact dropdown tikai SADARBĪBAS */

.bbl-menu__item:nth-child(6) .bbl-mega {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}

.bbl-menu__item:nth-child(6) .bbl-mega__inner {
  padding: 18px 22px !important;
}

.bbl-menu__item:nth-child(6) .bbl-mega__grid {
  display: block !important;
}

.bbl-menu__item:nth-child(6) .bbl-mega__cols {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  width: auto !important;
}

.bbl-menu__item:nth-child(6) .bbl-mega__col {
  width: fit-content !important;
}

.bbl-menu__item:nth-child(6) .bbl-mega__colhead a {
  display: inline-block !important;
  white-space: nowrap !important;
  line-height: 1.35 !important;
}

/* ===== SADARBĪBAS compact dropdown ===== */

.bbl-menu > li:nth-child(6) {
  position: relative !important;
}

.bbl-menu > li:nth-child(6) > .bbl-mega {
  width: 230px !important;
  min-width: 230px !important;
  max-width: 230px !important;
  min-height: 0 !important;
  height: auto !important;
  left: 0 !important;
  right: auto !important;
  transform: none !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.bbl-menu > li:nth-child(6) > .bbl-mega .bbl-mega__inner {
  padding: 16px 18px !important;
}

.bbl-menu > li:nth-child(6) > .bbl-mega .bbl-mega__grid {
  display: block !important;
}

.bbl-menu > li:nth-child(6) > .bbl-mega .bbl-mega__cols {
  display: block !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bbl-menu > li:nth-child(6) > .bbl-mega .bbl-mega__col {
  width: auto !important;
  margin: 0 0 18px !important;
}

.bbl-menu > li:nth-child(6) > .bbl-mega .bbl-mega__col:last-child {
  margin-bottom: 0 !important;
}

.bbl-menu > li:nth-child(6) > .bbl-mega .bbl-mega__colhead a {
  font-size: 12px !important;
  line-height: 1.35 !important;
  white-space: normal !important;
}

.bbl-menu > li:nth-child(6) > .bbl-mega .bbl-mega__media {
  display: none !important;
}


.bbl-menu .bbl-menu-compact {
  position: relative !important;
}

.bbl-menu .bbl-menu-compact > .bbl-mega {
  width: 230px !important;
  min-width: 230px !important;
  max-width: 230px !important;
  height: auto !important;
  min-height: 0 !important;
  left: 0 !important;
  transform: none !important;
  padding: 0 !important;
}

.bbl-menu .bbl-menu-compact .bbl-mega__inner {
  padding: 16px 18px !important;
}

.bbl-menu .bbl-menu-compact .bbl-mega__grid,
.bbl-menu .bbl-menu-compact .bbl-mega__cols {
  display: block !important;
}

.bbl-menu .bbl-menu-compact .bbl-mega__col {
  margin: 0 0 18px !important;
}

.bbl-menu .bbl-menu-compact .bbl-mega__col:last-child {
  margin-bottom: 0 !important;
}

.bbl-menu .bbl-menu-compact .bbl-mega__media {
  display: none !important;
}


#site-navigation .bbl-menu-compact {
  position: relative !important;
}

#site-navigation .bbl-menu-compact > .bbl-mega {
  width: 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;
  height: auto !important;
  min-height: 0 !important;
  left: 0 !important;
  right: auto !important;
  transform: none !important;
}

#site-navigation .bbl-menu-compact > .bbl-mega .bbl-mega__inner {
  padding: 14px 16px !important;
}

#site-navigation .bbl-menu-compact > .bbl-mega .bbl-mega__grid,
#site-navigation .bbl-menu-compact > .bbl-mega .bbl-mega__cols {
  display: block !important;
}

#site-navigation .bbl-menu-compact > .bbl-mega .bbl-mega__col {
  margin: 0 0 16px !important;
}

#site-navigation .bbl-menu-compact > .bbl-mega .bbl-mega__col:last-child {
  margin-bottom: 0 !important;
}

#site-navigation .bbl-menu-compact > .bbl-mega .bbl-mega__media {
  display: none !important;
}


/* =========================================================
   COMPACT MEGA MENU - visiem, izņemot SADARBĪBAS
   ========================================================= */

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega {
  width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  background: #fff !important;
}

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega .bbl-mega__inner {
  max-width: 1050px !important;
  padding: 20px 36px 24px !important;
  margin: 0 auto !important;
}

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega .bbl-mega__grid {
  display: block !important;
}

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega .bbl-mega__cols {
  column-count: 3 !important;
  column-gap: 42px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega .bbl-mega__col {
  display: inline-block !important;
  width: 100% !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  break-inside: avoid !important;
}

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega .bbl-mega__colhead {
  margin: 0 0 4px 0 !important;
  padding: 0 !important;
}

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega .bbl-mega__colhead a {
  display: inline-block !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  color: #000 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega .bbl-mega__links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega .bbl-mega__linkitem {
  margin: 0 0 3px 0 !important;
  padding: 0 !important;
  line-height: 1.15 !important;
}

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega .bbl-mega__link {
  display: inline-block !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.15 !important;
  font-weight: 400 !important;
  color: #000 !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega .bbl-mega__media {
  display: none !important;
}


/* =========================================================
   TIKAI SADARBĪBAS DROPDOWN
   ========================================================= */

.bbl-menu > .bbl-menu__item:nth-child(6) {
  position: relative !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: 100% !important;
  transform: translateX(-50%) !important;

  width: 270px !important;
  min-width: 270px !important;
  max-width: 270px !important;

  background: #fff !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08) !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6):hover > .bbl-mega {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__inner {
  max-width: none !important;
  width: 100% !important;
  padding: 20px 22px !important;
  margin: 0 !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__grid {
  display: block !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__cols {
  display: flex !important;
  flex-direction: column !important;
  column-count: unset !important;
  column-gap: 0 !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__col {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__colhead {
  margin: 0 !important;
  padding: 0 !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__colhead a {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;

  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  color: #000 !important;
  text-decoration: none !important;

  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__links,
.bbl-menu > .bbl-menu__item:nth-child(6) > .bbl-mega .bbl-mega__media {
  display: none !important;
}


.bbl-menu > .bbl-menu__item:not(:nth-child(6)) > .bbl-mega {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
}
.b2b-partners-grid .b2b-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.b2b-partners-grid .b2b-partner img {
    display: block;
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 70px;
    object-fit: contain;
}

.b2b-partners-grid .b2b-partner--zoom img {
    transform: scale(1.4);
    transform-origin: center;
}