/* ===========================
   Wrapper
=========================== */

.df-wrapper{
    max-width:1100px;
    margin:60px auto;
    padding:40px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.df-wrapper h2{
    margin:0;
    font-size:32px;
}

.df-wrapper>p{
    margin:10px 0 40px;
    color:#666;
}

/* ===========================
   Progress
=========================== */

.df-progress{

    display:flex;
    justify-content:space-between;
    margin-bottom:45px;
    position:relative;

}

.df-progress::before{

    content:"";
    position:absolute;
    left:0;
    top:20px;
    width:100%;
    height:2px;
    background:#e5e5e5;
    z-index:0;

}

.df-progress-step{

    position:relative;
    z-index:2;
    text-align:center;
    flex:1;

}

.df-progress-step span{

    width:42px;
    height:42px;
    border-radius:50%;
    background:#ddd;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    color:#666;
    font-weight:700;

}

.df-progress-step.active span{

    background:#0f766e;
    color:#fff;

}

.df-progress-step p{

    margin-top:10px;
    font-size:14px;
    font-weight:600;

}

/* ===========================
   Steps
=========================== */

.df-step{

    display:none;

}

.df-step.active{

    display:block;

}

/* ===========================
   Grid
=========================== */

.df-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

}

.df-full{

    grid-column:1/-1;

}

/* ===========================
   Fields
=========================== */

.df-field label{

    display:block;
    margin-bottom:8px;
    font-weight:600;

}

.df-field input,
.df-field select,
.df-field textarea{

    width:100%;
    border:1px solid #ddd;
    border-radius:8px;
    padding:14px;
    font-size:15px;

}

.df-field input,
.df-field select{

    height:50px;

}

.df-field textarea{

    resize:vertical;

}

/* ===========================
   Navigation
=========================== */

.df-navigation{

    display:flex;
    justify-content:space-between;
    margin-top:40px;

}

.df-next,
.df-prev{

    border:none;
    padding:14px 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;

}

.df-next{

    background:#0f766e;
    color:#fff;

}

.df-prev{

    background:#ececec;

}

/* ===========================
   Mobile
=========================== */

@media(max-width:768px){

.df-grid{

grid-template-columns:1fr;

}

.df-progress-step p{

display:none;

}

}

.df-category-card{

    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:25px;
    margin-bottom:25px;

}

.df-btn-add{

    padding:12px 24px;
    border:none;
    background:#0f766e;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    margin-top:10px;

}

.df-size-wrapper{

    margin-top:25px;

}

.df-carton-wrapper{

    margin-top:25px;

}

.df-size-wrapper{

    margin-top:25px;

}

.df-size-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    margin-bottom:15px;
}

.df-size-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.df-size-text{
    white-space:nowrap;
    font-weight:500;
}

.df-carton-select{
    width:180px;
    min-width:180px;
    flex-shrink:0;
}

/* ===========================
   Size Cards - Mobile
=========================== */

@media (max-width: 767px){

    .df-size-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .df-size-left{
        width:100%;
    }

    .df-carton-select{
        width:100%;
        min-width:100%;
        margin-top:10px;
    }

}

.df-card-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;

}

.df-card-header h4{

    margin:0;

}

.df-remove-category{

    background:#dc2626;
    color:#fff;
    border:none;
    padding:8px 14px;
    border-radius:6px;
    cursor:pointer;
}

.df-remove-category:hover{

    background:#b91c1c;

}

.df-submit{

    background:#0f766e;
    color:#fff;
    border:none;
    padding:14px 32px;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;

}

.df-response{

    margin-top:25px;

}
/*====================================
Terms Checkbox
====================================*/

.df-terms{
    display:flex;
    align-items:flex-start;
    gap:12px;
    cursor:pointer;
    margin:20px 0;
}

.df-terms input[type="checkbox"]{
    width:20px;
    height:20px;
    margin:2px 0 0;
    flex-shrink:0;
}

.df-terms span{
    font-size:16px;
    line-height:1.6;
}
@media (max-width:767px){

    .df-terms{
        align-items:flex-start;
    }

}