/* =========================================================
   Dom Diego · Freeship Progress Bar · DS v5
   Barra sticky no topo da categoria, só aparece com item no carrinho
   ========================================================= */

.dd-freeship {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--dd-ink, #0A0A0A);
  color: #fff;
  padding: 10px 20px;
  font-family: var(--dd-font-sans, 'Montserrat', sans-serif);
  display: none;
}
.dd-freeship.is-active { display: block; }

.dd-freeship-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dd-freeship-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dd-gold, #E6C06C);
}

.dd-freeship-text {
  flex: 1;
  font-size: 12px;
  letter-spacing: 0.02em;
  min-width: 0;
}
.dd-freeship-text strong { color: var(--dd-gold, #E6C06C); }
.dd-freeship-text.is-done strong { color: #7bdd8c; }

.dd-freeship-bar {
  flex: 1;
  max-width: 280px;
  height: 4px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.dd-freeship-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--dd-accent, #7A1F2B), var(--dd-gold, #E6C06C));
  transition: width 420ms cubic-bezier(.2,.7,.2,1);
  border-radius: 2px;
}
.dd-freeship.is-done .dd-freeship-fill {
  background: linear-gradient(90deg, #2a7a3a, #7bdd8c);
}

@media (max-width: 640px) {
  .dd-freeship { padding: 8px 14px; }
  .dd-freeship-inner { gap: 10px; }
  .dd-freeship-text { font-size: 11px; }
  .dd-freeship-bar { max-width: 120px; }
  .dd-freeship-icon svg { width: 14px; height: 14px; }
}
