@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
scroll-behavior: smooth;
scroll-padding-top: 2rem;
box-sizing: border-box;
}

::selection{
    color: var(--bg-color);
    background: var(--segond-color);
}

/* Variables*/

:root{
--container-color:#1a1e21;
--segond-color:#fd8f44;
--text-color:#172317;
--bg-color:#fff;
}

a{
text-decoration: none;
}

.lien-a{
    color: var(--text-color);
}

li{
list-style: none;
}

img{
width: 100%;
}

section{
padding: 3rem 0 2rem;
}

.container{
 max-width: 1068px;
 margin: auto;
 width: 100%;
}

/* header*/

header{
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 200;
}

header.shadow
{
background: var(--bg-color);
box-shadow: 0 1px 4px hsl(0 4% 14% / 10%);
transition: 0.4s;
}

header.shadow .logo{
    color: var(--text-color);
}

.nav{
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 18px 0;
}

.logo{
 font-size: 1.5rem;
 font-weight: 600;
 color: var(--bg-color);
}

.logo span{
  color: var(--segond-color);
}

.login{
  padding: 8px 14px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  background: var(--segond-color);
  color: var(--bg-color);
}

.login:hover{
    background: hsl(24, 98%, 58%);
    transition: 0.3s;
}

/* Home*/
.home{
    width: 100%;
    min-height: 440px;
    background: var(--container-color);
    display: grid;
    justify-content:  center;
    align-items: center;
}

.home-text{
    color: var(--bg-color);
    text-align: center;
}

.home-title{
    font-size: 3.5rem;
}

.home-subtitle{
    font-size: 1rem;
    font-weight: 400;
}

/*Post Filter*/
.post-filter{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
    margin-top: 2rem !important;
}

.filter-item{
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.active-filter{
    background: var(--segond-color);
    color: var(--bg-color);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Post*/
.post{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    gap: 1.5rem;
}

.post-box{
    background: var(--bg-color);
    box-shadow: 0 4px 14px hsl(355deg 25% 15% / 10%);
    padding: 15px;
    border-radius: 0.5rem;
}

.post-img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.category{
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--segond-color);
}

.post-title{
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    /* to remain Title In 2 Lines*/
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow:hidden;
}

.post-date{
    display: flex;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 4px;
}

.post-description{
    font-size: 0.9rem;
    line-height: 1.5rem;
    margin: 5px 0 10px;
    /* to remain Title In 3 Lines*/
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow:hidden; 
}

.profile{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.profile-img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 2px solid var(--segond-color);
}

.profile-name{
    font-size: 0.82rem;
    font-weight: 500;
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.footer p{
    font-size: 0.938rem;
}

.social{
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.social .bx{
    font-size: 1.4rem;
    color: var(--text-color);
}

.social .bx:hover{
 color: var(--segond-color);
}

/* Post Content*/
.post-header{
    width: 100%;
    height: 500px;
    background: var(--container-color);
}

.post-container{
  max-width: 800px;
  margin: auto;
  width: 100%;
}

.header-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem !important;
}

.back-home{
    color: var(--segond-color);
    font-size: 0.9rem;
}

.header-title{
    width: 98%;
    font-size: 2.2rem;
    color: var(--bg-color);
    text-align: center;
    margin-bottom: 1rem;
}

.header-img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.post-content{
    margin-top: 10rem !important;
}

.sub-heading{
    font-size: 1.2rem;
}

.post-text{
    font-size: 1rem;
    line-height: 1.7rem;
    margin: 1rem 0;
    text-align: justify;
}

.share{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
}

.share-title{
    font-size: 1.1rem;
}


.post-rating .star{
    color: gold;
    font-size: 18px;
    margin-right: 2px;
    cursor: pointer;
}
.post-rating .star.inactive{
    color: lightgray;
}

/*FORMULAIRE*/

.body{  
    height: auto;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: #ffffff;
   margin-top: 50px;
   margin-bottom: 50px;
}

.containerform
{
position: relative;
max-width: 430px;
background: #fff;
box-shadow: 0 5px 10px rgba(0,0,0,0.4);
border-radius: 10px;
width: auto;
}

.containerform .form {
    padding: 30px;
}

.containerform .title-fom, .title-contact{
    position: relativ;
    font-size: 27px;
    font-weight: 600;
}

.form .title-form::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 90px;
    background-color: var(--segond-color);
    border-radius: 25px;
}

.form .input-field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 30px;
}

.input-field input{
    position: absolut;
    height: 100%;
    width: 100%;
    padding: 0 35px;
    border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid transparent;
    transition: all 0.2s  ease;
}

