/* ==========================
   KAHI MARKETPLACE
========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:#f2f4f5;
    color:#002f34;
    overflow-x:hidden;
}
.page-wrapper{
    width:100%;
}
/* Links */
a{
    text-decoration:none;
    color:inherit;
}
a:hover{
    color:#F85C70;
}
/* Images */
img{
    max-width:100%;
}
/* Buttons */
.btn{
    transition:.3s;
}
/* Container */
.container-xl{
    max-width:1320px;
}
/* Section */
.section{
    padding:60px 0;
}
/* Heading */
.section-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:30px;
}
/* Card */
.card{
    border:none;
    border-radius:12px;
    overflow:hidden;
}
/* Utilities */
.rounded-15{
    border-radius:15px;
}
.shadow-custom{
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* ==========================
   NAVBAR
========================== */
.navbar{
    padding:12px 0;
    background:#fff;
    z-index:999;
}
.logo-kahi{
    color:#F85C70;
    font-weight:800;
    letter-spacing:1px;
}
.location-box{
    width:210px;
    display:flex;
    align-items:center;
    border:2px solid #ced4da;
    border-radius:8px;
    padding:4px 10px;
    background:#fff;
}
.location-box select{
    border:none;
    box-shadow:none;
    font-size:15px;
    cursor:pointer;
}
.search-box .form-control{
    height:52px;
    border:2px solid #002f34;
    border-right:none;
    border-radius:8px 0 0 8px;
}
.search-box .btn{
    width:60px;
    border-radius:0 8px 8px 0;
}
.sell-btn{
    border-radius:30px;
    padding:10px 24px;
    font-weight:700;
}
.sell-btn:hover{
    transform:translateY(-2px);
}
.nav-link{
    color:#002f34;
    font-weight:500;
}
.nav-link:hover{
    color:#F85C70;
}
/* Mobile */
@media(max-width:991px){
    .location-box{
        width:100%;
        margin-bottom:15px;
    }
    .search-box{
        margin-bottom:15px;
    }
    .sell-btn{
        width:100%;
        margin-top:15px;
    }
}

/* ==================================
   CATEGORY NAVIGATION
================================== */
.category-nav{
    background:#fff;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}
.category-scroll{
    display:flex;
    align-items:center;
    gap:28px;
    overflow-x:auto;
    white-space:nowrap;
    padding:15px 0;
    scrollbar-width:none;
}
.category-scroll::-webkit-scrollbar{
    display:none;
}
.category-item{
    color:#002f34;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}
.category-item i{
    margin-right:6px;
}
.category-item:hover{
    color:#F85C70;
}
.category-item:first-child{
    font-weight:700;
}
/* Mobile */
@media(max-width:768px){
    .category-scroll{
        gap:18px;
    }
    .category-item{
        font-size:14px;
    }
}

/*==============================
HERO SECTION
===============================*/
.hero-section{
    background:#fff;
    padding:70px 0;
}
.hero-badge{
    display:inline-block;
    background:#eaf4ff;
    color:#F85C70;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}
.hero-title{
    font-size:56px;
    font-weight:800;
    line-height:1.2;
    color:#002f34;
}
.hero-title span{
    color:#F85C70;
}
.hero-text{
    font-size:18px;
    color:#666;
    margin:25px 0;
}
.trending-search{
    margin-top:35px;
}
.trending-search a{
    margin-left:12px;
    color:#F85C70;
    font-weight:500;
}
.hero-image{
    text-align:center;
}
.hero-image img{
    width:100%;
    max-width:550px;
}
@media(max-width:992px){
    .hero-section{
        text-align:center;
    }
    .hero-title{
        font-size:40px;
    }
    .hero-buttons{
        justify-content:center;
    }
    .hero-image{
        margin-top:40px;
    }
}

/*==================================
BROWSE CATEGORIES
==================================*/
.categories-section{
    background:#f8f9fa;
}
.category-card{
    background:#fff;
    border-radius:15px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
    border:1px solid #eee;
    height:100%;
}
.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.category-icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:#eef6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}
.category-icon i{
    font-size:34px;
    color:#F85C70;
}
.category-card h5{
    font-weight:700;
    margin-bottom:8px;
    color:#002f34;
}
.category-card span{
    color:#777;
    font-size:14px;
}

/*=================================
FRESH PRODUCTS
=================================*/
.fresh-products{
    background:#fff;
}
.product-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
    border:1px solid #e5e5e5;
    height:100%;
}
.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.product-image{
    height:220px;
    position:relative;
    overflow:hidden;
    background:#fafafa;
}
.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}
.product-card:hover img{
    transform:scale(1.08);
}
.featured-badge{
    position:absolute;
    left:10px;
    top:10px;
    background:#ffce32;
    padding:5px 10px;
    font-size:12px;
    font-weight:700;
    border-radius:4px;
}
.wishlist-btn{
    position:absolute;
    right:10px;
    top:10px;
    width:40px;
    height:40px;
    border-radius:50%;
    border:none;
    background:#fff;
    font-size:18px;
    cursor:pointer;
}
.product-details{
    padding:18px;
}
.product-details h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:10px;
}
.product-details h5{
    font-size:17px;
    height:50px;
    overflow:hidden;
    line-height:1.5;
    margin-bottom:12px;
}
.product-details p{
    font-size:14px;
    color:#666;
    margin-bottom:18px;
}
.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}
.product-footer a{
    font-weight:600;
    color:#F85C70;
}
#loadMore{
    padding:15px 60px;
    font-weight:700;
    border-radius:40px;
    font-size:18px;
    transition:.3s;
}
#loadMore:hover{
    transform:translateY(-4px);
}

