/* ==========================
   Velox Cuisine Section
========================== */

.velox-cuisine-section{
     padding:0;
    margin-top:6px;
     margin-left: 0px;
}

.velox-cuisine-wrapper{

    display:flex;

    gap:18px;

    overflow-x:auto;

    padding-bottom:15px;

    scrollbar-width:none;

}

.velox-cuisine-wrapper::-webkit-scrollbar{
    display:none;
}

.velox-cuisine-item{

    text-decoration:none;

    color:#222;

    min-width:90px;

    text-align:center;

    transition:.25s;

    flex-shrink:0;

}

.velox-cuisine-icon{

    width:70px;

    height:70px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#fff;

    box-shadow:0 4px 12px rgba(0,0,0,.06);

    transition:.25s;

}

.velox-cuisine-icon img{

    width:48px;

    height:48px;

    object-fit:contain;

}

.velox-cuisine-item span{

    display:block;

    margin-top:12px;

    font-size:15px;

    font-weight:500;

}

.velox-cuisine-item:hover .velox-cuisine-icon{

    transform:translateY(-4px);

    box-shadow:0 10px 20px rgba(0,0,0,.12);

}

.velox-cuisine-item.active .velox-cuisine-icon{

    background:#FFECEC;

    border:2px solid #E53935;

}



.velox-filter-wrapper{

    display:flex;

    gap:12px;

    overflow-x:auto;

    padding-top:5px;

    scrollbar-width:none;

}

.velox-filter-wrapper::-webkit-scrollbar{
    display:none;
}

.velox-filter{

    padding:10px 18px;

    border-radius:30px;

    background:#fff;

    border:1px solid #d8d8d8;

    color:#333;

    text-decoration:none;

    white-space:nowrap;

    transition:.25s;

    font-size:14px;

    font-weight:500;

}

.velox-filter:hover{

    background:#E53935;

    color:#fff;

    border-color:#E53935;

}

.velox-filter.active{

    background:#E53935;

    color:#fff;

    border-color:#E53935;

}
.velox-container{
    width:100%;
    max-width:1600px;
    margin:0 auto;
    padding:0 8px;
}
/* =====================================
   Featured Deals
======================================*/

.velox-featured-scroll{

    display:flex;

    gap:18px;

    overflow-x:auto;

    scrollbar-width:none;

    padding-bottom:10px;

}

.velox-featured-scroll::-webkit-scrollbar{

    display:none;

}

.velox-featured-card{

    min-width:310px;

    height:170px;

    border-radius:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px;

    color:#fff;

    overflow:hidden;

    flex-shrink:0;

    position:relative;

}

.velox-featured-content{

    width:55%;

    z-index:2;

}

.velox-featured-content h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:8px;

}

.velox-featured-content p{

    font-size:14px;

    margin-bottom:15px;

    opacity:.95;

}

.velox-featured-content h3{

    font-size:30px;

    font-weight:800;

    margin-bottom:15px;

}

.velox-featured-card img{

    width:140px;

    position:absolute;

    right:15px;

    bottom:0;

    transition:.3s;

}

.velox-featured-card:hover img{

    transform:scale(1.08);

}

.velox-featured-card .btn{

    border-radius:30px;

    padding:8px 18px;

    font-weight:600;

}

/*====================================
   Best Sellers
====================================*/

.velox-products{

    padding:18px 0 0;

}

.velox-section-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.velox-section-header h2{

    font-size:34px;

    font-weight:700;

}

.velox-section-header a{

    text-decoration:none;

    color:#E53935;

    font-weight:600;

}

.velox-products-row{

    display:flex;

    gap:20px;

    overflow-x:auto;

    overflow-y:hidden;

    scroll-behavior:smooth;

    scrollbar-width:none;

    -webkit-overflow-scrolling:touch;

}

.velox-products-row::-webkit-scrollbar{

    display:none;

}

.product-card{

    flex:0 0 180px;

    text-decoration:none;

    color:#222;

}

.product-image{

    position:relative;

    height:150px;

    border-radius:18px;

    overflow:hidden;

    background:#f5f5f5;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.3s;

}

.product-card:hover img{

    transform:scale(1.05);

}

.delivery-time{

    position:absolute;

    left:10px;

    bottom:10px;

    background:#fff;

    padding:5px 10px;

    border-radius:20px;

    font-size:13px;

    font-weight:600;

}

.product-info{

    margin-top:12px;

}

.product-info h3{

    font-size:24px;

    font-weight:700;

    margin-bottom:5px;

}

.product-info p{

    font-size:16px;

    margin-bottom:3px;

    color:#222;

}

.product-info span{

    font-size:14px;

    color:#666;

    font-weight:600;

}
/*====================================
   Best Sellers
====================================*/

/*=========================================
    Recommended Restaurants
=========================================*/

.velox-recommended{

    padding:18px 0 0;

}

.recommended-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.recommended-header h2{

    font-size:34px;

    font-weight:700;

}

