.pn-variation-wrapper {
  font-family: "Poppins", sans-serif;
  margin-top: 20px;
}

.pn-section { margin-bottom: 25px; }

.pn-swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pn-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: 0.3s;
}
.pn-swatch.active {
  border-color: #7b3fe4;
  box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.3);
}

.pn-storage-grid,
.pn-condition-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pn-tile,
.pn-condition {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 10px 18px;
  min-width: 120px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.pn-tile.active,
.pn-condition.active {
  border-color: #7b3fe4;
  background: #f5edff;
}

.pn-tile-title {
  font-weight: 600;
  font-size: 15px;
}

.pn-tile-price,
.pn-condition-price {
  font-size: 14px;
  color: #666;
  margin-top: 3px;
}


.pn-swatch.active, .pn-tile.active, .pn-condition.active {
    outline: 2px solid #000;
}

