#resultado {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0;
  padding: 10px;
  border: 1px #38003C solid;
}

.resultoff {
  display: none !important;
}

.resulton {
  display: block;
}

#ytImgVideo {
  width: 160px !important;
  height: 90px !important;
}

#instImgPost {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

#tkImgPost {
  width: 180px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}


#instImgProfile,
#tkImgProfile,
#ytImgChannel {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Fundo escuro com desfoque leve */
#popupPedido {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Conteúdo principal */
#popupPedido .popup-content {
  background-color: #0D0010;
  padding: 32px 28px;
  border-radius: 12px;
  width: 90%;
  max-width: 460px;
  max-height: 90vh;
  /* altura máxima 90% da tela */
  overflow-y: auto;
  /* permite rolagem vertical */
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #f5f5f5;
  border: 1px solid #1d0323;
  animation: slideUp 0.3s ease;
  scroll-behavior: smooth;
  /* rolagem suave */
}

/* Custom scrollbar */
#popupPedido .popup-content::-webkit-scrollbar {
  width: 8px;
}

#popupPedido .popup-content::-webkit-scrollbar-track {
  background: #0D0010;
  border-radius: 6px;
}

#popupPedido .popup-content::-webkit-scrollbar-thumb {
  background: #cf00a2;
  border-radius: 6px;
}

/* Animação de subida */
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Botão de fechar */
#popupPedido .close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #cf00a2;
  cursor: pointer;
  transition: transform 0.2s;
}

#popupPedido .close-btn:hover {
  transform: scale(1.1);
}

/* Título */
#popupTitulo {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: bold;
  color: #cf00a2;
  text-align: center;
}

/* Labels */
#popupPedido label {
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: #ccc;
}

/* Inputs e Selects */
#popupPedido input,
#popupPedido select {
  width: 100%;
  padding: 10px 12px;
  background-color: #210122;
  color: #fff;
  border: 1px solid #38003C;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}

#popupPedido #quantidade,
#popupPedido .linkoff {
  margin-bottom: 18px;
}

#popupPedido input:focus,
#popupPedido select:focus {
  border-color: #cf00a2;
  outline: none;
}

/* Preço */
#priceContainer {
  margin-bottom: 18px;
  text-align: center;
}

#precoOriginal {
  color: #888;
  font-size: 14px;
}

#precoDesconto {
  font-size: 18px;
  font-weight: bold;
  color: #00e676;
}

/* Botão principal */
#popupPedido button.prosseguir {
  background: linear-gradient(to right, #cf00a2, #ae0088);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  transition: background 0.3s;
  margin-top: 15px;
}

#popupPedido button.prosseguir:hover {
  background: linear-gradient(to right, #ae0088, #cf00a2);
}

/* Oferta container */
.oferta-container {
  position: relative;
  max-height: 273px;
  /* ajuste conforme o card maior */
  overflow: hidden;
}


.oferta-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  padding: 8px 0;
  margin-bottom: 5px;
  font-size: 14px;
}

.icone-oferta {
  font-size: 16px;
  margin-right: 5px;
}

.oferta-info {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: #3A0040;
  color: #fff;
}

.oferta-navegacao {
  display: flex;
  gap: 6px;
}

.oferta-navegacao .btn-nav {
  background: #3A0040;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}

.oferta-navegacao .btn-nav:hover {
  background: #3C0044;
  transform: scale(1.08);
}

.oferta-navegacao .btn-nav svg {
  pointer-events: none;
}

.oferta-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #3A0040;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
}

.oferta-header {
  display: flex;
  align-items: center;
}

.oferta-card hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: calc(100% - 10px);
  margin: 5px auto;
}

.oferta-icone {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 8px;
}

.oferta-titulo {
  font-weight: bold;
  font-size: 15px;
}

.oferta-precos {
  font-size: 14px;
}

.preco-antigo {
  text-decoration: line-through;
  color: gray;
  margin-right: 5px;
}

.preco-novo {
  color: #00b919;
  font-weight: bold;
}

.oferta-descricao {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  margin-bottom: 12px;
  gap: 3px;
}

