/* =========================================================
   BuduProfi — Home (Standalone)
   CLEAN FINAL (footer moved to bp-footer.css)
   ========================================================= */

:root{
  --bp-white:#ffffff;
  --bp-ivory:#F3F1EA;
  --bp-black:#242328;
  --bp-deep-nude:#4B3831;

  --bp-border: rgba(36,35,40,.12);
  --bp-border-soft: rgba(36,35,40,.10);
  --bp-shadow: 0 18px 45px rgba(0,0,0,.10);
  --bp-radius: 12px;
  --bp-radius-lg: 16px;

  /* Mobile header controls */
  --bp-logo-mobile-h: 40px;
  --bp-logo-mobile-maxw: 66vw;
  --bp-icon-size: 22px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body.bp-standalone{
  font-family: Arial, Helvetica, sans-serif;
  color:var(--bp-black);
  background:var(--bp-white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}

/* =========================
   HEADER
   ========================= */

.bp-header{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--bp-white);
  border-bottom:1px solid var(--bp-border-soft);
}

.bp-header-top{ position:relative; }

.bp-header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  gap:14px;
}

/* logo */
.bp-logo{
  font-weight:800;
  font-size:20px;
  letter-spacing:.2px;
  white-space:nowrap;
}

/* right side */
.bp-header-right{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

.bp-phone{
  font-weight:700;
  opacity:.9;
  white-space:nowrap;
}

/* icon buttons */
.bp-icon-btn{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:transparent;
  border:0;
  padding:0;
  cursor:pointer;
}
.bp-icon-btn svg{
  fill:none;
  stroke:var(--bp-black);
  stroke-width:1.8;
}
.bp-icon-btn:hover{ background:rgba(36,35,40,.04); }

.bp-icon-btn img{
  width: var(--bp-icon-size);
  height: var(--bp-icon-size);
  display:block;
}

/* =========================
   SEARCH (compact input + bigger button)
   ========================= */

.bp-search{
  flex: 0 1 620px;
  margin: 0 auto;
}

.bp-search form{
  position: relative;
  width: 100%;
}

.bp-search input[type="search"]{
  width: 100%;
  min-width: 0;
  font-size: 14px;
  line-height: 1.2;
  padding: 10px 60px 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--bp-border);
  outline: none;
  background: var(--bp-white);
}

.bp-search button[type="submit"],
.bp-search input[type="submit"]{
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  height: 34px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--bp-deep-nude);
  color: #fff;
  cursor: pointer;
}

.bp-search button[type="submit"]:hover,
.bp-search input[type="submit"]:hover{
  background:#3f2f29;
}

/* Desktop vs mobile search */
.bp-search--mobile{display:none}
.bp-search-toggle{display:none}

/* =========================
   NAV (Primary desktop)
   ========================= */

.bp-nav--desktop{ display:block; flex: 1 1 auto; }

.bp-menu{
  list-style:none;
  display:flex;
  gap:18px;
  margin:0;
  padding:0;
  align-items:center;
}

.bp-menu > li{ position:relative; }

.bp-menu > li > a{
  font-weight:700;
  font-size:14px;
  opacity:.92;
  padding:10px 6px;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.bp-menu > li > a:hover{ opacity:1; }

.bp-menu > li.menu-item-has-children > a{
  position:relative;
  padding-right:18px;
}
.bp-menu > li.menu-item-has-children > a::after{
  content:"";
  position:absolute;
  right:4px;
  top:50%;
  width:8px;height:8px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:translateY(-55%) rotate(45deg);
  opacity:.55;
}

/* GLOBAL DROPDOWN */
.bp-menu li.menu-item-has-children{ position:relative; }

.bp-menu li.menu-item-has-children > .sub-menu{
  list-style:none;
  position:absolute;
  left:0;
  top:100%;
  margin:0;
  padding:10px;
  min-width:220px;
  background:#fff;
  border:1px solid var(--bp-border-soft);
  border-radius:14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  z-index:80;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .12s ease, visibility .12s ease;
  transform: translateY(-1px);
}

.bp-menu li.menu-item-has-children:hover > .sub-menu,
.bp-menu li.menu-item-has-children:focus-within > .sub-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.bp-menu li.menu-item-has-children > a{ position:relative; }
.bp-menu li.menu-item-has-children > a::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-14px;
  height:14px;
}
.bp-menu li.menu-item-has-children > .sub-menu::before{
  content:"";
  position:absolute;
  left:0;
  top:-14px;
  width:100%;
  height:14px;
}

.bp-menu .sub-menu li{ position:relative; }
.bp-menu .sub-menu li a{
  display:block;
  padding:10px 10px;
  border-radius:10px;
  font-weight:600;
  white-space:normal;
  line-height:1.25;
  overflow-wrap:anywhere;
}
.bp-menu .sub-menu li a:hover{ background:rgba(36,35,40,.04); }

