/* =====================================================
   FLYCOIN MARKETPLACE
   RESET & GLOBAL
===================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body.market-page{
    font-family:'Inter',sans-serif;
    background:#f4f6fb;
    color:#222;
    max-width:480px;
    margin:auto;
    overflow-x:hidden;
}
a{
    text-decoration:none;
    color:inherit;
}
img{
    width:100%;
    display:block;
}
button{
    border:none;
    outline:none;
    cursor:pointer;
    font-family:inherit;
}
input{
    border:none;
    outline:none;
    font-family:inherit;
}
ul{
    list-style:none;
}
/* =============================
   COLOR
============================= */
:root{
    --primary:#f7b500;
    --primary-dark:#d69a00;
    --secondary:#111111;
    --bg:#f4f6fb;
    --white:#ffffff;
    --text:#1b1b1b;
    --text2:#666;
    --border:#ececec;
    --success:#1eb980;
    --danger:#ff4d4f;
}
/* =============================
   CONTAINER
============================= */
.market-page .container{
    padding:15px;
}
.section{
    margin-top:18px;
}
.section-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:12px;
}
.section-title h3{
    font-size:15px;
    font-weight:700;
}
.section-title a{
    color:var(--primary);
    font-size:12px;
    font-weight:600;
}
/* =============================
   CARD
============================= */
.market-page .card{
    background:#fff;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}
/* =============================
   GRID
============================= */
.grid-2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}
.grid-3{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
}
.grid-4{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}
/* =============================
   SPACING
============================= */
.mt10{
    margin-top:10px;
}
.mt15{
    margin-top:15px;
}
.mt20{
    margin-top:20px;
}
.mb10{
    margin-bottom:10px;
}
.mb15{
    margin-bottom:15px;
}
.mb20{
    margin-bottom:20px;
}
/* =============================
   SHADOW
============================= */
.shadow{
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}
/* =============================
   BORDER
============================= */
.radius{
    border-radius:16px;
}
/* =============================
   TEXT
============================= */
.small{
    font-size:11px;
}
.text-center{
    text-align:center;
}
.bold{
    font-weight:700;
}
/*====================================================
                HEADER
======================================================*/
.topbar{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    padding:10px 12px;
    box-shadow:0 2px 12px rgba(0,0,0,.05);
}
.top-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}
.header-left{
    display:flex;
    align-items:center;
    gap:10px;
}
.logo{
    display:flex;
    align-items:center;
    gap:8px;
}
.logo img{
    width:28px;
    height:28px;
    object-fit:contain;
}
.logo span{
    font-size:20px;
    font-weight:700;
    color:#222;
}
.header-right{
    display:flex;
    align-items:center;
    gap:10px;
}
.icon-btn{
    width:36px;
    height:36px;
    border:none;
    background:#f5f5f5;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    cursor:pointer;
}
.badge{
    position:absolute;
    top:-3px;
    right:-2px;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#ff3b30;
    color:#fff;
    font-size:10px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.login-btn{
    background:#111;
    color:#fff;
    border:none;
    border-radius:20px;
    padding:8px 18px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}
/* ==========================
   SEARCH
========================== */
.search-box{
    display:flex;
    align-items:center;
    background:#f5f7fb;
    border-radius:30px;
    overflow:hidden;
    height:46px;
    border:1px solid #ececec;
}
.search-box i{
    width:45px;
    text-align:center;
    color:#999;
    font-size:16px;
}
.search-box input{
    flex:1;
    height:46px;
    background:transparent;
    font-size:13px;
    color:#333;
}
.search-box button{
    width:48px;
    height:46px;
    background:#f7b500;
    color:#fff;
    font-size:16px;
}
.search-box button:hover{
    background:#e3a700;
}
/* ==========================
   LOGIN BUTTON
========================== */
.login-btn{
    padding:8px 18px;
    background:#111;
    color:#fff;
    border-radius:25px;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}
.login-btn:hover{
    background:#f7b500;
    color:#111;
}
/* ==========================
   HEADER INFO
========================== */
.header-info{
    display:flex;
    justify-content:space-between;
    margin-top:10px;
}
.info-box{
    flex:1;
    background:#fafafa;
    padding:10px;
    border-radius:12px;
    margin:0 4px;
    text-align:center;
}
.info-box h4{
    font-size:15px;
    color:#111;
}
.info-box span{
    display:block;
    margin-top:3px;
    font-size:11px;
    color:#888;
}
/* =====================================================
   HERO SLIDER
===================================================== */
.slider{
    position:relative;
    width:calc(100% - 10px);
    height:115px;          /* bisa dicoba 110px atau 120px */
    overflow:hidden;
    border-radius:18px;
    margin:5px auto;
    background:#0b1f5f;
    box-sizing:border-box;
}

.slides{
    display:flex;
    width:100%;
    height:100%;
    transition:transform .5s ease-in-out;
}

.slide{
    min-width:100%;
    height:100%;
    flex-shrink:0;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.slider-dots{
    position:absolute;
    bottom:8px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:6px;
}
.slider-dots span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    transition:.3s;
}

.slider-dots span.active{
    width:22px;
    border-radius:20px;
    background:#f7b500;
}

.market-slider{
    position:relative;
    width:100%;
    height:70px;
    overflow:hidden;
    border-radius:18px;
    margin:5px;
}

.market-slides{
    display:flex;
    width:100%;
    height:100%;
    transition:transform .5s ease;
}

.market-slide{
    min-width:100%;
    height:100%;
}

.market-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.market-dots{
    position:absolute;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:6px;
}
/*====================================================
            CATEGORY
======================================================*/
.category-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:6px;
    padding:0 12px 18px;
}
.cat-item{
    background:#fff;
    border-radius:12px;
    padding:8px 3px;
    text-align:center;
    transition:.25s;
    box-shadow:0 2px 8px rgba(0,0,0,.05);
}
.cat-item:hover{
    transform:translateY(-2px);
    box-shadow:0 5px 12px rgba(0,0,0,.08);
}
.cat-icon{
    width:34px;
    height:34px;
    border-radius:50%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#FFF8E5;
    color:#F7B500;
    font-size:16px;
    margin-bottom:5px;
}
.cat-item span{
    display:block;
    font-size:8px;
    font-weight:500;
    color:#333;
    line-height:11px;
}
/*====================================================
            MERCHANT
======================================================*/
.merchant-section{
    margin-top:10px;
    padding:0 12px;
}
.merchant-scroll{
    display:flex;
    gap:8px;
    overflow-x:auto;
    scrollbar-width:none;
    padding:5px 0;
}
.merchant-scroll::-webkit-scrollbar{
    display:none;
}
.merchant-card{
    min-width:38px;
    width:38px;
    display:flex;
    flex-direction:column;
    align-items:center;
    background:transparent;
    box-shadow:none;
    padding:2px;
}
.merchant-card:hover{
    transform:none;
}
.merchant-card img{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#fff;
    padding:5px;
    object-fit:contain;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}
