@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.promo-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #80036f;
  color: white;
  padding: 6px 10px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.header-principal {
  background-color: #0f0f16;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: white;
}

.logo-area img {
  height: 80px;
  object-fit: contain;
  display: block;
}

.search-area {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  border-radius: 8px;
  padding: 4px 8px;
  max-width: 400px;
  flex: 1;
  margin: 10px;
}

.search-area input {
  border: none;
  outline: none;
  padding: 8px;
  border-radius: 6px;
  flex: 1;
  font-size: 0.95rem;
}

.search-area button {
  background-color: #810370;
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 600;
}

.search-area button:hover {
  background-color: #a10389;
}

.icons-area {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.icons-area a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

.icons-area i {
  font-size: 1.1rem;
}

.main-nav {
  background-color: #0f0f16;
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 12px 0;
  border-top: 2px solid #80036f;
  font-weight: 600;
  flex-wrap: wrap;
}

.main-nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: #80036f;
}

.produtos {
  padding: 40px 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  max-width: 1300px;
  margin: 0 auto;
}

.produto {
  background: white;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 0.95rem;
}

.produto:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.produto img {
  max-width: 100%;
  height: 110px;
  object-fit: contain;
  border-radius: 6px;
}

.produto h3 {
  margin-top: 10px;
  font-size: 1rem;
}

.produto p {
  font-weight: bold;
  margin: 8px 0;
  font-size: 1.05rem;
}

.produto button {
  background-color: #80036f;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
}

.produto button:hover {
  background-color: #a10389;
}

footer {
  background: #1a1a1a;
  color: #fff;
  padding: 2.5rem 0 0;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding: 0 1.2rem;
  align-items: start;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: center;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.footer-section ul li {
  margin-bottom: 0.6rem;
  font-size: 0.97rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-section ul li i {
  margin-right: 0.5rem;
  color: #4CAF50;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.payment-methods img {
  display: block;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px #0001;
  padding: 4px 8px;
  transition: box-shadow 0.2s, opacity 0.3s;
  opacity: 0.95;
  height: 38px;
  max-width: 90px;
}

.logo-visa, .logo-mastercard, .logo-mercadopago, .logo-pix {
  height: 38px;
  max-width: 90px;
}

.footer-section .social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 18px;
}

.footer-bottom {
  margin-top: 1.2rem;
  padding: 1.2rem 0 0.5rem 0;
  background: #111;
  text-align: center;
}

.security-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.security-badges img {
  height: 36px;
  max-width: 100px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px #0001;
  padding: 2px 6px;
}

.selo-banner {
  height: 36px;
  max-width: 140px;
  padding: 0 6px;
  background: transparent;
  box-shadow: none;
}

.selo-mercadopago {
  height: 36px;
  max-width: 100px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px #0001;
  padding: 2px 6px;
}

.footer-bottom p {
  color: #ccc;
  font-size: 0.92rem;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .produtos {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
  .produto img {
    height: 80px;
  }
}
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
  }
  .payment-methods {
    justify-content: center;
    gap: 10px;
  }
  .security-badges {
    flex-wrap: wrap;
    gap: 0.7rem;
  }
  .produtos {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
  }
  .produto {
    padding: 7px;
    font-size: 0.9rem;
  }
  .produto img {
    height: 60px;
  }
}

/* Removendo estilos de modal */
body.modal-aberto {
  overflow: auto;
}

/* Removendo classes de modal */
.modal,
.modal.hidden,
.modal-content,
.modal-content.estilizado.grande,
.conteudo-modal,
.imagem-produto-modal,
.info-produto-modal,
#titulo-produto-modal,
.info-entrega,
.garantia,
.grupo-opcao .opcao,
.bloco-opcao,
.titulo-opcao,
#modal-opcoes,
#modal-opcoes-desktop,
#modal-opcoes-mobile,
.modal-desktop-flex,
.galeria-desktop,
.miniaturas-desktop,
.imagem-principal-desktop,
.info-produto-modal-desktop,
.bloco-preco-desktop,
.botao-confirmar-desktop,
#modal-opcoes-mobile .modal-content,
#modal-opcoes-mobile .close-modal-mobile,
#modal-opcoes-mobile .conteudo-modal,
#modal-opcoes-mobile .galeria-produto,
#modal-opcoes-mobile .imagem-principal,
#modal-opcoes-mobile .miniaturas,
#modal-opcoes-mobile .info-produto-modal,
#modal-opcoes-mobile #titulo-produto-modal,
#modal-opcoes-mobile .bloco-preco,
#modal-opcoes-mobile .bloco-opcao,
#modal-opcoes-mobile .botao-confirmar-mobile.grande,
#modal-opcoes-desktop .modal-content,
#modal-opcoes-desktop .modal-desktop-flex,
#modal-opcoes-desktop .info-desktop,
#modal-opcoes-desktop .botao-confirmar-desktop.grande,
.opcoes-universal,
#modal-opcoes .info-produto-modal,
#modal-opcoes .botao-confirmar.grande {
  display: none !important;
}

/* Modal Desktop */
#modal-opcoes-desktop .modal-content {
  background: white;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  animation: surgirModal 0.3s ease;
}

.modal-desktop-flex {
  display: flex;
  gap: 32px;
}

.galeria-desktop {
  flex: 1;
  max-width: 600px;
}

.imagem-principal-desktop {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.imagem-principal-desktop img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.miniaturas-desktop {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 0;
}

.miniaturas-desktop img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.miniaturas-desktop img.ativa {
  opacity: 1;
  border: 2px solid #80036f;
}

.info-desktop {
  flex: 1;
  padding: 16px;
}

/* Modal Mobile */
#modal-opcoes-mobile .modal-content {
  background: white;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  animation: surgirModal 0.3s ease;
}

.modal-mobile-scroll {
  padding: 16px;
  padding-bottom: 80px; /* Espaço para o botão fixo */
}

.imagem-produto-mobile {
  margin: -16px -16px 16px -16px;
  position: relative;
}

.imagem-produto-mobile img {
  width: 100%;
  height: auto;
  display: block;
}

.miniaturas-mobile {
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  overflow-x: auto;
  background: white;
  position: sticky;
  top: 0;
  z-index: 2;
}

.miniaturas-mobile img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.miniaturas-mobile img.ativa {
  opacity: 1;
  border: 2px solid #80036f;
}

/* Botões de fechar */
.close-modal-desktop,
.close-modal-mobile {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.close-modal-desktop:hover,
.close-modal-mobile:hover {
  color: #80036f;
  background: #f8f8f8;
}

/* Botões de compra */
.botao-confirmar-desktop.grande,
.botao-confirmar-mobile.grande {
  background: #80036f;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.botao-confirmar-mobile.grande {
  position: fixed;
  bottom: 0;
  left: 0;
  border-radius: 0;
  z-index: 3;
}

.botao-confirmar-desktop.grande:hover,
.botao-confirmar-mobile.grande:hover {
  background: #a10389;
}

/* Controles de quantidade */
.quantidade-desktop,
.quantidade-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
}

.quantidade-desktop button,
.quantidade-mobile button {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantidade-desktop input,
.quantidade-mobile input {
  width: 50px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
}

/* Responsividade */
@media (max-width: 900px) {
  .modal-desktop-flex {
    flex-direction: column;
  }
  
  .galeria-desktop {
    max-width: none;
  }
}

@media (max-width: 600px) {
  #modal-opcoes-desktop .modal-content {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    padding: 16px;
  }
  
  .miniaturas-desktop img,
  .miniaturas-mobile img {
    width: 50px;
    height: 50px;
  }
}

/* Animações */
@keyframes surgirModal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.precos-modal {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
}

.preco-original {
  color: #999;
  text-decoration: line-through;
}

.preco-promocional {
  color: #06c167;
  font-weight: 700;
  font-size: 1.5rem;
}

.selo-promocao {
  display: inline-block;
  background-color: #000;
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 6px;
  text-transform: uppercase;
}

.selo-promocao.rosa {
  background-color: #d50087;
}

#toggle-pagamentos.formas-pagamento {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  color: #444;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2px 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  box-shadow: none;
}

#toggle-pagamentos.formas-pagamento i {
  font-size: 0.75rem;
  color: #444;
}