.bp-menu .sub-menu .menu-item-has-children > .sub-menu{
  left:100%;
  top:0;
  transform: translate(-1px, 0);
}

.bp-menu .sub-menu .menu-item-has-children > a{
  padding-right:28px;
}
.bp-menu .sub-menu .menu-item-has-children > a::after{
  content:"";
  position:absolute;
  right:10px;
  top:50%;
  width:7px;height:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:translateY(-50%) rotate(-45deg);
  opacity:.55;
}

/* =========================
   TIENDA / Department dropdown
   ========================= */

.bp-dept{ position:relative; }

.bp-dept__toggle{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid var(--bp-border);
  border-radius:999px;
  background:var(--bp-ivory);
  color:var(--bp-black);
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
}
.bp-dept__toggle:hover{ background: #ECE7DC; }

.bp-dept__chev{
  width:8px;height:8px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(45deg);
  margin-top:-2px;
  opacity:.75;
}

.bp-dept__panel{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  width:290px;
  max-width:320px;
  padding:12px 0;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(36,35,40,.10);
  box-shadow: var(--bp-shadow);
  z-index:999;
  transform: translateY(-1px);
  max-height: calc(100vh - 140px);
  overflow:visible;
  overscroll-behavior: contain;
}

@media (min-width: 769px){
  .bp-dept:hover .bp-dept__panel,
  .bp-dept:focus-within .bp-dept__panel{
    display:block;
  }
}

.bp-dept-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:block;
}
.bp-dept-menu > li{
  position:relative;
  margin:0;
}
.bp-dept-menu > li > a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 16px;
  font-weight:600;
  white-space:normal;
  line-height:1.25;
  overflow-wrap:anywhere;
}
.bp-dept-menu > li:hover > a{ background: rgba(36,35,40,.05); }

.bp-dept-menu > li.menu-item-has-children > a{
  padding-right:34px;
  position:relative;
}
.bp-dept-menu > li.menu-item-has-children > a:after{
  content:'';
  position:absolute;
  right:14px;
  top:50%;
  width:7px;
  height:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
  opacity:.6;
}

.bp-dept-menu > li.menu-item-has-children > .sub-menu{
  list-style:none;
  position:absolute;
  top:0;
  left:100%;
  margin:0;
  padding:10px;
  width:320px;
  max-width:40vw;
  background:#fff;
  border:1px solid rgba(36,35,40,.10);
  border-radius:14px;
  box-shadow: var(--bp-shadow);
  z-index:1000;
  display:none;
  transform: translateX(-1px);
  max-height: calc(100vh - 160px);
  overflow:auto;
  overscroll-behavior: contain;
}
.bp-dept-menu > li.menu-item-has-children:hover > .sub-menu{ display:block; }

.bp-dept-menu .sub-menu li{ margin:0; }
.bp-dept-menu .sub-menu a{
  display:block;
  padding:8px 10px;
  border-radius:10px;
  font-weight:500;
  white-space:normal;
  line-height:1.25;
  overflow-wrap:anywhere;
}
.bp-dept-menu .sub-menu a:hover{ background: rgba(36,35,40,.05); }

.bp-dept-menu > li.menu-item-has-children > a::before{
  content:"";
  position:absolute;
  right:-14px;
  top:0;
  width:14px;
  height:100%;
}
.bp-dept-menu > li.menu-item-has-children > .sub-menu::before{
  content:"";
  position:absolute;
  left:-14px;
  top:0;
  width:14px;
  height:100%;
}

.bp-dept-menu > li:nth-last-child(-n+4) > .sub-menu{
  top: auto !important;
  bottom: 0 !important;
}

/* =========================
   BURGER + MOBILE PANELS
   ========================= */

.bp-burger{
  display:none;
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  border-radius:12px;
  cursor:pointer;
}
.bp-burger:hover{ background:rgba(36,35,40,.04); }
.bp-burger span{
  display:block;
  width:20px;
  height:2px;
  background:var(--bp-black);
  margin:4px auto;
  border-radius:2px;
  transition:transform .2s ease, opacity .2s ease;
}

.bp-nav--mobile{
  display:none;
  border-top:1px solid rgba(36,35,40,.10);
  background:var(--bp-white);
}
.bp-nav--mobile[hidden]{display:none}

.bp-nav-mobile-inner{
  max-width:1200px;
  margin:0 auto;
  padding:12px 16px;
}

.bp-menu--mobile{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}

@media (max-width:768px){
  .bp-nav--mobile .bp-menu--mobile .sub-menu{
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
    margin: 8px 0 0 0 !important;
    padding: 0 0 0 14px !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: none;
  }

  .bp-nav--mobile .bp-menu--mobile li.is-open > .sub-menu{
    display: block;
  }

  .bp-nav--mobile .bp-menu--mobile > li.menu-item-has-children > a::before,
  .bp-nav--mobile .bp-menu--mobile > li.menu-item-has-children > a::after,
  .bp-nav--mobile .bp-menu--mobile .menu-item-has-children > a::before,
  .bp-nav--mobile .bp-menu--mobile .menu-item-has-children > a::after{
    content: none !important;
  }
}

