.store-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 8px;
  background: rgba(3, 7, 16, 0.7);
}

.coin-wrap {
  perspective: 240px;
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.coin-spin {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fff2b5, #ffc64d 55%, #8f5a00 100%);
  border: 2px solid rgba(255, 236, 164, 0.75);
  box-shadow: 0 0 12px rgba(255, 198, 78, 0.5);
  animation: coinSpin3d 1.15s linear infinite;
  position: relative;
}

.coin-spin::after {
  content: "BBC";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Press Start 2P", monospace;
  font-size: 8px;
  color: #3b2300;
  text-shadow: 0 1px 0 rgba(255, 244, 190, 0.65);
}

@keyframes coinSpin3d {
  0% {
    transform: rotateY(0deg) scaleX(1);
  }
  25% {
    transform: rotateY(90deg) scaleX(0.18);
  }
  50% {
    transform: rotateY(180deg) scaleX(1);
  }
  75% {
    transform: rotateY(270deg) scaleX(0.18);
  }
  100% {
    transform: rotateY(360deg) scaleX(1);
  }
}

.store-checkout-box {
  border: 1px solid rgba(123, 215, 255, 0.3);
  border-radius: 10px;
  padding: 10px;
  background: rgba(2, 8, 18, 0.75);
}

.pp-field {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  min-height: 44px;
  padding: 6px 8px;
  margin-bottom: 8px;
}

.pp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
