/*
Theme Name: EbykeShop Child
Template: hello-elementor
Version: 1.0
*/

/*navbar start*/
.ebs-header{
    position: sticky;
    top: 0;
    z-index: 999;
    background:#fff;
    width:100%;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    font-family:Arial,sans-serif;
    display:flex;
    align-items:stretch;
    padding: 5px 10px 5px 10px;
}
.ebs-header-left{
        width:100px;
        display:flex;
        align-items:center;
        justify-content:center;
        padding:0;
        flex-shrink:0;
        object-fit: cover;
}

.ebs-header-right{
        flex:1;
        display:flex;
        flex-direction:column;
}

.ebs-topbar{
    max-width:none;
    margin:0;
    width:100%;
    padding:12px 20px;
    display:flex;
    align-items:center;
    gap:20px;
}

.ebs-logo img{
    height:70px; 
    width:auto;
    align-items:left; 
}
.ebs-search{
    flex:1;
    display:flex;
    border:1px solid #0c232c;
    border-radius: 14px 14px 14px 14px;
    overflow:hidden;
    height:40px;
}

.ebs-search input{
    flex:1;
    border:none;
    padding:14px 18px;
    font-size:14px;
    outline:none;
}

.ebs-search button,
.ebs-search button:hover,
.ebs-search button:active,
.ebs-search button:focus{
    width:60px;
    background:#0c232c;
    color:#fff;
    border:none;
    cursor:pointer;
    font-size:18px;
}


.ebs-actions{
    display:flex;
    align-items:center;
    gap:20px;
}

.ebs-actions a{
    text-decoration:none;
    color:#0c232c;
    font-size:14px;
    display:flex;
    align-items:center;
    gap:7px;
    white-space:nowrap;
}

.ebs-actions a:nth-of-type(2),
.ebs-actions a:nth-of-type(5){
   padding: 7px 12px;
   border-radius: 8px;
}

/* Active Cart & About Us */

.ebs-actions a.current-page{
    background:#0c232c;
    color:#fff;
    border-radius:8px;
    padding:7px 12px;
}

.ebs-actions a.current-page i,
.ebs-actions a.current-page span{
    color:#fff;
}

.ebs-actions a:first-child{
    border:2px solid #0c232c;
    padding:7px 12px;
    border-radius:12px;
}

.ebs-navbar{
    padding:12px 20px 12px 0;
    width:100%;
}

.ebs-navbar ul{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    list-style:none;
    margin:0;
    padding-left:20px;
    
    width: 100%;
}

.ebs-navbar ul li a{
    text-decoration:none;
    color:#0c232c;
    font-size:14px;
    font-weight:500;
    
}

.ebs-navbar ul li.active a {
    background:#0c232c;
    color:#fff;
    border-radius:10px;
    padding:7px 22px;
    border:2px solid #0c232c;
}
.service-btn{
    border:2px solid #0c232c;
    padding:7px 22px;
    border-radius:10px;
}

.ebs-navbar ul li.active .service-btn{
    background:#0c232c;
    color:#fff;
}

