/* Wrapper */
.rep-wrapper{
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;
}

/* Header */
.rep-header{
    margin-bottom:40px;
}

.rep-header h1{
    font-size:36px;
    margin-bottom:30px;
}

/* Progress */

.rep-progress{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:40px;
}

.rep-step{
    flex:1;
    text-align:center;
    opacity:.45;
}

.rep-step.active{
    opacity:1;
}

.rep-step-number{
    width:46px;
    height:46px;
    margin:0 auto 12px;
    border-radius:50%;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.rep-step.active .rep-step-number{
    background:#111827;
    color:#fff;
}

.rep-step-title{
    font-size:15px;
    font-weight:600;
}

/* Layout */

.rep-content{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
}

.rep-left,
.rep-summary{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* Summary */

.rep-summary{
    position:sticky;
    top:30px;
}

.rep-summary h2{
    margin-top:0;
}

.rep-summary-row,
.rep-summary-total{
    display:flex;
    justify-content:space-between;
    margin:18px 0;
}

.rep-summary-total{
    font-size:20px;
    font-weight:700;
}

/* Mobile */

@media(max-width:992px){

.rep-content{
    grid-template-columns:1fr;
}

.rep-summary{
    position:relative;
    top:0;
}

.rep-progress{
    flex-wrap:wrap;
}




/*1 ------------------------*/

.rep-card{
    width:100%;
}

.rep-form-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:20px;
    margin-top:25px;
    margin-bottom:30px;
}

.rep-field{
    display:flex;
    flex-direction:column;
}

.rep-field label{
    margin-bottom:8px;
    font-weight:600;
}

.rep-field input,
.rep-field textarea{
    padding:14px;
    border:1px solid #d1d5db;
    border-radius:10px;
    font-size:15px;
}

.rep-radio-group{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin:20px 0 30px;
}

.rep-radio-group label{
    display:flex;
    align-items:center;
    gap:10px;
}

.rep-buttons{
    display:flex;
    justify-content:flex-end;
}

.rep-next-button{
    background:#111827;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:10px;
    cursor:pointer;
    font-size:15px;
}

/*2 ------------------------*/

.rep-products{

display:grid;

grid-template-columns:repeat(auto-fill,minmax(260px,1fr));

gap:24px;

margin-top:30px;

}

.rep-product-card{

    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:20px;
    background:#fff;

    display:flex;
    flex-direction:column;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    transition:.25s;

}

.rep-product-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.rep-product-image img{

width:100%;

height:180px;

object-fit:cover;

border-radius:12px;

margin-bottom:15px;

}

.rep-price{

font-size:22px;

font-weight:700;

margin:15px 0;

}

.rep-add-product{

    margin-top:auto;

    width:100%;

    background:#111827;
    color:#fff;

    border:none;

    padding:14px;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

    transition:.2s;

}

.rep-add-product:hover{

    background:#000;

}

/*3 ------------------------*/

.rep-summary-product{

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    padding:14px 0;

    border-bottom:1px solid #ececec;

}

.rep-summary-product:last-child{

    border-bottom:none;

}

/*4 ------------------------*/

.rep-summary-actions{

    display:flex;
    align-items:center;
    gap:15px;
    flex-shrink:0;

}

.rep-summary-actions strong{

    min-width:70px;
    text-align:right;

}

.rep-remove-product{

    width:34px;
    height:34px;

    border:none;
    border-radius:8px;

    background:#ef4444;
    color:#fff;

    cursor:pointer;

    font-size:18px;
    line-height:1;

    transition:.2s;

}

.rep-remove-product:hover{

    background:#dc2626;

}

.rep-summary-info{

    flex:1;
    font-weight:500;

}

/*5 ------------------------*/

.rep-add-product{

    cursor:pointer;
    transition:.25s;

}

.rep-add-product.added{

    background:#22c55e;
    color:#fff;

}


/*6 ------------------------*/


.rep-property-form{

    display:flex;
    flex-direction:column;
    gap:25px;

}

.rep-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;

}

.rep-field{

    display:flex;
    flex-direction:column;

}

.rep-field label{

    margin-bottom:8px;
    font-weight:600;

}

.rep-field input,
.rep-field select,
.rep-field textarea{

    padding:14px;

    border:1px solid #d1d5db;

    border-radius:10px;

    font-size:15px;

    transition:.2s;

}

.rep-field input:focus,
.rep-field select:focus,
.rep-field textarea:focus{

    outline:none;

    border-color:#111827;

    box-shadow:0 0 0 3px rgba(17,24,39,.08);

}

textarea{

    resize:vertical;

}

}