.quantidade-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 6px 12px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: fit-content;
}

.quantidade-control button {
  width: 18px;
  height: 18px;
  font-size: 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #666;
  padding: 0;
}

.quantidade-control input {
  font-size: 16px;
  width: 22px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 500;
  color: #333;
}

.garantia {
  font-size: 0.85rem;
  color: #d50087;
  background: #fff1f8;
  border-left: 4px solid #d50087;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.bloco-opcao {
  margin-bottom: 20px;
}

.titulo-opcao {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #555;
}

.grupo-opcao {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.opcao {
  font-family: 'Inter', sans-serif;
  padding: 10px 16px;
  border-radius: 10px;
  background: white;
  border: 2px solid #ccc;
  font-size: 0.95rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.opcao:hover {
  border-color: #d50087;
}

.opcao.selecionado {
  border-color: #d50087;
  background-color: #ffe6f1;
  color: #d50087;
  position: relative;
}

.opcao.selecionado::before {
  content: '✔';
  position: absolute;
  top: -10px;
  left: -10px;
  background: #d50087;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 24px;
  cursor: pointer;
}

@keyframes surgirModal {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes voarParaCarrinho {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0.1);
    opacity: 0;
  }
}

.efeito-voo {
  position: fixed;
  width: 100px;
  z-index: 9999;
  animation: voarParaCarrinho 0.8s forwards ease-in-out;
  pointer-events: none;
  border-radius: 8px;
  box-shadow: 0 0 10px #00000055;
}

/* Efeito de luz em "OFERTA RELÂMPAGO" */
.selo-promocao.rosa {
  background-color: #d50087;
  animation: brilho 1.2s infinite alternate;
}
@keyframes brilho {
  0% {
    box-shadow: 0 0 6px #ff8cd2;
  }
  100% {
    box-shadow: 0 0 16px #ff8cd2;
  }
}
/* Estilo animado para info-entrega */
/* FRETE GRÁTIS */
.info-entrega {
  font-size: 0.85rem;
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-left: 6px solid #06c167;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  box-shadow: none;
  margin-top: 10px;
  font-weight: 400;
}

.info-entrega img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* COMPRA GARANTIDA */
.garantia {
  font-size: 0.85rem;
  background-color: #f9f9f9;
  border: 1px solid #f0c4da;
  border-left: 6px solid #d50087;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  box-shadow: none;
  margin-top: 10px;
}

.garantia i {
  font-size: 18px;
  color: #d50087;
}

.garantia strong {
  color: #d50087;
  font-weight: 600;
}

/* Animações */
@keyframes aparecerEntrega {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aparecerGarantia {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hidden {
  display: none !important;
}
.bloco-preco {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
  font-family: 'Poppins', sans-serif;
}

.linha-preco {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preco-original {
  font-size: 0.95rem;
  color: #e53935;
  text-decoration: line-through;
}

.preco-promocional {
  font-size: 1.4rem;
  font-weight: 700;
  color: #06c167;
}

.selo-desconto {
  background-color: #ff3860;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.linha-parcela {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #444;
}

.parcela-destaque {
  color: #ff0048;
  font-weight: 600;
}
/* Correção para o modal caber na tela e permitir rolagem interna */
body.modal-aberto {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
  overflow: auto;
}

.modal-content.estilizado.grande {
  background: white;
  padding: 24px;
  border-radius: 14px;
  max-width: 600px;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.18);
  animation: surgirModal 0.3s ease-out;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.conteudo-modal {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: flex-start;
}

.imagem-produto-modal img {
  width: 180px; /* ainda menor */
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
}

.info-produto-modal {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

#titulo-produto-modal {
  font-size: 1.05rem;
  font-weight: 600;
  color: #111;
}
.info-entrega,
.garantia {
  font-size: 0.85rem;
  padding: 10px 12px;
  border-radius: 8px;
  box-shadow: none;
}

.info-entrega img {
  width: 20px;
}
/* Ajuste do tamanho da fonte e estilo nas opções */
.grupo-opcao .opcao {
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Ajuste nos blocos */
.bloco-opcao {
  margin-bottom: 14px;
}

/* Reduz títulos */
.titulo-opcao {
  font-size: 0.85rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

/* Ajuste geral do modal */
.info-produto-modal {
  font-size: 0.78rem;
  gap: 10px;
}

/* Texto de entrega e garantia ainda menor */
.info-entrega,
.garantia {
  font-size: 0.75rem;
  padding: 8px 10px;
  gap: 8px;
}

/* Icones também menores */
.info-entrega img,
.garantia i {
  width: 16px;
  height: auto;
  font-size: 14px;
}

.linha-compra {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}

.botao-confirmar.grande {
  background: linear-gradient(90deg, #fff, #ffe6f1 80%);
  color: #d50087;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid #d50087;
  border-radius: 18px;
  padding: 8px 0;
  margin-top: 10px;
  box-shadow: 0 2px 12px #f3e0f5;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-width: 80px;
  max-width: 140px;
  width: 100%;
  letter-spacing: 0.5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.botao-confirmar.grande:hover {
  background: linear-gradient(90deg, #d50087 60%, #80036f 100%);
  color: #fff;
  box-shadow: 0 4px 18px #d5008788;
  transform: scale(1.04);
}

.icone-correios {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}
.galeria-produto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.imagem-principal img {
  width: 260px;
  max-height: 320px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.miniaturas {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.thumb.ativa {
  border-color: #ff007f;
  box-shadow: 0 0 6px #ff007f88;
}
#zoom-lente {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #ff007f;
  pointer-events: none;
  background-repeat: no-repeat;
  display: none;
  z-index: 20;
}
.pagina-carrinho {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

.topo-carrinho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: white;
  padding: 1rem 2rem;
}

.topo-carrinho .logo {
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: bold;
}

.carrinho-status {
  position: relative;
}

.carrinho-status i {
  font-size: 1.5rem;
}

.quantidade-carrinho {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: white;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 50%;
}

.conteudo-carrinho {
  max-width: 900px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.itens-carrinho .cart-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.cart-item img {
  width: 100px;
  height: auto;
  border-radius: 4px;
}

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

.cart-item h3 {
  margin: 0;
  font-size: 1.2rem;
}

.cart-item .quantidade {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.cart-item .quantidade button {
  padding: 0.3rem 0.8rem;
  font-size: 1.2rem;
  background: #111;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cart-item a {
  color: red;
  text-decoration: none;
  font-size: 0.9rem;
}

.resumo-carrinho {
  margin-top: 2rem;
  text-align: right;
}

.botao-finalizar {
  background: green;
  color: white;
  padding: 1rem 2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin-top: 1rem;
}

.barra-meta {
  height: 10px;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.barra-meta .progresso {
  height: 100%;
  background: limegreen;
  width: 0%;
  transition: width 0.3s ease;
}

.meta-info {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.social-icon {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #fff;
  opacity: 0.7;
}

/* REMOVER estilos das headers premium/feminina */
.header-premium, .header-inst-bar, .header-promo-bar, .header-main, .header-categories, .header-cat-link, .header-logo, .header-actions, .header-search, .header-action-link, .header-selo-seguranca, .header-fem-premium, .header-fem-bar, .header-fem-subbar, .header-fem-actions, .header-fem-action, .header-fem-container, .logo-fem, .nav-fem-categorias, .nav-fem-link, .icons-fem-area, .icon-fem-link, .categorias-fem-nav, .cat-fem-link, .feminino-header, .feminino-categorias-nav, .feminino-categoria-link, .feminino-icons-area {
  display: none !important;
}

/* RESTAURAR header antiga */
.novo-header {
  background: #18181d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px 10px 32px;
  box-shadow: 0 2px 12px #0001;
  border-bottom: 2px solid #80036f;
  flex-wrap: wrap;
}
.novo-header .logo-area img {
  height: 70px;
  object-fit: contain;
  display: block;
}
.categorias-nav {
  display: flex;
  gap: 38px;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.categoria-link {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 8px 22px;
  border-radius: 22px;
  background: linear-gradient(90deg, #80036f 0%, #d50087 100%);
  box-shadow: 0 2px 8px #80036f22;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin: 0 2px;
}
.categoria-link:hover {
  background: linear-gradient(90deg, #d50087 0%, #80036f 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 4px 16px #d5008788;
}
.novo-header .icons-area {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.05rem;
}
.novo-header .icons-area a {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: color 0.2s;
}
.novo-header .icons-area a:hover {
  color: #d50087;
}
@media (max-width: 900px) {
  .novo-header {
    flex-direction: column;
    gap: 12px;
    padding: 16px 8px 8px 8px;
  }
  .categorias-nav {
    gap: 18px;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .novo-header {
    flex-direction: column;
    gap: 10px;
    padding: 10px 2px 6px 2px;
  }
  .categorias-nav {
    gap: 8px;
    flex-wrap: wrap;
  }
  .categoria-link {
    font-size: 0.98rem;
    padding: 7px 12px;
  }
  .novo-header .logo-area img {
    height: 48px;
  }
}

/* New Premium Header Styles */
.premium-header {
  background: linear-gradient(to right, #1a1a1a, #2a2a2a);
  padding: 0;
  position: relative;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.promo-bar {
  background: linear-gradient(to right, #80036f, #d50087);
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.header-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.header-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 12px 20px;
  padding-right: 50px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.search-input:focus {
  border-color: #d50087;
  box-shadow: 0 0 0 3px rgba(213, 0, 135, 0.1);
  outline: none;
}

.search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to right, #80036f, #d50087);
  border: none;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-button:hover {
  background: linear-gradient(to right, #d50087, #80036f);
  transform: translateY(-50%) scale(1.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-action:hover {
  color: #d50087;
}

.header-action i {
  font-size: 1.2rem;
}

.cart-count {
  background: #d50087;
  color: white;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 10px;
  position: absolute;
  top: -8px;
  right: -8px;
}

.header-nav {
  background: white;
  border-top: 1px solid #eee;
  padding: 12px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: #f8f8f8;
  color: #d50087;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #333;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 10px 15px;
  }

  .header-logo img {
    height: 45px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-search {
    display: none;
  }

  .header-actions {
    gap: 15px;
  }

  .header-action span {
    display: none;
  }

  .nav-container {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 10px;
  }

  .nav-container.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
  }

  .header-action {
    position: relative;
  }
}

/* New Cart Icon Styles */
.header-cart-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to right, #80036f, #d50087);
  color: white;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(213, 0, 135, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.header-cart-icon:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(213, 0, 135, 0.3);
}

.header-cart-icon i {
  font-size: 1.4rem;
}

.header-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: white;
  color: #d50087;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  border: 2px solid #d50087;
}

@media (min-width: 769px) {
  .header-cart-icon {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
  .premium-header {
    position: relative;
    min-height: 70px;
  }
  .header-container {
    position: relative;
    height: 70px;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .header-cart-icon {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
  .premium-header {
    position: relative;
    min-height: 56px;
  }
  .header-container {
    position: relative;
    height: 56px;
    align-items: center;
  }
}

/* Mobile search overlay */
.mobile-search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.mobile-search-overlay.active {
  display: flex;
}
.mobile-search-box {
  background: #fff;
  border-radius: 30px;
  padding: 16px 24px;
  box-shadow: 0 4px 24px #0002;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 90vw;
  max-width: 400px;
}
.mobile-search-box input {
  border: none;
  outline: none;
  font-size: 1.1rem;
  flex: 1;
  padding: 8px 0;
  background: transparent;
}
.mobile-search-box button {
  background: linear-gradient(to right, #80036f, #d50087);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-search-box button:hover {
  background: linear-gradient(to right, #d50087, #80036f);
}

@media (max-width: 768px) {
  .header-search {
    display: none !important;
  }
  .mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #d50087;
    font-size: 1.5rem;
    margin-left: 10px;
    cursor: pointer;
  }
}
@media (min-width: 769px) {
  .header-search {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 24px;
    max-width: 500px;
  }
  .mobile-search-btn {
    display: none !important;
  }
}

/* --- MODAL PREMIUM COMPACTO E ELEGANTE --- */
#modal-opcoes .modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px #80036f22, 0 1.5px 8px #0002;
  border: 1.5px solid #f3e0f5;
  max-width: 540px;
  width: 96vw;
  padding: 0 0 18px 0;
  margin: 0 auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#modal-opcoes .close-modal {
  top: 14px;
  right: 18px;
  font-size: 1.7rem;
  color: #80036f;
  background: #fff;
  border-radius: 50%;
  padding: 2px 10px;
  box-shadow: 0 2px 8px #f3e0f5;
  border: 1.5px solid #f3e0f5;
}
#modal-opcoes .close-modal:hover {
  color: #fff;
  background: #80036f;
}
#titulo-produto-modal {
  font-size: 1.25rem;
  font-weight: 700;
  color: #80036f;
  margin: 18px 0 8px 0;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.galeria-produto {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
.imagem-principal {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
.imagem-principal img {
  width: 220px;
  max-width: 90vw;
  max-height: 220px;
  border-radius: 12px;
  object-fit: contain;
  background: #faf7fa;
  box-shadow: 0 1px 8px #f3e0f5;
}
.miniaturas {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  width: 100%;
  margin-bottom: 8px;
}
.miniaturas img {
  border: 2px solid #f3e0f5;
  box-shadow: 0 1px 8px #f3e0f5;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
  border-radius: 8px;
  background: #faf7fa;
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.miniaturas img:hover {
  border: 2px solid #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
  transform: scale(1.08);
}
.miniaturas img.ativa {
  border: 2px solid #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
}
.info-produto-modal {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  font-size: 1.01rem;
  gap: 14px;
  padding: 0 18px 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bloco-preco {
  background: #fff;
  border: 1.5px solid #f3e0f5;
  border-radius: 14px;
  padding: 12px 16px;
  margin: 10px 0 14px 0;
  box-shadow: 0 2px 10px #f3e0f5;
  gap: 8px;
  width: 100%;
  text-align: center;
}
.linha-preco {
  font-size: 1.12rem;
  font-weight: 500;
  color: #80036f;
  justify-content: center;
  display: flex;
  gap: 8px;
}
.preco-promocional {
  color: #06c167;
  font-size: 1.3rem;
  font-weight: 700;
}
.preco-original {
  color: #e53935;
  text-decoration: line-through;
  font-size: 1rem;
}
.selo-desconto {
  background: #f3e0f5;
  color: #80036f;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 14px;
  margin-left: 10px;
  box-shadow: 0 1px 8px #f3e0f5;
}
.bloco-opcao {
  background: #fff;
  border: 1.5px solid #f3e0f5;
  border-radius: 12px;
  padding: 10px 12px 8px 12px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px #f3e0f5;
  width: 100%;
}
.titulo-opcao {
  font-size: 1.08rem;
  font-weight: 600;
  color: #80036f;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.grupo-opcao .opcao {
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #f3e0f5;
  font-weight: 500;
  color: #80036f;
  transition: all 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 6px #f3e0f5;
  position: relative;
}
.grupo-opcao .opcao:hover {
  border-color: #d50087;
  background: #f9e6f3;
  color: #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
}
.opcao.selecionado {
  border-color: #d50087;
  background: #f9e6f3;
  color: #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
}
.opcao.selecionado::before {
  content: '✔';
  position: absolute;
  top: -10px;
  left: -10px;
  background: #d50087;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px #f3e0f5;
}
.botao-confirmar.grande {
  background: linear-gradient(90deg, #fff, #ffe6f1 80%);
  color: #d50087;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid #d50087;
  border-radius: 18px;
  padding: 8px 0;
  margin-top: 10px;
  box-shadow: 0 2px 12px #f3e0f5;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-width: 80px;
  max-width: 140px;
  width: 100%;
  letter-spacing: 0.5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.botao-confirmar.grande:hover {
  background: linear-gradient(90deg, #d50087 60%, #80036f 100%);
  color: #fff;
  box-shadow: 0 4px 18px #d5008788;
  transform: scale(1.04);
}
@media (max-width: 700px) {
  #modal-opcoes .modal-content {
    border-radius: 12px;
    max-width: 98vw;
    min-width: 0;
    width: 99vw;
    padding: 0 0 10px 0;
  }
  .info-produto-modal {
    font-size: 0.97rem;
    padding-bottom: 4px;
    max-width: 98vw;
  }
  .imagem-principal img {
    width: 92vw;
    max-width: 260px;
    max-height: 180px;
    border-radius: 12px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    background: #faf7fa;
  }
  .miniaturas {
    gap: 6px;
    padding: 6px 0 0 6px;
    margin-bottom: 6px;
  }
  .botao-confirmar.grande {
    font-size: 0.98rem;
    padding: 8px 0;
    min-width: 70px;
    max-width: 120px;
    margin-top: 10px;
    border-radius: 16px;
  }
}

/* --- MODAL DESKTOP PREMIUM --- */
#modal-opcoes-desktop .modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px #80036f22, 0 1.5px 8px #0002;
  border: 1.5px solid #f3e0f5;
  max-width: 540px;
  width: 96vw;
  padding: 0 0 18px 0;
  margin: 0 auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#modal-opcoes-desktop .close-modal-desktop {
  top: 14px;
  right: 18px;
  font-size: 1.7rem;
  color: #80036f;
  background: #fff;
  border-radius: 50%;
  padding: 2px 10px;
  box-shadow: 0 2px 8px #f3e0f5;
  border: 1.5px solid #f3e0f5;
}
#modal-opcoes-desktop .close-modal-desktop:hover {
  color: #fff;
  background: #80036f;
}
.conteudo-modal-desktop {
  display: flex;
  flex-direction: row;
  gap: 0;
  width: 100%;
  min-height: 320px;
}
.galeria-produto-desktop {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0 24px 18px;
  gap: 10px;
}
.miniaturas-desktop {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
  max-height: 220px;
  overflow-y: auto;
}
.miniaturas-desktop img {
  border: 2px solid #f3e0f5;
  box-shadow: 0 1px 8px #f3e0f5;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
  border-radius: 8px;
  background: #faf7fa;
  width: 48px;
  height: 48px;
  object-fit: cover;
  cursor: pointer;
}
.miniaturas-desktop img:hover {
  border: 2px solid #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
  transform: scale(1.08);
}
.miniaturas-desktop img.ativa {
  border: 2px solid #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
}
.imagem-principal-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 220px;
  margin-bottom: 8px;
}
.imagem-principal-desktop img {
  width: 180px;
  height: 220px;
  border-radius: 12px;
  object-fit: contain;
  background: #faf7fa;
  box-shadow: 0 1px 8px #f3e0f5;
}
.info-produto-modal-desktop {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  padding: 24px 24px 18px 18px;
  align-items: flex-start;
}
.info-produto-modal-desktop h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #80036f;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}
.bloco-preco-desktop {
  background: #fff;
  border: 1.5px solid #f3e0f5;
  border-radius: 14px;
  padding: 10px 14px;
  margin: 0 0 10px 0;
  box-shadow: 0 2px 10px #f3e0f5;
  gap: 8px;
  width: 100%;
  text-align: left;
}
.botao-confirmar-desktop {
  background: linear-gradient(90deg, #fff, #ffe6f1 80%);
  color: #d50087;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid #d50087;
  border-radius: 22px;
  padding: 10px 0;
  margin-top: 12px;
  box-shadow: 0 2px 12px #f3e0f5;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-width: 90px;
  max-width: 140px;
  width: 100%;
  letter-spacing: 0.5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.botao-confirmar-desktop:hover {
  background: linear-gradient(90deg, #d50087 60%, #80036f 100%);
  color: #fff;
  box-shadow: 0 4px 18px #d5008788;
  transform: scale(1.04);
}

/* --- MODAL MOBILE PREMIUM --- */
#modal-opcoes-mobile {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

#modal-opcoes-mobile .modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px #80036f22;
  border: 1.5px solid #f3e0f5;
  width: 94vw;
  max-width: 94vw;
  min-width: 0;
  padding: 16px 12px;
  margin: 20px auto;
  overflow-y: auto;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#modal-opcoes-mobile .close-modal-mobile {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.5rem;
  color: #80036f;
  background: #fff;
  border-radius: 50%;
  padding: 4px 8px;
  box-shadow: 0 2px 8px #f3e0f5;
  border: 1.5px solid #f3e0f5;
  z-index: 10;
  cursor: pointer;
}

#modal-opcoes-mobile .close-modal-mobile:hover {
  color: #fff;
  background: #80036f;
}

#modal-opcoes-mobile .conteudo-modal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

#modal-opcoes-mobile .galeria-produto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

#modal-opcoes-mobile .imagem-principal {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#modal-opcoes-mobile .imagem-principal img {
  width: 100%;
  max-width: 280px;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  border-radius: 12px;
  background: #faf7fa;
  box-shadow: 0 1px 8px #f3e0f5;
}

#modal-opcoes-mobile .miniaturas {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4px;
  width: 100%;
}

#modal-opcoes-mobile .miniaturas img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid #f3e0f5;
  border-radius: 8px;
  background: #faf7fa;
  box-shadow: 0 1px 8px #f3e0f5;
  transition: all 0.2s;
}

#modal-opcoes-mobile .miniaturas img.ativa {
  border-color: #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
}

#modal-opcoes-mobile .info-produto-modal {
  width: 100%;
  padding: 0 4px;
}

#modal-opcoes-mobile #titulo-produto-modal {
  font-size: 1.1rem;
  font-weight: 600;
  color: #80036f;
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.4;
}

#modal-opcoes-mobile .bloco-preco {
  background: #fff;
  border: 1.5px solid #f3e0f5;
  border-radius: 12px;
  padding: 12px;
  margin: 8px 0;
  box-shadow: 0 2px 8px #f3e0f5;
}

#modal-opcoes-mobile .linha-preco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

#modal-opcoes-mobile .preco-promocional {
  font-size: 1.3rem;
  font-weight: 700;
  color: #06c167;
}

#modal-opcoes-mobile .preco-original {
  font-size: 0.95rem;
  color: #e53935;
  text-decoration: line-through;
}

#modal-opcoes-mobile .selo-desconto {
  background: #f3e0f5;
  color: #80036f;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

#modal-opcoes-mobile .linha-parcela {
  font-size: 0.9rem;
  color: #444;
  text-align: center;
  margin-top: 4px;
}

#modal-opcoes-mobile .selos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}

#modal-opcoes-mobile .selo-promocao {
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 8px;
}

#modal-opcoes-mobile .formas-pagamento {
  margin: 8px 0;
}

#modal-opcoes-mobile .bloco-compra {
  margin-top: 12px;
}

#modal-opcoes-mobile .info-entrega {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #06c167;
  border-radius: 8px;
  padding: 10px;
  margin: 8px 0;
  font-size: 0.85rem;
}

#modal-opcoes-mobile .linha-compra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
}

#modal-opcoes-mobile .quantidade-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 10px;
}

#modal-opcoes-mobile .quantidade-control button {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
  color: #80036f;
  cursor: pointer;
  box-shadow: 0 1px 4px #0001;
}

#modal-opcoes-mobile .quantidade-control input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 500;
}

#modal-opcoes-mobile .botao-confirmar.grande {
  background: linear-gradient(90deg, #fff, #ffe6f1 80%);
  color: #d50087;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid #d50087;
  border-radius: 16px;
  padding: 10px 20px;
  min-width: 120px;
  max-width: 160px;
  text-align: center;
  transition: all 0.2s;
}

#modal-opcoes-mobile .botao-confirmar.grande:hover {
  background: linear-gradient(90deg, #d50087 60%, #80036f 100%);
  color: #fff;
}

#modal-opcoes-mobile .info-entrega,
#modal-opcoes-mobile .garantia {
  font-size: 0.85rem;
  padding: 8px 8px;
  border-radius: 8px;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f9f9f9;
  border: 1px solid #eee;
}

#modal-opcoes-mobile .info-entrega img,
#modal-opcoes-mobile .garantia i {
  width: 16px;
  height: 16px;
  font-size: 14px;
}

@media (max-width: 600px) {
  #modal-opcoes-mobile .modal-content {
    width: 98vw;
    max-width: 98vw;
    margin: 0 auto;
    padding: 0 8px 16px 8px;
    border-radius: 14px;
    box-shadow: 0 4px 24px #0002;
    overflow-y: auto;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  #modal-opcoes-mobile .close-modal-mobile {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #eee;
    font-size: 1.5rem;
    padding: 2px 10px;
  }
  #modal-opcoes-mobile .conteudo-modal {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  #modal-opcoes-mobile .galeria-produto {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  #modal-opcoes-mobile .imagem-principal img {
    width: 90vw;
    max-width: 220px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
    background: #faf7fa;
  }
  #modal-opcoes-mobile .miniaturas {
    display: flex;
    gap: 6px;
    margin: 0 0 6px 0;
    justify-content: center;
    width: 100%;
  }
  #modal-opcoes-mobile .miniaturas img {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    object-fit: cover;
    border: 2px solid #eee;
  }
  #modal-opcoes-mobile .miniaturas img.ativa {
    border-color: #d50087;
    box-shadow: 0 2px 8px #f3e0f5;
  }
  #modal-opcoes-mobile .info-produto-modal {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  #modal-opcoes-mobile #titulo-produto-modal {
    font-size: 1rem;
    font-weight: 700;
    color: #80036f;
    text-align: center;
    margin: 8px 0 0 0;
    line-height: 1.3;
  }
  #modal-opcoes-mobile .bloco-preco,
  #modal-opcoes-mobile .bloco-opcao,
  #modal-opcoes-mobile .bloco-compra {
    width: 100%;
    padding: 8px 6px;
    border-radius: 10px;
    margin: 0 0 6px 0;
    box-shadow: 0 1px 6px #f3e0f5;
    background: #fff;
    border: 1px solid #f3e0f5;
  }
  #modal-opcoes-mobile .bloco-preco {
    text-align: center;
  }
  #modal-opcoes-mobile .linha-preco {
    font-size: 1.05rem;
    color: #80036f;
    justify-content: center;
    gap: 6px;
  }
  #modal-opcoes-mobile .preco-promocional {
    color: #06c167;
    font-size: 1.2rem;
    font-weight: 700;
  }
  #modal-opcoes-mobile .preco-original {
    color: #e53935;
    text-decoration: line-through;
    font-size: 0.95rem;
  }
  #modal-opcoes-mobile .selo-desconto {
    background: #f3e0f5;
    color: #80036f;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
  }
  #modal-opcoes-mobile .selos {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 4px 0;
  }
  #modal-opcoes-mobile .selo-promocao {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 8px;
  }
  #modal-opcoes-mobile .linha-compra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 8px 0;
  }
  #modal-opcoes-mobile .quantidade-control {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 4px 8px;
  }
  #modal-opcoes-mobile .quantidade-control button {
    width: 26px;
    height: 26px;
    font-size: 1.1rem;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #80036f;
    cursor: pointer;
  }
  #modal-opcoes-mobile .quantidade-control input {
    width: 28px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
  }
  #modal-opcoes-mobile .botao-confirmar.grande {
    width: 100%;
    max-width: 220px;
    margin: 10px auto 0 auto;
    font-size: 1rem;
    padding: 12px 0;
    border-radius: 14px;
    background: linear-gradient(90deg, #fff, #ffe6f1 80%);
    color: #d50087;
    font-weight: 700;
    border: 2px solid #d50087;
    box-shadow: 0 2px 8px #f3e0f5;
    transition: background 0.2s, color 0.2s;
    display: block;
  }
  #modal-opcoes-mobile .botao-confirmar.grande:hover {
    background: linear-gradient(90deg, #d50087 60%, #80036f 100%);
    color: #fff;
  }
  #modal-opcoes-mobile .info-entrega,
  #modal-opcoes-mobile .garantia {
    font-size: 0.85rem;
    padding: 8px 8px;
    border-radius: 8px;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f9f9f9;
    border: 1px solid #eee;
  }
  #modal-opcoes-mobile .info-entrega img,
  #modal-opcoes-mobile .garantia i {
    width: 16px;
    height: 16px;
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  #modal-opcoes-mobile .modal-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px #80036f22, 0 1.5px 8px #0002;
    border: 1.5px solid #f3e0f5;
    width: 98vw;
    max-width: 98vw;
    margin: 0 auto;
    padding: 0 8px 18px 8px;
    overflow-y: auto;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  #modal-opcoes-mobile .close-modal-mobile {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: #fff;
    border-radius: 50%;
    border: 1.5px solid #f3e0f5;
    font-size: 1.5rem;
    padding: 2px 10px;
    box-shadow: 0 2px 8px #f3e0f5;
    color: #80036f;
    transition: background 0.2s, color 0.2s;
  }
  #modal-opcoes-mobile .close-modal-mobile:hover {
    background: #80036f;
    color: #fff;
  }
  #modal-opcoes-mobile .galeria-produto-mobile {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  #modal-opcoes-mobile .imagem-principal-mobile img {
    width: 100%;
    max-width: 160px;
    height: auto;
    border-radius: 14px;
    object-fit: contain;
    background: #faf7fa;
    box-shadow: 0 2px 16px #d5008722;
    border: 2px solid #ffe6f1;
    margin: 0 auto;
    display: block;
  }
  #modal-opcoes-mobile .miniaturas-mobile {
    display: flex;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }
  #modal-opcoes-mobile .miniaturas-mobile img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #eee;
    box-shadow: 0 1px 6px #f3e0f5;
    transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
    background: #faf7fa;
  }
  #modal-opcoes-mobile .miniaturas-mobile img:hover,
  #modal-opcoes-mobile .miniaturas-mobile img.ativa {
    border-color: #d50087;
    box-shadow: 0 2px 12px #f3e0f5;
    transform: scale(1.08);
  }
  #modal-opcoes-mobile .info-produto-modal-mobile {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  #modal-opcoes-mobile #titulo-produto-modal-mobile {
    font-size: 1.18rem;
    font-weight: 700;
    color: #80036f;
    text-align: center;
    margin: 10px 0 0 0;
    line-height: 1.35;
    letter-spacing: 0.2px;
  }
  #modal-opcoes-mobile .bloco-preco-mobile,
  #modal-opcoes-mobile .bloco-opcao-mobile,
  #modal-opcoes-mobile .bloco-compra-mobile {
    width: 100%;
    padding: 12px 10px;
    border-radius: 14px;
    margin: 0 0 10px 0;
    box-shadow: 0 2px 10px #f3e0f5;
    background: #fff;
    border: 1.5px solid #f3e0f5;
  }
  #modal-opcoes-mobile .bloco-preco-mobile {
    text-align: center;
    margin-bottom: 0;
  }
  #modal-opcoes-mobile .linha-preco {
    font-size: 1.08rem;
    color: #80036f;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2px;
  }
  #modal-opcoes-mobile .preco-promocional {
    color: #06c167;
    font-size: 1.35rem;
    font-weight: 700;
  }
  #modal-opcoes-mobile .preco-original {
    color: #e53935;
    text-decoration: line-through;
    font-size: 1rem;
  }
  #modal-opcoes-mobile .selo-desconto {
    background: #ffe6f1;
    color: #d50087;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    margin-left: 8px;
    box-shadow: 0 1px 8px #f3e0f5;
  }
  #modal-opcoes-mobile .selos-mobile {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 4px 0;
  }
  #modal-opcoes-mobile .selo-promocao {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 8px;
    background: linear-gradient(90deg, #ffe6f1 0%, #fff 100%);
    color: #d50087;
    font-weight: 600;
    box-shadow: 0 1px 6px #f3e0f5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  #modal-opcoes-mobile .selo-promocao.rosa {
    background: linear-gradient(90deg, #ffd6ef 0%, #ffe6f1 100%);
    color: #80036f;
    animation: brilho 1.2s infinite alternate;
  }
  #modal-opcoes-mobile .linha-compra-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 10px 0;
  }
  #modal-opcoes-mobile .quantidade-control-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 6px 12px;
  }
  #modal-opcoes-mobile .quantidade-control-mobile button {
    width: 28px;
    height: 28px;
    font-size: 1.15rem;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #80036f;
    cursor: pointer;
    box-shadow: 0 1px 4px #0001;
    transition: background 0.2s, color 0.2s;
  }
  #modal-opcoes-mobile .quantidade-control-mobile button:hover {
    background: #ffe6f1;
    color: #d50087;
  }
  #modal-opcoes-mobile .quantidade-control-mobile input {
    width: 32px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 1.08rem;
    font-weight: 600;
    color: #80036f;
  }
  #modal-opcoes-mobile .botao-confirmar-mobile.grande {
    width: 100%;
    max-width: 220px;
    margin: 12px auto 0 auto;
    font-size: 1.08rem;
    padding: 14px 0;
    border-radius: 16px;
    background: linear-gradient(90deg, #fff, #ffe6f1 80%);
    color: #d50087;
    font-weight: 700;
    border: 2px solid #d50087;
    box-shadow: 0 2px 12px #f3e0f5;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: block;
    letter-spacing: 0.5px;
  }
  #modal-opcoes-mobile .botao-confirmar-mobile.grande:hover {
    background: linear-gradient(90deg, #d50087 60%, #80036f 100%);
    color: #fff;
    box-shadow: 0 4px 18px #d5008788;
  }
  #modal-opcoes-mobile .info-entrega-mobile,
  #modal-opcoes-mobile .garantia-mobile {
    font-size: 0.95rem;
    padding: 10px 10px;
    border-radius: 10px;
    margin: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f9f9f9;
    border: 1px solid #eee;
    box-shadow: 0 1px 6px #f3e0f5;
  }
  #modal-opcoes-mobile .info-entrega-mobile img,
  #modal-opcoes-mobile .garantia-mobile i {
    width: 18px;
    height: 18px;
    font-size: 15px;
  }
}

