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

.desktop-header{

    position:sticky;
    top:0;
    z-index:9999;

    background:#fff;

    box-shadow:0 2px 12px rgba(0,0,0,.05);

}

.container-xl{

    max-width:1400px;

    margin:0 auto;

    padding:0 20px;

}

.header-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:72px;

}

/*-----------------------
Brand
-----------------------*/

.logo-link{

    display:flex;

    align-items:center;

    text-decoration:none;

}

.logo-link img{

    width:48px;

    height:48px;

    object-fit:contain;

}

.logo-text{

    margin-left:10px;

}

.logo-text h2{

    margin:0;

    font-size:30px;

    font-weight:700;

    color:#c89100;

    line-height:1;

}

.logo-text span{

    display:block;

    margin-top:3px;

    font-size:11px;

    color:#666;

    letter-spacing:.6px;

    text-transform:uppercase;

}

/*-----------------------
Categories Button
-----------------------*/

.category-btn{

    background:#f8f8f8;

    border:1px solid #e8e8e8;

    border-radius:10px;

    height:46px;

    padding:0 18px;

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

    color:#333;

    cursor:pointer;

    transition:.25s;

}

.category-btn:hover{

    background:#fff7e5;

    border-color:#c89100;

}

/*-----------------------
Search
-----------------------*/

.search-area{

    width:540px;

}

.search-box{

    display:flex;

    height:48px;

    border:1px solid #e5e5e5;

    border-radius:10px;

    overflow:hidden;

    background:#fff;

}

.search-box select{

    width:160px;

    border:none;

    padding:0 15px;

    background:#fafafa;

    font-size:14px;

    outline:none;

}

.search-box input{

    flex:1;

    border:none;

    padding:0 18px;

    font-size:14px;

    outline:none;

}

.search-box button{

    width:54px;

    border:none;

    background:#c89100;

    color:#fff;

    transition:.3s;

}

.search-box button:hover{

    background:#b78300;

}

/*-----------------------
Navigation
-----------------------*/

.header-menu{

    display:flex;

    align-items:center;

    gap:22px;

}

.header-menu a{

    color:#333;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    transition:.25s;

}

.header-menu a:hover{

    color:#c89100;

}

/*-----------------------
Register Button
-----------------------*/

.register-btn{

    background:#c89100;

    color:#fff !important;

    padding:10px 22px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.register-btn:hover{

    background:#b78300;

    transform:translateY(-2px);

}

/*-----------------------
Cart Badge
-----------------------*/

.cart-badge{

    position:absolute;

    top:-6px;

    right:-8px;

    min-width:18px;

    height:18px;

    background:#c89100;

    color:#fff;

    border-radius:50%;

    font-size:10px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

}
/*====================================
HERO
====================================*/

.hero-section{

    position:relative;

    height:420px;

    background: url('../images/hero/hero-1.jpg') center 5px / cover no-repeat;

}

.hero-overlay{

    width:100%;
    height:400px;

    display:flex;
    align-items:center;

    background:linear-gradient(
        90deg,
        rgba(246,206,92,.98) 0%,
        rgba(246,206,92,.95) 32%,
        rgba(246,206,92,.65) 42%,
        rgba(246,206,92,.18) 50%,
        rgba(246,206,92,0) 56%
    );

}

.hero-content{

    max-width:560px;

}

.hero-content h1{

    font-size:54px;

    font-weight:700;

    line-height:1.15;

    color:#111;

    margin-bottom:18px;

}

.hero-content h1 span{

    color:#fff;

}

.hero-content p{

    font-size:20px;

    line-height:1.6;

    color:#333;

    margin-bottom:30px;

}

.popular-tags{

    display:flex;

    align-items:center;

    gap:14px;

    flex-wrap:nowrap;

}

.popular-tags span{

    font-size:16px;

    font-weight:600;

    color:#1d2b5b;

}

.popular-tags a{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:14px 24px;

    background:#fff;

    border-radius:12px;

    color:#222;

    font-weight:600;

    text-decoration:none;

    white-space:nowrap;

    transition:.3s;

}

.popular-tags a:hover{

    background:#c89100;

    color:#fff;

    transform:translateY(-2px);

}
/*=========================================
DESKTOP CATEGORIES
=========================================*/

.desktop-categories{

    background:#fff;

    padding:50px 0 60px;

}

.section-title{

    margin-bottom:35px;

}

.section-title h3{

    font-size:42px;

    font-weight:700;

    color:#12204d;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(10,1fr);

    gap:16px;

}

.category-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:16px;

    padding:22px 10px;

    text-align:center;

    transition:.35s;

    box-shadow:0 6px 18px rgba(0,0,0,.05);

    cursor:pointer;

}