/*==============================
DOWNLOAD APP
==============================*/
.download-app{
    background:#ffffff;
    padding:70px 0;
}
.app-wrapper{
    background:#eef7ff;
    border-radius:20px;
    padding:50px;
}
.app-phone{
    max-width:280px;
}
.app-title{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
    color:#002f34;
}
.app-text{
    font-size:17px;
    color:#555;
    margin-bottom:25px;
}
.app-features{
    margin-top:25px;
}
.feature{
    margin-bottom:18px;
    font-size:17px;
    font-weight:500;
}
.feature i{
    color:#F85C70;
    margin-right:10px;
}
.download-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.download-box h5{
    font-weight:700;
    margin-bottom:20px;
}
.qr-code{
    width:160px;
    margin-bottom:25px;
}
.store-btn{
    display:block;
    margin-bottom:12px;
}
.store-btn img{
    width:180px;
    transition:.3s;
}
.store-btn img:hover{
    transform:scale(1.05);
}
@media(max-width:991px){
    .app-wrapper{
        text-align:center;
        padding:35px;
    }
    .download-box{
        margin-top:40px;
    }
    .app-title{
        font-size:34px;
    }
}

/*==================================
FOOTER
==================================*/
.footer{
    background:#002f34;
    color:#fff;
    padding:70px 0 25px;
}
.footer-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}
.footer-text{
    color:#cfd8dc;
    line-height:28px;
}
.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}
.footer-links li{
    margin-bottom:12px;
}
.footer-links li a{
    color:#cfd8dc;
    text-decoration:none;
    transition:.3s;
}
.footer-links li a:hover{
    color:#23e5db;
    padding-left:6px;
}
.social-icons{
    margin-top:25px;
}
.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    background:#0b4348;
    border-radius:50%;
    margin-right:10px;
    color:#fff;
    font-size:18px;
    transition:.3s;
}
.social-icons a:hover{
    background:#23e5db;
    color:#002f34;
}
.footer .form-control{
    height:50px;
    border:none;
}
.footer .btn{
    height:50px;
}
hr{
    border-color:rgba(255,255,255,.15);
    margin:40px 0 25px;
}
.copyright{
    margin:0;
    color:#cfd8dc;
}
.payment-icons{
    max-height:36px;
}
@media(max-width:768px){
    .footer{
        text-align:center;
    }
    .payment-icons{
        margin-top:20px;
    }
    .social-icons{
        justify-content:center;
        display:flex;
    }
}

/*============================
CUSTOM PRIMARY COLOR OVERRIDE
btn-outline-primary & bg-primary -> #F85C70
=============================*/
.bg-primary{
    background-color:#F85C70 !important;
}

.btn-outline-primary{
    color:#F85C70 !important;
    border-color:#F85C70 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.show>.btn-outline-primary.dropdown-toggle{
    color:#fff !important;
    background-color:#F85C70 !important;
    border-color:#F85C70 !important;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus{
    box-shadow:0 0 0 0.25rem rgba(248,92,112,0.5) !important;
}