/* Modern Centered Burger */

.bp-burger{
  position:relative;
  width:40px;
  height:40px;
  border:0;
  background:transparent;
  cursor:pointer;
}

.bp-burger span{
  position:absolute;
  left:50%;
  width:22px;
  height:2px;
  background:var(--bp-black);
  border-radius:2px;
  transform:translateX(-50%);
  transition:transform .25s ease, opacity .2s ease;
}

.bp-burger span:nth-child(1){ top:11px; }
.bp-burger span:nth-child(2){ top:17px; }
.bp-burger span:nth-child(3){ top:23px; }

.bp-burger[aria-expanded="true"] span:nth-child(1){
  top:19px;
  transform:translateX(-50%) rotate(45deg);
}

.bp-burger[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.bp-burger[aria-expanded="true"] span:nth-child(3){
  top:19px;
  transform:translateX(-50%) rotate(-45deg);
}

/* =========================
   HERO
   ========================= */

.bp-hero-slider{
  position: relative;
}

.bp-hero-slide{
  position: relative;
  min-height: 600px;
  background-image: var(--bp-hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bp-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(55,45,40,.68) 0%,
    rgba(55,45,40,.50) 36%,
    rgba(55,45,40,.22) 62%,
    rgba(55,45,40,0) 100%
  );
}

.bp-hero-inner{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 16px;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.bp-hero-content{
  max-width: 650px;
  color: #fff;
}

.bp-hero-title{
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}

.bp-hero-text{
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.45;
  opacity: .92;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}

.bp-hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}

.bp-btn--primary{
  background: #3f2f29;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  color: #fff;
}

.bp-btn--primary:hover{
  background: #342620;
}

.bp-btn--secondary{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.bp-btn--secondary:hover{
  background: rgba(255,255,255,.20);
}

@media (min-width: 1024px){
  body.bp-standalone .bp-hero-slide{
    background-position: center 72%;
  }
}

@media (max-width: 768px){
  .bp-hero-slide{
    min-height: 520px;
  }

  .bp-hero-inner{
    min-height: 520px;
    padding: 34px 16px;
    align-items: flex-start;
  }

  .bp-hero-content{
    max-width: 92%;
    padding-top: 8px;
  }

  .bp-hero-title{
    font-size: 28px;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .bp-hero-text{
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 14px;
    max-width: 28ch;
  }

  .bp-hero-cta{
    gap: 10px;
  }

  .bp-hero-cta .bp-btn--secondary{
    display: none;
  }

  .bp-btn{
    width: auto;
    min-width: 220px;
    padding: 13px 16px;
    border-radius: 14px;
  }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:1024px){
  .bp-search input[type="search"]{min-width:260px}
}

@media (max-width:768px){
  .bp-phone{display:none}

  .bp-search--desktop{display:none}
  .bp-search-toggle{display:inline-flex}

  .bp-search--mobile{
    display:block;
    border-top:1px solid rgba(36,35,40,.10);
    background:var(--bp-white);
  }
  .bp-search-mobile-inner{
    max-width:1200px;
    margin:0 auto;
    padding:12px 16px;
  }
  .bp-search--mobile[hidden]{display:none}

  .bp-nav--desktop{display:none}
  .bp-dept{display:none}

  .bp-burger{display:inline-flex; align-items:center; justify-content:center;}
  .bp-nav--mobile{display:block}

  .bp-hero-slide{min-height:520px}
  .bp-hero-inner{min-height:520px;padding:34px 16px}
  .bp-hero-title{font-size:30px}
  .bp-hero-text{font-size:15px}
  .bp-btn{width:100%}
}

/* =========================
   MOBILE HEADER controls
   ========================= */
@media (max-width: 768px){
  .bp-header-inner{
    padding: 10px 12px;
    gap: 10px;
    align-items: center;
  }

  .bp-logo{
    max-width: var(--bp-logo-mobile-maxw);
    flex: 0 1 auto;
  }
  .bp-logo img{
    height: var(--bp-logo-mobile-h);
    width: auto;
    max-width: 100%;
  }

  .bp-header-right{
    margin-left: auto;
    display:flex;
    align-items:center;
    gap: 6px;
  }

  .bp-icon-btn,
  .bp-burger{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin:0;
    flex-direction: column;
  }

  .bp-header-inner--nav{
    display:none !important;
  }

  .bp-dept__panel{ display:none !important; }
}

@media (min-width: 769px){
  .bp-nav--mobile{ display:none !important; }
}

/* =========================
   MOBILE MENU
   ========================= */
@media (max-width:768px){
  .bp-menu--mobile .sub-menu{
    display:none !important;
    padding:10px 0 0 14px;
    margin:0;
  }

  .bp-menu--mobile > li{
    width:100%;
    border-bottom:1px solid rgba(36,35,40,.12);
    position:relative;
  }

  .bp-menu--mobile > li > a{
    display:block;
    width:100%;
    padding:16px 56px 16px 16px;
    font-size:18px;
    line-height:1.2;
    font-weight:700;
  }

  .bp-menu--mobile .bp-sub-toggle{
    position:absolute;
    right:12px;
    top:12px;
    width:36px;
    height:36px;
    border:0;
    background:transparent;
    cursor:pointer;
    z-index:3;
  }

  .bp-menu--mobile .bp-sub-toggle::before,
  .bp-menu--mobile .bp-sub-toggle::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:18px;
    height:2px;
    background:rgba(36,35,40,.85);
    transform:translate(-50%,-50%);
    border-radius:2px;
  }
  .bp-menu--mobile .bp-sub-toggle::after{
    width:2px;
    height:18px;
  }

  .bp-menu--mobile li.is-open > .bp-sub-toggle::after{
    display:none;
  }

  .bp-menu--mobile li.is-open > .sub-menu{
    display:block !important;
  }
}

/* KILL THEME MOBILE PANELS on bp-standalone only */
body.bp-standalone #primary-mobile-nav,
body.bp-standalone #mf-off-canvas-layer,
body.bp-standalone #mf-off-canvas,
body.bp-standalone #primary-user-nav,
body.bp-standalone #pswp {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Mobile search */
.bp-header-top{ position:relative; }

.bp-search--mobile{
  position:absolute;
  left:0;
  right:0;
  top:100%;
  z-index:200;
  border-top:1px solid rgba(36,35,40,.10);
  background:var(--bp-white);
}

.bp-search-mobile-inner{
  padding:10px 16px;
}

.bp-search--mobile input[type="search"],
.bp-search--mobile input[type="text"]{
  font-size:16px !important;
  line-height:1.2;
  -webkit-text-size-adjust:100%;
}

/* MOBILE MENU — scroll lock + fixed panel under header */
body.bp-menu-open{
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
}

.bp-header{ z-index: 9999 !important; }

.bp-header-top{
  position: sticky;
  top: 0;
  z-index: 10000 !important;
  background: var(--bp-white);
}

@media (max-width:768px){
  .bp-nav--mobile{
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    top: 72px;
    z-index: 9000 !important;
    overflow: hidden !important;
    background: var(--bp-white);
  }

  .bp-nav-mobile-inner{
    height: calc(100dvh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding-bottom: 18px;
  }
}



/* =========================
   PRODUCTS
   ========================= */

.bp-products{ padding:62px 0 10px; }

.bp-products .bp-header-inner.bp-products__inner{
  display:block !important;
}

.bp-products__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  margin:0 0 14px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(36,35,40,.12);
}

.bp-products__title{
  margin:0;
  font-size:22px;
  line-height:1.15;
}

.bp-products__all{
  font-size:14px;
  text-decoration:none;
  white-space:nowrap;
  opacity:.75;
}
.bp-products__all:hover{ opacity:1; }

.bp-products__track{ width:100%; }

.bp-products__track .products{
  margin:0 !important;
  padding:0 !important;
  list-style:none;
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

@media (min-width:1200px){
  .bp-products__track .products{
    grid-template-columns:repeat(5, minmax(0,1fr));
  }
}

.bp-products__track .products > li.product{
  margin:0 !important;
  background:#fff;
  border:1px solid rgba(36,35,40,.08);
  border-radius:16px;
  padding:14px;
  display:block;
}

.bp-products__track .products > li.product .bp-card__inner{
  width:100%;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.bp-products__track .products > li.product .bp-card__body{
  display:flex;
  flex-direction:column;
  flex:1;
}

.bp-products__track .products > li.product a.bp-card__image{
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  padding:12px;
  background:linear-gradient(
    135deg,
    rgba(243,241,234,1) 0%,
    rgba(75,52,46,.10) 100%
  );
}

.bp-products__track .products > li.product a.bp-card__image img{
  display:block;
  border-radius:12px;
  background:transparent;
}

body.bp-standalone .bp-products__track .products > li.product .bp-card__body,
body.bp-standalone .bp-products__track .products > li.product .bp-card__body *{
  font-family:"PP Pier Sans","PP Pier Sans","PP Pier Sans Regular",Arial,Helvetica,sans-serif;
}

.bp-products__track .products > li.product .woocommerce-loop-product__title{
  margin:10px 0 10px;
  font-weight:600;
  font-size:14px;
  line-height:1.25;
  min-height:calc(1.75em * 3);
  max-height:calc(1.75em * 3);
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:3;
  overflow:hidden;
}

.bp-products__track .products > li.product .woocommerce-loop-product__title a{
  color:inherit;
  text-decoration:none;
}

.bp-products__track .products > li.product .bp-loop-meta{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding-bottom:18px;
  position:relative;
}

.bp-products__track .products > li.product .bp-price-row{
  display:flex;
  align-items:baseline;
  gap:10px;
  min-height:28px;
}

.bp-products__track .products > li.product .bp-price{
  font-weight:800;
  font-size:20px;
  line-height:1.1;
  color:#4b342e;
  display:inline-flex;
  align-items:baseline;
  gap:10px;
  white-space:nowrap;
}

.bp-products__track .products > li.product .bp-iva{
  font-size:12px;
  font-weight:500;
  color:rgba(0,0,0,.50);
  white-space:nowrap;
}

@media (max-width:768px){
  .bp-products__track .products > li.product .bp-price-row{
    flex-wrap: wrap;
    row-gap: 4px;
    column-gap: 8px;
    align-items: baseline;
  }

  .bp-products__track .products > li.product .bp-price{
    white-space: nowrap;
    max-width: 100%;
  }

  .bp-products__track .products > li.product .bp-iva{
    white-space: normal;
    overflow-wrap: anywhere;
    max-width: 100%;
    margin-left: 6px;
  }
}

.bp-products__track .products > li.product .bp-price del{ opacity:.55; margin-right:6px; }
.bp-products__track .products > li.product .bp-price del .woocommerce-Price-amount{ font-size:14px; font-weight:600; }
.bp-products__track .products > li.product .bp-price ins{ text-decoration:none; }
.bp-products__track .products > li.product .bp-price ins .woocommerce-Price-amount{ font-size:20px; font-weight:800; }

.bp-products__track .products > li.product .bp-stock{
  font-size:13px;
  font-weight:600;
  line-height:1.2;
  min-height:16px;
}

.bp-products__track .products > li.product .bp-ship-row{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  min-height:18px;
  display:flex;
  align-items:flex-end;
}
.bp-products__track .products > li.product .bp-ship-row .devnet_fsl-label{
  font-size:12px;
  font-weight:500;
  color:rgba(0,0,0,.55);
}

.bp-products__track .products > li.product .bp-card__actions{ margin-top:auto; }

.bp-products__track .products > li.product a.button{
  margin-top:12px !important;
  background:#4b342e;
  color:#fff !important;
  border:0;
  border-radius:12px;
  padding:12px 14px;
  width:100%;
  text-align:center;
  font-weight:700;
}

.bp-products .products,
.bp-products ul.products{ margin:0; padding:0; }

.bp-products .products > li.product,
.bp-products ul.products > li.product{
  float:none !important;
  clear:none !important;
  margin:0 !important;
}

.bp-products .products > li.product.first,
.bp-products ul.products > li.product.first{ clear:none !important; }

.bp-products ul.products::before,
.bp-products ul.products::after,
.bp-products .products::before,
.bp-products .products::after{
  content:none !important;
  display:none !important;
}

@media (max-width:768px){

  .bp-products{ padding:24px 0 6px; }
  .bp-products__title{ font-size:18px; }

  .bp-products:not(.bp-products--premium) .bp-products__track{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    padding:0 16px 14px;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
  }
  .bp-products:not(.bp-products--premium) .bp-products__track::-webkit-scrollbar{ height:0; }

  .bp-products:not(.bp-products--premium) .bp-products__track ul.products{
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:12px;
    margin:0 !important;
    padding:0 !important;
    width:max-content;
  }

  .bp-products:not(.bp-products--premium) .bp-products__track ul.products > li.product{
    flex:0 0 78%;
    max-width:78%;
    scroll-snap-align:start;
  }

  .bp-products:not(.bp-products--premium) .bp-products__track .products > li.product .woocommerce-loop-product__title{
    font-size:13px;
    min-height:calc(1.25em * 3);
    max-height:calc(1.25em * 3);
  }
}

/* Ver todo */
.bp-products__more-card{
  background: transparent !important;
  border: 0 !important;
  padding: 14px !important;
  display: flex !important;
}

.bp-products__more-card .bp-products__more-link{
  width:100%;
  min-height: 0 !important;
  flex: 1 1 auto;
  height: 100%;
  padding:20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-family:"PP Pier Sans","PPPierSans","PP Pier Sans Regular",Arial,Helvetica,sans-serif;
  color:#3f2f29;
  background:#F3F1EA !important;
  border:1px solid rgba(36,35,40,.08);
  border-radius:16px;
  position:relative;
  text-decoration:none !important;
}
.bp-products__more-card .bp-products__more-link *{ text-decoration:none !important; }

.bp-products__more-card .bp-products__more-link span::before{
  content:"Colección completa";
  display:block;
  margin-bottom:10px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.2px;
  color: rgba(36,35,40,.55);
}

.bp-products__more-card .bp-products__more-link span{
  font-size:22px;
  font-weight:800;
  line-height:1.05;
  letter-spacing:-.01em;
}

.bp-products__more-card .bp-products__more-link::after{
  content:"→";
  position:absolute;
  right:18px;
  bottom:18px;
  font-size:20px;
  opacity:.7;
  line-height:1;
}

/* PRODUCTS — Premium Grid Block */

.bp-products--premium{
  background:transparent;
  padding:50px 0;
}

.bp-products--premium .bp-products__inner{
  max-width:1240px;
  margin:0 auto;
}

.bp-products--premium .bp-products__track{
  overflow:visible !important;
  padding:0 !important;
}

.bp-products--premium .bp-products__track ul.products{
  display:grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap:40px;
  width:100% !important;
}

.bp-products--premium .bp-products__track ul.products > li.product{
  flex: unset !important;
  max-width: unset !important;
  width: 100% !important;
  min-width: 0 !important;
}

@media (max-width:768px){

  .bp-products--premium{
    padding:50px 0;
  }

  .bp-products--premium .bp-products__inner{
    max-width: 100%;
    padding: 0 16px;
  }

  .bp-products--premium .bp-products__track ul.products{
    grid-template-columns: repeat(2, 1fr);
    gap:14px;
  }

  .bp-products--premium .bp-products__track ul.products > li.product:nth-child(n+7){
    display:none !important;
  }
}

@media (min-width:769px){
  .bp-products:not(.bp-products--premium) 
  .bp-products__more-card{
    display: none !important;
  }
}

/* =========================
   CATEGORY SHOWCASE
   ========================= */

.bp-catshow{
  padding: 50px 0;
  background: transparent;
}

.bp-catshow__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.bp-catshow__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  margin:0 0 16px;
  padding-bottom:10px;
  border-bottom:1px solid rgba(36,35,40,.12);
}

.bp-catshow__title{
  margin:0;
  font-size:22px;
  line-height:1.15;
  font-weight:700;
}

.bp-catshow__all{
  font-size:14px;
  white-space:nowrap;
  opacity:.75;
  text-decoration:none;
}
.bp-catshow__all:hover{ opacity:1; }

.bp-catshow__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 18px;
  margin-top: 18px;
}

.bp-catshow__tile{
  position:relative;
  display:block;
  border-radius:16px;
  overflow:hidden;
  background: #F3F1EA;
  border: 1px solid rgba(36,35,40,.08);
  text-decoration:none;
  color: inherit;
  transform: translateZ(0);
}

.bp-catshow__media{
  position:absolute;
  inset:0;
}
.bp-catshow__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.01);
}

