.wpcg-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.wpcg-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wpcg-mascot {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wpcg-mascot::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid #f5f5f5;
  border-radius: 50%;
  z-index: -1;
}

.wpcg-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.wpcg-product {
  position: absolute;
  width: 72px;
  height: 72px;
  transform-origin: center;
  transition: all 0.3s ease;
}

.wpcg-product a {
  display: block;
  width: 100%;
  height: 100%;
}

.wpcg-product img {
  transition: all 0.3s ease;
}

.wpcg-product:hover img {
  transform: scale(1.1);
}

.wpcg-product-link {
  position: relative;
  display: block;
}

.wpcg-tooltip {
  visibility: hidden;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  margin-bottom: 5px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
}

.wpcg-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

.wpcg-product-link:hover .wpcg-tooltip {
  visibility: visible;
  opacity: 1;
}