.category-card:hover{

    transform:translateY(-6px);

    border-color:#c89100;

    box-shadow:0 14px 30px rgba(0,0,0,.12);

}

.category-icon{

    width:64px;

    height:64px;

    margin:0 auto 15px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#fff8e8;

}

.category-icon img{

    width:46px;

    height:46px;

    object-fit:contain;

    transition:.3s;

}

.category-card:hover .category-icon img{

    transform:scale(1.1);

}

.category-card h5{

    margin:0;

    font-size:15px;

    line-height:1.45;

    font-weight:600;

    color:#12204d;

}
/*========================================
LATEST PRODUCTS
========================================*/

.latest-products-section{

    padding:35px 0 40px;

    background:#fafafa;

}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    margin-bottom:18px;

}

.section-badge{

    display:inline-block;

    background:#f8e8bb;

    color:#c89100;

    padding:6px 14px;

    border-radius:25px;

    font-size:12px;

    font-weight:600;

    margin-bottom:10px;

}

.section-header h2{

    font-size:32px;

    font-weight:700;

    color:#222;

    margin:0 0 8px;

    line-height:1.2;

}

.section-header p{

    color:#666;

    font-size:16px;

    margin:0;

}

.view-all-btn{

    color:#c89100;

    text-decoration:none;

    font-weight:600;

    font-size:15px;

    transition:.3s;

}

.view-all-btn:hover{

    color:#222;

}

/*------------------------------------
GRID
------------------------------------*/

.latest-products-grid{

    display:grid;

    grid-template-columns:repeat(8,1fr);

    gap:10px;

}

/*------------------------------------
CARD
------------------------------------*/

.latest-product-image{

    position:relative;

    height:100px;

    overflow:hidden;

    background:#f8f8f8;

}

.latest-product-content{

    padding:5px 6px 8px;

}

.latest-product-content h4{

    margin:0 0 6px;

    font-size:9px;

    font-weight:600;

    line-height:1.0;

    min-height:32px;

}

.product-price{

    margin:0 0 5px;

    font-size:10px;

    font-weight:700;

}

.product-location{

    font-size:12px;

}

.category-badge{

    font-size:5px;

    padding:4px 10px;

}

/*------------------------------------
IMAGE
------------------------------------*/

.latest-product-image{

    position:relative;

    height:140px;

    overflow:hidden;

    background:#f8f8f8;

}

.latest-product-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.35s;

    padding:10px;

}

.latest-product-card:hover img{

    transform:scale(1.05);

}
.latest-product-card{
    display:block;
    text-decoration:none;
    color:inherit;
}

.latest-product-card:hover{
    text-decoration:none;
    color:inherit;
}

/*------------------------------------
CATEGORY
------------------------------------*/

.category-badge{

    position:absolute;

    top:12px;

    left:12px;

    background:#c89100;

    color:#fff;

    padding:5px 12px;

    border-radius:20px;

    font-size:5px;

    font-weight:600;

}

/*------------------------------------
CONTENT
------------------------------------*/

.latest-product-content{

    padding:16px 18px 18px;

}

.latest-product-content h4{

    margin:0 0 8px;

    font-size:10px;

    font-weight:600;

    color:#222;

    line-height:1.4;

    min-height:44px;

}

.product-price{

    margin:0 0 10px;

    font-size:10px;

    font-weight:700;

    color:#c89100;

}

.product-location{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:14px;

    color:#777;

}

.product-location i{

    color:#c89100;

    font-size:13px;

}
/*==================================================
TRUST STRIP
==================================================*/

.trust-strip{

    padding:20px 0 60px;

    background:#fff;

}