.bp-catshow__overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding: 16px 16px 14px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.22) 35%,
    rgba(0,0,0,.44) 100%
  );
  color:#fff;
}

.bp-catshow__sub{
  display:block;
  font-size:12px;
  font-weight:600;
  opacity:.92;
  letter-spacing:.2px;
  margin-bottom:6px;
}

.bp-catshow__h{
  display:block;
  font-size:20px;
  font-weight:800;
  line-height:1.05;
  letter-spacing:-.01em;
}

@media (hover:hover){
  .bp-catshow__tile:hover .bp-catshow__media img{
    transform: scale(1.04);
    transition: transform .35s ease;
  }
  .bp-catshow__tile:hover{
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
    transition: box-shadow .25s ease;
  }
}

.bp-catshow__tile--featured{
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.bp-catshow__mini{
  display: contents;
}

.bp-catshow__tile--mini{
  grid-column: auto;
  grid-row: auto;
}

.bp-catshow__tile.is-wide{
  grid-column: 3 / span 2;
}

@media (min-width: 1024px){
  .bp-catshow__inner{ padding: 0 24px; }
  .bp-catshow__grid{
    gap: 22px;
    grid-auto-rows: 150px;
  }
}

@media (max-width: 1023px){
  .bp-catshow{
    padding: 50px 0;
  }
  .bp-catshow__inner{
    padding: 0 16px;
  }
  .bp-catshow__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 140px;
    gap: 14px;
  }
  .bp-catshow__tile--featured{
    grid-column: 1 / span 3;
    grid-row: 1 / span 2;
  }
  .bp-catshow__tile.is-wide{
    grid-column: 1 / span 3;
  }
}

