@import url("style.css");
/* ===============================
   SACOLA – FLORESCER CHIQUE
================================ */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #faf9f7;
  color: #333;
}

h1 {
  font-family: 'Playfair Display', serif;
  color: #4a4a4a;
  padding-bottom: 30px;
}


/* Container principal */
.sacola-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

/* Título */
.sacola-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: center;
}

/* Lista vazia */
.sacola-container p {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 30px;
}

/* Item da sacola */
.item-sacola {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* Nome do produto */
.item-sacola strong {
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
}

/* Preço */
.item-sacola span,
.item-sacola div {
  font-size: 0.95rem;
}

/* Botão remover */
.item-sacola button {
  background: transparent;
  border: none;
  color: #b23b3b;
  font-size: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.item-sacola button:hover {
  opacity: 0.7;
}

/* Ações da sacola */
.acoes-sacola {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 15px;
}

/* Link voltar */
.acoes-sacola a {
  text-decoration: none;
  font-weight: 500;
  color: #6b7f6a;
}

/* Botão WhatsApp */
.btn-whatsapp {
  background-color: #25d366;
  color: #fff !important;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe5d;
  transform: translateY(-1px);
}

/* ===============================
   ÍCONE DA SACOLA (GLOBAL)
================================ */

.sacola {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #6b7f6a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Contador */
#contador-sacola {
  background: #fff;
  color: #6b7f6a;
  padding: 2px 7px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
}

/* ===============================
   RESPONSIVO
================================ */

@media (max-width: 600px) {

  .item-sacola {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .acoes-sacola {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-whatsapp {
    justify-content: center;
    text-align: center;
  }
}