.recommended-nav{

    display:flex;

    gap:12px;

}

.nav-btn{

    width:46px;

    height:46px;

    border-radius:50%;

    border:1px solid #d9d9d9;

    background:#fff;

    cursor:pointer;

    transition:.25s;

}

.nav-btn:hover{

    background:#E53935;

    color:#fff;

    border-color:#E53935;

}

.recommended-scroll{

    display:flex;

    gap:18px;

    overflow-x:auto;

    overflow-y:hidden;

    scroll-snap-type:x mandatory;

    scroll-behavior:smooth;

    scrollbar-width:none;

    -webkit-overflow-scrolling:touch;

}

.recommended-scroll::-webkit-scrollbar{

    display:none;

}

.recommended-card{

    flex:0 0 290px;

    text-decoration:none;

    color:#222;

    scroll-snap-align:start;

}

.recommended-image{

    position:relative;

    height:110px;

    border-radius:18px;

    overflow:hidden;

}

.recommended-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

}

.recommended-card:hover img{

    transform:scale(1.05);

}

.badge{

    position:absolute;

    left:12px;

    bottom:12px;

    background:#fff;

    color:#000;

    padding:8px 14px;

    border-radius:25px;

    font-size:13px;

    font-weight:600;

}

.deal{

    position:absolute;

    top:12px;

    left:12px;

    background:#ff5722;

    color:#fff;

    padding:5px 10px;

    border-radius:20px;

    font-size:12px;

    font-weight:600;

}

.recommended-info{

    padding-top:12px;

}

.recommended-info h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:6px;

}

.recommended-info p{

    font-size:15px;

    color:#666;

}
/*=========================================
    Recommended Restaurants
=========================================*/

/*====================================
    Velox Sidebar
====================================*/

body{
    background:#FAFAFA !important;
}

.wrapper{
    background:#FAFAFA;
}

.main-wrapper,
.main-content,
.page-content,
.content-wrapper,
.content-area,
.right-side-content{
    background:#FAFAFA !important;
}

.main-wrapper,
.main-content{
    box-shadow:none;
}

.utility-sidepanel-page .home5-sidepanel{
    background:#fff !important;
    background-image:none !important;
}

body::before,
body::after{
    display:none !important;
}