.trust-wrapper{

    display:grid;

    grid-template-columns:240px repeat(4,1fr) 280px;

    gap:20px;

    align-items:center;

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.trust-title h3{

    margin:0;

    font-size:34px;

    font-weight:700;

    color:#222;

    line-height:1.3;

}

.trust-title span{

    color:#c89100;

}

.trust-item{

    display:flex;

    align-items:flex-start;

    gap:15px;

}

.trust-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#fff7e5;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.trust-icon i{

    color:#c89100;

    font-size:24px;

}

.trust-item h5{

    margin-bottom:6px;

    font-size:17px;

    font-weight:700;

}

.trust-item p{

    margin:0;

    color:#777;

    font-size:14px;

    line-height:1.6;

}

.download-app{

    background:#faf8f2;

    padding:22px;

    border-radius:15px;

}

.download-app h5{

    margin-bottom:8px;

    font-size:18px;

}

.download-app p{

    color:#666;

    margin-bottom:18px;

}

.store-buttons{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

}

.store-buttons a{

    display:flex;

    align-items:center;

    gap:8px;

    padding:10px 14px;

    background:#111;

    color:#fff;

    border-radius:8px;

    text-decoration:none;

    font-size:13px;

    transition:.3s;

}

.store-buttons a:hover{

    background:#c89100;

}
/*==================================================
HOW IT WORKS
==================================================*/

.how-section{

    padding:45px 0;

    background:#fff;

}

.how-wrapper{

    display:grid;

    grid-template-columns:2.2fr 1fr;

    gap:35px;

    align-items:start;

}

.how-left h2{

    font-size:30px;

    font-weight:700;

    color:#222;

    margin-bottom:25px;

    line-height:1.3;

}

.steps{

    display:flex;

    align-items:center;

    gap:12px;

}

.step-card{

    flex:1;

    background:#fff;

    border:1px solid #ececec;

    border-radius:14px;

    padding:20px 15px;

    text-align:center;

    transition:.3s;

    position:relative;

}

.step-card:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.step-number{

    position:absolute;

    top:-10px;

    left:50%;

    transform:translateX(-50%);

    width:24px;

    height:24px;

    border-radius:50%;

    background:#c89100;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

    font-weight:700;

}

.step-icon{

    width:58px;

    height:58px;

    margin:10px auto 14px;

    border-radius:50%;

    background:#fff7e5;

    display:flex;

    align-items:center;

    justify-content:center;

}

.step-icon i{

    color:#c89100;

    font-size:24px;

}

.step-card h4{

    font-size:17px;

    margin-bottom:8px;

    color:#222;

    font-weight:600;

}

.step-card p{

    font-size:13px;

    line-height:1.5;

    color:#777;

    margin:0;

}

.step-arrow{

    width:28px;

    display:flex;

    justify-content:center;

    align-items:center;

}

.step-arrow i{

    color:#c89100;

    font-size:18px;

}

/*==================================================
STATISTICS
==================================================*/

.market-stats{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:14px;

}

.stat-box{

    background:#fff;

    border:1px solid #ececec;

    border-radius:14px;

    padding:10px;

    text-align:center;

    transition:.3s;

}

.stat-box:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 20px rgba(0,0,0,.06);

}

.stat-box h3{

    color:#c89100;

    font-size:15px;

    font-weight:700;

    margin-bottom:6px;

    line-height:1;

}

.stat-box p{

    margin:0;

    color:#666;

    font-size:10px;

}
/*==================================================
SELL CTA
==================================================*/

.seller-cta-row{
    padding:20px 0;
}

.seller-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;

    background:linear-gradient(135deg,#b97d00,#d99a00);

    border-radius:12px;

    padding:22px 40px;

    color:#fff;

    box-shadow:0 12px 35px rgba(0,0,0,.12);
}

.seller-cta-left{
    display:flex;
    align-items:center;
    gap:24px;
}

.seller-icon{
    width:62px;
    height:62px;

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

    border-radius:14px;

    background:rgba(255,255,255,.15);

    font-size:28px;
}

.seller-cta h3{
    margin:0;
    font-size:34px;
    font-weight:700;
    color:#fff;
}