@media (max-width: 768px){
  .bp-catshow{
    padding: 40px 0;
  }
  .bp-catshow__inner{
    padding: 0 12px;
  }
  .bp-catshow__title{ font-size:18px; }

  .bp-catshow__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 120px;
    gap: 12px;
  }

  .bp-catshow__tile--featured{
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }

  .bp-catshow__h{ font-size:16px; }
  .bp-catshow__sub{ font-size:11px; margin-bottom:4px; }
}

/* =========================
   PROMO slider
   ========================= */

.bp-promo{ padding: 56px 0; }
.bp-promo__inner{ max-width:1200px; margin:0 auto; padding:0 16px; }

.bp-promo__slider{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  background:#F3F1EA;
  border:1px solid rgba(36,35,40,.10);
}

.bp-promo__track{
  display:flex;
  width:100%;
  transform:translateX(0);
  transition:transform .35s ease;
  will-change:transform;
}

.bp-promo__slide{
  flex:0 0 100%;
  display:block;
  text-decoration:none;
}

.bp-promo__slide img{
  width:100%;
  height:auto;
  object-fit:contain;
}

/* arrows */
.bp-promo__nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(36,35,40,.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor:pointer;
  z-index:2;
}
.bp-promo__nav--prev{ left:12px; }
.bp-promo__nav--next{ right:12px; }
.bp-promo__nav::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:10px;height:10px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:translate(-50%,-50%) rotate(135deg);
  opacity:.95;
}
.bp-promo__nav--next::before{ transform:translate(-50%,-50%) rotate(-45deg); }

