/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-badge i {
  font-size: 24px;
  color: #10b981;
}

.trust-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-badge strong {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}

.trust-badge span {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 768px) {
  .trust-badges {
    grid-template-columns: 1fr;
  }
}

/* Delivery Information */
.delivery-info {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.delivery-info h4 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.delivery-info h4 i {
  color: #2563eb;
}

.delivery-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.delivery-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.delivery-option:hover {
  border-color: #2563eb;
  background: #eff6ff;
}

.delivery-option.selected {
  border-color: #2563eb;
  background: #eff6ff;
}

.option-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e2e8f0;
}

.option-icon i {
  font-size: 18px;
  color: #2563eb;
}

.option-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.option-details strong {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.option-details span {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.estimated-delivery {
  padding: 14px;
  background: #ecfdf5;
  border: 2px solid #10b981;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #065f46;
  font-weight: 600;
}

.estimated-delivery i {
  color: #10b981;
  font-size: 18px;
}

.estimated-delivery strong {
  font-weight: 800;
  color: #047857;
}

/* Social Proof Elements */
.social-proof {
  background: #fffbeb;
  border: 2px solid #f59e0b;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: pulse 2s ease-in-out infinite;
}

.social-proof i {
  color: #f59e0b;
  font-size: 18px;
}

.social-proof span {
  font-size: 13px;
  color: #92400e;
  font-weight: 600;
}

.urgency-badge {
  background: #fee2e2;
  border: 2px solid #ef4444;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.urgency-badge i {
  color: #ef4444;
  font-size: 18px;
}

.urgency-badge span {
  font-size: 13px;
  color: #991b1b;
  font-weight: 700;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
