/* =========================================================
   MAIN CONTAINER
========================================================= */
.byr-main-scope{
    width:100%;
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;
    direction:ltr;
    font-family:'Lato',sans-serif;
}

/* =========================================================
   STEPS
========================================================= */
.byr-luxury-steps{
    display:flex;
    justify-content:center;
    gap:60px;
    margin-bottom:80px;
    border-bottom:1px solid #f2f2f2;
}

.step-link{
    padding:25px 0;
    font-size:13px;
    font-weight:700;
    color:#ccc;
    text-transform:uppercase;
    letter-spacing:2px;
}

.step-link span{
    margin-right:10px;
    opacity:.5;
}

.step-link.active{
    color:#111;
    border-bottom:2px solid #b2945e;
}

.step-link.done{
    color:#27ae60;
}

/* =========================================================
   PRODUCTS GRID
========================================================= */

.byr-luxury-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:30px;
}
.byr-product-card{
    background:#fff;
    border:1px solid #f2f2f2;
    padding:40px;
    text-align:center;
    transition:.4s ease;
}

.byr-product-card:hover{
    box-shadow:0 20px 40px rgba(0,0,0,.05);
}

.product-image img{
    width:100%;
    max-width:450px;
    height:auto;
    display:block;
    margin:auto;
}

.product-subtitle{
    display:block;
    margin:20px 0 10px;
    color:#b2945e;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
}

.product-title{
    font-size:28px;
    font-weight:300;
    margin-bottom:20px;
}

.product-price-box{
    font-size:22px;
    font-weight:700;
    margin-bottom:30px;
}

.luxury-button{
    display:inline-block;
    background:#111;
    color:#fff !important;
    text-decoration:none;
    padding:18px 50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* =========================================================
   FILTERS
========================================================= */

.byr-premium-filters{
    background:#fdfdfd;
    border:1px solid #eee;
    border-radius:4px;
    padding:50px;
    margin-bottom:60px;
}

.filter-main-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
    margin-bottom:40px;
}

.filter-group label{
    display:block;
    margin-bottom:20px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
}

.luxury-checks{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.luxury-checks input{
    display:none;
}

.luxury-checks span{
    padding:10px 18px;
    border:1px solid #ddd;
    border-radius:4px;
    cursor:pointer;
    font-size:13px;
    transition:.2s;
}

.luxury-checks input:checked + span{
    background:#111;
    color:#fff;
    border-color:#111;
}

/* =========================================================
   REVIEW
========================================================= */

.final-headline{
    text-align:center;
    font-size:40px;
    font-weight:300;
    margin-bottom:60px;
}

.review-split-layout{
    display:flex;
    gap:40px;
    margin-bottom:80px;
}

.item-summary-card{
    flex:1;
    text-align:center;
    border:1px solid #eee;
    padding:40px;
}

.item-img img{
    max-width:300px;
    margin-bottom:30px;
}

.item-price-val{
    color:#b2945e;
    font-size:24px;
    font-weight:700;
}

.total-checkout-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 60px;
    background:#111;
    color:#fff;
}

.total-val{
    color:#b2945e;
    font-size:36px;
    font-weight:700;
}

.luxury-add-btn{
    background:#b2945e;
    color:#fff !important;
    text-decoration:none;
    padding:20px 60px;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width:480px){
    .byr-luxury-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
    .byr-product-card{
        padding:20px;
    }

    .product-title{
        font-size:18px;
    }

    .review-split-layout{
        flex-direction:column;
    }

    .filter-main-row{
        grid-template-columns:1fr;
        gap:30px;
    }

    .total-checkout-footer{
        flex-direction:column;
        gap:30px;
        text-align:center;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width:768px){
    .byr-luxury-grid{
        grid-template-columns:1fr;
    }
}

    .byr-product-card{
        padding:10px;
    }

    .product-price-box{
        font-size:14px;
    }

    .luxury-button{
        width:100%;
        padding:12px 20px;
        font-size:10px;
    }
}