/* ===== RELATED PRODUCTS SECTION ===== */

.related-wrapper {
  margin-top: 40px;
  padding: 20px 10px;
}
/* product name */
.product-card h4 {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 10px 12px;
  color: #333;
  text-align: center;
  font-weight: bold;
}
/* update qty button */
.qty-box {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 🔥 important */
    width: 150px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 0 5px;
}

.qty-box button {
    width: 40px;
    height: 45px;
    border: none;
    background: #f5f5f5;
    font-size: 22px;
    cursor: pointer;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center; /* 🔥 centers + and - inside button */
}

.qty-box input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
}
/* new add */
.purchase-options{
    margin:25px 0;
}

.purchase-options h3{
    margin-bottom:12px;
    font-size:18px;
    color:#222;
}

.purchase-status{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.status-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:16px;
}

.available{
    color:#0a9d3f;
    font-weight:bold;
    font-size:20px;
}

.unavailable{
    color:#d62828;
    font-weight:bold;
    font-size:20px;
}
/* purchase type */
.purchase-type-box{
    margin:25px 0;
}

.purchase-type-box h3{
    margin-bottom:12px;
    font-size:18px;
}

.purchase-option{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    cursor:pointer;
    font-size:16px;
}

.purchase-option input{
    width:18px;
    height:18px;
    cursor:pointer;
}
.price-box h6{
  font-size: 18px;
}
#groupButtons{
    display:none;
}