/* Hide the subheader on all single product pages */
.single-product #Subheader {
    display: none !important;
}

/* stack quanity box vertically in mobile view */
@media (max-width: 767px) {
  .woosg-item-product {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100% !important;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .woosg-quantity {
    width: 100% !important;
    margin-top: 12px;
    display: flex !important;
    justify-content: center !important;
  }

  .woosg-quantity .quantity {
  display: flex !important;
    flex-direction: row !important;
    justify-content: space-around !important;
    align-items: center !important;
    width: 130px !important;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    box-sizing: border-box;
    gap: 10px;
  }

.woosg-quantity .quantity input.qty {
    all: unset !important;
    width: 36px !important;
    height: 30px !important;
    text-align: center !important;
    font-size: 18px !important;
    color: #000 !important;
    line-height: 30px !important;
    background: transparent !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .woosg-quantity .quantity-change.minus,
  .woosg-quantity .quantity-change.plus {
    font-size: 20px !important;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

/* add margin to the left side of product page in mobile view*/
@media only screen and (max-width: 768px) {
  .single-product .product {
    padding-left: 15px;
  }
}


/* Style the total price */
.woocommerce .wpo-totals-label .wpo-price {
    font-size: 30px !important;
    font-weight: bold !important;
    color: #000 !important; /* Optional for visibility */
}

/* Increase font size for all product page elements except the product name */
.woocommerce div.product *:not(.product_title):not(.product_title *) {
    font-size: 24px !important;
}

/* Align radio button labels to the top */
.wpo-field label.wpo-radio {
    align-items: start !important;
}