.merchant-card p{
    margin-top:4px;
    font-size:8px;
    font-weight:500;
    color:#555;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/*====================================================
            FLASH DEAL
======================================================*/
.flash-section{
    padding:18px 15px;
}
.title-left{
    display:flex;
    align-items:center;
    gap:10px;
}
.title-left h3{
    font-size:16px;
    font-weight:700;
}
.countdown{
    display:flex;
    gap:4px;
}
.countdown span{
    background:#ff3b30;
    color:#fff;
    padding:3px 6px;
    border-radius:5px;
    font-size:8px;
    font-weight:700;
}
/* ===============================
   Affiliate Campaign
=============================== */
#campaign-grid{
    display:flex;
    overflow-x:auto;
    gap:14px;
    padding:5px 2px 10px;
    scroll-behavior:smooth;
    scrollbar-width:none;
}
#campaign-grid::-webkit-scrollbar{
    display:none;
}
.affiliate-card{
    flex:0 0 155px;
    background:#fff;
    border-radius:18px;
    padding:14px;
    text-align:center;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.affiliate-logo{
    width:70px;
    height:70px;
    object-fit:contain;
}
.logo-circle{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    border:2px solid #f2f2f2;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 8px rgba(0,0,0,.06);
    margin-bottom:12px;
}
.affiliate-name{
    font-size:14px;
    font-weight:700;
    line-height:18px;
    height:38px;
    overflow:hidden;
}
.affiliate-category{
    display:inline-block;
    padding:4px 10px;
    border-radius:20px;
    background:#EAF9F0;
    color:#149C57;
    font-size:10px;
    font-weight:700;
    margin:8px 0;
}
.affiliate-reward{
    color:#ff5a00;
    font-size:12px;
    font-weight:700;
    margin-bottom:12px;
}
.affiliate-btn{
    display:block;
    background:#FFB300;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    padding:10px;
    font-weight:700;
    font-size:14px;
}
/*====================================================
            PRODUCT GRID
======================================================*/
.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    padding:0 15px 20px;
}
/*====================================================
            PRODUCT CARD
======================================================*/
.product-card{
    position:relative;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
    transition:.25s;
}
.product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.product-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    background:#f7f7f7;
}
/*====================================================
            DISCOUNT
======================================================*/
.discount{
    position:absolute;
    top:8px;
    left:8px;
    background:#ff3b30;
    color:#fff;
    font-size:9px;
    padding:3px 6px;
    border-radius:6px;
    font-weight:700;
}
/*====================================================
            FAVORITE
======================================================*/
.fav{
    position:absolute;
    top:8px;
    right:8px;
    width:28px;
    height:28px;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:12px;
    color:#666;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
}
.fav:hover{
    color:#ff3b30;
}
/*====================================================
            PRODUCT NAME
======================================================*/
.product-name{
    padding:8px 8px 0;
    font-size:11px;
    font-weight:600;
    color:#222;
    line-height:15px;
    height:32px;
    overflow:hidden;
}
/*====================================================
            PRICE
======================================================*/
.price{
    padding:4px 8px 0;
    color:#ff3b30;
    font-size:13px;
    font-weight:700;
}
.old-price{
    padding:2px 8px;
    color:#999;
    font-size:10px;

    text-decoration:line-through;

}