.input-field input:is(:focus, :valid){
    border-bottom-color: var(--segond-color);
}

.input-field i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 23px;
    transition: all 0.2s ease;
}

.input-field input:is(:focus, :valid) ~i{
    color: var(--segond-color);
}

.input-field i.icon{
    left: 0;
}

.input-field i.showHidePW{
    right: 0;
    cursor: pointer;
    padding: 10px;
}

.input-field input[type="file"] {
    position: absolute;
    height: 100%;
    width: 100%;
    padding: 0 35px; /* menm jan ak lòt input yo */
    border: none;
    outline: none;
    font-size: 16px;
    border-bottom: 2px solid #ccc;
    border-top: 2px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
    color: #333;
    background-color: transparent;
}

/* Lè file input nan aktif oswa gen valè */
.input-field input[type="file"]:focus,
.input-field input[type="file"]:valid {
    border-bottom-color: var(--segond-color);
}

.input-field input[type="file"]:focus ~ label,
.input-field input[type="file"]:not(:placeholder-shown) ~ label {
    color: var(--segond-color);
}






.form .checkbox-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px;
}

.checkbox-text .checkbox-content{
    display: flex;
    align-items: center;
}

.form .text{
    color: var(--text-color);
    font-size: 14px;
}

.form a.text{
    color: var(--segond-color);
    font-size: 14px;
}

.checkbox-content input{
    margin: 0 8px -2px 4px;
    accent-color: var(--segond-color);
}

.form a{
    text-decoration: none;
}


.form a:hover{
    text-decoration: underline;
}

.form .button{
    margin-top: 35px;
}

