.wcps-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wcps-modal-content {
  max-width: 600px;
  width: 90%;
  height: 70vh;
  padding: 20px;
  overflow: auto;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wcps-loading {
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.wcps-loading-icon {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #000;
  border-left-color: transparent;
  border-right-color: transparent;
}
.wcps-info-popup {
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 300px;
  min-height: 200px;
  transform: translate(-50%, -50%) scale(0.5);
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 20px;
  display: flex;
  transition: all 0.3s ease;
}
.wcps-info-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.wcps-info-content {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.wcps-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.wcps-modal.open .wcps-modal-content {
  opacity: 1;
  transform: scale(1);
}
.wcps-modal.loading .wcps-loading {
  opacity: 1;
  pointer-events: auto;
}
.wcps-modal.loading .wcps-loading-icon {
  animation: spin 0.9s linear infinite;
}
.wcps-info-popup.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.product-type-points_mall a {
    pointer-events: none;
}
.product-type-points_mall .price {
    opacity: 1;
    color: #000;
    visibility: unset;
    word-spacing: unset;
}
.product-type-points_mall .add-to-cart-loop {
    display: none;
}
.wcps-button {
    padding: 5px 20px;
    font-size: 13px;
    text-align: center;
    color: #000;
    background-color: #f3f3f3;
    border: 0px solid;
    transition: all 0.3s ease;
}
.wcps-button:hover {
    color: #3e3e3e;
    background-color: #e3e3e3;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}