/* Size / Unit switch container */
.wc-image-pricing-wrapper {
  margin: 1.5em 0;
  font-family: sans-serif;
}

/* inch/cm toggle */
.wc-ip-unit-switch {
  margin-bottom: 0.5em;
}
.wc-ip-unit-switch button {
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  cursor: pointer;
  margin-right: 4px;
  border-radius: 4px;
}
.wc-ip-unit-switch button.active {
  background: #fff;
  border-color: #333;
  font-weight: bold;
}

/* Size buttons */
.wc-ip-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wc-ip-size-option {
  padding: 8px 14px;
  border: 1px solid #ddd;
  background: #fafafa;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.wc-ip-size-option.active {
  background: #fff;
  border-color: #333;
}

/* Frame thumbnails */
.wc-image-pricing-frames {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wc-ip-frame-option {
  border: 1px solid #ddd;
  padding: 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.wc-ip-frame-option.selected {
  border-color: #333;
}
.wc-ip-frame-option img {
  display: block;
  max-width: 60px;
  height: auto;
}

/* Price display */
.wc-ip-price-display {
  margin-top: 1em;
  font-size: 1.3em;
  font-weight: bold;
}