#bcm{
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 999999 !important;
}

#bcm .bcm-overlay{
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,.40) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  box-sizing: border-box !important;
}

#bcm .bcm-modal{
  position: relative !important;
  width: 100% !important;
  max-width: 720px !important;
  background: #f5f5f5 !important;
  border-radius: 8px !important;
  padding: 34px 38px 28px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.22) !important;
  text-align: center !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  box-sizing: border-box !important;
}

#bcm .bcm-close{
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  width: 52px !important;
  height: 52px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ff6f61 !important;
  color: #fff !important;
  font-size: 28px !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
}

#bcm h2{
  margin: 0 0 14px !important;
  font-size: 28px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: .3px !important;
  color: #222 !important;
  text-transform: uppercase !important;
}

#bcm .bcm-subtitle{
  margin: 0 0 18px !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: #6b6b6b !important;
}

#bcm .bcm-product-row{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin: 0 0 24px !important;
}

#bcm .bcm-img{
  display: block !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  background: #e9e9e9 !important;
  margin: 0 !important;
}

#bcm .bcm-product-text{
  text-align: left !important;
}

#bcm .bcm-name{
  margin: 0 0 4px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  color: #444 !important;
  text-transform: uppercase !important;
}

#bcm .bcm-qty{
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
  color: #7a7a7a !important;
  font-weight: 400 !important;
}

#bcm .bcm-select-wrap{
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 0 20px !important;
}

#bcm #bcm-select{
  width: 100% !important;
  height: 48px !important;
  border: 2px solid #ff6f61 !important;
  border-radius: 999px !important;
  padding: 0 18px !important;
  background: #fff !important;
  color: #6a6a6a !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
  outline: none !important;
  box-shadow: none !important;
}

#bcm #bcm-select:focus{
  border-color: #ff6f61 !important;
  box-shadow: none !important;
}

#bcm .bcm-percent{
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #6a6a6a !important;
  min-width: 18px !important;
}

#bcm .bcm-error{
  margin: -8px 0 14px !important;
  font-size: 13px !important;
  color: #d40000 !important;
  text-align: left !important;
  font-weight: 600 !important;
}

#bcm .bcm-recommendation{
  margin: 0 0 28px !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  text-align: left !important;
  color: #6c6c6c !important;
}

#bcm .bcm-total-row{
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin: 0 0 28px !important;
}

#bcm .bcm-total-label{
  margin: 0 !important;
  font-size: 15px !important;
  color: #666 !important;
  text-align: left !important;
}

#bcm .bcm-total{
  margin: 0 !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #111 !important;
  text-align: right !important;
}

#bcm .bcm-actions{
  display: flex !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

#bcm #bcm-ok,
#bcm #bcm-no{
  min-width: 160px !important;
  height: 42px !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

#bcm #bcm-ok{
  background: #ece8df !important;
  color: #1f1f1f !important;
}

#bcm #bcm-no{
  background: #ece8df !important;
  color: #1f1f1f !important;
}

body.bcm-lock{
  overflow: hidden !important;
}

@media (max-width: 767px){
  #bcm .bcm-overlay{
    padding: 14px !important;
  }

  #bcm .bcm-modal{
    padding: 24px 20px 22px !important;
  }

  #bcm .bcm-close{
    top: 12px !important;
    right: 12px !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 24px !important;
  }

  #bcm h2{
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  #bcm .bcm-product-row{
    flex-direction: column !important;
    text-align: center !important;
  }

  #bcm .bcm-product-text{
    text-align: center !important;
  }

  #bcm .bcm-select-wrap{
    gap: 8px !important;
  }

  #bcm .bcm-total-row{
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  #bcm .bcm-total{
    text-align: left !important;
  }
}

/* ===== BOROBO - AJUSTE VISUAL EN DRAWER ===== */

.js-cart-item[data-store="cart-item-336917490"] .borobo-complement-percent{
  display:block;
  margin-top:4px;
  font-size:12px;
  line-height:1.25;
  color:#6b7280;
  font-weight:500;
}

.js-cart-item[data-store="cart-item-336917490"] input.js-cart-quantity-input{
  text-align:center !important;
}

.js-cart-item[data-store="cart-item-336917490"] .cart-item-name a[data-component="name.short-name"]{
  display:block;
  font-weight:600;
}

#bcm .bcm-accumulate-info {
  background: #f0f4ff !important;
  border-left: 3px solid #4a6cf7 !important;
  padding: 12px 16px !important;
  margin: 0 0 20px !important;
  text-align: left !important;
  border-radius: 0 4px 4px 0 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #444 !important;
}

/* Ocultar controles de cantidad de todos los items de ajuste */
[data-store="cart-item-337330926"] .js-cart-quantity-btn,
[data-store="cart-item-337330956"] .js-cart-quantity-btn,
[data-store="cart-item-337330966"] .js-cart-quantity-btn,
[data-store="cart-item-337330979"] .js-cart-quantity-btn {
  display: none !important;
}

[data-store="cart-item-337330926"] .js-cart-quantity-input,
[data-store="cart-item-337330956"] .js-cart-quantity-input,
[data-store="cart-item-337330966"] .js-cart-quantity-input,
[data-store="cart-item-337330979"] .js-cart-quantity-input {
  pointer-events: none !important;
  opacity: 0 !important;
  width: 0 !important;
  padding: 0 !important;
  border: none !important;
}

[data-store="cart-item-337330926"] .form-quantity,
[data-store="cart-item-337330956"] .form-quantity,
[data-store="cart-item-337330966"] .form-quantity,
[data-store="cart-item-337330979"] .form-quantity {
  visibility: hidden !important;
}