/*==================================================
    VELOX HEADER
==================================================*/

:root{

    --header-height:72px;

    --header-bg:#ffffff;

    --header-border:#ececec;

    --header-shadow:0 2px 10px rgba(0,0,0,.04);

    --primary:#E53935;

    --text:#222;

    --muted:#666;

    --search-bg:#f5f5f5;

}

/*==================================================
    HEADER
==================================================*/

.velox-header{

    position:fixed;

    top:0;
    left:0;
    right:0;

    height:var(--header-height);

    background:var(--header-bg);

    border-bottom:1px solid var(--header-border);

    box-shadow:var(--header-shadow);

    z-index:1200;

}

/*==================================================
    CONTAINER
==================================================*/

.velox-header-container{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:0 25px;

}

/*==================================================
    LEFT
==================================================*/

.velox-header-left{

    display:flex;

    align-items:center;

    gap:18px;

}

/*==================================================
    LOGO
==================================================*/

.velox-logo{

    display:flex;

    align-items:center;

    text-decoration:none;

}

.velox-logo img{

    height:46px;

    width:auto;

    display:block;

}

/*==================================================
    DELIVERY
==================================================*/

.velox-delivery{

    display:flex;

    align-items:center;

}

.velox-delivery-btn{

    border:none;

    background:#FFF3F3;

    color:var(--primary);

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.velox-delivery-btn:hover{

    background:var(--primary);

    color:#fff;

}

/*==================================================
    ADDRESS
==================================================*/

.velox-address{

    display:flex;

    align-items:center;

}

.velox-address-btn{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--text);

    text-decoration:none;

    font-weight:600;

    padding:10px 16px;

    border-radius:12px;

    transition:.25s;

}

.velox-address-btn:hover{

    background:#f8f8f8;

}

.velox-address-btn i{

    color:var(--primary);

}

/*==================================================
    SEARCH
==================================================*/

.velox-search{

    flex:1;

    max-width:720px;

    position:relative;

}

.velox-search i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#777;

    font-size:20px;

}

.velox-search input{

    width:100%;

    height:48px;

    border:none;

    outline:none;

    background:var(--search-bg);

    border-radius:30px;

    padding:0 20px 0 52px;

    font-size:15px;

}

.velox-search input:focus{

    background:#fff;

    box-shadow:0 0 0 2px rgba(229,57,53,.15);

}

/*==================================================
    RIGHT
==================================================*/

.velox-header-right{

    display:flex;

    align-items:center;

    gap:25px;

}

/*==================================================
    CART
==================================================*/

.velox-cart{

    position:relative;

    text-decoration:none;

    color:#222;

    font-size:28px;

}

.velox-cart-count{

    position:absolute;

    top:-8px;

    right:-10px;

    width:24px;

    height:24px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:12px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

}

/*==================================================
    USER
==================================================*/

.velox-user{

    display:flex;

    align-items:center;

}

.velox-user-btn{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--text);

    text-decoration:none;

    font-weight:600;

    padding:8px 12px;

    border-radius:12px;

    transition:.25s;

}

.velox-user-btn:hover{

    background:#f8f8f8;

}

.velox-user-btn i:first-child{

    color:var(--primary);

    font-size:22px;

}

/*==================================================
    DROPDOWN
==================================================*/

.velox-user-menu{

    min-width:220px;

    border:none;

    border-radius:14px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    padding:10px;

}

.velox-user-menu .dropdown-item{

    border-radius:10px;

    padding:10px 14px;

    transition:.2s;

}

.velox-user-menu .dropdown-item:hover{

    background:#f8f8f8;

}

/*==================================================
    CONTENT OFFSET
==================================================*/

.velox-content{

    padding-top:45px;

}

/*==================================================
    TABLET
==================================================*/

@media(max-width:1199px){

    .velox-search{

        max-width:none;

    }

    .velox-address{

        display:none;

    }

}

/*==================================================
    MOBILE
==================================================*/

@media(max-width:767px){

    .velox-header{

        height:64px;

    }

    .velox-header-container{

        padding:0 15px;

        gap:12px;

    }

    .velox-logo img{

        height:38px;

    }

    .velox-delivery{

        display:none;

    }

    .velox-search{

        display:none;

    }

    .velox-user span{

        display:none;

    }

}
.velox-menu-btn{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:none;
    border-radius:10px;

    background:transparent;

    cursor:pointer;

    font-size:18px;

    color:#444;

    transition:.2s;

}

.velox-menu-btn:hover{

    background:#f5f5f5;

}
.velox-logo img{

    height:30px;
    width:auto;

}
.velox-delivery-btn{

    height:40px;

    padding:0 18px;

    border:none;

    border-radius:20px;

    background:#fff3f3;

    color:#E53935;

    font-weight:600;

}
.velox-address-btn{

    display:flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

    color:#222;

    font-weight:600;

}
.velox-search{

    flex:1;

    max-width:700px;

    position:relative;

}
.velox-cart{

    position:relative;

    font-size:28px;

    color:#222;

    text-decoration:none;

}