.ebs-cart-link {
    position: relative;
}
.ebs-cart-bubble {
    position: absolute;
    top: -4px;
    left: -1px;
    background: #77B32F;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}

/* =========================
   INTERMEDIATE / SMALL DESKTOP
========================= */
@media only screen and (min-width: 1025px) and (max-width: 1366px) {

    .ebs-header-left {
        width: 70px;
        padding: 10px;
    }

    .ebs-logo img {
        height: 45px;
    }

    .ebs-topbar {
        gap: 10px;
        padding: 10px 12px;
    }

    .ebs-search input {
        font-size: 13px;
        padding: 10px 12px;
    }

    .ebs-actions {
        gap: 10px;
    }

    .ebs-actions a {
        font-size: 12px;
        gap: 4px;
        white-space: nowrap;
    }

    .ebs-actions a:first-child {
        padding: 6px 10px;
    }

    .ebs-actions a:nth-of-type(2),
    .ebs-actions a:nth-of-type(5) {
        padding: 6px 8px;
    }

    .ebs-navbar ul {
        gap: 15px;
        padding-left: 0;
    }

    .ebs-navbar ul li a {
        font-size: 12px;
    }

    .ebs-navbar ul li.active a {
        padding: 6px 14px;
    }

    .service-btn {
        padding: 6px 14px;
    }
}


/* =========================
   MOBILE/TABLET HEADER
========================= */

.mobile-header-bar,
.mobile-search-bar{
    display:none;
}

@media only screen and (max-width:1024px){

    .ebs-header{
        display:block;
        background:#0c232c;
        position:sticky;
        top:0;
        z-index:9999;
    }

    .ebs-header-left{
        display:none;
    }

    .ebs-navbar{
        display:none;
    }

    /* Hide desktop header elements */
    .ebs-search,
    .ebs-actions{
        display:none;
    }

    .ebs-topbar{
        height:50px;
        padding:0 12px;
        background:#0c232c;
        display:flex;
        align-items:center;
    }

    /* Normal State */
    .mobile-header-bar{
        display:flex;
        width:100%;
        align-items:center;
        justify-content:space-between;
    }

    .mobile-page-title{
        flex:1;
        text-align:left;
        color:#fff;
        font-size:16px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .mobile-icons{
        display:flex;
        align-items:center;
        gap:16px;
    }

    .mobile-icons a{
        color:#fff;
        text-decoration:none;
    }

    .mobile-icons i{
        font-size:20px;
        color:#fff;
    }
    .desktop-only {
        display: none !important;
    }

    /* Search State */

    .mobile-search-bar{
        width:100%;
        display:none;
        align-items:center;
        gap:10px;
    }

    .mobile-search-bar.active{
        display:flex;
    }

    .mobile-search-bar input{
        flex:1;
        height:34px;
        border:none;
        border-radius:4px;
        padding:0 10px;
    }

    .mobile-search-bar a{
        color:#fff;
        font-size:16px;
    }

    .mobile-header-bar.hidden{
        display:none;
    }
    .mobile-icons .ebs-cart-link {
        position: relative;
    }
    .mobile-icons .ebs-cart-bubble {
        position: absolute;
        top: -6px;
        left: -5px;
        background: #77B32F;
        color: #fff;
        font-size: 6px;
        font-weight: 700;
        min-width: 15px;
        height: 15px;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        padding: 0 3px;
        line-height: 1;
    }
}


/* =========================
   BOTTOM MOBILE MENU
========================= */

.mobile-bottom-nav{
    display:none;
}

@media only screen and (max-width:1024px){

.mobile-bottom-nav{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:65px;
    background:#fff;
    box-shadow:0 -3px 10px rgba(0,0,0,.15);
    z-index:99999;

    display:flex;
    justify-content:space-around;
    align-items:center;
}

.mobile-bottom-nav a{
    text-decoration:none;
    color:#0c232c;
    text-align:center;
    font-size:12px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:4px;
}

.mobile-bottom-nav i{
    font-size:22px;
}

body{
    padding-bottom:70px;
}
}

/*Navbar end*/




/* =========================
   DESKTOP FOOTER
========================= */
.ebs-desktop-footer {
    background: #0c232c;
    color: #fff;
    padding: 40px 60px 0;
    font-family: Arial, sans-serif;
}

.ebs-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 30px;
}

.ebs-footer-col {
    flex: 1;
    text-align: left;
}

.ebs-footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    letter-spacing: 0.5px;
    
}

.ebs-footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.ebs-footer-col a:hover {
    text-decoration: none;
}

.ebs-footer-col p {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #fff;
}

.ebs-footer-email {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.ebs-footer-social {
    display: flex;
    justify-content: left;
    gap: 14px;
}

.ebs-footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0;
}



.ebs-footer-payments img {
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 0;
}

.ebs-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 18px 0;
    text-align: center;
}

.ebs-footer-bottom p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.ebs-footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.ebs-footer-col a:hover,
.ebs-footer-bottom a:hover {
    color: #fff;
}

.variation-custom-price del{
    color:#999;
    margin-right:8px;
}

.variation-custom-price ins{
    color:#000;
    text-decoration:none;
    font-weight:700;
    margin-right:8px;
}

.ebs-off-badge{
    color:#e53935;
    font-weight:600;
    font-size:13px;
}

/* Hide desktop footer on mobile/tab */
@media only screen and (max-width: 1024px) {
    .ebs-desktop-footer {
        display: none;
    }
}

/*search result*/
/* ── Search Popup Cards ── */
.ebs-sp-cat-label {
    font-size: 13px;
    font-weight: 700;
    color: #0c232c;
    margin: 0 0 10px;
    padding-bottom: 4px;
    border-bottom: 1.5px solid #f0f0f0;
}
.ebs-sp-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}
.ebs-sp-card {
    width: 150px;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
    background: #fff;
}
.ebs-sp-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    color: #222;
    text-decoration: none;
}
.ebs-sp-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    background: #f7f7f7;
    overflow: hidden;
}
.ebs-sp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ebs-sp-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #fff;
    color: #0c232c;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    white-space: nowrap;
}
.ebs-sp-info {
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}
.ebs-sp-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #222;
}
.ebs-sp-price {
    font-size: 12px;
    color: #555;
}
.ebs-sp-price del { color: #aaa; }
.ebs-sp-price ins { color: #0c232c; font-weight: 700; text-decoration: none; }

@media (max-width: 480px) {
    .ebs-sp-card { width: 130px; }
}