/* Estilos para o funil Mounjaro de Pobre */
:root {
  --primary-color: #2e7d32;
  --primary-light: #e8f5e9;
  --primary-dark: #1b5e20;
  --danger-color: #e53935;
  --warning-color: #f59e0b;
  --gray-100: #f5f5f5;
  --gray-200: #e0e0e0;
  --gray-300: #bdbdbd;
  --gray-400: #9e9e9e;
  --gray-500: #757575;
  --gray-600: #616161;
  --gray-700: #424242;
  --gray-800: #212121;
  --font-family: "Nunito", sans-serif;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--gray-100);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: var(--font-family);
}

/* Utilitários */
.container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-offwhite {
  background-color: #f8f9fa;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.text-danger {
  color: var(--danger-color);
}

.text-warning {
  color: var(--warning-color);
}

.text-gray-400 {
  color: var(--gray-400);
}

.text-gray-500 {
  color: var(--gray-500);
}

.text-gray-600 {
  color: var(--gray-600);
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.w-full {
  width: 100%;
}

.h-auto {
  height: auto;
}

.rounded {
  border-radius: 4px;
}

.rounded-lg {
  border-radius: 8px;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border: 1px solid var(--gray-200);
}

.border-t {
  border-top: 1px solid var(--gray-200);
}

.border-primary {
  border-color: var(--primary-color);
}

.border-4 {
  border-width: 4px;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.hidden {
  display: none;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}

/* Componentes */
.card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.subtitle {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--gray-600);
}

.quiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.header-logo {
  display: flex;
  justify-content: center;
}

.back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  box-shadow: var(--box-shadow);
  color: var(--gray-600);
  transition: var(--transition);
}

.back-button:hover {
  background-color: var(--gray-100);
}

.spacer {
  width: 40px;
}

.progress-container {
  height: 8px;
  background-color: var(--gray-200);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.content-wrapper {
  padding: 1rem 0;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background-color: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-family);
  font-size: 1rem;
}

.option-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.option-card.selected {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
}

.option-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.option-text {
  flex-grow: 1;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
  max-width: 300px;
}

.primary-button:hover:not(:disabled) {
  background-color: var(--primary-dark);
}

.primary-button:disabled {
  background-color: var(--gray-300);
  cursor: not-allowed;
}

.button-icon {
  margin-left: 0.5rem;
}

