.opcoes-diretas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.opcao-direta {
  text-align: center;
  padding: 26px;
}

.opcao-direta h3 {
  font-family: 'Parisienne', cursive;
  font-size: 30px;
  margin: 0 0 8px;
}

.opcao-direta p {
  color: var(--texto-suave);
  word-break: break-word;
}

/* ===== Produtos ===== */
.produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.produto {
  background-color: var(--branco);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(74, 63, 53, 0.06);
}

.produto-foto {
  position: relative;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

.produto-foto-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  display: block;
}

.produto-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.produto-foto-fallback {
  align-items: center;
  justify-content: center;
  height: 140px;
  font-size: 34px;
  background-color: #FBF1E4;
  border: 1.5px dashed var(--pessego);
  border-radius: 12px;
  margin-bottom: 12px;
}

.produto-nome {
  font-weight: 600;
  margin: 6px 0 2px;
  min-height: 48px;
}

.produto-preco {
  color: var(--pessego-escuro);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}

.link-loja {
  display: block;
  font-size: 14px;
  color: var(--texto-suave);
  text-decoration: none;
  margin-bottom: 12px;
}

.link-loja:hover {
  text-decoration: underline;
}

.produto .botao {
  width: 100%;
  padding: 10px;
}

/* ===== Carrinho lateral ===== */
.menu-toggle {
  display: none;
}

.menu-icon {
  font-size: 22px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--pessego);
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  z-index: 1100;
  transition: transform 0.3s ease;
}

.menu-icon:hover {
  transform: scale(1.08);
}

.menu-toggle:checked + .menu-icon {
  background: var(--pessego-escuro);
  transform: scale(0.92);
}

.side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: var(--creme);
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  padding: 24px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.menu-toggle:checked ~ .side-menu {
  left: 0;
}

.side-menu h2 {
  font-size: 28px;
}

.side-menu .valor-total {
  font-weight: 700;
  color: var(--pessego-escuro);
}

.botoes-carrinho {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.botoes-carrinho button {
  flex: 1;
  font-size: 15px;
  padding: 10px;
}

/* ===== Modais ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(74, 63, 53, 0.5);
}

.modal-conteudo {
  background-color: var(--creme);
  margin: 8% auto;
  padding: 28px;
  border-radius: 18px;
  width: 90%;
  max-width: 440px;
  text-align: center;
}

.chave-pix-destaque {
  background-color: var(--rosa-claro);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  word-break: break-all;
}

.opcoes-pagamento {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.form-cartao input, .form-cartao select {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #e6d9c8;
  font-family: 'Cormorant Garamond', serif;
}

.form-cartao button {
  width: 100%;
  margin-bottom: 10px;
}

.fechar {
  float: right;
  font-size: 22px;
  cursor: pointer;
  color: var(--pessego-escuro);
}