.btn-oferta {
  width: 100%;
  padding: 10px;
  background: linear-gradient(to right, #cf00a2, #ae0088);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.btn-oferta:hover {
  background: linear-gradient(to right, #ae0088, #cf00a2);
}


.btn-oferta.adicionado {
  background: #4CAF50;
  /* verde */
  color: #fff;
  /* texto branco */
  border: 1px solid #4CAF50;
}

.ordebumpOff {
  display: none !important;
}

/* Force hide old order bumps - they are now inside checkout */
#ContainerOrdebump {
  display: none !important;
}


/* Container da barra */
.progress-container {
  width: 100%;
  max-width: 300px;
  height: 25px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin: 15px auto;
  position: relative;
}

/* Barra de progresso */
.progress-bar {
  height: 100%;
  width: 0;
  background: #cf00a2;
  /* Vermelho */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  /* Texto branco */
  font-size: 14px;
  font-weight: bold;
  transition: width 0.3s ease;
  white-space: nowrap;
}

#checkout-modal-overlay.mostrar {
  display: flex;
}

#checkout-modal-overlay.mostrar {
  opacity: 1;
  pointer-events: all;
}


/* Fundo escuro com desfoque */
#checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

#checkout-modal-overlay.mostrar {
  display: flex;
}

/* Modal principal */
#checkout-modal {
  background-color: #0D0010;
  padding: 32px 28px;
  border-radius: 12px;
  width: 90%;
  max-width: 460px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  position: relative;
  font-family: 'Segoe UI', Roboto, sans-serif;
  color: #f5f5f5;
  border: 1px solid #292929;
  animation: slideUp 0.3s ease;
}

.modal__close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #cf00a2;
  cursor: pointer;
  transition: transform 0.2s;
}

.modal__close-btn:hover {
  transform: scale(1.1);
}

.modal__title {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: bold;
  color: #cf00a2;
  text-align: center;
}

.modal__field {
  margin-bottom: 18px;
}

.modal__field label {
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
  color: #ccc;
}

.modal__input {
  width: 100%;
  padding: 10px 12px;
  background-color: #210122;
  color: #fff;
  border: 1px solid #38003C;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.modal__input:focus {
  border-color: #cf00a2;
  outline: none;
}

.modal__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

/* Botões */
.button {
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
  border: none;
}

.button--danger {
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
}

.button--danger:hover {
  background-color: #38003C;
}

.button--primary {
  background: linear-gradient(to right, #cf00a2, #ae0088);
  color: white;
}

.button--primary:hover {
  background: linear-gradient(to right, #ae0088, #cf00a2);
}

/* Etapas */
.modal__step {
  display: none;
}

.modal__step.active {
  display: block;
}


#paymentResult {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

#paymentResult.success {
  background-color: #d1fae5;
  color: #065f46;
}

#paymentResult.error {
  background-color: #fee2e2;
  color: #991b1b;
}

#qrcode-container {
  display: flex;
  justify-content: center;
  padding: 15px;
}

.pix-copy-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.5rem;
}

#pix-code-input {
  flex-grow: 1;
  text-align: left;
}


/* Pagamento aprovado */
.thank-you-page {
  text-align: center;
}

.thank-you-page .icon {
  font-size: 48px;
  color: #00e676;
  margin-bottom: 16px;
}


#popupPedido,
#checkout-modal-overlay {
  opacity: 1;
  transition: opacity 0.3s ease;
}

#checkout-modal-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#checkout-modal-overlay.mostrar {
  opacity: 1;
  pointer-events: all;
}

#promoBar {
  background-color: #840067;
}

/* ========================================
   CHECKOUT REDESIGN - NEW STYLES
   ======================================== */

/* Checkout Modal Redesign */
.checkout-modal-redesign {
  max-height: 90vh;
  overflow-y: auto;
  padding: 0 !important;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.checkout-modal-redesign::-webkit-scrollbar {
  width: 8px;
}

.checkout-modal-redesign::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.checkout-modal-redesign::-webkit-scrollbar-thumb {
  background: #00b1ea;
  border-radius: 4px;
}

/* Header Mercado Pago */
.checkout-header-mp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #fff;
  border-radius: 12px 12px 0 0;
}