/* dots */
.bp-promo__dots{
  position:absolute;
  left:0; right:0;
  bottom:10px;
  display:flex;
  justify-content:center;
  gap:8px;
  z-index:2;
}
.bp-promo__dots button{
  width:8px;height:8px;
  border-radius:999px;
  border:0;
  background: rgba(255,255,255,.55);
  cursor:pointer;
}
.bp-promo__dots button.is-active{
  background:#fff;
}

/* mobile */
@media (max-width:768px){
  .bp-promo{ padding: 12px 0; }
  .bp-promo__inner{ padding:0 12px; }
  .bp-promo__slide img{ height: 380px; }
  .bp-promo__nav{ display:none; }
}

/* =========================
   SEO BLOCK
   ========================= */

.bp-seo{
  padding: 50px 0;
  background: transparent;
}

.bp-seo__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.bp-seo__title{
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
  color: var(--bp-black, #242328);
}

.bp-seo__lead{
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
  max-width: 82ch;
  font-weight: 400;
  color: rgba(36,35,40,.75);
  opacity: 1;
}

.bp-seo__list{
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 18px;
}

.bp-seo__list li{
  position: relative;
  padding-left: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(36,35,40,.75);
  opacity: 1;
}

.bp-seo__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:6px;
  height:6px;
  border-radius: 99px;
  background: rgba(36,35,40,.28);
}

