/* Member Price Block styles */
.member-price {
  color: var(--MEMBER-PRICE-TEXT-COLOR);
  margin-top: 4px;
  font-family: 48px;
  display: flex;
  gap: 8px;
}

.product__member__price {
  margin-top: 4px;
  text-align: left;
  font-size: 14px;
  display: flex;
  gap: 8px;
}

/* Loading State */
.member-price-loading {
  display: flex;
  align-items: center;
}

.member-price-loading .loading-placeholder {
  display: inline-block;
  width: 120px;
  height: 16px;
  background-color: #f0f0f0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.member-price-loading .loading-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

/* Tooltip Button */
.membership-price-tooltip {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
}

/* Dark Mode Support */
.default--dark .member-price-loading .loading-placeholder {
  background-color: #3a3a3a;
}

.default--dark .member-price-loading .loading-placeholder::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

/* Responsive Adjustments */
@media screen and (max-width: 749px) {
  .member-price {
    font-size: 13px;
  }

  .product__member__price {
    font-size: 13px;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