.botao-confirmar.grande, .botao-confirmar-mobile.grande {
  background: linear-gradient(90deg, #fff, #ffe6f1 80%);
  color: #d50087;
  font-size: 1.08rem;
  font-weight: 700;
  border: 2px solid #d50087;
  border-radius: 22px;
  padding: 12px 0;
  margin: 12px auto 0 auto;
  box-shadow: 0 2px 12px #f3e0f5;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-width: 120px;
  max-width: 260px;
  width: 100%;
  letter-spacing: 0.5px;
  display: block;
}

.botao-confirmar.grande:hover, .botao-confirmar-mobile.grande:hover {
  background: linear-gradient(90deg, #d50087 60%, #80036f 100%);
  color: #fff;
  box-shadow: 0 4px 18px #d5008788;
  transform: scale(1.04);
}

/* NOVO MODAL MOBILE PREMIUM */
#modal-opcoes-mobile .modal-content.modal-mobile-premium {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px #80036f22;
  border: 1.5px solid #f3e0f5;
  width: 98vw;
  max-width: 420px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 90vh;
  max-height: 98vh;
  overflow: hidden;
}

#modal-opcoes-mobile .close-modal-mobile {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 2rem;
  color: #d50087;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #f3e0f5;
  width: 44px;
  height: 44px;
  z-index: 10;
  box-shadow: 0 2px 8px #f3e0f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal-opcoes-mobile .modal-mobile-scroll {
  width: 100%;
  padding: 70px 18px 90px 18px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imagem-produto-mobile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.imagem-produto-mobile img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 2px 16px #d5008722;
  background: #faf7fa;
  margin-bottom: 8px;
}

