/* Estilos para página de confirmação */
.confirmation-container {
  padding: 2rem 1.25rem;
}

@media (min-width: 768px) {
  .confirmation-container {
    padding: 3.5rem 2rem;
  }
}

.confirmation-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.confirmation-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

.confirmation-icon {
  width: 4.8rem;
  height: 4.8rem;
  flex-shrink: 0;
}

.confirmation-icon svg {
  width: 100%;
  height: 100%;
  color: #10b981;
}

.confirmation-title {
  flex: 1;
}

.confirmation-number {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.confirmation-thank-you {
  font-size: 1.875rem;
  font-weight: bold;
  margin: 0;
  color: #111827;
}

.confirmation-message {
  background: #f3f4f6;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.confirmation-message h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #111827;
}

.confirmation-message p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.order-details-section {
  margin-top: 1.5rem;
}

.order-details-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111827;
}

.order-details-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .order-details-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .order-details-grid .detail-block {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

.detail-block {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.25rem;
}

.detail-block h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: #111827;
}

.detail-block p,
.detail-block address {
  font-size: 0.875rem;
  color: #374151;
  margin: 0.5rem 0 0 0;
  font-style: normal;
}

.payment-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-info img {
  width: 38px;
  height: 24px;
  object-fit: contain;
}

.divider {
  height: 1px;
  background: #e5e7eb;
  margin: 1.5rem 0;
}

.confirmation-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .confirmation-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.btn-continue-shopping {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.btn-continue-shopping:hover {
  background: #374151;
}

.help-text {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
}

@media (min-width: 768px) {
  .help-text {
    text-align: left;
  }
}

.help-text a {
  color: #2563eb;
  text-decoration: underline;
  cursor: pointer;
}

.help-text a:hover {
  color: #1d4ed8;
}

.confirmation-footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
}

.confirmation-footer button {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 0.875rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.confirmation-footer button:hover {
  color: #374151;
}