/*====================================================
            CASHBACK
======================================================*/
.cashback{
    display:inline-block;
    margin:4px 8px;
    background:#e9fff2;
    color:#00a650;
    padding:3px 7px;
    border-radius:8px;
    font-size:10px;
    font-weight:700;
}
/*====================================================
            RATING
======================================================*/
.bottom-info{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8px 10px;
    font-size:10px;
    color:#777;
}
/*====================================================
            PRODUCT BUTTON
======================================================*/
.buy-btn{
    display:block;
    width:calc(100% - 16px);
    margin:0 auto 10px;
    height:30px;
    border-radius:8px;
    background:#081B4B;
    color:#fff;
    font-size:9px;
    font-weight:600;
    transition:.25s;
}
.buy-btn:hover{
    background:#f7b500;
    color:#111;
}
/*====================================================
            MERCHANT TAG
======================================================*/
.merchant-tag{
    display:inline-block;
    margin:6px 8px 0;
    padding:2px 6px;
    border-radius:5px;
    background:#eef5ff;
    color:#2563eb;
    font-size:9px;
    font-weight:600;

}

/* =====================================
        PRODUCT NEW STYLE
===================================== */
.product-name{
    padding:6px 8px 0;
    font-size:12px;
    font-weight:600;
    color:#222;
    line-height:17px;
    height:34px;
    overflow:hidden;
}

.product-price{
    padding:3px 8px;
    font-size:13px;
    font-weight:700;
    color:#e53935;
}

.cashback-tag{
    margin:4px 8px 8px;
    padding:4px 8px;
    border-radius:20px;
    background:#eafaf0;
    color:#00a651;
    font-size:10px;
    font-weight:600;
}

.merchant-tag{
    padding:6px 8px 0;
    color:#888;
    font-size:10px;
}
/* =========================
   CATEGORY 1 ROW SCROLL
========================= */
.fc-market-scroll{
    display:flex;
    overflow-x:auto;
    gap:12px;
    padding-bottom:8px;
    -webkit-overflow-scrolling:touch;
}

.fc-market-scroll::-webkit-scrollbar{
    display:none;
}

.fc-card{
    flex:0 0 165px;
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.fc-image{
    width:100%;
    height:170px;
    object-fit:cover;
    display:block;
}

.fc-store{
    font-size:11px;
    color:#777;
    padding:8px 8px 0;
}

.fc-name{
    font-size:13px;
    font-weight:600;
    padding:4px 8px;
    height:38px;
    overflow:hidden;
}

.fc-old-price{
    padding:0 8px;
    color:#999;
    text-decoration:line-through;
    font-size:11px;
}

.fc-price{
    padding:2px 8px;
    color:#ff6600;
    font-size:16px;
    font-weight:bold;
}

.fc-discount,
.fc-cashback{
    margin:6px 8px;
    font-size:11px;
}

.fc-buy-btn{
    display:block;
    margin:10px;
    text-align:center;
    background:#f7b500;
    color:#fff;
    text-decoration:none;
    padding:10px;
    border-radius:10px;
    font-weight:bold;
}
}
/*====================================================
            SECTION UMUM
======================================================*/
.section{
    margin-top:18px;
}
.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 15px 12px;
}
.section-header h3{
    font-size:15px;
    font-weight:700;
    color:#222;

}

