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

body{
    background:#f6f3ee;
    font-family:'Inter',sans-serif;
    color:#222;
    overflow-x:hidden;
}

.topbar{
    background:#20242c;
    height:56px;
    display:flex;
    align-items:center;
    color:#fff;
    font-size:13px;
}

.navbar-modern{
    height:92px;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(0,0,0,.05);
}

.logo{
    font-family:'Playfair Display',serif;
    font-size:34px;
    line-height:1;
    letter-spacing:-1px;
}

.logo small{
    display:block;
    font-size:10px;
    letter-spacing:3px;
    margin-top:6px;
    text-align:center;
    color:#777;
    font-family:'Inter',sans-serif;
}

.empty-section{
    min-height:calc(100vh - 148px);
    display:flex;
    align-items:center;
    padding:70px 0;
    position:relative;
    overflow:hidden;
}

.bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(20px);
    opacity:.55;
}

.bg-shape.one{
    width:340px;
    height:340px;
    background:rgba(184,138,85,.12);
    top:-120px;
    right:-80px;
}

.bg-shape.two{
    width:260px;
    height:260px;
    background:rgba(109,60,97,.10);
    bottom:-100px;
    left:-60px;
}

.empty-wrapper{
    background:rgba(255,255,255,.76);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.85);
    border-radius:42px;
    overflow:hidden;
    box-shadow:0 35px 80px rgba(27,30,38,.08);
}

.empty-grid{
    display:grid;
    grid-template-columns:1fr 480px;
    min-height:720px;
}

.content-side{
    padding:80px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
}

.mini-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff8ef;
    border:1px solid #ecdec9;
    color:#9a7040;
    border-radius:999px;
    padding:11px 16px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.5px;
    margin-bottom:30px;
    width:max-content;
}

.title{
    font-family:'Playfair Display',serif;
    font-size:78px;
    line-height:.95;
    letter-spacing:-3px;
    margin-bottom:28px;
    max-width:700px;
}

.description{
    max-width:560px;
    font-size:17px;
    line-height:2;
    color:#6f747d;
    margin-bottom:40px;
}

.action-row{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:60px;
}

.btn-dark-modern,
.btn-light-modern{
    height:64px;
    padding:0 28px;
    border-radius:20px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    font-size:14px;
    font-weight:800;
    transition:.2s ease;
}

.btn-dark-modern{
    background:#20242c;
    color:#fff;
    box-shadow:0 18px 34px rgba(32,36,44,.18);
}

.btn-dark-modern:hover{
    transform:translateY(-3px);
    color:#fff;
}

.btn-light-modern{
    background:#fff;
    color:#20242c;
    border:1px solid #ece7df;
}

.feature-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.feature-card{
    background:#fff;
    border:1px solid #efebe5;
    border-radius:26px;
    padding:26px;
    transition:.2s ease;
}

.feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 40px rgba(27,30,38,.06);
}

.feature-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:#faf5ee;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#b88a55;
    font-size:24px;
    margin-bottom:18px;
}

.feature-card strong{
    display:block;
    font-size:18px;
    margin-bottom:10px;
}

.feature-card p{
    font-size:13px;
    line-height:1.9;
    color:#777;
    margin:0;
}

.visual-side{
    background:linear-gradient(180deg,#f4ede4,#ece4d8);
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:50px;
}

.visual-side:before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    border:1px dashed rgba(184,138,85,.26);
}

.main-circle{
    width:340px;
    height:340px;
    border-radius:50%;
    background:rgba(255,255,255,.74);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.9);
    box-shadow:0 35px 70px rgba(27,30,38,.10);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    z-index:2;
}

.cart-icon{
    width:120px;
    height:120px;
    border-radius:36px;
    background:#fff7ed;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:58px;
    color:#b88a55;
    margin-bottom:28px;
    box-shadow:0 20px 45px rgba(184,138,85,.12);
}

.main-circle h3{
    font-family:'Playfair Display',serif;
    font-size:54px;
    line-height:1;
    margin-bottom:14px;
}

.main-circle p{
    max-width:220px;
    color:#777;
    font-size:14px;
    line-height:1.9;
}

.floating-box{
    position:absolute;
    background:#fff;
    border-radius:24px;
    padding:18px;
    box-shadow:0 22px 50px rgba(27,30,38,.10);
    border:1px solid #f1ece5;
    width:240px;
}

.floating-box.top{
    top:90px;
    right:40px;
}

.floating-box.bottom{
    bottom:90px;
    left:40px;
}

.floating-box strong{
    display:block;
    font-size:15px;
    margin-bottom:8px;
}

.floating-box span{
    display:block;
    font-size:12px;
    color:#777;
    line-height:1.8;
}

.floating-box .mini-thumb{
    width:56px;
    height:56px;
    border-radius:18px;
    object-fit:cover;
    margin-bottom:14px;
}

@media(max-width:1200px){
    .empty-grid{
        grid-template-columns:1fr;
    }

    .visual-side{
        min-height:700px;
    }
}

@media(max-width:768px){
    .content-side{
        padding:40px 28px;
    }

    .title{
        font-size:52px;
        letter-spacing:-2px;
    }

    .feature-row{
        grid-template-columns:1fr;
    }

    .action-row{
        flex-direction:column;
    }

    .btn-dark-modern,
    .btn-light-modern{
        width:100%;
        justify-content:center;
    }

    .visual-side{
        padding:24px;
        min-height:560px;
    }

    .main-circle{
        width:280px;
        height:280px;
    }

    .main-circle h3{
        font-size:42px;
    }

    .floating-box{
        width:180px;
    }
}
