.blissclub-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}
.blissclub-tab {
  text-transform: uppercase;
  padding: 10px 0;
  font-weight: 600;
  color: #666;
  border-bottom: 3px solid transparent;
  cursor: pointer;
}
.blissclub-tab.active {
  color: #EC008C;
  border-color: #EC008C;
}
.blissclub-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .blissclub-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .blissclub-products-grid {
    grid-template-columns: 1fr;
  }
}
.product-card {
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}
.like-icon {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  font-weight: bold;
  color: #ccc;
  cursor: pointer;
}
.like-icon.liked {
  color: #EC008C;
}
.product-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-title h4 {
  font-size: 16px;
  margin: 10px 0 0;
}
.product-rating {
  font-size: 16px;
  color: gold;
  font-weight: bold;
}
.product-price {
  font-size: 14px;
}
.product-price .off {
  color: #EC008C;
  margin-left: 6px;
  font-weight: bold;
}
.color-dots {
  display: flex;
  gap: 6px;
  margin: 10px 0;
}
.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #888;
  box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
  cursor: pointer;
}
.color-dot:hover {
  border-color: #EC008C;
}
.add-to-cart {
  background: #EC008C;
  color: #fff;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}