:root{
    --ml-gold:#d4a756;
    --ml-black:#050505;
    --ml-white:#ffffff;
    --ml-border:#1a1a1a;
}

body{
    font-family:'Inter',sans-serif;
    background:#000;
    margin:0;
    padding:0;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Playfair Display',serif;
    font-weight:500;
}

/* ====================================
   GLOBAL RESET
==================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

a{
    color:inherit;
    text-decoration:none;
}

a:hover{
    color:inherit;
    text-decoration:none;
}

a:focus,
.btn:focus,
.nav-link:focus,
.navbar-toggler:focus{
    outline:none !important;
    box-shadow:none !important;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.container-fluid{
    padding-left:40px;
    padding-right:40px;
}

/* Announcement */

.ml-announcement-bar{
    background:var(--ml-gold);
    text-align:center;
    padding:8px 20px;
}

.ml-announcement-bar p{
    margin:0;
    font-size:11px;
    letter-spacing:3px;
    color:#111;
}

/* Header */

.ml-header{
    background:#050505;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.navbar{
    min-height:90px;
}

.navbar-brand img{
    height:52px;
}

.navbar-nav{
    gap:24px;
}

.nav-link{
    color:#d7d7d7;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.nav-link:hover{
    color:var(--ml-gold);
}

.ml-header-icons{
    display:flex;
    gap:18px;
}

.ml-header-icons a{
    color:#fff;
    font-size:18px;
}

/* Hero */

.ml-hero{
    position:relative;
    min-height:850px;
    background:url('../images/hero.jpg') center center;
    background-size:cover;
    display:flex;
    align-items:center;
}

.ml-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0);
}

.ml-hero .container{
    position:relative;
    z-index:2;
}

.ml-hero-content{
    color:#fff;
}

.ml-hero-content h1{
    font-family:'Playfair Display',serif;
    font-size:68px;
    font-weight:500;
    line-height:.95;
    letter-spacing:-1px;
}

.ml-hero-content h1 span{
    display:block;
    color:var(--ml-gold);
    font-style:italic;
    font-weight:400;
}

.ml-hero-content p{
    font-size:18px;
    color:#ddd;
    max-width:520px;
    margin-bottom:40px;
}

.ml-hero-buttons{
    display:flex;
    gap:15px;
}

.btn-gold{
    background:var(--ml-gold);
    color:#000;
    padding:14px 34px;
    border:1px solid var(--ml-gold);
    border-radius:0;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    transition:all .3s ease;
}

.btn-gold:hover{
    background:transparent;
    color:var(--ml-gold);
    border-color:var(--ml-gold);
}

.btn-outline-gold{
    background:transparent;
    border:1px solid var(--ml-gold);
    color:#fff;
    padding:14px 34px;
    border-radius:0;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    transition:all .3s ease;
}

.btn-outline-gold:hover{
    background:var(--ml-gold);
    color:#000;
    border-color:var(--ml-gold);
}