.seller-cta p{
    margin:6px 0 0;
    color:rgba(255,255,255,.92);
    font-size:18px;
}

.seller-cta-btn{
    background:#fff;
    color:#b67a00;

    padding:16px 16px;

    border-radius:10px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;
}

.seller-cta-btn:hover{
    transform:translateY(-2px);
    color:#b67a00;
}
/*==================================================
FOOTER
==================================================*/

.desktop-footer{
    background:#1f1f1f;
    color:#bdbdbd;
    padding:45px 0 15px;
}

/*-----------------------
Footer Grid
-----------------------*/

.footer-top{
    display:grid;
    grid-template-columns:2.2fr 1fr 1fr 1.2fr;
    gap:35px;
    padding-bottom:25px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

/*-----------------------
Brand
-----------------------*/

.footer-brand{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.footer-logo{
    width:55px;
    height:55px;
    object-fit:contain;
}

.footer-brand-text h2{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#fff;
    line-height:1;
}

.footer-brand-text span{
    display:block;
    margin-top:4px;
    color:#c89100;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.footer-description{
    color:#bdbdbd;
    line-height:1.7;
    font-size:14px;
    margin-bottom:20px;
    max-width:360px;
}

/*-----------------------
Headings
-----------------------*/

.footer-column h4{
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin-bottom:18px;
}

.footer-column h4::after{
    content:"";
    display:block;
    width:35px;
    height:2px;
    background:#c89100;
    margin-top:8px;
}

/*-----------------------
Lists
-----------------------*/

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

.footer-column ul li{
    margin-bottom:10px;
}

.footer-column ul li a{
    color:#bdbdbd;
    text-decoration:none;
    font-size:14px;
    transition:.25s;
}

.footer-column ul li a:hover{
    color:#c89100;
    padding-left:4px;
}

/*-----------------------
Contact
-----------------------*/

.contact-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#bdbdbd;
    font-size:14px;
}

.contact-list i{
    color:#c89100;
    width:16px;
    margin-top:3px;
}

/*-----------------------
Social
-----------------------*/

.footer-social{
    display:flex;
    gap:10px;
}

.footer-social a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#2a2a2a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
    font-size:14px;
}

.footer-social a:hover{
    background:#c89100;
    transform:translateY(-2px);
}

/*-----------------------
Bottom
-----------------------*/

.footer-bottom{
    text-align:center;
    padding-top:18px;
}

.footer-bottom p{
    margin:0;
    color:#8d8d8d;
    font-size:13px;
}
/*=========================================
ABOUT HERO
=========================================*/

.about-hero{

    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(232,178,39,.98) 0%,
            rgba(232,178,39,.94) 42%,
            rgba(232,178,39,.65) 55%,
            rgba(232,178,39,.15) 68%,
            transparent 78%
        ),
        url('../images/about/about-hero.png');

    background-repeat: no-repeat, no-repeat;

    /* Gradient fills hero, image keeps its proportions */
    background-size: 100% 100%, auto 100%;

    /* Move image further right */
    background-position: left top, right -150px center;
}

.about-hero-wrapper{

    width:100%;

    display:flex;

    align-items:center;

}

.about-hero-content{

    max-width:610px;

    position:relative;

    z-index:2;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    padding:20px 20px;

    border-radius:50px;

    background:#fff;

    color:#c89100;

    font-size:15px;

    font-weight:600;

    margin-bottom:28px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.about-hero-content h1{

    font-size:40px;

    line-height:1.0;

    font-weight:800;

    color:#222;

    margin-bottom:28px;

    letter-spacing:-2px;

}

.about-hero-content h1 span{

    color:#fff;

}

.about-hero-content p{

    max-width:560px;

    font-size:20px;

    line-height:1.8;

    color:#222;

    margin-bottom:42px;

}

.hero-buttons{

    display:flex;

    gap:18px;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:17px 36px;

    background:#c89100;

    color:#fff;

    border-radius:10px;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.btn-primary:hover{

    background:#222;

    color:#fff;

    transform:translateY(-3px);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 36px;

    border:2px solid #222;

    border-radius:10px;

    color:#222;

    background:transparent;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.btn-outline:hover{

    background:#222;

    color:#fff;

    transform:translateY(-3px);

}