.miniaturas-mobile {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  width: 100%;
  justify-content: center;
  margin-bottom: 8px;
}
.miniaturas-mobile img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #eee;
  background: #faf7fa;
  box-shadow: 0 1px 6px #f3e0f5;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.miniaturas-mobile img.ativa,
.miniaturas-mobile img:hover {
  border-color: #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
  transform: scale(1.08);
}

#modal-opcoes-mobile h2 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #80036f;
  text-align: center;
  margin: 10px 0 0 0;
  line-height: 1.35;
  letter-spacing: 0.2px;
}

.preco-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0 0;
  font-size: 1.1rem;
  font-weight: 600;
  justify-content: center;
}
.preco-original-mobile {
  color: #e53935;
  text-decoration: line-through;
  font-size: 1rem;
}
.preco-promocional-mobile {
  color: #06c167;
  font-size: 1.25rem;
  font-weight: 700;
}
.selo-desconto-mobile {
  background: #ffe6f1;
  color: #d50087;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 4px;
  box-shadow: 0 1px 8px #f3e0f5;
}

.parcela-mobile {
  font-size: 0.98rem;
  color: #444;
  text-align: center;
  margin: 4px 0 0 0;
}

.selos-mobile {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 8px 0;
}
.selos-mobile .selo-promocao {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffe6f1 0%, #fff 100%);
  color: #d50087;
  font-weight: 600;
  box-shadow: 0 1px 6px #f3e0f5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.selos-mobile .selo-promocao.rosa {
  background: linear-gradient(90deg, #ffd6ef 0%, #ffe6f1 100%);
  color: #80036f;
  animation: brilho 1.2s infinite alternate;
}

.opcoes-mobile {
  width: 100%;
  margin: 10px 0;
}
.opcoes-mobile .bloco-opcao-mobile {
  background: #fff;
  border: 1.5px solid #f3e0f5;
  border-radius: 12px;
  padding: 10px 12px 8px 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px #f3e0f5;
  width: 100%;
}
.opcoes-mobile .titulo-opcao-mobile {
  font-size: 1.08rem;
  font-weight: 600;
  color: #80036f;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.opcoes-mobile .grupo-opcao-mobile .opcao-mobile {
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #f3e0f5;
  font-weight: 500;
  color: #80036f;
  transition: all 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 6px #f3e0f5;
  position: relative;
  margin-right: 8px;
  margin-bottom: 6px;
}
.opcoes-mobile .grupo-opcao-mobile .opcao-mobile:hover,
.opcoes-mobile .grupo-opcao-mobile .opcao-mobile.selecionado {
  border-color: #d50087;
  background: #f9e6f3;
  color: #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
}
.opcoes-mobile .grupo-opcao-mobile .opcao-mobile.selecionado::before {
  content: '✔';
  position: absolute;
  top: -10px;
  left: -10px;
  background: #d50087;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px #f3e0f5;
}

.info-entrega-mobile {
  font-size: 0.95rem;
  padding: 10px 10px;
  border-radius: 10px;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  border: 1px solid #eee;
  box-shadow: 0 1px 6px #f3e0f5;
}
.info-entrega-mobile img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.garantia-mobile {
  font-size: 0.95rem;
  padding: 10px 10px;
  border-radius: 10px;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  border: 1px solid #eee;
  box-shadow: 0 1px 6px #f3e0f5;
}
.garantia-mobile i {
  width: 18px;
  height: 18px;
  font-size: 15px;
  color: #d50087;
}

.quantidade-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 0 0;
}
.quantidade-mobile button {
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #80036f;
  cursor: pointer;
  box-shadow: 0 1px 4px #0001;
  transition: background 0.2s, color 0.2s;
}
.quantidade-mobile button:hover {
  background: #ffe6f1;
  color: #d50087;
}
.quantidade-mobile input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
  color: #80036f;
}