.btn-gold,
.btn-outline-gold{
    transform:translateY(0);
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.btn-gold:hover,
.btn-outline-gold:hover{
    transform:translateY(-2px);
}

.btn-gold:focus,
.btn-outline-gold:focus{
    box-shadow:none !important;
    outline:none;
}

/* Mobile */

@media(max-width:991px){

    .container-fluid{
        padding-left:20px;
        padding-right:20px;
    }

    .navbar-collapse{
        padding-top:20px;
    }

    .navbar-nav{
        gap:0;
    }

    .ml-hero{
        min-height:700px;
    }

    .ml-hero-content h1{
        font-size:54px;
    }

}

@media(max-width:767px){

    .ml-hero-content h1{
        font-size:42px;
    }

    .ml-hero-buttons{
        flex-direction:column;
    }

}
/* ====================================
   HEADER
==================================== */

.ml-header{
    background:#050505;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.ml-header-top{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:10px 0;
    flex-wrap:wrap;
}

.ml-logo-wrap{
    display:flex;
    align-items:center;
}

.ml-logo-wrap img{
    height:75px;
    width:auto;
    display:block;
    margin:0 auto !important;
}

.ml-brand-name{
    text-align:center;
    flex:1;
}

.ml-brand-name h2{
    color:var(--ml-gold);
    font-size:28px;
    margin:0;
    letter-spacing:4px;
    text-transform:uppercase;
    line-height:1.2;
}

.ml-brand-name span{
    display:block;
    color:#8d8d8d;
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:10px;
    line-height:1.4;
}

/* ====================================
   TABLETS
==================================== */

@media (max-width:991px){

    .ml-header-top{
        min-height:80px;
        gap:15px;
    }

    .ml-logo-wrap img{
        height:65px;
    }

    .ml-brand-name h2{
        font-size:24px;
        letter-spacing:3px;
    }

    .ml-brand-name span{
        font-size:9px;
        letter-spacing:3px;
    }

}

/* ====================================
   MOBILE
==================================== */

@media (max-width:767px){

    .ml-header-top{
        flex-direction:column;
        justify-content:center;
        text-align:center;
        padding:20px 0;
        gap:12px;
    }

    .ml-logo-wrap{
        justify-content:center;
        width:100%;
    }

    .ml-logo-wrap img{
        height:60px;
    }

    .ml-brand-name{
        width:100%;
    }

    .ml-brand-name h2{
        font-size:20px;
        letter-spacing:2px;
    }

    .ml-brand-name span{
        font-size:8px;
        letter-spacing:2px;
    }

}

/* ====================================
   SMALL MOBILE
==================================== */

@media (max-width:480px){

    .ml-header-top{
        padding:18px 0;
        gap:10px;
    }

    .ml-logo-wrap img{
        height:52px;
    }

    .ml-brand-name h2{
        font-size:17px;
        letter-spacing:1.5px;
    }

    .ml-brand-name span{
        font-size:7px;
        letter-spacing:1.5px;
    }

}/* ====================================
   NAVIGATION
==================================== */

.navbar{
    min-height:55px;
    border-top:1px solid rgba(255,255,255,.05);
    padding:0;
}

.navbar .container{
    display:flex;
    align-items:center;
}

.navbar-nav{
    gap:28px;
    align-items:center;
}

.nav-link{
    position:relative;
    color:#cfcfcf;
    text-transform:uppercase;
    font-size:11px;
    letter-spacing:2px;
    padding:18px 0 !important;
    transition:all .3s ease;
    white-space:nowrap;
}

.nav-link:hover,
.nav-link:focus{
    color:var(--ml-gold);
}

.nav-link.current-page{
    color:var(--ml-gold);
}

.nav-link.current-page::after{
    content:'';
    position:absolute;
    left:0;
    right:0;
    bottom:8px;
    height:1px;
    background:var(--ml-gold);
}

/* ====================================
   TABLETS
==================================== */

@media (max-width:991px){

    .navbar{
        min-height:auto;
    }

    .navbar-nav{
        gap:18px;
    }

    .nav-link{
        font-size:10px;
        letter-spacing:1.5px;
        padding:16px 0 !important;
    }

}

/* ====================================
   MOBILE
==================================== */

@media (max-width:767px){

    .navbar{
        padding:8px 0;
    }

    .navbar-toggler{
        border:1px solid rgba(255,255,255,.15);
        padding:8px 10px;
        box-shadow:none !important;
    }

    .navbar-toggler:focus{
        box-shadow:none;
    }

    .navbar-collapse{
        margin-top:12px;
        border-top:1px solid rgba(255,255,255,.08);
        padding-top:10px;
    }

    .navbar-nav{
        gap:0;
        width:100%;
        text-align:center;
    }

    .nav-item{
        width:100%;
    }

    .nav-link{
        display:block;
        padding:14px 0 !important;
        font-size:11px;
        letter-spacing:2px;
        border-bottom:1px solid rgba(255,255,255,.05);
    }

    .nav-link.current-page::after{
        display:none;
    }

    .nav-link.current-page{
        background:rgba(193,154,107,.08);
    }

}

/* ====================================
   SMALL MOBILE
==================================== */

@media (max-width:480px){

    .navbar{
        padding:6px 0;
    }

    .nav-link{
        font-size:10px;
        letter-spacing:1px;
        padding:12px 0 !important;
    }

    .navbar-toggler{
        padding:6px 8px;
    }

}
/* ====================================
   CATEGORY NAV
==================================== */

.ml-category-nav{
    background:#050505;
    border-top:1px solid rgba(255,255,255,.04);
    border-bottom:1px solid rgba(255,255,255,.04);
}

.ml-nav-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 24px;
    min-height:115px;
    border-right:1px solid rgba(255,255,255,.03);
    transition:.3s ease;
}

.ml-nav-item:hover{
    background:rgba(255,255,255,.015);
}

.ml-nav-thumb{
    width:36px;
    height:52px;
    flex-shrink:0;
}