@media (max-width: 480px) {
  .checkout-header-mp {
    /* Logo na esquerda, badge na direita (space-between padrão) */
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 12px 16px;
    flex-wrap: nowrap !important;
    /* Força linha única */
    gap: 0 !important;
  }

  /* Reduz um pouco o tamanho da logo no mobile para caber */
  .checkout-header-mp__img {
    height: 24px;
  }

  .checkout-header-mp__security {
    font-size: 10px;
    /* Reduz fonte no mobile para caber lado a lado */
    white-space: nowrap;
    margin-left: 0 !important;
  }


  .checkout-header-mp__security i {
    font-size: 12px;
  }
}

.checkout-header-mp__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-header-mp__img {
  height: 32px;
  width: auto;
}

.checkout-header-mp__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.checkout-header-mp__title {
  font-size: 18px;
  font-weight: 400;
  color: #00b1ea;
}

.checkout-header-mp__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #00214e;
}

.checkout-header-mp__security {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 6px;
  color: #444;
}

.checkout-header-mp__security svg {
  color: #00b1ea;
}

.checkout-header-mp__security-text {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  line-height: 1.2;
}

.checkout-header-mp__security-text strong {
  font-size: 12px;
  color: #00214e;
}

/* Step Indicator */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  background: #f8f9fa;
  gap: 0;
}

.checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.checkout-step__circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
  z-index: 2;
  position: relative;
}

.checkout-step.active .checkout-step__circle {
  background: #00b1ea;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 177, 234, 0.2);
}

.checkout-step.completed .checkout-step__circle {
  background: #00b1ea;
  color: #fff;
}

.checkout-step__label {
  font-size: 12px;
  color: #666;
  text-align: center;
  line-height: 1.3;
}

.checkout-step.active .checkout-step__label {
  color: #333;
  font-weight: 600;
}

.checkout-step__line {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  min-width: 60px;
  max-width: 120px;
  margin: 0 10px;
  margin-bottom: 30px;
}

.checkout-step.completed+.checkout-step__line,
.checkout-step__line.completed {
  background: #00b1ea;
}

