.woocommerce div.product div.images.loc-frame-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #eee7d9;
}
.loc-frame-mask { position: absolute; pointer-events: none; }
.loc-frame-scene { position: relative; }
.woocommerce div.product div.images.loc-frame-preview img.loc-frame-overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  clip-path: url(#loc-frame-wood);
  pointer-events: none;
}
.loc-frame-preview-caption {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px 16px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.loc-frame-preview-caption [data-frame-caption] { color: var(--ink); }
.woocommerce div.product form.cart .variations select.loc-frame-native-select { display: none; }
.woocommerce div.product form.cart .loc-frame-swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.woocommerce div.product form.cart .loc-frame-option {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
  font-weight: 400;
}
.loc-frame-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  margin: 0;
}
.loc-frame-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 8px;
  border: 1px solid #c8bdab;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
  transition: border-color .15s, background-color .15s;
}
.loc-frame-option:hover .loc-frame-card { border-color: var(--ink); }
.loc-frame-option input:checked + .loc-frame-card {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
  background: #ece5d8;
}
.loc-frame-option input:focus-visible + .loc-frame-card { outline: 2px solid var(--ink); outline-offset: 3px; }
.loc-frame-option input:disabled + .loc-frame-card { opacity: .4; cursor: not-allowed; }
.loc-frame-chip {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgb(0 0 0 / 15%);
  box-shadow: inset 0 1px 2px rgb(255 255 255 / 18%);
}
.loc-frame-chip--natural { background: repeating-linear-gradient(100deg, #b57d43 0, #c99456 2px, #d4a66c 4px, #c49154 6px); }
.loc-frame-chip--walnut { background: repeating-linear-gradient(100deg, #513322 0, #66442e 2px, #765239 4px, #604029 6px); }
.loc-frame-chip--black { background: linear-gradient(120deg, #353532, #181817); }
@media (max-width: 480px) {
  .woocommerce div.product form.cart .loc-frame-swatches { gap: 7px; }
  .loc-frame-card { flex-direction: column; gap: 8px; padding: 12px 5px; min-height: 82px; }
}
@media (prefers-reduced-motion: reduce) { .loc-frame-card { transition: none; } }
