/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Classes utilitárias */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.text-sm {
  font-size: 0.875rem;
}

.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;
}

.text-gray-500 {
  color: #6b7280;
}

.text-gray-600 {
  color: #4b5563;
}

.text-gray-700 {
  color: #374151;
}

.text-red-500 {
  color: #ef4444;
}

.text-red-600 {
  color: #dc2626;
}

.text-green-600 {
  color: #059669;
}

.text-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.bg-red-100 {
  background-color: #fee2e2;
}

.bg-red-600 {
  background-color: #dc2626;
}

.bg-red-700 {
  background-color: #b91c1c;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.border {
  border: 1px solid #e5e7eb;
}

.border-t {
  border-top: 1px solid #e5e7eb;
}

.border-b {
  border-bottom: 1px solid #e5e7eb;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.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;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.-mt-16 {
  margin-top: -4rem;
}

.-mt-24 {
  margin-top: -6rem;
}

.-mt-12 {
  margin-top: -3rem;
}

.w-full {
  width: 100%;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-11 {
  width: 2.75rem;
}

.w-16 {
  width: 4rem;
}

.w-24 {
  width: 6rem;
}

.w-32 {
  width: 8rem;
}

.w-48 {
  width: 12rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-16 {
  height: 4rem;
}

.h-24 {
  height: 6rem;
}

.h-32 {
  height: 8rem;
}

.h-48 {
  height: 12rem;
}

.min-h-screen {
  min-height: 100vh;
}

.flex-1 {
  flex: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.top-2 {
  top: 0.5rem;
}

.bottom-0 {
  bottom: 0;
}

.bottom-2 {
  bottom: 0.5rem;
}

.bottom-8 {
  bottom: 2rem;
}

.bottom-20 {
  bottom: 5rem;
}

.right-0 {
  right: 0;
}

.right-2 {
  right: 0.5rem;
}

.right-4 {
  right: 1rem;
}

.right-8 {
  right: 2rem;
}

.left-0 {
  left: 0;
}

.left-2 {
  left: 0.5rem;
}

.left-3 {
  left: 0.75rem;
}

.left-4 {
  left: 1rem;
}

.left-1\/2 {
  left: 50%;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.-top-2 {
  top: -0.5rem;
}

.-top-12 {
  top: -3rem;
}

.-right-2 {
  right: -0.5rem;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-100 {
  z-index: 100;
}

.object-cover {
  object-fit: cover;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hidden {
  display: none;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.transform {
  transform: var(--tw-transform);
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: var(--tw-transform);
}

.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: var(--tw-transform);
}

.transform-none {
  transform: none;
}

.cursor-pointer {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.line-through {
  text-decoration: line-through;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}

.btn-icon {
  padding: 0.5rem;
}

.btn-primary {
  background-color: #dc2626;
  color: white;
}

.btn-primary:hover {
  background-color: #b91c1c;
}

.btn-outline {
  background-color: transparent;
  border-color: #e5e7eb;
  color: #374151;
}

.btn-outline:hover {
  background-color: #f3f4f6;
}

.btn-ghost {
  background-color: transparent;
  color: #374151;
}

.btn-ghost:hover {
  background-color: #f3f4f6;
}

.btn-icon-circle {
  border-radius: 9999px;
  padding: 0.5rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Badge styles */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-red {
  background-color: #b91c1c;
  color: white;
}

.badge-green {
  background-color: #059669;
  color: white;
}

.badge-outline {
  background-color: #fee2e2;
  color: #dc2626;
}

/* Card styles */
.card {
  background-color: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

/* Product card styles */
.product-card {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Input styles */
.input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

/* Separator */
.separator {
  height: 1px;
  width: 100%;
  background-color: #e5e7eb;
  margin: 1rem 0;
  position: relative;
  text-align: center;
}

.separator span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Dialog/Modal */
.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.dialog {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  width: 90%;
  max-width: 28rem;
  max-height: 85vh;
  overflow-y: auto;
}

.dialog-header {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}

.dialog-title {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}

.dialog-description {
  margin-top: 0.5rem;
  color: #6b7280;
  text-align: center;
}

.dialog-content {
  padding: 1rem;
}

.dialog-footer {
  padding: 1rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 90;
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 400px;
  height: 100%;
  background-color: white;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.drawer.active {
  right: 0;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 250px;
  background-color: white;
  z-index: 101;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.sidebar.open {
  transform: translateX(0);
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
}

.toast {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  margin-top: 0.5rem;
  max-width: 350px;
  animation: slideIn 0.3s ease-out forwards;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-description {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Loading screen */
.loading-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #f3f3f3;
  position: relative;
}

.loading-circle-fill {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #dc2626;
  animation: rotate 1s linear infinite, fill 1s ease-out infinite;
  transform-origin: center;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Remover a animação de preenchimento verde e manter apenas a vermelha */
@keyframes fill {
  0% {
    border-color: transparent;
    border-top-color: #dc2626;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  25% {
    border-color: transparent;
    border-top-color: #dc2626;
    border-right-color: #dc2626;
    border-bottom-color: transparent;
    border-left-color: transparent;
  }
  50% {
    border-color: transparent;
    border-top-color: #dc2626;
    border-right-color: #dc2626;
    border-bottom-color: #dc2626;
    border-left-color: transparent;
  }
  75% {
    border-color: transparent;
    border-top-color: #dc2626;
    border-right-color: #dc2626;
    border-bottom-color: #dc2626;
    border-left-color: #dc2626;
  }
  100% {
    border-color: transparent;
    border-top-color: #dc2626;
    border-right-color: #dc2626;
    border-bottom-color: #dc2626;
    border-left-color: #dc2626;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Complement item */
.complement-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background-color: #f9fafb;
}

.complement-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.complement-image {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  object-fit: cover;
}

.complement-details h4 {
  font-weight: 500;
  font-size: 0.875rem;
}

.complement-details p {
  color: #666; /* Cor cinza para o preço, sem vermelho */
  font-size: 0.75rem;
}

.complement-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}

.quantity-btn:hover {
  background-color: #e5e7eb;
}

.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity-value {
  width: 1.5rem;
  text-align: center;
  font-weight: 500;
}

/* Payment method sections */
.payment-method-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* Toggle switch */
input:checked + div {
  background-color: #dc2626;
}

input:checked + div:after {
  transform: translateX(100%);
}

/* Estilos para os itens do carrinho */
.cart-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 12px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-name {
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item-price {
  color: #666;
  font-size: 14px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Adicione estes estilos para garantir que as seções substituam corretamente o conteúdo */

/* Seções */
section {
  min-height: calc(100vh - 60px); /* Altura da viewport menos a altura do header */
  padding-bottom: 80px; /* Espaço para o botão do carrinho mobile */
}

/* Botão de voltar */
.back-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  text-decoration: none; /* Remover o sublinhado dos botões de voltar */
}

.back-button i {
  color: #ea1d2c;
  font-size: 1.2rem;
}

.back-button:hover {
  background-color: #fef2f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:h-64 {
    height: 16rem;
  }

  .md\:h-32 {
    height: 8rem;
  }

  .md\:w-32 {
    width: 8rem;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:text-white {
    color: white;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:pb-0 {
    padding-bottom: 0;
  }

  .md\:ml-4 {
    margin-left: 1rem;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:pb-4 {
    padding-bottom: 1rem;
  }

  .md\:pt-0 {
    padding-top: 0;
  }

  .md\:bg-transparent {
    background-color: transparent;
  }

  .md\:rounded-t-none {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }

  .md\:drop-shadow-md {
    filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  }

  .md\:inline {
    display: inline;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:left-auto {
    left: auto;
  }

  .md\:transform-none {
    transform: none;
  }
}

/* Adicione estes estilos no final do arquivo CSS */

/* Evitar seleção de texto */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Permitir seleção de texto em inputs e textareas */
input,
textarea {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

/* Estilizar inputs de rádio e seus containers */
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  outline: none;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}

input[type="radio"]:checked {
  border-color: #dc2626;
}

input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #dc2626;
  border-radius: 50%;
}

/* Remover este estilo que está causando o problema */
/* input[type="radio"]:checked + div {
color: #dc2626;
} */

/* Substituir pelos estilos corretos para utensílios e opções de entrega */
.delivery-option-container input[type="radio"]:checked ~ .delivery-option-content {
  border-color: #ef4444;
  border-width: 2px;
  background-color: transparent;
}

.utensils-option-container input[type="radio"]:checked ~ .utensils-option-content {
  border-color: #ef4444;
  border-width: 2px;
  background-color: transparent;
}

/* Ícone de sucesso */
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
}

/* Adicione este estilo para corrigir a cor do preço na aba de complementos */
/* Estilo para o novo layout do botão de atualizar com controles de quantidade */
.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
}

.quantity-btn-large {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.quantity-btn-minus {
  background-color: #f3f4f6;
}

.quantity-btn-minus:hover {
  background-color: #e5e7eb;
}

/* Estilo para o botão de + no controle principal */
.quantity-btn-plus {
  background-color: #dc2626;
  color: white;
}

.quantity-btn-plus:hover {
  background-color: #b91c1c;
}

.quantity-btn-minus {
  background-color: #f3f4f6;
}

.quantity-btn-minus:hover {
  background-color: #e5e7eb;
}

.quantity-value-large {
  padding: 0 1rem;
  font-weight: 500;
  flex: 1;
  text-align: center;
}

.update-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #dc2626;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-weight: 500;
  cursor: pointer;
  flex: 2;
}

.update-button:hover {
  background-color: #b91c1c;
}

/* Selo de verificação verde */
.verified-badge {
  color: #10b981 !important; /* Verde */
}

/* Estilo para os botões de quantidade nos complementos */
.complement-quantity .increment-btn {
  background-color: #dc2626;
  color: white;
  border: none;
}

.complement-quantity .increment-btn:hover {
  background-color: #b91c1c;
}

.complement-quantity .decrement-btn {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.complement-quantity .decrement-btn:hover {
  background-color: #e5e7eb;
}

