/* Wrapper */
.woo-attribute-thumbnails{
  display:flex;
  flex-direction:column;
  margin-bottom:0;
}

.attribute-group{ margin-bottom:5px; }

/* GRID */
.attribute-options{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-start;   /* sve od leve ivice */
}

/* Default: 3 u redu */
.attribute-option{
  cursor:pointer;
  text-align:center;
  flex: 0 1 calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
  padding:8px;
  border:1px solid #b38454a6;
  background:#ffffff61;
  border-radius:0;
  transition:transform .15s ease, box-shadow .15s ease;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}
.attribute-option:hover{ transform:scale(1.03); }

/* Slika + label */
.attribute-option img{
  width:100%;
  height:auto;
  display:block;
  margin:0 auto 6px;
}
.option-label{
  font-size:.9rem;
  font-weight:600;
  color:#fff;
  line-height:1.2;
}
.attribute-option.selected{
  border-color:#d4af37;
  box-shadow:0 0 6px #d4af37;
}

/* TOTAL */
.total-price-display{
  padding:6px 8px;
  background:#ffffff61;
  color:#fff;
  font-size:20px;
  text-align:center;
  font-weight:bold;
  margin:8px 0;
}

/* Sakrivanje Woo default */
table.variations{ display:none !important; }
.woocommerce-variation-price{ display:none !important; }

/* Specijalna pravila po broju opcija */
/* 1 opcija – centrirana */
.attribute-options.variation-count-1{
  justify-content:center;
}
.attribute-options.variation-count-1 .attribute-option{
  flex: 0 1 280px;
  max-width: 320px;
}

/* 2 opcije – 2 u redu */
.attribute-options.variation-count-2 .attribute-option{
  flex: 0 1 calc(50% - 10px);
  max-width: calc(50% - 10px);
}

/* 4 opcije – 4 u redu */
.attribute-options.variation-count-4 .attribute-option{
  flex: 0 1 calc(25% - 10px);
  max-width: calc(25% - 10px);
}

/* Responsive */
/* Tablet: 2 u redu */
@media (max-width: 1024px){
  .attribute-option{
    flex: 0 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
/* Telefon: 1 u redu */
@media (max-width: 520px){
  .attribute-option{
    flex: 0 1 100%;
    max-width: 100%;
  }
}