.bp-seo__links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  opacity: 1;
  color: rgba(36,35,40,.78);
}

.bp-seo__link{
  font-weight: 500;
  text-decoration: none;
  color: rgba(36,35,40,.85);
}

.bp-seo__link:hover{
  color: var(--bp-black, #242328);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bp-seo__dot{
  color: rgba(36,35,40,.45);
}

@media (max-width: 768px){
  .bp-seo{ padding: 44px 0; }
  .bp-seo__title{ font-size: 20px; }
  .bp-seo__list{ grid-template-columns: 1fr; gap: 8px; }
}

/* =========================
   MOBILE: limit products
   ========================= */

@media (max-width:768px){
  .bp-products--premium 
  .bp-products__track ul.products > li.product:nth-child(n+5){
    display:none !important;
  }
}

/* =========================
   MOBILE: hide hero
   ========================= */

@media (max-width:768px){
  .bp-hero-slider{
    display:none !important;
  }
}

/* =========================
   MOBILE PROMO FIRST
   ========================= */

@media (max-width:768px){
  .bp-promo{
    order:-1;
  }
}

.bp-main{
  display:flex;
  flex-direction:column;
}

/* =========================
   MOBILE PROMO SIZE
   ========================= */

@media (max-width:768px){
  .bp-promo__slide img{
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:14px;
  }
}

.bp-promo__slide{
  background:#f6f4ef;
}

/* =========================
   TRUST BLOCK
   ========================= */

.bp-trust{
  padding: 18px 0 8px;
  background:#F6F4EF;
}

.bp-trust__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.bp-trust__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bp-trust__item{
  min-height:120px;
  padding:16px 14px;
  border:1px solid rgba(36,35,40,.08);
  border-radius:14px;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
}

.bp-trust__icon{
  width:65px;
  height:60px;
  border-radius:16px;
  background:rgba(75,56,49,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.bp-trust__icon img{
  width:36px;
  height:36px;
  object-fit:contain;
  display:block;
}

.bp-trust__title{
  font-size:16px;
  font-weight:700;
  margin-bottom:4px;
}

.bp-trust__text{
  font-size: 13px;
  line-height: 1.4;
  color: rgba(36,35,40,.72);
}

@media (max-width: 1024px){
  .bp-trust__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .bp-trust{
    padding: 14px 0 6px;
  }

  .bp-trust__inner{
    padding: 0 12px;
  }

  .bp-trust__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .bp-trust__item{
    min-height: 112px;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .bp-trust__icon{
    width: 46px;
    height: 36px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .bp-trust__title{
    font-size: 14px;
    margin-bottom: 4px;
  }

  .bp-trust__text{
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (min-width:1024px){
  .bp-trust{
    padding:28px 0;
  }

  .bp-trust__inner{
    padding:0 20px;
  }

  .bp-trust__grid{
    grid-template-columns:repeat(4,1fr);
    background:#fff;
    border:1px solid rgba(36,35,40,.08);
    border-radius:18px;
    overflow:hidden;
  }

  .bp-trust__item{
    flex-direction:row;
    align-items:center;
    gap:16px;
    min-height:100px;
    padding:18px 22px;
    border:none;
    border-right:1px solid rgba(36,35,40,.08);
    background:transparent;
  }

  .bp-trust__item:last-child{
    border-right:none;
  }

  .bp-trust__icon{
    margin-bottom:0;
  }

  .bp-trust__title{
    font-size:16px;
    margin-bottom:2px;
  }

  .bp-trust__text{
    font-size:13px;
  }
}

/* =========================
   BRANDS MARQUEE
   ========================= */

.bp-brands{
  padding: 30px 0 24px;
  background: transparent;
  overflow: hidden;
}

.bp-brands__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.bp-brands__head{
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(36,35,40,.12);
}

.bp-brands__title{
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--bp-black, #242328);
}

.bp-brands__marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0 2px;
}

.bp-brands__marquee::before,
.bp-brands__marquee::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:72px;
  z-index:2;
  pointer-events:none;
}

.bp-brands__marquee::before{
  left:0;
  background:linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.bp-brands__marquee::after{
  right:0;
  background:linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.bp-brands__track{
  display:flex;
  align-items:center;
  gap:32px;
  width:max-content;
  animation: bpBrandsMarquee 55s linear infinite;
  will-change: transform;
}

.bp-brands__marquee:hover .bp-brands__track{
  animation-play-state: paused;
}

.bp-brands__item{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  height:64px;
  text-decoration:none;
  transition:transform .18s ease, opacity .18s ease;
  opacity: .96;
}

.bp-brands__item img{
  display:block;
  width:auto;
  height:65px;
  max-width:170px;
  object-fit:contain;
  border-radius:10px;
}

@keyframes bpBrandsMarquee{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

@media (max-width: 1024px){
  .bp-brands{
    padding: 26px 0 18px;
  }

  .bp-brands__title{
    font-size: 20px;
  }

  .bp-brands__marquee{
    padding: 8px 0 2px;
  }

  .bp-brands__marquee::before,
  .bp-brands__marquee::after{
    width:52px;
  }

  .bp-brands__track{
    gap:26px;
    animation-duration: 44s;
  }

  .bp-brands__item{
    min-width:132px;
    height:58px;
  }

  .bp-brands__item img{
    height:58px;
    max-width:148px;
  }
}

@media (max-width: 768px){
  .bp-brands{
    padding: 20px 0 12px;
  }

  .bp-brands__inner{
    padding: 0 12px;
  }

  .bp-brands__head{
    margin: 0 0 10px;
    padding-bottom: 8px;
  }

  .bp-brands__title{
    font-size: 18px;
  }

  .bp-brands__marquee{
    padding: 6px 0 2px;
  }

  .bp-brands__marquee::before,
  .bp-brands__marquee::after{
    width:34px;
  }

  .bp-brands__track{
    gap:20px;
    animation-duration: 44s;
  }

  .bp-brands__item{
    min-width:112px;
    height:50px;
  }

  .bp-brands__item img{
    height:55px;
    max-width:120px;
    border-radius:8px;
  }
}

/* =========================
   AMAZON HEADER LINK
   ========================= */

.bp-nav--desktop{
  display:flex;
  align-items:center;
  gap:18px;
}

.bp-amazon-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:700;
  font-size:14px;
  line-height:1;
  text-decoration:none;
  color:inherit;
  margin-left:28px;
}

.bp-amazon-link span{
  display:inline-flex;
  align-items:center;
}

.bp-amazon-link img{
  height:14px;
  width:auto;
  display:inline-block;
  vertical-align:middle;
}

.bp-amazon-link:hover{
  opacity:1;
}

.bp-amazon-link img{
  height:18px;
  width:auto;
  display:block;
  position:relative;
  top:4px;
}

/* mobile hide */

@media (max-width:768px){
  .bp-amazon-link{
    display:none;
  }
}
/* ================================
   HIDE ANYTHING AFTER FOOTER
   only on standalone home
   ================================ */

@media (max-width: 768px){
  body.bp-standalone .bp-footer--home ~ *{
    display:none !important;
  }
}