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

body{
    background:#edf1f7;
    font-family:'Poppins',sans-serif;
    display:flex;
    justify-content:center;
}

.wrapper{
    width:100%;
    max-width:500px;
    min-height:100vh;
    background:#f7f8fc;
    position:relative;
    padding-bottom:120px;
}

/* HEADER */

.header{
    background:linear-gradient(135deg, #906729, #d4af37);
    padding:25px 15px 20px;
    color:white;
}

.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.location{
    display:flex;
    align-items:center;
    gap:12px;
}

.loc-icon{
    width:50px;
    height:50px;
    border-radius:18px;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
}

.loc-text h3{
    font-size:18px;
}

.profile{
    width:50px;
    height:50px;
    border-radius:50%;
    overflow:hidden;
    background:white;
}

.profile img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.title{
    margin-top:30px;
}

.title h1{
    font-size:30px;
}

.title p{
    margin-top:8px;
    opacity:.8;
    font-size: 14px;
}

p {
    font-size: 14px;
}

/* SEARCH */

.search-box{
    background:white;
    height:50px;
    border-radius:18px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:0 12px;

    width:100%;
    overflow:hidden;
}

.search-box i{
    color:#666;
    font-size:18px;
}

.filter-btn i{
    color:white;
}

.search-box input{
    flex:1;
    min-width:0;

    border:none;
    outline:none;

    font-size:15px;
    font-family:'Poppins',sans-serif;
}

.filter-btn{
    border:none;
    border-radius:12px;
    background:#4527a0;
    color:white;

    padding:0 16px;
    height:38px;

    font-family:'Poppins',sans-serif;
    font-size:14px;

    flex-shrink:0;
}

.reset-search{
    width:35px;
    height:35px;
    border-radius:10px;
    background:#f1f5f9;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    margin-right:10px;
}

.reset-search i{
    color:#666;
    font-size:14px;
}

/* =========================================
   STICKY SEARCH
========================================= */

.sticky-search{
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(135deg, #906729, #d4af37);
    border-radius: 0 0 35px 35px;
    padding: 15px;
    border: none;
}

/* PROMO */

.promo-wrap{
    display:flex;
    gap:15px;
    overflow-x:auto;

    padding-top:20px;
    padding-bottom:20px;

    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    margin-left: 10px;
}

.promo-wrap::-webkit-scrollbar{
    display:none;
}

.promo{
    max-width:400px;    
    height:170px;
    border-radius:28px;
    overflow:hidden;
    position:relative;
    flex-shrink:0;
    scroll-snap-align:start;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}


.promo.small{
    max-width:400px;
}

.promo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.4);
    color:white;
    padding:18px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.badge{
    background:linear-gradient(135deg, #906729, #d4af37);
    width:max-content;
    padding:6px 12px;
    border-radius:10px;
    font-size:11px;
    margin-bottom:10px;
}

/* SECTION */

.section{
    padding:0 10px;
    margin-top:10px;
}

.section-title{
    font-size:18px;
    margin-bottom:10px;
}

/* =========================================
   SECTION HEAD
========================================= */

.section-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.section-head .section-title{
    margin-bottom:0;
}

.lihat-semua{
    text-decoration:none;
    color:linear-gradient(135deg, #906729, #d4af37);
    font-size:13px;
    font-weight:600;
}

/* BENEFIT SLIDER */

.benefit-slider{
    display:flex;
    gap:15px;
    overflow-x:auto;
    scrollbar-width:none;
    padding-bottom:15px;
}

.benefit-slider::-webkit-scrollbar{
    display:none;
}

.benefit-card{
    min-width:160px;
    background:white;
    border-radius:24px;
    padding:20px;
    flex-shrink:0;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
}

.benefit-card i{
    font-size:20px;
    color: linear-gradient(135deg, #906729, #d4af37);
    background: #ede9ff !important;
    padding: 10px;
    border-radius: 12px;
}

.benefit-card h4{
    margin-top:15px;
    font-size:16px;
}

.benefit-card p{
    margin-top:8px;
    font-size:12px;
    color:#777;
    line-height:20px;
}

/* ARMADA */

.car-wrap{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.card{
    background:#171B1C;
    border-radius:28px;
    padding:15px;
    position:relative;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.card img{
    width:100%;
    height:100px;
    object-fit:contain;
}

.label{
    position:absolute;
    top:15px;
    right:15px;
    background:#ede9ff;
    color:linear-gradient(135deg, #906729, #d4af37);
    padding:6px 12px;
    border-radius:10px;
    font-size:11px;
    font-weight: 700;
}

.card h3{
    margin-top:0px;
    font-size:18px;
    line-height:26px;
    color: #fff;
}

.spec{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 10px;
    font-size: 10px;
    color: #b3b3b3;
}

.spec div{
    display:flex;
    align-items:center;
    gap:6px;
}

.bottom{
    margin-top:10px;
}

.price{
    color:#ffc82e;
    font-size:16px;
    font-weight:700;
}

.price small{
    color:#777;
    font-size:10px;
    font-weight:400;
}

.btn{
    display:block;
    margin-top:12px;
    background:linear-gradient(135deg, #906729, #d4af37);
    color:white;
    text-align:center;
    text-decoration:none;
    padding:13px;
    border-radius:16px;
    font-size:14px;
}

/* BOTTOM NAV */

.bottom-nav{
    position:fixed;
    bottom:0;
    width:100%;
    max-width:500px;
    height:65px;
    background:white;
    display:flex;
    justify-content:space-around;
    align-items:center;
    border-radius:30px 30px 0 0;
    box-shadow:0 -5px 20px rgba(0,0,0,0.08);
    z-index:999;
}

.nav-item{
    width:65px;
    text-decoration:none;
    color:#888;
    font-size:11px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    text-align:center;
}

.nav-item i{
    font-size:20px;
}

.active{
    color:linear-gradient (135deg, #906729, #d4af37) !important;
}

/* WA */

.wa-center{
    width:75px;
    display:flex;
    justify-content:center;
}

.wa-button{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg, #906729, #d4af37);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:30px;
    position:relative;
    top:-15px;
    box-shadow:0 10px 25px rgba(94,53,177,0.4);
    text-decoration: none;
}


/* ======== EMPTY DATA ==========*/
.empty-data{
    background:white;
    border-radius:25px;
    padding:40px 20px;
    text-align:center;
    grid-column:1/-1;
}

.empty-data i{
    font-size:50px;
    color:linear-gradient(135deg, #906729, #d4af37);
}

.empty-data h3{
    margin-top:20px;
    font-size:22px;
}

.empty-data p{
    margin-top:8px;
    color:#777;
}

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

@media(max-width:500px){

    .wrapper{
        max-width:100%;
    }

    .promo{
        max-width:280px;
    }

    .promo.small{
        max-width:280px;
    }

    .benefit-card{
        max-width:250px;
    }

    .car-wrap{
        gap:12px;
    }

    .card{
        padding:12px;
    }

    .card h3{
        font-size:15px;
        font-weight: 700;
        line-height: 20px;
    }

    .price{
        font-size:16px;
    }

    .btn{
        padding:10px;
        font-size:12px;
        border-radius: 12px;
    }

}


/*======== Filter Mobil ========*/
.filter-wrap{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding:20px 10px 20px;
    scrollbar-width:none;
}

.filter-wrap::-webkit-scrollbar{
    display:none;
}

.filter-item{
    background:white;
    padding:12px 18px;
    border-radius:14px;
    text-decoration:none;
    color:#333;
    font-size:14px;
    white-space:nowrap;

    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.active-filter{
    background:linear-gradient(135deg, #906729, #d4af37);
    color:white;
}



/* =========================================
   HEADER PAGE
========================================= */

.header-page{
    height:70px;
    background:linear-gradient(135deg, #906729, #d4af37);
    display:flex;
    align-items:center;
    gap:15px;
    padding:0 18px;
    color:white;
    position:sticky;
    top:0;
    z-index:99;
}

.back-btn{
    color:white;
    text-decoration:none;
    font-size:20px;
}

.header-page h3{
    font-size:18px;
    font-weight:600;
}

/* =========================================
   PAGE CONTENT
========================================= */

.page-content{
    padding:12px;
}

/* =========================================
   ABOUT CARD
========================================= */

.about-card{
    background:white;
    border-radius:24px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    margin-bottom:18px;
}

.about-icon{
    width:85px;
    height:85px;
    background:linear-gradient(135deg, #906729, #d4af37);
    border-radius:22px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:40px;
}

.about-card h2{
    text-align:center;
    font-size:20px;
    margin-bottom:8px;
}

.about-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:25px;
    font-size:13px;
}

.about-card p{
    color:#444;
    margin-bottom:18px;
}

/* =========================================
   INFO LIST
========================================= */

.info-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.info-item{
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.info-icon{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:14px;
    background:#f1ecff;
    color:linear-gradient(135deg, #906729, #d4af37);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.info-text h4{
    font-size:17px;
    margin-bottom:4px;
}

.info-text p{
    color:#666;
    line-height:24px;
    margin:0;
}

/* =========================================
   SOCIAL MEDIA
========================================= */

.social-media{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.social-media a{
    width:50px;
    height:50px;
    border-radius:16px;
    background:linear-gradient(135deg, #906729, #d4af37);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:20px;
}