.botao-confirmar-mobile.grande {
  position: static;
  left: unset;
  bottom: unset;
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  margin: 18px auto 0 auto;
  padding: 16px 0;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #ffe6f1 80%);
  color: #d50087;
  border: 2px solid #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: block;
}
.botao-confirmar-mobile.grande:hover {
  background: linear-gradient(90deg, #d50087 60%, #80036f 100%);
  color: #fff;
  box-shadow: 0 -4px 18px #d5008788;
  transform: scale(1.03);
}

@media (max-width: 480px) {
  #modal-opcoes-mobile .modal-content.modal-mobile-premium {
    max-width: 100vw;
    border-radius: 0;
  }
}

/* NOVO MODAL DESKTOP PREMIUM */
#modal-opcoes-desktop .modal-content.modal-desktop-premium {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px #80036f22;
  border: 1.5px solid #f3e0f5;
  max-width: 820px;
  width: 98vw;
  margin: 0 auto;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#modal-opcoes-desktop .close-modal-desktop {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2rem;
  color: #d50087;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #f3e0f5;
  width: 44px;
  height: 44px;
  z-index: 10;
  box-shadow: 0 2px 8px #f3e0f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-desktop-flex {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 48px 32px 32px 32px;
  gap: 32px;
  align-items: flex-start;
}