html,
body{
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.velox-content{

    margin-left:205px;      /* sidebar width */

    

    padding:8px 12px;

}

/*====================================
 HERO BANNER
====================================*/
.velox-hero{
    padding:4px 0 4px;
}

.velox-hero-banner{

    display:flex;
    align-items:center;
    justify-content:space-between;

    min-height:150px;      /* was 330px */

    padding:10px 15px;     /* was 55px 70px */

    border-radius:24px;

    overflow:hidden;
    position:relative;

    background:linear-gradient(135deg,#ef2d24,#c91717);
}

.hero-content{
    width:45%;
     color:#fff;
}

.hero-content h1{

    font-size:54px;        /* was 62px */

    line-height:1.02;

    margin-bottom:15px;
      color:#fff;
      letter-spacing:-2px;
      font-weight:800;

}

.hero-content p{

    font-size:18px;        /* was 22px */

 
    margin-bottom:22px;

        color:rgba(255,255,255,.92);

   

    line-height:1.6;

 

    font-weight:400;


}
.hero-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:15px 34px;

    background:#fff;

    color:#E53935;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    border-radius:50px;

    transition:.3s ease;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

}

.hero-btn:hover{

    transform:translateY(-3px);

    color:#E53935;

    background:#fff;

    box-shadow:0 18px 40px rgba(0,0,0,.20);

}

.hero-btn i{

    transition:.3s;

}

.hero-btn:hover i{

    transform:translateX(5px);

}

.hero-image{

    width:50%;

    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.hero-image img{

    max-width:430px;       /* was 520px */

    width:100%;

    display:block;
}
/*====================================
    SERVICES
====================================*/

.velox-services{

    margin:5px 0 0px;

}

.services-grid{

    display:grid;

    
    grid-template-columns:repeat(6,1fr);

    gap:12px;

}

.service-card{

    display:flex;
    align-items:center;
    gap:12px;

    padding:12px 16px;

    height:74px;

    background:#fff;

    border-radius:14px;

    border:1px solid #efefef;

    box-shadow:0 5px 18px rgba(0,0,0,.05);

    text-decoration:none;

    transition:.25s;

}

.service-card:hover{

    transform:translateY(-2px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.service-icon{

    width:42px;
    height:42px;
    object-fit:contain;

    border-radius:10px;

    background:#FFF5F5;

    color:#E53935;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:16px;

    flex-shrink:0;

}

.service-info{

    min-width:0;

}

.service-info h5{

    margin:0;

    font-size:15px;

    font-weight:700;

    color:#222;

    white-space:nowrap;
    line-height:1.1;

}

.service-info p{

    margin:2px 0 0;

    font-size:12px;

    color:#777;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;
    line-height:1.2;

}
.promo-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:18px;

}

.promo-header h2{

    font-size:34px;

    font-weight:700;

    margin:0;

}

.promo-actions{

    display:flex;

    align-items:center;

    gap:10px;

}

.promo-view-all{

    color:#111;

    font-weight:600;

    text-decoration:none;

    margin-right:8px;

}
.promo-nav{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#f4f4f4;

    cursor:pointer;

    transition:.2s;

}
.promo-nav:hover{

    background:#E53935;

    color:#fff;

}

.promotion-row{

    display:flex;

    gap:20px;

    overflow-x:auto;

    scroll-behavior:smooth;
     overflow-y:hidden;
      

    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;

}
.promotion-row::-webkit-scrollbar{
    display:none;
}

.promotion-card{

    position:relative;

    flex:0 0 calc((100% - 60px) / 4);

    height:120px;

    border-radius:20px;

    overflow:hidden;

    text-decoration:none;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition: transform .3s ease;

}

.promotion-card img{

    width:100%;

    height:100%;

    object-fit:cover;
    transition: transform .35s ease;

}

.promotion-badge{

    position:absolute;

    top:12px;

    left:12px;

    background:#ff3b30;

    color:#fff;

    padding:8px 14px;

    border-radius:10px;

    font-size:15px;

    font-weight:700;

}

.promotion-status{

    position:absolute;

    left:14px;

    bottom:14px;

    background:#fff;

    color:#111;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.promotion-more:hover{

    background:#E53935;

    color:#fff;

}

.velox-promotions{

    margin:5px 0 0;

}

/* ====================================
   Popular Brands
==================================== */

.velox-brands-section{
    padding:18px 0;
}

.brand-row{
    display:flex;
    gap:6px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
     scroll-snap-type:x mandatory;
    padding-bottom:8px;
}

.brand-row::-webkit-scrollbar{
    display:none;
}

.brand-item{
    flex:0 0 calc((100% - 48px) / 9);   /* 6 logos visible */
    scroll-snap-align:start;
    text-decoration:none;
}



.brand-item:hover .brand-logo{

    transform:translateY(-4px);

    box-shadow:0 12px 24px rgba(0,0,0,.10);
}


.brand-logo{
    width:92px;
    height:92px;
    border-radius:22px;
    overflow:hidden;
    padding:0;
    background:transparent;
    border:none;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
     transition:.25s;
}

.brand-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.velox-nearby{

    padding:18px 0;

}

.nearby-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.nearby-card{

    text-decoration:none;

    color:#222;

    transition:.3s;

}

.nearby-image{

    height:210px;

    border-radius:18px;

    overflow:hidden;

    background:#f5f5f5;

    margin-bottom:14px;

}

.nearby-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.35s;

}

.nearby-card:hover img{

    transform:scale(1.05);

}

.nearby-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

}

.nearby-content h4{

    font-size:24px;

    font-weight:700;

}

.nearby-content p{

    margin-top:6px;

    color:#666;

    font-size:15px;

}

.nearby-count{

    background:#f3f3f3;

    border-radius:30px;

    padding:10px 18px;

    white-space:nowrap;

    font-size:15px;

    font-weight:600;

}

.nearby-count i{

    margin-left:8px;

}

.nearby-card:hover .nearby-count{

    background:#E53935;

    color:#fff;

}
.velox-all-stores{

    padding:5px 0;

}

.stores-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:5px;

}

.stores-header h2{

    font-size:30px;
    font-weight:700;
    margin:0;

}

.stores-header p{

    color:#777;
    margin-top:4px;

}

.store-count{

    background:#fff;
    padding:5px 5px;
    border-radius:30px;
    font-weight:700;

}

.stores-grid{

    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(270px,1fr));
    gap:10px;

}

.store-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:#222;
    transition:.25s;
    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.store-card:hover{

    transform:translateY(-6px);

}

.store-image{

    position:relative;
    height:130px;

}

.store-image img{

    width:100%;
    height:100%;
    object-fit:cover;

}

.store-badge{

    position:absolute;
    top:15px;
    left:14px;

    background:#E53935;
    color:#fff;

    padding:8px 14px;

    border-radius:10px;

    font-size:13px;
    font-weight:700;

}

.wishlist-btn{

    position:absolute;

    right:14px;
    top:14px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    cursor:pointer;

}



.store-category{

    color:#888;
    margin-bottom:10px;

}

.store-meta{

    display:flex;
    justify-content:space-between;
    color:#666;
    font-size:10px;

}

.store-info{
    padding:10px 14px;
}

.store-info h4{
    margin:0;
    padding:0;
    font-size:18px;
    font-weight:700;
    line-height:1.15;
}

.store-rating{
    margin-top:2px;
    margin-bottom:0;
    padding:0;
    font-size:15px;
    font-weight:600;
    color:#555;
    line-height:1.2;
}

