.lq-shipping-threshold-section {
  display: block;
  width: 100%;
}

.lq-shipping-threshold-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

/* Flecha apuntando hacia arriba en el centro horizontal */
.lq-shipping-threshold-card::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-top: 1px solid rgba(17, 19, 22, 0.08);
  border-left: 1px solid rgba(17, 19, 22, 0.08);
  border-top-left-radius: 2px;
  z-index: 1;
}

.lq-shipping-threshold-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #00b86b; /* Green brand badge */
  color: #ffffff;
  border-radius: 50%;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 184, 107, 0.2);
}

.lq-shipping-threshold-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.lq-shipping-threshold-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--loq-text, #1d1d1f);
  margin: 0;
  line-height: 1.3;
}

.lq-shipping-threshold-bar-wrap {
  width: 100%;
  height: 6px;
  background: #f1f5f9;
  border-radius: 99px;
  overflow: hidden;
}

.lq-shipping-threshold-bar {
  height: 100%;
  background: #00b86b;
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lq-shipping-threshold-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--loq-muted, #6e6e73);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .lq-shipping-threshold-card {
    gap: 12px;
    padding: 12px;
  }
  .lq-shipping-threshold-icon-wrap {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .lq-shipping-threshold-title {
    font-size: 12.5px;
  }
  .lq-shipping-threshold-desc {
    font-size: 11px;
  }
}