.galeria-desktop {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.miniaturas-desktop {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 8px;
}
.miniaturas-desktop img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid #eee;
  background: #faf7fa;
  box-shadow: 0 1px 6px #f3e0f5;
  transition: border 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.miniaturas-desktop img.ativa,
.miniaturas-desktop img:hover {
  border-color: #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
  transform: scale(1.08);
}

.imagem-principal-desktop {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imagem-principal-desktop img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 2px 16px #d5008722;
  background: #faf7fa;
}

.info-desktop {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  min-width: 0;
}

#modal-opcoes-desktop h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #80036f;
  margin: 0 0 8px 0;
  letter-spacing: 0.2px;
  text-align: left;
}

.preco-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  justify-content: flex-start;
}
.preco-original-desktop {
  color: #e53935;
  text-decoration: line-through;
  font-size: 1rem;
}
.preco-promocional-desktop {
  color: #06c167;
  font-size: 1.35rem;
  font-weight: 700;
}
.selo-desconto-desktop {
  background: #ffe6f1;
  color: #d50087;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 4px;
  box-shadow: 0 1px 8px #f3e0f5;
}

.parcela-desktop {
  font-size: 1.05rem;
  color: #444;
  text-align: left;
  margin: 4px 0 0 0;
}

.selos-desktop {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0;
}
.selos-desktop .selo-promocao {
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ffe6f1 0%, #fff 100%);
  color: #d50087;
  font-weight: 600;
  box-shadow: 0 1px 6px #f3e0f5;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.selos-desktop .selo-promocao.rosa {
  background: linear-gradient(90deg, #ffd6ef 0%, #ffe6f1 100%);
  color: #80036f;
  animation: brilho 1.2s infinite alternate;
}

.opcoes-desktop {
  width: 100%;
  margin: 10px 0;
}
.opcoes-desktop .bloco-opcao-desktop {
  background: #fff;
  border: 1.5px solid #f3e0f5;
  border-radius: 12px;
  padding: 10px 12px 8px 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px #f3e0f5;
  width: 100%;
}
.opcoes-desktop .titulo-opcao-desktop {
  font-size: 1.08rem;
  font-weight: 600;
  color: #80036f;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}
.opcoes-desktop .grupo-opcao-desktop .opcao-desktop {
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #f3e0f5;
  font-weight: 500;
  color: #80036f;
  transition: all 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 6px #f3e0f5;
  position: relative;
  margin-right: 8px;
  margin-bottom: 6px;
}
.opcoes-desktop .grupo-opcao-desktop .opcao-desktop:hover,
.opcoes-desktop .grupo-opcao-desktop .opcao-desktop.selecionado {
  border-color: #d50087;
  background: #f9e6f3;
  color: #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
}
.opcoes-desktop .grupo-opcao-desktop .opcao-desktop.selecionado::before {
  content: '✔';
  position: absolute;
  top: -10px;
  left: -10px;
  background: #d50087;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 6px #f3e0f5;
}

.info-entrega-desktop {
  font-size: 1.05rem;
  padding: 10px 10px;
  border-radius: 10px;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  border: 1px solid #eee;
  box-shadow: 0 1px 6px #f3e0f5;
}
.info-entrega-desktop img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.garantia-desktop {
  font-size: 1.05rem;
  padding: 10px 10px;
  border-radius: 10px;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9f9f9;
  border: 1px solid #eee;
  box-shadow: 0 1px 6px #f3e0f5;
}
.garantia-desktop i {
  width: 18px;
  height: 18px;
  font-size: 15px;
  color: #d50087;
}

.quantidade-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0 0;
}
.quantidade-desktop button {
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #80036f;
  cursor: pointer;
  box-shadow: 0 1px 4px #0001;
  transition: background 0.2s, color 0.2s;
}
.quantidade-desktop button:hover {
  background: #ffe6f1;
  color: #d50087;
}
.quantidade-desktop input {
  width: 36px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-weight: 600;
  color: #80036f;
}

.botao-confirmar-desktop.grande {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  margin: 18px auto 0 auto;
  padding: 16px 0;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #ffe6f1 80%);
  color: #d50087;
  border: 2px solid #d50087;
  box-shadow: 0 2px 12px #f3e0f5;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: block;
}
.botao-confirmar-desktop.grande:hover {
  background: linear-gradient(90deg, #d50087 60%, #80036f 100%);
  color: #fff;
  box-shadow: 0 4px 18px #d5008788;
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .modal-desktop-flex {
    flex-direction: column;
    gap: 18px;
    padding: 32px 8px 18px 8px;
  }
  .imagem-principal-desktop {
    width: 160px;
    height: 160px;
  }
  .imagem-principal-desktop img {
    width: 160px;
    height: 160px;
  }
}

.logo-lapenelopechic {
  max-height: 54px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* --- MODAL: Espaço das opções dinâmicas --- */
.opcoes-mobile:empty,
.opcoes-desktop:empty,
.opcoes-universal:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
}

/* Modal Mobile: Centralização e espaçamento elegante */
#modal-opcoes-mobile .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
#modal-opcoes-mobile .modal-mobile-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 0 12px 0 12px;
}
#modal-opcoes-mobile h2 {
  margin: 12px 0 8px 0;
  text-align: center;
}
#modal-opcoes-mobile .preco-mobile {
  margin-bottom: 8px;
  justify-content: center;
}
#modal-opcoes-mobile .quantidade-mobile {
  margin: 18px 0 0 0;
  justify-content: center;
}
#modal-opcoes-mobile .botao-confirmar-mobile.grande {
  margin: 24px auto 0 auto;
  display: block;
  font-size: 1.08rem;
  padding: 14px 0;
  border-radius: 16px;
  max-width: 260px;
  width: 100%;
  box-shadow: 0 2px 12px #f3e0f5;
}