.input-field {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.input-field.error {
  border-color: var(--danger-color);
}

.error-message {
  color: var(--danger-color);
  font-size: 0.875rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

.alert {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.alert-primary {
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-left: 4px solid var(--primary-color);
}

.alert-warning {
  background-color: #fff8e1;
  color: var(--warning-color);
  border-left: 4px solid var(--warning-color);
}

.alert-danger {
  background-color: #ffebee;
  color: var(--danger-color);
  border-left: 4px solid var(--danger-color);
}

.alert-yellow {
  background-color: #fffde7;
  color: #f57f17;
  border-left: 4px solid #f57f17;
  display: flex;
  align-items: center;
}

.alert-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

/* Unidades e Sliders */
.unit-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.unit-toggle-container {
  display: flex;
  background-color: var(--gray-200);
  border-radius: 9999px;
  padding: 0.25rem;
}

.unit-toggle-button {
  padding: 0.5rem 1rem;
  border: none;
  background-color: transparent;
  border-radius: 9999px;
  font-weight: 600;
  transition: var(--transition);
}

.unit-toggle-button.active {
  background-color: white;
  box-shadow: var(--box-shadow);
}

.value-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-number {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.value-unit {
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.slider-container {
  margin-bottom: 1.5rem;
}

.slider-bar {
  position: relative;
  height: 8px;
  background-color: var(--gray-200);
  border-radius: 4px;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 4px;
  width: 50%;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  cursor: grab;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.slider-handle:active {
  cursor: grabbing;
}

.slider-tick {
  position: absolute;
  top: 0;
  width: 2px;
  height: 8px;
  background-color: var(--gray-300);
}

.slider-tick-large {
  height: 12px;
  top: -2px;
  background-color: var(--gray-400);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Checkboxes */
.benefit-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--gray-300);
  cursor: pointer;
}

/* Loading Page */
.loading-container {
  margin: 2rem 0;
}

.loading-progress {
  text-align: center;
  margin-bottom: 1.5rem;
}

.loading-text {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.loading-bar {
  height: 8px;
  background-color: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.loading-bar-fill {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
}

.loading-percentage {
  font-weight: 600;
  color: var(--primary-color);
}

.loading-slides {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.loading-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.loading-slide.active {
  opacity: 1;
}

.loading-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.loading-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gray-300);
  transition: var(--transition);
}

.loading-indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.25);
}

/* IMC Page */
.imc-slider {
  position: relative;
  height: 8px;
  background-color: var(--gray-200);
  border-radius: 4px;
  margin: 2rem 0 1rem;
  overflow: visible;
}

.imc-slider-section {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25%;
}

.imc-slider-section:nth-child(1) {
  left: 0;
  background-color: #64b5f6;
  border-radius: 4px 0 0 4px;
}

.imc-slider-section:nth-child(2) {
  left: 25%;
  background-color: #81c784;
}

.imc-slider-section:nth-child(3) {
  left: 50%;
  background-color: #ffd54f;
}

.imc-slider-section:nth-child(4) {
  left: 75%;
  background-color: #e57373;
  border-radius: 0 4px 4px 0;
}

.imc-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: white;
  border: 2px solid black;
  border-radius: 50%;
  z-index: 10;
}

.imc-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

/* Body Goals */
.body-goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.body-goal-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

.body-goal-option:hover {
  border-color: var(--primary-color);
}

.body-goal-option.selected {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
}

.body-goal-image {
  width: 100%;
  margin-bottom: 0.75rem;
}

/* Testimonials */
.before-after-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.before-image,
.after-image {
  position: relative;
  width: 32%;
}

.image-label {
  position: absolute;
  bottom: 8px;
  left: 0;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.before-label {
  background-color: var(--danger-color);
}

.after-label {
  background-color: var(--primary-color);
}

.testimonial-stars {
  display: flex;
  margin-bottom: 0.5rem;
  color: #ffc107;
}

.testimonial-card {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 1rem;
  margin-bottom: 1rem;
  animation: fadeIn 0.5s ease;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0.75rem;
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.testimonial-text {
  font-size: 0.875rem;
  color: var(--gray-700);
}

.testimonial-content {
  font-style: italic;
  color: var(--gray-700);
}

/* Checkout Form */
.checkout-form {
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.form-input.error {
  border-color: var(--danger-color);
}

/* Confirmation Modal */
.confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.confirmation-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  width: 90%;
  max-width: 400px;
}

.confirmation-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.cancel-button {
  padding: 0.75rem 1.5rem;
  background-color: var(--gray-200);
  color: var(--gray-700);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.cancel-button:hover {
  background-color: var(--gray-300);
}

.confirm-button {
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.confirm-button:hover {
  background-color: var(--primary-dark);
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease;
}

/* Media Queries */
@media (max-width: 480px) {
  .title {
    font-size: 1.25rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .value-number {
    font-size: 2.5rem;
  }

  .value-unit {
    font-size: 1.25rem;
  }

  .before-after-container {
    flex-direction: column;
    align-items: center;
  }

  .before-image,
  .after-image {
    width: 80%;
    margin-bottom: 1rem;
  }

  .body-goals-grid {
    grid-template-columns: 1fr;
  }

  .loading-slides {
    height: 250px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .before-image,
  .after-image {
    width: 30%;
  }
}

@media (min-width: 769px) {
  .title {
    font-size: 1.75rem;
  }

  .card {
    padding: 2rem;
  }
}

/* Estilos para a página de resultados */
.results-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.results-title .highlight {
  color: var(--primary-color);
}

.before-after-grid {
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.before-after-item {
  width: 48%;
  text-align: center;
}

.before-after-image {
  position: relative;
  margin-bottom: 0.75rem;
}

.before-after-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.before-after-label {
  position: absolute;
  bottom: 8px;
  left: 0;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
}

.metabolism-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.metabolism-bar {
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f0f0f0;
  position: relative;
  margin: 0.75rem 0;
}

.metabolism-bar-red {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 19%;
  background-color: var(--danger-color);
  border-radius: 4px 0 0 4px;
}

.metabolism-bar-green {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: var(--primary-color);
  border-radius: 0 4px 4px 0;
}

.metabolism-descriptions {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.metabolism-descriptions p {
  width: 48%;
  margin: 0;
}

.plan-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 1.5rem 0;
}

.plan-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.plan-description .highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.plan-includes {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  margin: 1.5rem 0;
}

.plan-item {
  display: flex;
  margin-bottom: 1rem;
}

.plan-item-icon {
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.bonus-title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin: 1.5rem 0;
}

.bonus-card {
  display: flex;
  background-color: #f0f8ea;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: center;
}

.bonus-card.orange {
  background-color: #fff3e0;
}

.bonus-card.pink {
  background-color: #fce4ec;
}

.bonus-card.red {
  background-color: #ffebee;
}

.bonus-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-content {
  flex-grow: 1;
}

.bonus-content h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 700;
}

.bonus-content p {
  margin: 0;
  font-size: 0.875rem;
}

.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 0.75rem 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

/* Estilos para radio buttons escondidos */
.hidden-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-selected {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
}

/* Estilos para a página de água */
.option-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.coffee-icon,
.water-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  flex-shrink: 0;
  font-size: 1.5rem;
}

/* Estilos para a página de checkout */
.checkout-summary {
  background-color: var(--primary-light);
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.checkout-summary-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--primary-color);
}

.payment-methods {
  margin-top: 1.5rem;
}

.payment-methods-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.payment-option:hover {
  border-color: var(--primary-color);
}

.payment-option.selected {
  border-color: var(--primary-color);
  background-color: var(--primary-light);
}

.payment-option-icon {
  margin-right: 0.5rem;
}

/* Estilos para a página de obrigado */
.thank-you-container {
  text-align: center;
  padding: 2rem 0;
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.thank-you-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.thank-you-message {
  margin-bottom: 1.5rem;
}

.order-details {
  background-color: var(--primary-light);
  border-radius: var(--border-radius);
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.order-details-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.order-detail-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.whatsapp-button:hover {
  background-color: #128c7e;
}

.whatsapp-icon {
  margin-right: 0.5rem;
}