.form .button button{
    width: 100%;
    padding: 12px;
    border: none;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 500;
    background-color: var(--segond-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form .button button:hover{
    background-color: #999;
    color: #1a1e21;
}

.form .login-signup{
    margin-top: 30px;
    text-align: center;
}


.sexe-field{
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.radio-box{
    position: relative;
    cursor: pointer;
}

.radio-box input{
    display: none;
}

.radio-box span{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-weight: 600;
    color: #555;
    transition: 0.3s;
}

/* Lè li seleksyone */
.radio-box input:checked + span{
    background: #fd8f44;
    border-color: #fd8f44;
    color: #fff;
}

.like-btn{
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #fd8f44;
    margin-top: 10px;
    margin-bottom: 10px;
    margin: 7px;
}

.back-home{
    font-size: 20px;
    font-weight: 600;
}

.modal-container{
    width: 100%;
    height: 100vh;
    position: fixed; /* 🔥 pa absolute */
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.8);
    display: flex;
}

.modal-form{
    width: 43%;
    min-height: 100px;
    margin: auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.4);
    border-radius: 10px;
    position: relative;
}

.close{
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 12px;
}

.modal-container{
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-form{
    background: #f4f4f4;
    padding: 30px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    position: relative;
}

.title-form{
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* CLOSE */
.close{
    position: absolute;
    top: 15px;
    right: 15px;
    text-decoration: none;
    font-size: 18px;
}

/* INPUT */
.input-field{
    position: relative;
    margin-bottom: 25px;
}

.input-field input,
.input-field textarea{
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    padding: 10px 0 10px 30px;
    outline: none;
    font-size: 15px;
}

.input-field textarea{
    height: 70px;
    resize: none;
}

/* ICON */
.input-field .icon{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

/* FOCUS EFFECT */
.input-field input:focus,
.input-field textarea:focus{
    border-bottom: 2px solid #ff7a00;
}

/* BUTTON */
.button button{
    width: 100%;
    padding: 12px;
    border: none;
    background: #ff7a00;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.button button:hover{
    background: #e66a00;
}

.span-m{
    margin-left: 45px;
}




/* google button anba modal */
.google-box{
    display: flex;
    justify-content: center;
    margin-top: -40px; /* kole li pi pre modal la */
}

/* bouton google style */
.g_id_signin{
    display: flex;
    justify-content: center;
}

.comment-btn{
    background: #f1f1f1;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none;
    color:var(--segond-color) ;
    font-weight: 500;
}

.comment-btn:hover{
    background: #e0e0e0;
}

.top-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.btn-don{
    background: #ff4d6d;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
}

.btn-don:hover{
    background: #e63950;
}

/* ================= KOMANTE ================= */

.flex{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* BOX */

.comment-list{
    background: #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 2px #0002;
    margin-top: 15px;
}

/* 🔥 SCROLL */

.comment-scroll{
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}
.comment-session{
    width: 650px;
    max-height: 400px;
    margin: 0 auto;
    padding-right: 5px;
}

/* USER */
.comment-list .user{
    display: flex;
    padding: 8px;
}

.comment-list .user img{
    height: 36px;
    width: 36px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid var(--segond-color);
}

.comment-list .name{
    font-weight: 600;
    font-size: 12px;
}

.comment-list .day{
    font-size: 12px;
    color: #555;
}

/* COMMENT TEXT */
.comment{
    padding: 10px 0 15px 58px;
}

/* 🔥 LIMIT TEXT */
.comment-text{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comment-text.open{
    -webkit-line-clamp: unset;
}

/* VOIR PLUS */
.voir-plus{
    display: inline-block;
    color: blue;
    cursor: pointer;
    font-size: 12px;
    margin-left: 58px;
}

/* TEXTAREA STAB */
.comment-box textarea{
    background: #eee;
    width: 100%;
    height: 100px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    resize: none;
    overflow: hidden;
}

.comment-box textarea:focus{
    outline: none;
}

/* BUTTON */
.comment-submit{
    float: right;
    padding: 6px 14px;
    border: none;
    background: var(--segond-color);
    color: #fff;
    border-radius: 3px;
    cursor: pointer;
}

/* MODAL */
.modal-forms{
    background: #f4f4f4;
    padding: 30px;
    width: 700px;
    border-radius: 10px;
}

.comment-list .user{
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 🔥 pouse icon lan a dwat */
.comment-list .reply{
    margin-left: auto;
    font-size: 15px;
}

.search-form{
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.search-input{
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    font-size: 15px;
}

.search-btn{
    border: none;
    padding: 15px 18px;
    cursor: pointer;
    background: var(--segond-color);
    color:#f4a460;
}

/* START-PAYMENT */

.container-payment{
    max-width: 940px;
    margin: 0 auto;
    padding: 0 16px;
}


.payment-section{
    padding: 48px 0;
}

.payment-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}


.payment-header{
    padding: 24px;
    background-color: var(--segond-color);
    border-radius: 12px;
    padding-bottom: 72px;
}

.payment-header-icon{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #1a1e21;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.payment-header-title{
    font-size: 20px;
    font-weight: 600;
    color: var(--bg-color);
}

.payment-header-description{
    font-size: 15px;
    color: var(--bg-color);
    line-height: 1.5;
}

.payment-content{
    padding: 24px;
    margin-top: -64px;
    position: relative;
}

.payment-content::before{
    content: '';
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    height: 16px;
    border-radius: 4px;
    background-color: #f1760a;
}

.payment-body{
    background-color: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.5), inset 0 8px 0 rgba(177, 173, 173, 0.438);
    position: relative;
    padding-top: 8px;
    overflow: hidden;
}

.payment-plan{
    display: flex;
    align-items: center;
    padding: 12px;
}

.payment-plan-type{
    width: 40px;
    height: 40px;
    background-color: var(--segond-color);
    color: white;
    font-size: 13px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 8px;
}

.payment-plan-info{
    width: 100%;
    margin-right: 8px;
}

.payment-plan-info-name{
   font-size: 14px;
   color: #585757;
   margin-bottom: 2px;
}

.payment-plan-info-price{
    font-weight: 600;
}

.payment-plan-change{
    color: blue;
    font-size: 15px;
    font-weight: 500;
    text-underline-offset: 2px;
}

.payment-plan-change:hover{
    color: var(--segond-color);
}

.payment-summary-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
}

.payment-summary-name{
    font-size: 14px;
    color: #585757;
}

.payment-summary-price{
    font-weight: 500;
}

.payment-summary-divider{
    width: calc(100% - 16px) ;
    height: 0;
    margin: 16px auto;
    border-bottom: 1px dashed #979393;
    position: relative;
}

.payment-summary-divider::before{
    content: '';
    position: absolute;
    transform: translateY(-50%);
    right: 100%;
    width: 16px;
    height: 16px;
    background-color: #d3cbcb;
    border-radius: 50%;
    box-shadow: inset 0 2px 16px rgba(0,0,0,0.05);
}


.payment-summary-divider::after{
    content: '';
    position: absolute;
    transform: translateY(-50%);
    left: 100%;
    width: 16px;
    height: 16px;
    background-color: #d3cbcb;
    border-radius: 50%;
    box-shadow: inset 0 2px 16px rgba(0,0,0,0.05);
}

.payment-summary-total{
    padding-bottom: 16px;
}

.payment-summary-total .payment-summary-name{
    color: #2b2929;
}

.payment-summary-total .payment-summary-price{
    font-size: 17px;
    color: var(--segond-color);
    font-weight: 500;
}

.payment-form{
    padding: 24px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.payment-title{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.payment-method{
    display: flex;
    align-items: center;
    overflow-x: auto;
    padding: 6px 0;
}

.payment-method input{
    display: none;
}

.payment-method-item{
  width: 80px;
  padding: 80px;
  padding: 8px;
  border: 1px solid #ddd9d9;
  border-radius: 8px;
  margin-right: 12px;
  cursor: pointer;
  position: relative;
}

input:checked + .payment-method-item{
    border-color: var(--segond-color);
}
input:checked + .payment-method-item::before{
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--segond-color);
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0icmdiYSgyNDEsMjM1LDIzNSwxKSI+PHBhdGggZD0iTTkuOTk5NyAxNS4xNzA5TDE5LjE5MjEgNS45Nzg1MkwyMC42MDYzIDcuMzkyNzNMOS45OTk3IDE3Ljk5OTNMMy42MzU3NCAxMS42MzU0TDUuMDQ5OTYgMTAuMjIxMkw5Ljk5OTcgMTUuMTcwOVoiPjwvcGF0aD48L3N2Zz4=");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}
.payment-method-item > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment-form-group{
    position: relative;
}













/* END-PAYMENT */


/*RESPONSIVE*/

@media (max-width:1060px) {
.container{
    margin: 0 auto;
    width: 95%;
}

.home-text{
    width: 100%;
}

}

@media (max-width:800px) {
    .nav{
        padding: 14px 0;
    }

    .post-container{
        margin: 0 auto;
        width: 95%;
    }
}

@media (max-width:768px) {
    .nav{
        padding: 10px 0;
    }

    section{
        padding: 2rem 0;
    }
    .header-content{
        margin-top: 3rem !important;
    }
    .home{
        min-height: 380px;
    }
    .home-title{
        font-size: 2rem;
    }
    .header-title{
        font-size: 2rem;
    }
    .header-img{
        height: 370px;
    }
    .post-header{
        height: 435px;
    }
    .post-content{
        margin-top: 9rem !important;
    }
}

@media (max-width:570px){
    .post-header{
        height: 390px;
    }
    .header-title{
        width: 100%;
    }
    .header-img{
        height: 340px;
    }
    .footer{
        flex-direction: column;
        row-gap: 1rem;
        padding: 20px 0;
        text-align: center;
    }

}

@media (max-width:396px){
    .home-title{
        font-size: 2rem;
    }
    .home-subtitle{
        font-size: 0.9rem;
    }
    .home{
        min-height: 300px;
    }
    .post-box{
        padding: 10px;
    }
    .header-title{
        font-size: 1.4rem;
    }
    .header-img{
        height: 240px;
    }
    .post-header{
        height: 335px;
    }
    .post-content{
        margin-top: 5rem !important;
    }
    .post-text{
        font-size: 0.875rem;
        line-height: 1.5rem;
        margin: 20px 0;
    }
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 768px){

    .comment-session{
        width: 95%;
    }

    .modal-forms{
        width: 95%;
        padding: 20px;
    }

    .comment{
        padding: 10px 0 15px 50px;
    }

    .voir-plus{
        margin-left: 50px;
    }
}


/* TELEFÒN */
@media (max-width: 480px){

    .comment-session{
        width: 100%;
    }

    .modal-forms{
        width: 95%;
        padding: 15px;
    }

    .comment-scroll{
        max-height: 250px; /* pi piti pou telefòn */
    }

    .comment-list .user{
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-list .user img{
        margin-bottom: 5px;
    }

    .comment{
        padding: 10px 0;
    }

    .voir-plus{
        margin-left: 0;
    }

    .comment-box textarea{
        height: 80px;
    }

    .comment-submit{
        width: 100%;
        margin-top: 10px;
        float: none;
    }
}

@media(max-width:768px){

    .search-form{
        max-width: 100%;
        flex-direction: row;
    }

    .search-input{
        font-size: 14px;
        padding: 10px;
    }

    .search-btn{
        padding: 12px 14px;
        font-size: 14px;
        flex-shrink: 0;
    }

}

/* 📱 PI TI TELEFON */
@media(max-width:480px){

    .search-form{
        border-radius: 8px;
    }

    .search-input{
        padding: 10px;
        font-size: 13px;
    }

    .search-btn{
        padding: 10px 12px;
        font-size: 13px;
    }

}


.don-container{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.btn-don,
.back-home{
    display: inline-block;
    padding: 8px 14px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    font-size: 13px;
}

.btn-don{
    background: var(--segond-color);
    color: #fff;
}

.back-home{
    background: #fff;
    color: var(--segond-color);
    border: 1px solid var(--segond-color);
}

/* 📱 RESPONSIVE */
@media(max-width:768px){

    .btn-don,
    .back-home{
        padding: 7px 12px;
        font-size: 12px;
        width: auto;
        max-width: 180px;
    }

}

/* 📱 TI TELEFON */
@media(max-width:480px){

    .btn-don,
    .back-home{
        padding: 6px 10px;
        font-size: 11px;
        max-width: 150px;
    }

}

/* 📱 RESPONSIVE COMMENTAIRE */

@media(max-width:768px){

    .modal-forms{
        width: 95%;
        padding: 20px;
    }

    .comment{
        padding: 10px 0 15px 50px;
    }

    .voir-plus{
        margin-left: 50px;
        font-size: 11px;
    }

    .comment-box textarea{
        height: 90px;
        font-size: 14px;
    }

    .comment-submit{
        padding: 6px 12px;
        font-size: 13px;
    }

    .comment-list .user{
        gap: 8px;
    }

    .comment-list .user img{
        width: 38px;
        height: 38px;
    }

}

/* 📱 TI TELEFON */
@media(max-width:480px){

    .modal-forms{
        width: 98%;
        padding: 15px;
        border-radius: 8px;
    }

    .comment{
        padding: 2px 0 10px 12px;
    }
    
    .comment-text{
        line-height: 1.4;
    }
    
    .voir-plus{
        margin-left: 10px;
        margin-top: 2px;
    }

    .comment-box textarea{
        height: 80px;
        padding: 8px;
        font-size: 13px;
    }

    .comment-submit{
        padding: 5px 10px;
        font-size: 12px;
    }

    .comment-list .user img{
        width: 34px;
        height: 34px;
    }

    .comment-list .reply{
        font-size: 13px;
    }

}

.payment-alert{
    margin-top: 20px;
}

.payment-alert p{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #555;
}

.payment-number{
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.payment-number i{
    font-size: 18px;
    color: var(--segond-color);
}

.payment-number span{
    font-size: 14px;
    color: #222;
}

/* 📱 RESPONSIVE */
@media(max-width:480px){

    .payment-alert p{
        font-size: 13px;
    }

    .payment-number{
        padding: 8px 10px;
    }

    .payment-number span{
        font-size: 13px;
    }

}

/* =========================
   RESPONSIVE PAYMENT
========================= */

@media(max-width: 991px){

    .payment-wrapper{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .payment-section{
        padding: 30px 0;
    }

}


@media(max-width: 768px){

    .container-payment{
        padding: 0 12px;
    }

    .payment-header{
        padding: 20px;
        padding-bottom: 65px;
    }

    .payment-header-title{
        font-size: 18px;
    }

    .payment-header-description{
        font-size: 14px;
    }

    .payment-content{
        padding: 18px;
        margin-top: -55px;
    }

    .payment-form{
        padding: 20px;
    }

    .payment-title{
        font-size: 21px;
    }

    .payment-method{
        gap: 10px;
    }

    .payment-method-item{
        width: 70px;
        min-width: 70px;
        padding: 6px;
        margin-right: 0;
    }

    .payment-plan{
        gap: 10px;
    }

    .payment-plan-change{
        font-size: 14px;
    }

}


@media(max-width: 480px){

    .payment-section{
        padding: 20px 0;
    }

    .payment-header{
        padding: 16px;
        padding-bottom: 55px;
        border-radius: 10px;
    }

    .payment-header-icon{
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .payment-header-title{
        font-size: 17px;
    }

    .payment-header-description{
        font-size: 13px;
        line-height: 1.4;
    }

    .payment-content{
        padding: 14px;
        margin-top: -45px;
    }

    .payment-content::before{
        top: 14px;
        height: 12px;
    }

    .payment-plan{
        padding: 10px;
    }

    .payment-plan-type{
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .payment-plan-info-name{
        font-size: 13px;
    }

    .payment-plan-info-price{
        font-size: 14px;
    }

    .payment-plan-change{
        font-size: 13px;
    }

    .payment-summary-item{
        padding: 5px 10px;
    }

    .payment-summary-name{
        font-size: 13px;
    }

    .payment-summary-price{
        font-size: 13px;
    }

    .payment-summary-total .payment-summary-price{
        font-size: 15px;
    }

    .payment-form{
        padding: 16px;
        border-radius: 10px;
    }

    .payment-title{
        font-size: 18px;
    }

    .payment-method{
        gap: 8px;
    }

    .payment-method-item{
        width: 60px;
        min-width: 60px;
        padding: 5px;
        border-radius: 6px;
    }

}