.product-detail-description img{
    width: 100%;
}
.mb-3{
    margin-bottom: 26px !important;
}
.card .card-header .title{
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    display: block;
}

.card-form{
    width: 600px;
    margin:0px auto;
}
.form-group{
    margin-bottom: 26px;
}
.form-group.bg{
    background:#fff;
    border:1px solid #ddd;
}
.form-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color:#fff;
    padding: 15px 16px;
    background-color: #0013a6;
    border: 1px solid #000000;
}
.form-group .form-options{
    padding: 16px;
    display: flex;
}

.form-quantity{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.form-quantity .radio-item{
    display:flex;
    position:relative;
    align-items:center;
    gap:20px;
    border: 1px solid #ddd;
    background:#fff;
    padding: 10px;
    cursor: pointer;
}
.form-quantity .radio-item.active{
    background: rgb(243, 169, 106);
    box-shadow: rgba(210, 210, 210, 0.5) 3px 3px 1px;
}

.form-quantity .radio-item input{
    display:none;
}

.form-quantity .radio-item .radio-item-content{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.form-quantity .radio-item .radio-item-title{
    color: #085688;
    font-weight: bold;
    font-size: 20px;
}

.form-quantity .radio-item .radio-item-price{
    font-size: 18px;
    color: #ff0506;
    font-weight: bold;
}

.radio-item .popular-badge{
    background: #ff0506;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}


.radio-item .radio-item-shipping-price span.free-shipping{
    background: #006400;
}

.form-payment-methods{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.form-payment-method{
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 10px;
}

.form-address{
    display:flex;
    flex-direction:column;
    gap:10px;
}
.form-address-item{
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 10px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.form-address-item .form-label{
    font-weight: bold;
    color: #787878;
    font-size: 14px;
}

.form-address-item input,
.form-address-item select,
.form-address-item textarea{
    height: 20px;
    padding: 6px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    color: #555;
    background-color: #fff;
    outline: none;
}

.form-address-item select{
    height: 34px;
    padding: 0px 12px;
}

.form-address-item .btn{
    display: block;
    background-color: #0aa62c;
    border: 1px solid #000000;
    padding: 10px;
    font-weight: Bold;
    font-size: 20px;
    color: #fff;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

.form-address-item textarea{
    height: 60px;
}

.confirm-button .btn{
    border: none;
    border-radius: 0px;
}

@media screen and (max-width: 768px) {
    .card-form{
        width: 100%;
    }
    .form-quantity .radio-item .radio-item-image img{
        width: 100px;
    }
    .form-quantity .radio-item .radio-item-content{
        gap:10px;
    }
    .form-quantity .radio-item .radio-item-title{
        font-size: 14px;
        margin-top:16px;
    }
    .form-quantity .radio-item .radio-item-price{
        font-size: 16px;
    }
    .form-quantity .radio-item .radio-item-shipping-price span{
        font-size: 12px;
    }
    .form-quantity .radio-item .popular-badge{
        font-size: 10px;
    }
    .radios label.radio-item img{
        width: 50px;
        height: 50px;
        margin:0px auto;
    }

    .sticky-button {
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 99;
        width: 100%;
        pointer-events: auto; /* Tıklanabilir olması için */
    }
    
    .sticky-button button {
        width: 100%;
        border: none;
        border-radius: 0px;
        display: block;
        background-color: #0aa62c;
        padding: 10px;
        font-weight: Bold;
        font-size: 20px;
        color: #fff;
        width: 100%;
        text-align: center;
        cursor: pointer;
    }
}

/* Form Validation Styles */
.form-address-item .error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.form-address-item input.error,
.form-address-item textarea.error,
.form-address-item select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-address-item input.error:focus,
.form-address-item textarea.error:focus,
.form-address-item select.error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-address-item label.error {
    color: #dc3545;
    font-weight: 600;
}



#phoneCorrectBtn {
    background: green;
    border: none;
}

button#phoneWrongBtn {
    border: none;
}

.radio-item .radio-item-shipping-price span{
    background: #ffe413;
    color: #000;
    padding: 6px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin: 0px auto;
    font-size:16px;
    font-weight: bold;
}

span.free-shipping-badge {
    background: #006400 !important;
    color: #fff !important;
}