.wcst-wrap {
  --wcst-green: #2f7a4d;
  --wcst-green-bg: #f2f9f4;
  --wcst-green-border: #d8ecdf;
  --wcst-blue: #2f5f8a;
  --wcst-blue-bg: #f2f7fb;
  --wcst-purple: #6b4a86;
  --wcst-ink: #23303a;
  --wcst-muted: #8a95a0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--wcst-ink);
}

.wcst-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
}

.wcst-box--shipping {
  background: var(--wcst-green-bg);
  border-color: var(--wcst-green-border);
}

.wcst-box--payment {
  background: var(--wcst-blue-bg);
  border-color: #e0ebf4;
}

.wcst-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wcst-icon svg {
  width: 24px;
  height: 24px;
}

.wcst-icon--green { color: var(--wcst-green); }
.wcst-icon--blue { color: var(--wcst-blue); }

.wcst-box__body { min-width: 0; }

.wcst-box__body p { margin: 0; }

.wcst-ship-text {
  color: var(--wcst-green);
  font-weight: 500;
}

.wcst-ship-text b,
.wcst-ship-text strong {
  font-weight: 700;
}

.wcst-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wcst-green);
  margin-right: 8px;
  vertical-align: middle;
  animation: wcst-pulse 1.6s ease-in-out infinite;
}

@keyframes wcst-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.wcst-title {
  font-weight: 700;
  font-size: 16px;
}

.wcst-note {
  color: var(--wcst-muted);
  font-size: 13.5px;
  margin-top: 3px !important;
}

/* Badges */
.wcst-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e7ebef;
  border-radius: 14px;
  overflow: hidden;
}

.wcst-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 12px;
  text-align: center;
  border-right: 1px solid #e7ebef;
}

.wcst-badge:last-child { border-right: 0; }

.wcst-badge--1 { background: #fff; color: var(--wcst-green); }
.wcst-badge--2 { background: #f4f8fb; color: var(--wcst-blue); }
.wcst-badge--3 { background: #f8f4fb; color: var(--wcst-purple); }

.wcst-badge__icon svg {
  width: 34px;
  height: 34px;
}

.wcst-badge__text {
  font-weight: 700;
  font-size: 14px;
  color: var(--wcst-ink);
}

/* Mobile */
@media (max-width: 600px) {
  .wcst-wrap { font-size: 14px; gap: 12px; }
  .wcst-box { padding: 12px 14px; gap: 11px; align-items: flex-start; }
  .wcst-icon { width: 38px; height: 38px; }
  .wcst-icon svg { width: 20px; height: 20px; }
  .wcst-title { font-size: 15px; }
  .wcst-note { font-size: 12.5px; }
  .wcst-badges { grid-template-columns: repeat(3, 1fr); }
  .wcst-badge { padding: 16px 6px; gap: 8px; }
  .wcst-badge__icon svg { width: 26px; height: 26px; }
  .wcst-badge__text { font-size: 12px; }
}

@media (max-width: 360px) {
  .wcst-badges { grid-template-columns: 1fr; }
  .wcst-badge { border-right: 0; border-bottom: 1px solid #e7ebef; flex-direction: row; justify-content: flex-start; padding: 12px 16px; }
  .wcst-badge:last-child { border-bottom: 0; }
}
