/* Botão flutuante */
.cw-brinde-floating {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #000;
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
  z-index: 9999;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Popup */
#cw-brinde-popup {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

#cw-brinde-popup.active {
  display: flex;
  opacity: 1;
}


.cw-popup-inner {
  background: white;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 12px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;

}

.cw-brindes-bloqueado {
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cw-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.cw-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.cw-progress-track {
  flex-grow: 1;
  margin: 0 10px;
  height: 10px;
  background: #eee;
  border-radius: 5px;
  position: relative;
}

.cw-progress-fill {
  height: 100%;
  background: #000000;
  width: 0;
  border-radius: 5px;
  transition: width 0.5s ease;
}
.cw-brindes h2.woocommerce-loop-product__title {
    font-size: 14px;
    margin-top: 10px;
}
.cw-brindes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.cw-brindes h2 {
	font-size: 14px;
	margin-top: 10px;
	margin-bottom: 0;
}

.cw-brinde-item {
  width: calc(50% - 10px);
  text-align: center;
}

.cw-brinde-item img {
  max-width: 100%;
  border-radius: 8px;
}
