/* Grid layout */


.oer-pdp__grid{
  display:flex;
  gap:32px;
  align-items:flex-start;
}
.oer-pdp__media{ flex: 1 1 52%; }
.oer-pdp__summary{ flex: 1 1 48%; }

/* Immagine grande: niente “thumbnail strip” se vuoi stile screenshot */
.woocommerce-product-gallery__wrapper{ margin:0; }
.flex-control-thumbs{ display:none; }

/* Swatches */
.oer-attr-swatches{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:12px 0 18px;
}
.oer-swatch{
  width:75px;
  height:75px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.15);
  padding:0;
  background:#fff;
  cursor:pointer;
  overflow:hidden;
}
.oer-swatch img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;border-radius: 10px;border: 2px solid #fff;
}
.oer-swatch.is-selected{
  box-shadow: 0 0 0 2px red;
  border-color: red;
}

.oer-variations-select{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
}

/* Messaggio “Ottima scelta” */
.oer-choice-message{
  margin:25px 0;
  font-size:20px;
}

.reset_variations {
  display: none !important;
}

/* WOW */
.oer-wow{ margin: 8px 0 16px; }
.oer-wow__label{
  font-weight:600;
  font-size:12px;
  letter-spacing:.04em;
  margin-bottom:6px;
}
.oer-wow__dots{ display:flex; gap:6px; }
.oer-wow__dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,.35);
  display:inline-block;
}
.oer-wow__dot.is-filled{
  background:#111;
  border-color:#111;
}

/* Mobile */
@media (max-width: 900px){
  .oer-pdp__grid{ flex-direction:column; }
}