/* Purchase Summary Card */
.checkout-summary {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.checkout-summary__label {
  color: #64748b;
  font-size: 14px;
}

.checkout-summary__value {
  color: #1e293b;
  font-weight: 600;
  font-size: 14px;
}

.checkout-summary__user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-summary__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.checkout-summary__divider {
  height: 1px;
  background: #e2e8f0;
  margin: 12px 0;
}

.checkout-summary__total {
  padding-top: 12px;
}

.checkout-summary__price {
  color: #00b1ea !important;
  font-size: 24px !important;
  font-weight: 800 !important;
}

/* Ofertas Exclusivas Section */
.checkout-offers {
  margin: 20px 24px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e2e8f0;
}

.checkout-offers__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.checkout-offers__fire {
  font-size: 20px;
}

.checkout-offers__title {
  color: #00b1ea;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.checkout-offers__badge {
  background: rgba(0, 177, 234, 0.15);
  color: #00b1ea;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.checkout-offers__badge {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.checkout-offers__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Offer Card */
.offer-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.offer-card:hover {
  border-color: #00b1ea;
  background: #f0f9ff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.offer-card.selected {
  border-color: #00b1ea;
  background: #e0f7ff;
}

.offer-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offer-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.offer-card__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.offer-card__icon--curtidas {
  background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
}

.offer-card__icon--comentarios {
  background: linear-gradient(135deg, #ffc107, #e0a800);
}

.offer-card__icon--reels {
  background: linear-gradient(135deg, #00b1ea, #0090c0);
}

.offer-card__icon--stories {
  background: linear-gradient(135deg, #a855f7, #9333ea);
}

.offer-card__icon--verificado {
  background: linear-gradient(135deg, #00b1ea, #0090c0);
}

.offer-card__info {
  flex: 1;
}

.offer-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.offer-card__name {
  color: #1e293b;
  font-weight: 700;
  font-size: 14px;
}

.offer-card__discount {
  background: #4ade80;
  color: #000;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.offer-card__desc {
  color: #64748b;
  font-size: 12px;
}

.offer-card__prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.offer-card__price-original {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 12px;
}

.offer-card__price-current {
  color: #16a34a;
  font-weight: 700;
  font-size: 16px;
}

.offer-card__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.offer-card.selected .offer-card__check {
  background: #00b1ea;
  border-color: #00b1ea;
}

.offer-card__check svg {
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
}

.offer-card.selected .offer-card__check svg {
  opacity: 1;
}

/* Offer Link Input */
.offer-card__link-input {
  margin-top: 12px;
  display: none;
}

.offer-card.selected .offer-card__link-input {
  display: block;
}

.offer-card__link-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
}

.offer-card__link-field svg {
  color: #64748b;
  flex-shrink: 0;
}

.offer-card__link-field input {
  flex: 1;
  background: transparent;
  border: none;
  color: #1e293b;
  font-size: 13px;
  outline: none;
}

.offer-card__link-field input::placeholder {
  color: #94a3b8;
}

/* Comment Style Selector */
.offer-card__styles {
  margin-top: 12px;
  display: none;
}

.offer-card.selected .offer-card__styles {
  display: block;
}

.offer-card__styles-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 12px;
  margin-bottom: 10px;
}

.offer-card__styles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.offer-card__style-option {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.offer-card__style-option:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.offer-card__style-option.selected {
  border-color: #00b1ea;
  background: #e0f7ff;
}

.offer-card__style-option-title {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1e293b;
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 2px;
}

.offer-card__style-option-desc {
  color: #64748b;
  font-size: 10px;
}

/* Form Section */
.checkout-form-section {
  padding: 20px 24px;
  background: #fff;
}

.checkout-form-section .modal__field label {
  color: #1e293b;
}

.checkout-form-section .modal__input {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #1e293b;
}

.checkout-form-section .modal__input:focus {
  border-color: #00b1ea;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 177, 234, 0.1);
}

.checkout-form-section .modal__input::placeholder {
  color: #94a3b8;
}

/* Actions */
/* Actions */
.checkout-modal-redesign .modal__actions {
  padding: 16px 24px 24px;
  background: #fff;
  margin-top: 0;
  gap: 12px;
}

.checkout-modal-redesign .button--primary {
  background: #00b1ea;
  border-color: #00b1ea;
}

.checkout-modal-redesign .button--primary:hover {
  background: #0090c0;
  border-color: #0090c0;
}

.checkout-modal-redesign .button--danger {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.checkout-modal-redesign .button--danger:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.checkout-modal-redesign .modal__close-btn {
  color: #64748b;
}

.checkout-modal-redesign .modal__close-btn:hover {
  color: #1e293b;
}

/* Step 2 and 3 styles */
.checkout-modal-redesign #checkout-step-2,
.checkout-modal-redesign #checkout-step-3 {
  padding: 24px;
  background: #fff;
}

.checkout-modal-redesign #paymentResult {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
}

.checkout-modal-redesign #paymentResult.success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #16a34a;
}

.checkout-modal-redesign .thank-you-page {
  text-align: center;
  padding: 40px 24px;
}

.checkout-modal-redesign .thank-you-page h2 {
  color: #1e293b;
}

.checkout-modal-redesign .thank-you-page p {
  color: #64748b;
}

.checkout-modal-redesign .thank-you-page .icon {
  color: #16a34a;
}

/* Responsive */
@media (max-width: 480px) {
  .checkout-header-mp {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .checkout-steps {
    padding: 16px;
  }

  .checkout-step__line {
    min-width: 40px;
  }

  .checkout-summary {
    margin: 16px;
  }

  .checkout-offers {
    margin: 16px;
  }

  .checkout-form-section {
    padding: 16px;
  }

  .offer-card__styles-grid {
    grid-template-columns: 1fr;
  }
}