
.ddab-free-shipping{padding: 8px 0;}
.ddab-fs-card{max-width:100%; box-sizing:border-box;
  background: #f6f7f8;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 12px;
}
.ddab-fs-row{
  display:flex;
  gap:10px;
  align-items:center;
}
.ddab-fs-icon{
  width: 34px;
  height: 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
  font-size: 18px;
}
.ddab-fs-text{flex:1; min-width:0;}
.ddab-fs-title{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(0,0,0,.84);
}
.ddab-fs-sub{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(0,0,0,.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ddab-fs-cta{
  border: 0;
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.84);
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 12px;
  cursor:pointer;
}
.ddab-fs-progress{
  margin-top: 10px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  overflow:hidden;
}
.ddab-fs-progress__bar{
  height: 100%;
  width: 0%;
  background: #16a34a;
  border-radius: 999px;
  transition: width .25s ease;
}
.ddab-free-shipping.ddab-fs--won .ddab-fs-icon{
  background: rgba(22,163,74,.12);
}
.ddab-free-shipping.ddab-fs--won .ddab-fs-progress__bar{
  background: #16a34a;
}
.ddab-fs-fee--free{
  font-weight: 700;
}


/* Selo (Checkout/Pagamento) */
.ddab-fs-badge{ padding: 8px 0; }
.ddab-fs-badge__inner{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
  background: #f6f7f8;
  box-sizing: border-box;
}
.ddab-fs-badge__icon{ font-size: 16px; line-height: 1; }
.ddab-fs-badge__text{
  font-weight: 700;
  font-size: 13px;
  color: rgba(0,0,0,.82);
}
.ddab-fs-badge__inner--ok{
  background: rgba(22,163,74,.10);
  border-color: rgba(22,163,74,.18);
}
.ddab-fs-badge__inner--warn{
  background: rgba(245,158,11,.10);
  border-color: rgba(245,158,11,.18);
}

.ddab-fs-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  z-index: 999999;
  max-width: calc(100vw - 32px);
  background: #0f8f3c;
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.ddab-fs-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.ddab-free-shipping.ddab-fs--neighborhood .ddab-fs-icon::before {
  content: "📍";
}
.ddab-free-shipping.ddab-fs--neighborhood .ddab-fs-icon {
  font-size: 0;
}
.ddab-free-shipping.ddab-fs--neighborhood .ddab-fs-icon::before {
  font-size: 24px;
}


/* Modal de bairro com frete grátis */
.ddab-fs-modal{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
}
.ddab-fs-modal--show{ display:flex; }
.ddab-fs-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.48);
}
.ddab-fs-modal__box{
  position:relative;
  width: min(420px, 100%);
  background:#fff;
  border-radius:22px;
  padding: 26px 22px 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  text-align:center;
  box-sizing:border-box;
  animation: ddabFsModalIn .18s ease-out;
}
.ddab-fs-modal__close{
  position:absolute;
  top:10px;
  right:12px;
  width:34px;
  height:34px;
  border:0;
  border-radius:999px;
  background:#f3f4f6;
  color:#111827;
  font-size:24px;
  line-height:30px;
  cursor:pointer;
}
.ddab-fs-modal__icon{
  width:64px;
  height:64px;
  margin:0 auto 12px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(22,163,74,.12);
  font-size:34px;
}
.ddab-fs-modal__title{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.2;
  font-weight:800;
  color:#111827;
}
.ddab-fs-modal__text{
  margin:0 auto 18px;
  max-width:330px;
  font-size:16px;
  line-height:1.45;
  color:#374151;
}
.ddab-fs-modal__button{
  width:100%;
  border:0;
  border-radius:14px;
  background:#16a34a;
  color:#fff;
  font-size:16px;
  font-weight:800;
  padding:14px 16px;
  cursor:pointer;
}
@keyframes ddabFsModalIn{
  from{ transform: translateY(10px) scale(.98); opacity:.4; }
  to{ transform: translateY(0) scale(1); opacity:1; }
}
