/** Shopify CDN: Minification failed

Line 240:12 Expected ":"

**/
.cart-drawer{
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.cart-drawer.active {
  pointer-events: auto;
}
.cart-drawer__overlay{
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0,0,0,.45);
  transition: opacity .3s ease;
}
.cart-drawer.active .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 640px;
  padding: 18px;
  max-width: 95vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s ease;
}

.cart-drawer.active .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer .cart-drawer__header{
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-promo {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 16px;
  box-sizing: border-box;
}
.cart-promo__toggle{
  width: 100%;
  background: none;
  display: flex;
  justify-content: space-between;
  border: none;
  padding: 20px 0;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
.cart-promo__content {
  max-height:0;
  display: flex;
  opacity:0;
  overflow:hidden;
  flex-direction: column;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  gap: 8px;
  padding-bottom:0;
}
.cart-promo__content.open {
  max-height: 200px; /* ajuste se precisar */
  opacity: 1;
  padding-bottom: 16px;
}
.cart-promo__input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border .2s ease;
}
.cart-promo__input:focus {
  border-color: #000;
}
.cart-promo__apply{
  height:42px;
  width:100px;
  border-radius:999px;
  margin-top:10px;
  border:none;
  background: #000;
  color:#fff;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s ease;
}
.cart-promo__apply:hover {
  opacity: 0.85;
}
.cart-promo__feedback{
  font-size:12px;
  font-weight:500;
  display:none;
}
.cart-promo__feedback.success {
  color: #0a8a0a;
}

.cart-promo__feedback.error {
  color: #d12c2c;
}
.cart-promo__icon{
  font-size: 20px;
   transition: transform .25s ease;
}
.cart-promo__toggle.is-open .cart-promo__icon {
  transform: rotate(45deg);
}
.cart-drawer-main__content{
  overflow-y: auto;
  overflow-x:hidden;
}
.cart-drawer-main__content p{
  font-size: 12px;
  color: #666666;
  font-weight: 500;
}
.cart-drawer__header h3{
  font-size: 24px;
  font-weight: 800;
}
.cart-free-shipping{
  padding: 10px 0 14px;
}

.cart-free-shipping__text{
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
}

.cart-free-shipping__bar{
  width: 100%;
  height: 6px;
  background: #E5E5E5;
  border-radius: 999px;
  overflow: hidden;
}

.cart-free-shipping__progress{
  height: 100%;
  width: 0%;
  background: #000;
  border-radius: 999px;
  transition: width .35s ease;
}
.cart-drawer__footer{
  display: flex;
  flex-direction: column;
  height: auto;
  gap: 16px;
}

.cart-checkout-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: #000000;
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
}

/* cart items*/
.cart-items{
  margin-bottom: 15px;
}
.cart-item-card{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
}
.cart-item-card__image{
    flex-shrink: 0;
    border-radius: 12px;
    padding: 10px;
    max-width: 108px;
    max-height: 108px;
    box-sizing: border-box;
}
.cart-item-card__image img{
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.cart-item-card__content{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-item-card__header{
  display: flex;
  flex-direction: column;
}
.cart-item-card__title{
  font-size: 16px;
  font-weight: 700;
}
.cart-item-card__title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.cart-item-remove{
  background:none;
  border:none;
  cursor:pointer;
  font-size:18px;
  opacity:0.6;
  transition 0.2s;
}

.cart-item-remove:hover {
  opacity: 1;
  transform: scale(1.1);
}

.cart-item-card__meta{
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-item-card__subtitle{
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}
.cart-item-card__options{
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  color: #6b7280; 
  cursor: pointer;
}
.cart-item-card__options:hover {
  text-decoration: underline;
  font-weight: 600;
}
.cart-item-card__footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-item-card__qty{
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 700;
  padding: 5px;
  gap: 8px;
}
.cart-item-card__qty button{
  background: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
}
.cart-item-card__price{
  font-size: 14px;
  font-weight: 700;
  color:#000000;
}
.cart-purchase-options{
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #000000;
  border-radius: 999px;
  padding: 10px;
  font-size: 14px;
  gap: 5px;
}
.cart-percent__icon{
  width: 22px;
  height: 22px;
  background: #E6FF3F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-percent__icon img,
.cart-percent__icon svg{
  width: 14px;
  height: 14px;
  display: block;
}
.cart-drawer__prices{
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.cart-drawer__subtotal_text p{
  margin: 0;
  color: #666666;
  font-weight: 500;
  font-size: 12px;
}
.cart-drawer__subtotal_text div{
  display: flex;
  gap: 2px;
}
.cart-drawer__subtotal_text div span{
  text-decoration: underline;
  font-size: 12px;
  color: #666666;
  font-weight: 500;
}
.add-to-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #ccc;
}
.cart-delivery{
  color: #000000;
  font-weight: 700;
}
.cart-dot, .cart-dot__secondary{
  color: #DDDDDD;
}

.cart-drawer .drawer-back{
  display: none;
}
.checkout-lock-icon{
  display:flex;
  align-items:center;
  justify-content:center;
}
.checkout-lock-icon img{
  width:16px;
  height:16px;
  display:block;
}
.cart-discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 6px;
  font-size: 11px;
  background: #ECFF3F;
  font-weight: 700;
  color: #000;
  border-radius: 4px;
  line-height: 1;
}
.cart-purchase-options {
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-purchase-options:hover {
  opacity: 0.7;
}
.cart-frequency-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 4px; /* controla distância do "month" pra seta */
}

.cart-frequency-select {
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  outline: none;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.cart-frequency-icon {
  width: 12px;
  height: 12px;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .cart-drawer__panel{
    width: 420px;
    max-width: 95vw;
  }
  .cart-one-time{
    display: none;
  }
  .cart-dot__secondary{
    display: none;
  }
}
@media (max-width: 768px) {
  .cart-drawer__panel{
    max-width: 100vw;
  }
  .cart-purchase-options{
    font-size: 12.8px;
  }
  .cart-drawer-main__content p{
    font-size: 11px;
  }
  .drawer-close{
    display: none;
  }
  .cart-drawer .drawer-back{
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .cart-drawer .drawer-back::before{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    margin-left: 12px;
  }
  .cart-drawer .cart-drawer__header{
    position: relative;
    justify-content: center;
    height: 44px;
  }
}
