.custom-buy-buttons-wrapper .custom-buy-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-buy-buttons-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px; 
    flex-grow: 1;
}

.custom-qty-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.custom-qty-wrapper .qty-btn {
    background: transparent;
    border: none;
    padding: 0 16px;
    font-size: 20px;
    cursor: pointer;
    color: #333333;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-qty-wrapper .custom-qty-input {
    width: 50px;
    text-align: center;
    border: none !important;
    height: 100%;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    padding: 0;
    -moz-appearance: textfield;
}

.custom-qty-wrapper .custom-qty-input::-webkit-outer-spin-button,
.custom-qty-wrapper .custom-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-buy-form .custom-btn {
    height: 48px;
    padding: 0 30px;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}

.btn-add-to-cart { background-color: #1b7339; }
.btn-buy-now { background-color: #000000; }