.ml-nav-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ml-nav-content h4{
    margin:0 0 6px;
    font-family:'Inter',sans-serif;
    font-size:10px;
    font-weight:600;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#fff;
}

.ml-nav-content p{
    margin:0;
    color:#8f8f8f;
    font-size:11px;
    line-height:1.2;
}

@media(max-width:991px){

    .ml-nav-item{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.05);
    }

}

/* ====================================
   FEATURED COLLECTION
==================================== */

.ml-featured{
    background:#050505;
    padding-top:80px;
    padding-bottom:80px;
}

.ml-section-label{
    color:var(--ml-gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:12px;
}

.ml-featured-copy h2{
    color:#fff;
    font-size:62px;
    line-height:1;
    margin:20px 0;
}

.ml-featured-copy p{
    color:#aaa;
    margin-bottom:30px;
}

.ml-product-card{
    color:#fff;
}

.ml-product-card img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    margin-bottom:15px;
}

.ml-product-card h4{
    font-size:24px;
    margin-bottom:5px;
}

.ml-product-card span{
    color:var(--ml-gold);
}

/* ====================================
   PRODUCT CARD HOVER
==================================== */

.ml-product-card{
    transition:all .35s ease;
}

.ml-product-card img{
    transition:transform .6s ease, filter .6s ease;
}

.ml-product-card h4{
    transition:color .3s ease;
}

.ml-product-card:hover img{
    transform:scale(1.04);
    filter:brightness(1.05);
}

.ml-product-card:hover h4{
    color:var(--ml-gold);
}

.ml-product-image{
    overflow:hidden;
}

.ml-product-image img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    transition:transform .8s ease;
}

.ml-product-card:hover .ml-product-image img{
    transform:scale(1.05);
}

.ml-product-image{
    position:relative;
    overflow:hidden;
}

.ml-product-image::after{
    content:'Shop Now';
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    
    color:#fff;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;

    opacity:0;

    transition:.3s ease;
}

.ml-product-card:hover .ml-product-image::after{
    opacity:1;
}

.ml-product-card:hover img{
    transform:scale(1.05);
    filter:brightness(.55);
}

.ml-product-card{
    display:block;
    color:#fff;
    text-decoration:none;
    transition:all .35s ease;
}

.ml-product-card:hover{
    color:#fff;
}

/* ====================================
   BRAND VALUES
==================================== */

.ml-brand-values{
    background:#050505;
    padding:20px 0 50px;
}

.ml-value{
    position:relative;
    text-align:center;
    padding:0 35px;
}

.ml-value::after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:1px;
    height:100%;
    background:rgba(255,255,255,.025);
}

.ml-brand-values .col-lg-3:last-child .ml-value::after{
    display:none;
}

.ml-value-icon{
    margin-bottom:16px;
    color:var(--ml-gold);
}

.ml-value-icon svg{
    width:28px;
    height:28px;
    display:block;
    margin:0 auto;
    stroke-width:1.5;
}

.ml-value h3{
    margin:0 0 10px;
    font-family:'Inter',sans-serif;
    font-size:12px;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--ml-gold);
}

.ml-value p{
    margin:0;
    color:#7f7f7f;
    font-size:12px;
    line-height:1.9;
}


/* ====================================
BEST SELLERS
==================================== */

.ml-best-sellers{
background:#f3efe7;
padding:110px 0;
}

.ml-section-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:45px;
}

.ml-section-label-dark{
color:#111;
text-transform:uppercase;
letter-spacing:3px;
font-size:12px;
font-weight:600;
}

.ml-view-all{
color:#111;
text-transform:uppercase;
letter-spacing:2px;
font-size:10px;
transition:.3s ease;
}

.ml-view-all:hover{
color:var(--ml-gold);
}

.ml-view-all i{
margin-left:6px;
}

/* 6 COLUMN GRID */

.ml-best-grid{
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
}

/* PRODUCT CARD */

.ml-best-card{
display:block;
color:#111;
}

.ml-best-image{
position:relative;
overflow:hidden;
margin-bottom:15px;
background:#fff;
}

.ml-best-image img{
width:100%;
aspect-ratio:4/5;
object-fit:cover;

transition:
    transform .7s ease,
    filter .7s ease;

}

.ml-best-card:hover .ml-best-image img{
transform:scale(1.05);
}

.ml-best-card h4{
font-family:'Inter',sans-serif;
font-size:12px;
font-weight:500;
margin-bottom:4px;
transition:.3s ease;
}