.section-headera{
    font-size:11px;
    color:#246BFD;
    font-weight:600;
}
/*====================================================
            REFER BANNER
======================================================*/
.refer-banner{
    margin:20px 15px;
    background:linear-gradient(135deg,#081B4B,#103B9F);
    border-radius:18px;
    overflow:hidden;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    color:#fff;
}
.refer-text{
    width:60%;
}
.refer-text h3{
    font-size:17px;
    line-height:22px;
    margin-bottom:8px;
}
.refer-text p{
    font-size:11px;
    line-height:18px;
    color:#d8d8d8;
}
.refer-text button{
    margin-top:14px;
    background:#FDBA12;
    color:#111;
    padding:9px 16px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
}
.refer-banner img{
    width:110px;
    object-fit:contain;
}

/*====================================================
            MERCHANT GRID
======================================================*/
.merchant-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    padding:0 15px;
}
.merchant-box{
    background:#fff;
    border-radius:14px;
    padding:10px;
    text-align:center;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}
.merchant-box img{
    width:46px;
    height:46px;
    object-fit:contain;
    margin:auto;
}
.merchant-box span{
    display:block;
    margin-top:6px;
    font-size:10px;
    font-weight:600;
}
/*====================================================
            BONUS CARD
======================================================*/

.bonus-section{

    padding:20px 15px;

}

.bonus-card{

    background:#fff;

    border-radius:18px;

    padding:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    box-shadow:0 4px 15px rgba(0,0,0,.05);

}

.bonus-left{

    width:62%;

}

.bonus-left h3{
    font-size:14px;
    margin-bottom:8px;
}
.bonus-left p{
    font-size:11px;

    color:#666;

    line-height:18px;

}

.bonus-left button{

    margin-top:14px;

    background:#081B4B;

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

}

.bonus-right img{

    width:95px;

}

/*====================================================
            STATISTIK
======================================================*/
.stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    padding:20px 15px;
}
.stat-box{
    background:#fff;
    border-radius:16px;
    padding:18px;
    text-align:center;
    box-shadow:0 3px 12px rgba(0,0,0,.05);
}
.stat-box h2{
    color:#081B4B;
    font-size:22px;
    font-weight:700;
}
.stat-box span{
    display:block;
    margin-top:5px;
    font-size:11px;
    color:#777;
}
/*====================================================
            TESTIMONIAL
======================================================*/
.testimonial-section{
    padding:20px 15px;
}
.testimonial-scroll{
    display:flex;
    gap:12px;
    overflow-x:auto;
    scrollbar-width:none;
}

.testimonial-scroll::-webkit-scrollbar{

    display:none;

}

.testimonial-card{

    min-width:240px;

    background:#fff;

    border-radius:18px;

    padding:18px;

    box-shadow:0 5px 15px rgba(0,0,0,.06);

}

.testimonial-card img{

    width:55px;

    height:55px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:10px;

}

.testimonial-card h4{

    font-size:14px;

    margin-bottom:6px;

}

.testimonial-card p{

    font-size:11px;

    line-height:18px;

    color:#666;

}



/*====================================================
            NEWS
======================================================*/
.news-section{
    padding:20px 15px;
}
.news-card{
    display:flex;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    margin-bottom:12px;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}
.news-card img{
    width:95px;
    height:95px;
    object-fit:cover;

}

.news-card div{

    padding:12px;

}

.news-card h4{
    font-size:11px;
    margin-bottom:6px;
}
.news-card p{
    font-size:11px;
    color:#666;
    line-height:17px;
}
/*====================================================
            NEWSLETTER
======================================================*/

.newsletter{
    margin:20px 15px;

    background:#081B4B;

    border-radius:18px;

    padding:25px;

    text-align:center;

    color:#fff;

}

.newsletter h2{

    font-size:16px;

    margin-bottom:8px;

}

.newsletter p{

    font-size:12px;

    color:#ddd;

}

.newsletter-box{

    margin-top:18px;

    display:flex;

    background:#fff;

    border-radius:35px;

    overflow:hidden;

}

.newsletter-box input{

    flex:1;

    padding:14px;

    font-size:12px;

}

.newsletter-box button{

    background:#FDBA12;

    padding:0 18px;

    font-size:12px;

    font-weight:700;

}



/*====================================================

            DOWNLOAD APP

======================================================*/

