        :root {
      --rosa-principal: #e91e63;
      --rosa-claro: #ff4081;
      --rosa-fundo: #fff0f5;
      --cinza-texto: #333;
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      background: #f8f1f5;
      color: var(--cinza-texto);
      line-height: 1.6;
    }


header {
  background: url("https://png.pngtree.com/thumb_back/fh260/back_our/20190620/ourmid/pngtree-candy-children-maternal-and-child-fresh-literary-sweet-banner-image_164502.jpg") center/cover no-repeat;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

    header img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 4px solid white;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      object-fit: cover;
      background-color: #AB191B;
    }

    header h1 {
      font-size: 26px;
      font-weight: 700;
      color: var(--rosa-principal);
      margin: 0;
      letter-spacing: -0.5px;
    }

#categorias {  
  display: flex;  
  gap: 14px;  
  overflow-x: auto;  
  padding: 20px 15px 15px;  
  scroll-behavior: smooth;  
  background: white;  
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);  
}  

#categorias::-webkit-scrollbar { 
  display: none; 
}  

.categoria {  
  flex: 0 0 25%;
  min-width: 0;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}  

.categoria:hover {  
  transform: translateY(-6px);  
}  

.categoria img {  
  width: 100%;  
  aspect-ratio: 1 / 1;
  object-fit: cover;  
  border-radius: 18px;  
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);  
  transition: all 0.3s ease;  
}  

.categoria:hover img {  
  transform: scale(1.05);  
}

.categoria p {  
  margin-top: 8px;  
  font-weight: 600;  
  color: var(--rosa-principal);  
  font-size: 14.5px;  
}
@media (max-width: 480px) {
  .categoria {
    flex: 0 0 40%;
  }
}

#produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 18px;
  padding: 20px 15px;
  
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvx4YEJZQPFdbpQwwOgYlQkRwsAkbxLX8oFuKExomtqQ&s=10") center/cover no-repeat;
}

    .produto {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
    }

    .produto:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(233, 30, 99, 0.15);
    }

.produto img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #fff;
}

    .produto-info {
      padding: 14px 14px 16px;
    }

    .produto h5 {
      font-size: 15.5px;
      font-weight: 600;
      margin-bottom: 4px;
      color: #222;
    }

    .produto h6 {
      font-size: 13px;
      color: #777;
      margin-bottom: 8px;
      font-weight: 400;
    }

    .produto h3 {
      font-size: 18px;
      color: var(--rosa-principal);
      font-weight: 700;
    }

    #modalInfo {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.65);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      animation: fadeIn 0.3s ease;
    }

    .modal-content {
      background: white;
      width: 92%;
      max-width: 380px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

.modal-content img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #fff;
}

    .modal-body {
      padding: 20px;
    }

    .modal-body h2 {
      color: var(--rosa-principal);
      font-size: 20px;
      margin-bottom: 8px;
    }

    .modal-body p {
      color: #555;
      font-size: 14.5px;
      line-height: 1.5;
    }

    .sabores {
      margin-top: 18px;
    }

    .sabores h4 {
      margin-bottom: 10px;
      color: #444;
      font-size: 15px;
    }

    .sabor-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff0f5;
      padding: 12px 14px;
      border-radius: 14px;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .sabor-item button {
      background: var(--rosa-principal);
      color: white;
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .sabor-item button:hover {
      background: #c51162;
      transform: scale(1.1);
    }

    .fechar-modal {
      margin-top: 20px;
      width: 100%;
      padding: 14px;
      background: #e91e63;
      color: white;
      border: none;
      border-radius: 14px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
    }


    #fab {
      position: fixed;
      bottom: 25px;
      right: 25px;
      z-index: 1000;
    }
    
    


    #carrinho {
      width: 68px;
      height: 68px;
      background: linear-gradient(135deg, #e91e63, #ff4081);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    #carrinho:hover {
      transform: scale(1.08);
    }

    #carrinho::after {
      content: attr(data-qtd);
      position: absolute;
      top: -6px;
      right: -6px;
      background: #ff1744;
      color: white;
      font-size: 13px;
      font-weight: bold;
      min-width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    #listaCar {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.6);

  display: none;

  align-items: center;
  justify-content: center;

  z-index: 10000;

  animation: fadeIn .25s ease;
}


.car-content {

  background: white;

  width: 92%;
  max-width: 420px;

  border-radius: 24px;

  max-height: 85vh;

  overflow-y: auto;

  padding: 22px;

  animation: subirModal .25s ease;

}


.item-car {

  display: flex;

  gap: 12px;

  align-items: center;

  padding: 14px 0;

  border-bottom: 1px solid #f1f1f1;

}


.item-car img {

  width: 60px;

  height: 60px;

  object-fit: cover;

  border-radius: 14px;

}


.item-info {

  flex: 1;

}


.item-info div:first-child {

  font-weight: 600;

  font-size: 15px;

}


.item-info div:last-child {

  font-size: 13px;

  color: #777;

}


#resumoCar {

  margin: 22px 0;

  padding: 18px;

  background: #fff0f5;

  border-radius: 18px;

  font-weight: 600;

  text-align: center;

  font-size: 16px;

}


#btnWhats {

  width: 100%;

  padding: 16px;

  background: #25D366;

  color: white;

  border: none;

  border-radius: 18px;

  font-size: 17px;

  font-weight: 700;

  margin-top: 10px;

  cursor: pointer;

  transition: .2s;
}


#btnWhats:hover {

  transform: scale(1.02);

}


.grupo-botoes {

  display: flex;

  gap: 10px;

  margin-top: 10px;

}


.grupo-botoes button {

  flex: 1;

  border: none;

  padding: 12px;

  border-radius: 14px;

  background: #f5f5f5;

  font-weight: 600;

  font-size: 14px;

  cursor: pointer;

  transition: .2s;

}


.grupo-botoes button:hover {

  background: #ececec;

}


.grupo-botoes button.ativo {

  background: #e91e63;

  color: white;

  transform: scale(1.03);

}



#trocoValor {

  width: 100%;

  padding: 10px;

  border-radius: 10px;

  border: 1px solid #ddd;

  margin-top: 6px;

}


#campoLocalizacao input {

  width: 100%;

  padding: 12px;

  border-radius: 12px;

  border: 1px solid #ddd;

  font-size: 14px;

}


#campoLocalizacao button {

  width: 100%;

  padding: 12px;

  border: none;

  border-radius: 12px;

  background: #f0f7ff;

  color: #1976d2;

  font-weight: 600;

  cursor: pointer;

}

#fabPromo {

  position: fixed;

  bottom: 90px;

  left: 15px;

  z-index: 9999;

  animation: pulseFab 2s infinite;

}


#fabPromo img {

  width: 70px;

  height: 70px;

  border-radius: 18px;

  box-shadow: 0 8px 20px rgba(0,0,0,.25);

  cursor: pointer;

  transition: .2s;

}


#fabPromo img:hover {

  transform: scale(1.08);

}


/* animação chamativa suave */

@keyframes pulseFab {

  0% {

    transform: scale(1);

  }

  50% {

    transform: scale(1.06);

  }

  100% {

    transform: scale(1);

  }

}





@keyframes subirModal {

  from {

    transform: translateY(30px);

    opacity:0;

  }

  to {

    transform: translateY(0);

    opacity:1;

  }

}
    

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .pulse {
      animation: pulse 0.6s ease;
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.25); }
      100% { transform: scale(1); }
    }