.ml-best-card:hover h4{
color:var(--ml-gold);
}

.ml-best-card p{
color:#777;
font-size:10px;
margin-bottom:6px;
}

.ml-best-card span{
display:block;
color:#111;
font-size:11px;
font-weight:600;
}

/* WISHLIST */

.ml-wishlist-btn{
position:absolute;
top:10px;
right:10px;

width:30px;
height:30px;

border:none;
border-radius:50%;

background:#ffffff;

display:flex;
align-items:center;
justify-content:center;

z-index:2;

transition:.3s ease;

}

.ml-wishlist-btn:hover{
background:var(--ml-gold);
color:#fff;
}

/* COLOR SWATCHES */

.ml-swatches{
display:flex;
gap:5px;
margin-top:8px;
}

.swatch{
width:7px;
height:7px;
border-radius:50%;
}

.swatch.black{
background:#000;
}

.swatch.gold{
background:var(--ml-gold);
}

.swatch.white{
background:#fff;
border:1px solid #ddd;
}

/* RESPONSIVE */

@media(max-width:1199px){

.ml-best-grid{
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

}

@media(max-width:767px){

.ml-best-sellers{
    padding:70px 0;
}

.ml-section-header{
    flex-direction:column;
    gap:15px;
    align-items:flex-start;
}

.ml-best-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

}

@media(max-width:575px){

.ml-best-grid{
    grid-template-columns:1fr;
}

}


/* ====================================
   PLAY CONNECT ELEVATE
==================================== */

.ml-lifestyle-strip{
    position:relative;
    background:url('../images/lifestyle-banner.jpg') center center / cover no-repeat;

    min-height:290px;

    display:flex;
    align-items:center;

    overflow:hidden;
}

.ml-lifestyle-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.70),
        rgba(0,0,0,.70)
    );
}

.ml-lifestyle-strip .container{
    position:relative;
    z-index:2;
}

.ml-lifestyle-copy h2{
    font-family:'Playfair Display',serif;

    font-size:72px;
    font-weight:600;

    line-height:.92;

    color:var(--ml-gold);

    margin:0 0 16px;
}

.ml-lifestyle-copy p{
    margin:0;

    color:#ffffff;

    font-size:18px;

    line-height:1.7;
}

.ml-lifestyle-btn{
    min-width:360px;
    text-align:center;
}

/* Responsive */

@media(max-width:991px){

    .ml-lifestyle-strip{
        min-height:420px;
        text-align:center;
    }

    .ml-lifestyle-copy{
        margin-bottom:35px;
    }

    .ml-lifestyle-copy h2{
        font-size:52px;
    }

    .ml-lifestyle-btn{
        min-width:auto;
        width:100%;
    }

}

@media(max-width:767px){

    .ml-lifestyle-strip{
        min-height:380px;
    }

    .ml-lifestyle-copy h2{
        font-size:42px;
    }

    .ml-lifestyle-copy p{
        font-size:15px;
    }

}

.ml-lifestyle-strip{
    min-height:260px;
}

.ml-lifestyle-copy h2{
    font-size:64px;
}

.ml-lifestyle-btn{
    width:320px;
}


/* ====================================
   THE JOURNAL
==================================== */

.ml-journal{
    background:#f3efe7;
    padding:60px 0;
}

.ml-journal-item{
    transition:.35s ease;
}

.ml-journal-image{
    position:relative;
    overflow:hidden;
    border-radius:10px;
    border:1px solid var(--ml-border);
    transition:border-color .35s ease, box-shadow .35s ease;
}

.ml-journal-image img{
    display:block;
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    transition:transform .7s ease;
}

