/* GP Product Options – compact, theme-friendly layout */
/* Avoids hard-coded colors so your Greedy Pigs Neon theme can style it. */

.gppo-wrap{ margin: 12px 0; }
.gppo-set{ margin: 0 0 14px; }
.gppo-set-title{ margin: 0 0 10px; font-weight: 700; }

.gppo-group{ margin: 0 0 14px; }
.gppo-group-title{
  display:block;
  margin: 0 0 6px;
  font-weight: 700;
  font-size: .95em;
}

.gppo-control select,
.gppo-control input[type="text"],
.gppo-control input[type="number"]{
  max-width: 100%;
}

.gppo-control select{
  width: 100%;
  min-height: 38px;
}

.gppo-options{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 14px;
  margin-top: 6px;
}

.gppo-opt{
  display:flex;
  align-items:center;
  gap: 8px;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

.gppo-opt input[type="checkbox"],
.gppo-opt input[type="radio"]{
  flex: 0 0 auto;
}

.gppo-opt-label{
  display:inline-flex;
  align-items:baseline;
  gap: 6px;
  font-size: .95em;
}

.gppo-pricehint{
  opacity: .8;
  font-size: .92em;
  white-space: nowrap;
}

.gppo-qty{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  margin-left: auto;
}

.gppo-qty-input{
  width: 58px;
  text-align:center;
}

.gppo-qty-btn{
  width: 34px;
  height: 34px;
  line-height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: transparent;
}

@media (max-width: 520px){
  .gppo-options{ grid-template-columns: 1fr; }
}


/* Force left alignment for Greedy Pigs layout */
.gppo-wrap,
.gppo-set,
.gppo-group,
.gppo-group-title,
.gppo-control,
.gppo-options,
.gppo-opt,
.gppo-opt-label{
  text-align: left;
  justify-content: flex-start;
}

.gppo-control select{
  margin-left: 0;
}

.gppo-options{
  justify-items: start;
}

.gppo-qty{
  margin-left: 0;
}

.gppo-qty-wrap{ margin-left: auto; }