/* Modal Desktop: Centralização e espaçamento elegante */
#modal-opcoes-desktop .modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
#modal-opcoes-desktop .modal-desktop-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
}
#modal-opcoes-desktop .info-desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
#modal-opcoes-desktop .botao-confirmar-desktop.grande {
  margin: 24px auto 0 auto;
  display: block;
  font-size: 1.12rem;
  padding: 16px 0;
  border-radius: 18px;
  max-width: 260px;
  width: 100%;
  box-shadow: 0 2px 12px #f3e0f5;
}

/* Modal Universal: mesmo ajuste para .opcoes-universal */
.opcoes-universal:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
}
#modal-opcoes .info-produto-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
#modal-opcoes .botao-confirmar.grande {
  margin: 24px auto 0 auto;
  display: block;
  font-size: 1.08rem;
  padding: 14px 0;
  border-radius: 16px;
  max-width: 260px;
  width: 100%;
  box-shadow: 0 2px 12px #f3e0f5;
}

/* --- MODAIS PREMIUM E CONFIÁVEIS --- */
.modal-content, .modal-content.estilizado, .modal-content.modal-desktop-premium, .modal-content.modal-mobile-premium {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px #80036f22, 0 1.5px 8px #0002;
  border: 1.5px solid #f3e0f5;
  padding: 32px 24px 32px 24px;
  max-width: 98vw;
  margin: 0 auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Selo de segurança e compra garantida */
.info-entrega, .info-entrega-mobile, .info-entrega-desktop {
  background: #f9f9f9;
  border: 1.5px solid #e0e0e0;
  border-left: 6px solid #06c167;
  border-radius: 10px;
  padding: 10px 16px;
  margin: 10px 0 0 0;
  font-size: 0.98rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 6px #f3e0f5;
}
.info-entrega img, .info-entrega-mobile img, .info-entrega-desktop img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.garantia, .garantia-mobile, .garantia-desktop {
  background: #fff1f8;
  border-left: 6px solid #d50087;
  border-radius: 10px;
  padding: 10px 16px;
  margin: 12px 0 0 0;
  font-size: 0.98rem;
  color: #d50087;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 6px #f3e0f5;
  font-weight: 500;
}
.garantia i, .garantia-mobile i, .garantia-desktop i {
  font-size: 22px;
  color: #d50087;
}

/* Selo de desconto animado */
.selo-desconto, .selo-desconto-mobile, .selo-desconto-desktop {
  background: #ffe6f1;
  color: #d50087;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 14px;
  margin-left: 10px;
  box-shadow: 0 1px 8px #f3e0f5;
  animation: brilho 1.2s infinite alternate;
}
@keyframes brilho {
  0% { box-shadow: 0 0 6px #ff8cd2; }
  100% { box-shadow: 0 0 16px #ff8cd2; }
}

/* Botão de ação premium */
.botao-confirmar.grande, .botao-confirmar-mobile.grande, .botao-confirmar-desktop.grande {
  background: linear-gradient(90deg, #fff, #ffe6f1 80%);
  color: #d50087;
  font-size: 1.12rem;
  font-weight: 700;
  border: 2px solid #d50087;
  border-radius: 22px;
  padding: 16px 0;
  margin: 24px auto 0 auto;
  box-shadow: 0 2px 12px #f3e0f5;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  max-width: 260px;
  width: 100%;
  letter-spacing: 0.5px;
  display: block;
}
.botao-confirmar.grande:hover, .botao-confirmar-mobile.grande:hover, .botao-confirmar-desktop.grande:hover {
  background: linear-gradient(90deg, #d50087 60%, #80036f 100%);
  color: #fff;
  box-shadow: 0 4px 18px #d5008788;
  transform: scale(1.04);
}

/* Preço e destaque */
.preco-promocional, .preco-promocional-mobile, .preco-promocional-desktop {
  color: #06c167;
  font-weight: 700;
  font-size: 1.5rem;
}
.preco-original, .preco-original-mobile, .preco-original-desktop {
  color: #e53935;
  text-decoration: line-through;
  font-size: 1rem;
  margin-right: 8px;
}

/* Tipografia clara e moderna */
#modal-opcoes, #modal-opcoes-mobile, #modal-opcoes-desktop {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  color: #222;
}

/* Espaçamento e centralização */
#modal-opcoes .info-produto-modal, #modal-opcoes-mobile .modal-mobile-scroll, #modal-opcoes-desktop .info-desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

/* Miniaturas e imagem principal com sombra leve */
.imagem-principal img, #imagem-produto-modal-mobile, #imagem-produto-modal-desktop {
  border-radius: 12px;
  box-shadow: 0 1px 8px #f3e0f5;
  background: #faf7fa;
}

/* Remove outline feio dos botões */
button:focus {
  outline: 2px solid #d50087;
  outline-offset: 2px;
}

/* --- MODAL DE COMPRA PROFISSIONAL --- */
.modal-produto-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.modal-produto-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px #0003;
  max-width: 700px;
  width: 96vw;
  padding: 32px 24px;
  position: relative;
  animation: modalFadeIn 0.3s;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #d50087;
  cursor: pointer;
  z-index: 2;
}
.modal-produto-flex {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.modal-produto-img {
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-produto-img img {
  max-width: 220px;
  max-height: 320px;
  border-radius: 12px;
  box-shadow: 0 2px 12px #80036f22;
  background: #faf7fa;
}
.modal-produto-info {
  flex: 2 1 320px;
  min-width: 220px;
}
.modal-produto-info h2 {
  font-size: 1.5rem;
  color: #80036f;
  margin-bottom: 10px;
}
.modal-preco {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.modal-preco-antigo {
  color: #888;
  text-decoration: line-through;
  font-size: 1.1rem;
}
.modal-preco-novo {
  color: #d50087;
  font-size: 1.5rem;
  font-weight: 700;
}
.modal-desconto {
  background: #06c167;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 2px 10px;
  margin-left: 8px;
}
.modal-opcoes {
  margin: 18px 0 10px 0;
}
.modal-opcoes label {
  font-weight: 600;
  color: #80036f;
  margin-right: 10px;
}
.modal-opcoes select, .modal-opcoes .modal-opcao-btn {
  margin: 0 4px 8px 0;
  padding: 7px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #faf7fa;
  color: #80036f;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.modal-opcoes .modal-opcao-btn.selected, .modal-opcoes select:focus {
  background: #d50087;
  color: #fff;
  border-color: #d50087;
}
.modal-quantidade {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.modal-quantidade label {
  font-weight: 500;
  color: #80036f;
}
.modal-quantidade button {
  background: #f7f7fa;
  border: 1px solid #d50087;
  color: #d50087;
  font-size: 1.2rem;
  border-radius: 6px;
  width: 32px; height: 32px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.modal-quantidade button:hover {
  background: #d50087;
  color: #fff;
}
.modal-quantidade input[type="number"] {
  width: 48px;
  text-align: center;
  font-size: 1.1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin: 0 4px;
}
.modal-add-carrinho {
  background: linear-gradient(90deg, #80036f, #d50087);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  width: 100%;
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #d5008722;
}
.modal-add-carrinho:hover {
  background: linear-gradient(90deg, #d50087, #80036f);
  box-shadow: 0 4px 16px #d5008788;
}
@media (max-width: 700px) {
  .modal-produto-content {
    margin: 0 auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 98vw;
    min-width: 0;
    width: 99vw;
    padding: 18px 4vw 12px 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .modal-produto-flex {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    justify-content: center;
  }
  .modal-produto-img img {
    max-width: 98vw;
    max-height: 220px;
    display: block;
    margin: 0 auto;
  }
  .modal-produto-info {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .modal-preco {
    justify-content: center;
  }
  .modal-opcoes {
    justify-content: center;
    text-align: center;
  }
  .modal-quantidade {
    justify-content: center;
  }
  .modal-add-carrinho {
    margin: 0 auto;
    display: block;
  }
  .toast-notification {
    left: 50%;
    right: auto;
    bottom: 24px;
    transform: translate(-50%, 40px);
    min-width: 220px;
    max-width: 90vw;
    text-align: center;
    font-size: 1rem;
    padding: 12px 18px;
  }
  .toast-notification.show {
    transform: translate(-50%, 0);
  }
}

/* Toast de notificação */
.toast-notification {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #d50087;
  color: #fff;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  box-shadow: 0 4px 24px #0002;
  opacity: 0;
  pointer-events: none;
  z-index: 99999;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(40px);
}
.toast-notification.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .toast-notification {
    left: 50%;
    right: auto;
    bottom: 24px;
    transform: translate(-50%, 40px);
    min-width: 120px;
    max-width: 80vw;
    text-align: center;
    font-size: 0.98rem;
    padding: 8px 16px;
    border-radius: 18px;
    background: linear-gradient(90deg, #d50087 80%, #ff8cd2 100%);
    box-shadow: 0 2px 12px #d5008722;
    opacity: 0.97;
    font-weight: 500;
    letter-spacing: 0.1px;
  }
  .toast-notification.show {
    transform: translate(-50%, 0);
  }
}

@media (max-width: 600px) {
  .modal-produto-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    background: rgba(0,0,0,0.45);
    transition: background 0.3s;
  }
  .modal-produto-content {
    animation: modalMobileSlideUp 0.35s cubic-bezier(0.4,0,0.2,1);
    border-radius: 18px 18px 0 0;
    max-width: 100vw;
    width: 100vw;
    min-width: 0;
    margin: 0;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    box-shadow: 0 -4px 32px #0002;
    padding-bottom: 24px;
    overflow-y: auto;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    transition: box-shadow 0.3s, background 0.3s;
  }
}
@keyframes modalMobileSlideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-color-scheme: dark) {
  body, .produto, .modal-content, .modal-content.estilizado, .modal-content.modal-desktop-premium, .modal-content.modal-mobile-premium {
    background: #fff !important;
    color: #111 !important;
  }
  .produto h3, .produto p, .produto span {
    color: #111 !important;
  }
  /* Botões com texto branco */
  .produto button,
  .botao-confirmar,
  .botao-confirmar.grande,
  .botao-confirmar-mobile.grande,
  .botao-confirmar-desktop.grande {
    color: #fff !important;
  }
  /* Corrige ícones de carrinho e setas para branco */
  .produto button i,
  .botao-confirmar i,
  .botao-confirmar-mobile.grande i,
  .botao-confirmar-desktop.grande i,
  .produto .seta, /* ajuste para sua classe de seta, se for diferente */
  .produto .fa,   /* ajuste para FontAwesome, se usar */
  .produto .icon {
    color: #fff !important;
  }
}