/**
 * Estimated Delivery Widget – Front-end Styles
 * Brand colors: Gul Bordo #8B2252 | Krem #F5EFE6 | Blush #F9E8EF | Dark text #2C1A1A | Grey #7A6A6A
 * Author: Marki Moc
 */

/* ── Widget Container ──────────────────────────────────────────────────── */
.ed-delivery-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #FDF7F0;
  border: 1.5px solid #e8d8e0;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 12px 0;
  font-family: inherit;
  position: relative;
  flex-wrap: wrap;
}

/* ── Icon ──────────────────────────────────────────────────────────────── */
.ed-delivery-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #8B2252;
}

.ed-delivery-icon svg {
  fill: #8B2252;
  width: 22px;
  height: 22px;
}

/* ── Text Content ──────────────────────────────────────────────────────── */
.ed-delivery-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ed-delivery-label {
  font-size: 0.78rem;
  color: #7A6A6A;
  line-height: 1.3;
  white-space: nowrap;
}

.ed-delivery-date {
  font-size: 1rem;
  font-weight: 700;
  color: #8B2252;
  line-height: 1.3;
  text-transform: capitalize;
}

/* ── Badge ─────────────────────────────────────────────────────────────── */
.ed-delivery-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ed-delivery-badge--today {
  background-color: #8B2252;
  color: #FFFFFF;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .ed-delivery-widget {
    gap: 8px;
    padding: 10px 12px;
  }

  .ed-delivery-date {
    font-size: 0.92rem;
  }

  .ed-delivery-badge {
    font-size: 0.68rem;
    padding: 2px 8px;
  }
}