.download-app{

    margin:20px 15px;

}

.download-content{

    background:linear-gradient(135deg,#081B4B,#1346B5);

    border-radius:20px;

    padding:20px;

    color:#fff;

}

.download-left h2{

    font-size:20px;

}

.download-left p{

    font-size:12px;

    margin-top:8px;

    line-height:20px;

    color:#ddd;

}

.store-button{

    display:flex;

    gap:10px;

    margin-top:15px;

}

.store-button img{

    width:120px;

}



/*====================================================

            FOOTER

======================================================*/

.footer{

    margin-top:25px;

    padding:30px 20px 100px;

    background:#081B4B;

    color:#fff;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:15px;

}

.footer-logo img{

    width:40px;

}

.footer-logo h2{

    font-size:22px;

}

.footer p{

    font-size:12px;

    color:#ddd;

    line-height:20px;

}

.footer-links{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:10px;

    margin:20px 0;

}

.footer-links a{

    font-size:12px;

    color:#fff;

}

.social{

    display:flex;

    gap:12px;

    margin:20px 0;

}

.social a{

    width:40px;

    height:40px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

}



/*====================================================

            BOTTOM NAVIGATION

======================================================*/

.bottom-nav{

    position:fixed;

    bottom:0;

    left:50%;

    transform:translateX(-50%);

    width:100%;

    max-width:480px;

    height:70px;

    background:#fff;

    display:flex;

    justify-content:space-around;

    align-items:center;

    box-shadow:0 -3px 15px rgba(0,0,0,.08);

    z-index:9999;

}

.bottom-nav a{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:5px;

    color:#777;

    font-size:10px;

}

.bottom-nav a i{

    font-size:20px;

}

.bottom-nav a.active{

    color:#FDBA12;

}

/*====================================================

        LOADING SKELETON

=====================================================*/

.skeleton{

    position:relative;

    overflow:hidden;

    background:#ececec;

}

.skeleton::after{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.7),

        transparent

    );

    animation:skeleton 1.4s infinite;

}

@keyframes skeleton{

    100%{

        left:100%;

    }

}

/*====================================================

        BUTTON

=====================================================*/

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    height:40px;

    padding:0 18px;

    border-radius:12px;

    background:#081B4B;

    color:#fff;

    font-size:12px;

    font-weight:600;

    transition:.25s;

}

.btn:hover{

    background:#FDBA12;

    color:#111;

}

.btn-gold{

    background:#FDBA12;

    color:#111;

}

.btn-gold:hover{

    background:#F5A700;

}

/*====================================================

        BADGE

=====================================================*/

.badge-hot{

    background:#ff3b30;

    color:#fff;

    padding:3px 8px;

    border-radius:20px;

    font-size:10px;

}

.badge-new{

    background:#16a34a;

    color:#fff;

    padding:3px 8px;

    border-radius:20px;

    font-size:10px;

}

.badge-official{

    background:#246BFD;

    color:#fff;

    padding:3px 8px;

    border-radius:20px;

    font-size:10px;

}

/*====================================================

        FLOAT BUTTON

=====================================================*/

.float-chat{

    position:fixed;

    right:18px;

    bottom:95px;

    width:56px;

    height:56px;

    border-radius:50%;

    background:#FDBA12;

    color:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    box-shadow:0 8px 20px rgba(0,0,0,.18);

    z-index:999;

}

.float-chat:hover{

    transform:scale(1.08);

}

/*====================================================

        BACK TO TOP

=====================================================*/

.back-top{

    position:fixed;

    left:18px;

    bottom:95px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#081B4B;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

    z-index:999;

}

/*====================================================

        SCROLL BAR

=====================================================*/

::-webkit-scrollbar{

    width:6px;

    height:6px;

}

::-webkit-scrollbar-thumb{

    background:#d7d7d7;

    border-radius:20px;

}

/*====================================================

        ANIMATION

=====================================================*/

.fade-up{

    animation:fadeUp .45s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(18px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.zoom{

    animation:zoom .35s ease;

}

@keyframes zoom{

    from{

        transform:scale(.9);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

/*====================================================
        RESPONSIVE
=====================================================*/
@media(max-width:420px){
    .product-grid{
        gap:8px;
    }
    .product-name{
        font-size:10px;
        line-height:14px;
    }
    .price{
        font-size:12px;

    }

}

@media(min-width:481px){

    body.market-page{

        background:#dfe4ea;

    }

}

/*====================================================

        THE END

=====================================================*/
