/* ================================
   Product Actions Buttons
================================ */
#product-actions{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px; /* razmak između dugmadi */
  margin-top: 18px;
}

/* Base button style (works for <button> and <a>) */
#product-actions .action-button{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  text-decoration: none;

  font-weight: 800;
  line-height: 1;

  /* Desktop/tablet baseline sizing */
  min-height: 58px;              /* VIŠE nego prije */
  font-size: 1.05rem;
  padding: 0 18px;

  border: 1px solid transparent;
  cursor: pointer;

  transition: transform 0.12s ease, filter 0.12s ease;
}

#product-actions .action-button:active{
  transform: scale(0.99);
}

/* ================================
   Add to cart (primary)
================================ */
#product-actions .action-button.add-to-cart{
  background: #245069;
  color: #fff;
  border-color: rgba(255,255,255,0.0);
}

#product-actions .action-button.add-to-cart:hover{
  filter: brightness(1.05);
}

/* ================================
   Select lenses (secondary)
   (ostaje “iste boje” kao sad)
================================ */
#product-actions .action-button.select-lenses{
  background: #f3f4f7; /* isto kao tvoj tab background feel */
  color: #111;
  border-color: #e2e4ea;
}

#product-actions .action-button.select-lenses:hover{
  filter: brightness(0.98);
}

/* ================================
   Mobile: duplo veće
   (povećamo visinu + font + padding)
================================ */
@media (max-width: 600px){
  #product-actions{
    gap: 16px;
    margin-top: 20px;
  }

  #product-actions .action-button{
    min-height: 92px;     /* ~duplo veće vizualno */
    font-size: 1.45rem;   /* veći tekst */
    padding: 0 22px;
    border-radius: 999px;
  }
}
