* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  height: 100vh;
  background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #4b5563 100%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header {
  background: #059669;
  color: white;
  padding: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-avatar {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.header-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.header-info h2 {
  font-size: 18px;
  font-weight: 600;
}

.header-info p {
  font-size: 14px;
  opacity: 0.9;
}

.messages-container {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 85%;
}

.message.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.message.bot {
  align-self: flex-start;
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.message-avatar.user {
  background: #059669;
  color: white;
}

.message-avatar.bot {
  background: #10b981;
  padding: 0;
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.message-bubble {
  border-radius: 16px;
  padding: 12px 16px;
  /* PADRÃO DE LARGURA CONSISTENTE */
  min-width: 400px;
  max-width: 100%;
  width: 100%;
}

.message-bubble.user {
  background: #059669;
  color: white;
  border-bottom-right-radius: 6px;
}

.message-bubble.bot {
  background: white;
  color: #374151;
  border-bottom-left-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

/* TRACKING BUBBLE - MESMO PADRÃO */
.tracking-bubble {
  min-width: 400px !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* QR BUBBLE - MESMO PADRÃO */
.qr-bubble {
  min-width: 400px !important;
  max-width: 100% !important;
  width: 100% !important;
}

.message-text {
  font-size: 16px;
  line-height: 1.5;
  white-space: pre-line;
}

/* ESTILO PARA O TEXTO DA PERGUNTA PRINCIPAL */
.message-text.question-text {
  font-size: 14px !important; /* Menor que o padrão de 16px */
  font-weight: 500 !important; /* Menos bold que 700 */
  color: #4b5563 !important; /* Cinza mais suave que o preto */
  text-transform: none !important; /* Remove maiúsculas forçadas */
  line-height: 1.4;
  margin-bottom: 4px;
}

/* Alternativa para texto ainda mais suave */
.message-text.soft-question {
  font-size: 13px !important;
  font-weight: 400 !important; /* Ainda mais suave */
  color: #6b7280 !important; /* Cinza ainda mais claro */
  text-transform: none !important;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* Estilo para texto em negrito nas mensagens */
.message-text strong {
  font-weight: 700;
  color: #1f2937;
}

.message-bubble.bot .message-text strong {
  color: #374151;
  font-weight: 700;
}

/* Estilos para os botões de ação */
.message-actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f3f4f6;
}

/* NOVO: Estilo específico para os botões de escolha (CPF e Rastreio) */
.choice-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.choice-actions .action-button {
  flex: 1;
  min-width: 0;
  width: auto !important; /* Override do width: 100% */
  padding: 8px 12px; /* Reduzido de 10px 20px */
  font-size: 12px; /* Reduzido de 14px */
  font-weight: 600;
  white-space: nowrap; /* Evita quebra de linha */
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 36px; /* Altura mínima controlada */
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-button {
  background: #059669;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  text-align: center;
}

.action-button:hover {
  background: #047857;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(5, 150, 105, 0.3);
}

.action-button:active {
  transform: translateY(0);
}

/* Estilos para a timeline de rastreamento */
.tracking-timeline {
  margin-top: 16px;
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  width: 3px;
  height: calc(100% + 8px);
  background: #10b981;
  z-index: 1;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 3px solid #10b981;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.timeline-content {
  flex: 1;
  padding-top: 4px;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  line-height: 1.4;
}

.timeline-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.4;
}

/* Estilos para informação de tributação */
.tax-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.tax-badge {
  background: #dc2626;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tax-value {
  font-size: 16px;
  font-weight: 700;
  color: #dc2626;
  background: #fef2f2;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #fecaca;
}

/* Estilos para o botão de expandir simplificado */
.expand-button-container {
  display: flex;
  justify-content: center;
  margin: 16px 0;
  position: relative;
}

.expand-button-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
  z-index: 1;
}

.expand-button-simple {
  background: white;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.expand-button-simple:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
  transform: scale(1.1);
}

.expand-button-simple:active {
  transform: scale(0.95);
}

/* Estilos para a seção de pagamento */
.payment-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #f3f4f6;
  text-align: center;
}

.payment-button {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.payment-button:hover {
  background: linear-gradient(135deg, #047857, #059669);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.payment-button:active {
  transform: translateY(0);
}

.typing-indicator {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.typing-bubble {
  background: white;
  border-radius: 16px;
  border-bottom-left-radius: 6px;
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.typing-dots {
  display: flex;
  gap: 4px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #9ca3af;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}
.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* CPF INPUT - MESMO PADRÃO DE LARGURA */
.cpf-input-container {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  border-bottom-left-radius: 6px;
  padding: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  /* PADRÃO CONSISTENTE */
  min-width: 400px;
  max-width: 100%;
  width: 100%;
}

.cpf-input-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.cpf-input-field {
  width: 100%;
  height: 44px;
  font-size: 16px;
  border-radius: 8px;
  border: 2px solid #d1d5db;
  padding: 0 12px;
  outline: none;
  transition: all 0.2s;
  margin-bottom: 12px;
  font-family: monospace;
  letter-spacing: 1px;
}

.cpf-input-field:focus {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.cpf-input-field::placeholder {
  color: #9ca3af;
  font-family: monospace;
}

.cpf-submit-button {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background: #059669;
  color: white;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cpf-submit-button:hover:not(:disabled) {
  background: #047857;
}

.cpf-submit-button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.cpf-input-field.error {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* NOVOS ESTILOS PARA QR CODE - DESIGN LIMPO E COMPACTO */
.qr-payment-container {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  margin: 10px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* MESMO PADRÃO DE LARGURA */
  min-width: 400px;
  max-width: 100%;
  width: 100%;
}

.qr-header {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.qr-header h3 {
  margin: 0 0 6px 0;
  color: #047857;
  font-size: 16px; /* Reduzido de 20px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.qr-amount-display {
  font-size: 24px; /* Reduzido de 32px */
  font-weight: 700;
  color: #059669;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  padding: 8px 16px; /* Reduzido padding */
  border-radius: 8px;
  display: inline-block;
  border: 2px solid #10b981;
  margin-top: 4px;
}

.qr-code-section {
  margin: 16px 0; /* Reduzido margin */
  padding: 16px; /* Reduzido padding */
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.qr-image {
  max-width: 200px; /* Reduzido de 220px */
  width: 100%;
  height: auto;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  padding: 8px;
}

/* BOTÃO DE COPIAR - ANTES DAS INSTRUÇÕES E MENOR */
.qr-copy-section-new {
  margin: 16px 0;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.qr-copy-label {
  display: block;
  font-size: 12px; /* Bem menor */
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 8px;
  text-align: center;
}

.qr-copy-button-new {
  background: linear-gradient(135deg, #059669, #10b981);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px; /* Menor que antes */
  font-size: 13px; /* Menor fonte */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.qr-copy-button-new:hover {
  background: linear-gradient(135deg, #047857, #059669);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.qr-copy-button-new:active {
  transform: translateY(0);
}

/* INSTRUÇÕES - APÓS O BOTÃO E COM FONTES MENORES */
.qr-instructions-new {
  margin: 16px 0;
  padding: 16px;
  background: #f0f9ff;
  border-radius: 10px;
  border: 1px solid #bae6fd;
  text-align: left;
}

.qr-instructions-new h4 {
  margin: 0 0 10px 0;
  color: #0c4a6e;
  font-size: 14px; /* Reduzido de 16px */
  font-weight: 600;
  text-align: center;
}

.qr-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter;
}

.qr-steps-list li {
  padding: 6px 0;
  color: #0369a1;
  font-size: 12px; /* Reduzido de 14px */
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}

.qr-steps-list li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 6px;
  background: #059669;
  color: white;
  width: 16px; /* Menor */
  height: 16px; /* Menor */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px; /* Menor */
  font-weight: 600;
}

.qr-warning-new {
  margin-top: 16px;
  padding: 12px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border-radius: 8px;
  font-size: 12px; /* Reduzido de 14px */
  font-weight: 600;
  text-align: center;
  border: 1px solid #f59e0b;
}

.qr-warning-new strong {
  color: #b45309;
}

/* RESPONSIVIDADE MELHORADA */
@media (max-width: 768px) {
  .qr-payment-container {
    min-width: 350px !important;
    max-width: 98% !important;
    width: 98% !important;
    padding: 16px;
  }

  .qr-header h3 {
    font-size: 14px;
  }

  .qr-amount-display {
    font-size: 20px;
  }

  .qr-image {
    max-width: 180px;
  }

  .qr-copy-button-new {
    padding: 8px 16px;
    font-size: 12px;
  }

  .qr-instructions-new h4 {
    font-size: 13px;
  }

  .qr-steps-list li {
    font-size: 11px;
  }

  .qr-warning-new {
    font-size: 11px;
  }

  /* AJUSTE PARA OS BOTÕES DE ESCOLHA NO MOBILE */
  .choice-actions {
    gap: 8px;
  }

  .choice-actions .action-button {
    padding: 8px 10px; /* Ainda mais compacto no mobile */
    font-size: 11px; /* Menor no mobile */
    min-height: 34px; /* Altura menor no mobile */
  }
}

/* TELAS MUITO PEQUENAS */
@media (max-width: 480px) {
  .qr-payment-container {
    min-width: 340px !important;
    max-width: 99% !important;
    width: 99% !important;
    padding: 14px;
  }

  .qr-header h3 {
    font-size: 13px;
  }

  .qr-amount-display {
    font-size: 18px;
    padding: 6px 12px;
  }

  .qr-image {
    max-width: 160px;
  }

  /* BOTÕES DE ESCOLHA EM TELAS PEQUENAS */
  .choice-actions {
    gap: 6px;
  }

  .choice-actions .action-button {
    padding: 7px 8px; /* Mais compacto ainda */
    font-size: 10px; /* Menor fonte */
    min-height: 32px; /* Altura ainda menor */
  }
}

.messages-container::-webkit-scrollbar {
  width: 6px;
}

.messages-container::-webkit-scrollbar-track {
  background: transparent;
}

.messages-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.icon-user {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* RESPONSIVIDADE PADRONIZADA - MAIS LARGA NO MOBILE */
@media (max-width: 768px) {
  /* TODAS AS CAIXAS COM LARGURA MAIOR NO MOBILE */
  .message-bubble,
  .tracking-bubble,
  .qr-bubble,
  .cpf-input-container,
  .qr-payment-container {
    min-width: 350px !important; /* Era 320px, agora 350px */
    max-width: 98% !important; /* Era 95%, agora 98% */
    width: 98% !important; /* Aproveitar quase toda a tela */
  }

  .timeline-content h4 {
    font-size: 15px;
  }

  .timeline-content p {
    font-size: 14px;
  }

  .payment-button {
    padding: 14px 24px;
    font-size: 15px;
  }

  .qr-title h3 {
    font-size: 16px;
  }

  .qr-amount {
    font-size: 24px;
  }

  .qr-image {
    max-width: 180px;
  }

  .qr-copy-button {
    padding: 12px 20px;
    font-size: 15px;
    min-width: 180px;
    width: 100%;
  }

  .qr-instructions p:first-child {
    font-size: 15px;
  }
}

/* TELAS MUITO PEQUENAS - AINDA MAIS LARGA */
@media (max-width: 480px) {
  .message-bubble,
  .tracking-bubble,
  .qr-bubble,
  .cpf-input-container,
  .qr-payment-container {
    min-width: 340px !important; /* Era 300px, agora 340px */
    max-width: 99% !important; /* Era 98%, agora 99% */
    width: 99% !important; /* Quase toda a largura da tela */
  }

  .messages-container {
    padding: 16px 4px !important; /* Menos padding lateral */
  }
}

/* Animação de entrada para QR */
@keyframes qrSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.qr-payment-container {
  animation: qrSlideIn 0.5s ease-out;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ESTILOS DO RODAPÉ MOBILE */
.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  padding: 12px 16px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: none; /* Oculto por padrão, será mostrado via JS */
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.footer-logo {
  font-size: 18px;
}

.footer-text {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.footer-actions {
  display: flex;
  gap: 8px;
}

.footer-payment-button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.footer-payment-button:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.footer-payment-button:active {
  transform: translateY(0);
}

/* AJUSTE DO CONTAINER DE MENSAGENS PARA ACOMODAR O RODAPÉ */
@media (max-width: 768px) {
  .mobile-footer {
    display: block;
  }

  .messages-container {
    padding-bottom: 80px !important; /* Espaço para o rodapé */
  }

  body {
    padding-bottom: 0; /* Remove qualquer padding do body */
  }
}

/* RESPONSIVIDADE DO RODAPÉ */
@media (max-width: 480px) {
  .mobile-footer {
    padding: 10px 12px;
  }

  .footer-text {
    font-size: 12px;
  }

  .footer-payment-button {
    padding: 6px 12px;
    font-size: 12px;
  }

  .messages-container {
    padding-bottom: 70px !important;
  }
}

/* OCULTAR RODAPÉ EM DESKTOP */
@media (min-width: 769px) {
  .mobile-footer {
    display: none !important;
  }
}

/* Estilo para o ícone de status */
.status-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
}

@media (max-width: 480px) {
  .status-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
  }
}

/* ESTILO PARA O PROMPT DE PAGAMENTO */
.payment-prompt {
  margin-top: 20px;
  padding: 15px;
  background-color: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.payment-prompt p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #0c4a6e;
  font-weight: 500;
}

.payment-prompt button {
  background-color: #059669;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.payment-prompt button:hover {
  background-color: #047857;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delivery-options-container-radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
.delivery-option-radio {
  display: flex;
  align-items: flex-start; /* Alinha no topo para textos de múltiplas linhas */
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.delivery-option-radio:has(input:checked) {
  border-color: #059669;
  background-color: #f0fdf4;
}
.delivery-option-radio.disabled {
  background-color: #f9fafb;
  cursor: not-allowed;
  color: #9ca3af;
}
.delivery-option-radio input[type="radio"] {
  margin-top: 3px;
  margin-right: 12px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.delivery-option-details {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.delivery-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.delivery-title {
  font-weight: bold;
}
.delivery-time {
  font-size: 0.9em;
  color: #6b7280;
}
.delivery-price {
  font-weight: bold;
  margin-top: 4px;
}
.delivery-price.taxed {
  color: #ef4444;
  font-weight: bold;
  text-decoration: line-through;
}
.delivery-option-radio.disabled .delivery-title,
.delivery-option-radio.disabled .delivery-time {
  color: #9ca3af;
}
.blinking-text {
  animation: blink 1.5s linear infinite;
}
@keyframes blink {
  50% {
    opacity: 0.5;
  }
}