.ml-journal-item:hover .ml-journal-image{
    border-color:var(--ml-gold);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.ml-journal-item:hover .ml-journal-image img{
    transform:scale(1.08);
}

.ml-journal-item h3,
.ml-read-more{
    transition:.35s ease;
}

.ml-journal-item:hover h3{
    color:var(--ml-gold);
}

.ml-journal-item:hover .ml-read-more{
    letter-spacing:1px;
}

.ml-journal-category{
    display:block;

    margin-bottom:10px;

    color:#777;

    font-size:9px;

    letter-spacing:2px;

    text-transform:uppercase;
}

.ml-journal-item h3{
    font-family:'Playfair Display',serif;

    font-size:28px;

    color:#111;

    margin-bottom:10px;

    transition:.3s ease;
}

.ml-journal-item:hover h3{
    color:var(--ml-gold);
}

.ml-journal-item p{
    color:#666;

    font-size:14px;

    line-height:1.7;

    margin-bottom:14px;
}

.ml-read-more{
    color:var(--ml-gold);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:10px;

    font-weight:600;
}


/* ====================================
   NEWSLETTER
==================================== */

.ml-newsletter{
    background:#050505;

    padding:80px 0;

    border-top:1px solid rgba(255,255,255,.04);
}

.ml-newsletter-copy h2{
    font-family:'Playfair Display',serif;

    color:var(--ml-gold);

    font-size:52px;

    margin-bottom:12px;
}

.ml-newsletter-copy p{
    color:#9b9b9b;

    font-size:15px;

    line-height:1.8;

    max-width:500px;

    margin:0;
}

.ml-newsletter-form{
    display:flex;
    justify-content:flex-end;
    gap:12px;
}

.ml-newsletter-form .form-control{
    height:56px;

    border:1px solid rgba(255,255,255,.10);

    border-radius:0;

    background:#0a0a0a;

    color:#fff;

    min-width:340px;
}

.ml-newsletter-form .form-control:focus{
    border-color:var(--ml-gold);

    box-shadow:none;

    background:#0a0a0a;

    color:#fff;
}

.ml-newsletter-form .form-control::placeholder{
    color:#777;
}

.ml-newsletter-form .btn{
    white-space:nowrap;
}

@media(max-width:991px){

    .ml-newsletter{
        text-align:center;
    }

    .ml-newsletter-copy{
        margin-bottom:30px;
    }

    .ml-newsletter-copy p{
        max-width:none;
    }

    .ml-newsletter-form{
        justify-content:center;
    }

}

@media(max-width:767px){

    .ml-newsletter{
        padding:60px 0;
    }

    .ml-newsletter-copy h2{
        font-size:38px;
    }

    .ml-newsletter-form{
        flex-direction:column;
    }

    .ml-newsletter-form .form-control{
        min-width:auto;
        width:100%;
    }

    .ml-newsletter-form .btn{
        width:100%;
    }

}

.ml-newsletter-copy h2{
    font-size:48px;
}

.ml-newsletter{
    padding:70px 0;
}



/* ====================================
   FOOTER
==================================== */

.ml-footer{
    background:#050505;
    padding-top:80px;
}

.ml-footer-logo img{
    max-width:70px;
    margin-bottom:30px;
}

.ml-social{
    display:flex;
    gap:14px;
}

.ml-social a{
    color:#cfcfcf;
    font-size:12px;
    letter-spacing:1px;
    transition:.3s ease;
}

.ml-social a:hover{
    color:var(--ml-gold);
}

.ml-footer-widget h4{
    color:var(--ml-gold);

    font-size:10px;

    text-transform:uppercase;

    letter-spacing:3px;

    margin-bottom:20px;
}

.ml-footer-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.ml-footer-widget li{
    margin-bottom:10px;
}

.ml-footer-widget a,
.ml-footer-widget li{
    color:#9b9b9b;
    font-size:13px;
    transition:.3s ease;
}

.ml-footer-widget a:hover{
    color:var(--ml-gold);
}

.ml-footer-bottom{
    margin-top:70px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.05);
}

.ml-footer-bottom p{
    margin:0;
    color:#666;
    font-size:11px;
}

.ml-footer-bottom a{
    color:#666;
    font-size:11px;
    margin-left:25px;
    transition:.3s ease;
}

.ml-footer-bottom a:hover{
    color:var(--ml-gold);
}


@media(max-width:991px){

    .ml-footer .col-lg-2,
    .ml-footer .col-lg-3{
        margin-bottom:40px;
    }

}

@media(max-width:767px){

    .ml-footer{
        text-align:center;
    }

    .ml-social{
        justify-content:center;
    }

    .ml-footer-bottom{
        text-align:center;
    }

    .ml-footer-bottom .text-md-end{
        text-align:center !important;
        margin-top:15px;
    }

    .ml-footer-bottom a{
        margin:0 10px;
    }

}


.section-bg {
    background:#fff;
}

/*=========================================
  Breadcrumb
=========================================*/

.ml-breadcrumb-section {
    background:var(--ml-black);
}

.ml-breadcrumb{
    background:var(--ml-black);
    border-bottom:1px solid rgba(212,167,86,.25);
    padding:16px 0;
}

.breadcrumb-list{
    margin:0;
    padding:0;
    list-style:none;

    display:flex;
    align-items:center;
    flex-wrap:wrap;

    font-size:14px;
    font-weight:500;
    letter-spacing:.3px;
}

.breadcrumb-list li{
    display:flex;
    align-items:center;
    color:rgba(255,255,255,.65);
}

.breadcrumb-list li:not(:last-child)::after{
    content:"/";
    margin:0 12px;
    color:rgba(212,167,86,.55);
}

.breadcrumb-list a{
    color:rgba(255,255,255,.85);
    text-decoration:none;
    transition:all .3s ease;
}

.breadcrumb-list a:hover{
    color:var(--ml-gold);
}

.breadcrumb-list li[aria-current="page"]{
    color:var(--ml-gold);
    font-weight:600;
}

@media (max-width:767px){

    .ml-breadcrumb{
        padding:12px 0;
    }

    .breadcrumb-list{
        font-size:13px;
    }

    .breadcrumb-list li:not(:last-child)::after{
        margin:0 8px;
    }

}




/* ====================================
SECTION INNER
==================================== */


.ml-section-inner{
    background:#f3efe7;
    padding:60px 0;
    min-height: 500px;
}

.ml-sidebar{
    position:sticky;
    top:35px;
}

.ml-sidebar-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:
    0 18px 45px rgba(0,0,0,.06);
    border:1px solid rgba(0,0,0,.05);
    margin-bottom:25px;
}

.ml-sidebar-title{
    display:block;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--ml-gold);
    margin-bottom:25px;
    font-weight:600;
}

.ml-sidebar-menu{
    margin:0;
    padding:0;
    list-style:none;
}

.ml-sidebar-menu li{
    margin-bottom:8px;
}

.ml-sidebar-menu li:last-child{
    margin-bottom:0;
}

.ml-sidebar-menu a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:500;
    padding:15px 18px;
    border-radius:12px;
    transition:.35s;
    position:relative;
}

.ml-sidebar-menu a::before{
    content:"";
    width:4px;
    height:0;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    background:var(--ml-gold);
    border-radius:20px;
    transition:.35s;
}

.ml-sidebar-menu a:hover{
    background:#faf6ef;
    color:var(--ml-gold);
    padding-left:28px;
}

.ml-sidebar-menu a:hover::before{
    height:60%;
}

.ml-sidebar-menu li.active a{
    background:#faf6ef;
    color:var(--ml-gold);
    font-weight:600;
    padding-left:28px;
}

.ml-sidebar-menu li.active a::before{
    height:60%;
}

.ml-sidebar-help{
    background:#111;
    color:#fff;
    border-radius:18px;
    padding:30px;
    overflow:hidden;
    position:relative;
}

.ml-sidebar-help::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:var(--ml-gold);
}

.ml-sidebar-help h5{
    font-family:'Playfair Display',,serif;
    font-size:28px;
    margin-bottom:15px;
}

.ml-sidebar-help p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:20px;
}

.ml-sidebar-help a{
    color:var(--ml-gold);
    text-decoration:none;
    font-weight:600;
    letter-spacing:.5px;
}

.ml-sidebar-help a:hover{
    color:#fff;
}


.ml-sidebar-card {
    background: #fff;
    border-radius: 28px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.ml-sidebar-title {
    display: block;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--ml-gold);
    font-weight: 600;
    padding: 20px;
    margin-bottom: 0px !important;
}

.ml-journal-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ml-journal-menu li {
    margin-bottom: 5px;
}

.ml-journal-menu li:last-child {
    margin-bottom: 0;
}

.ml-journal-menu a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    text-decoration: none;
    border-radius: 18px;
    transition: 0.35s;
    position: relative;
}

.ml-journal-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 0;
    background: var(--ml-gold);
    border-radius: 20px;
    transition: 0.35s;
}

.ml-journal-thumb {
    width: 82px;
    height: 82px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.ml-journal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.ml-journal-info {
    flex: 1;
}

.ml-journal-cat {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ml-gold);
    margin-bottom: 6px;
}

.ml-journal-info h5 {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
    color: #222;
    font-weight: 600;
    transition: 0.3s;
}

.ml-journal-menu li:hover a,
.ml-journal-menu li.active a {
    background: #f7f2ea;
}

.ml-journal-menu li:hover a::before,
.ml-journal-menu li.active a::before {
    height: 65%;
}

.ml-journal-menu li:hover img {
    transform: scale(1.08);
}

.ml-journal-menu li:hover h5,
.ml-journal-menu li.active h5 {
    color: var(--ml-gold);
}



