﻿body {
    font-family: 'Poppins', sans-serif;
    background: #f7fbff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.topbar {
    background: #031b34;
    color: white;
    font-size: 14px;
    padding: 10px 0;
    text-align: center;
}

.navbar-custom {
    background: white;
    padding: 18px 0;
    border-bottom: 1px solid #e9f3ff;
}

.logo {
    font-size: 38px;
    font-weight: 700;
    color: #031b34;
    text-decoration: none;
}

    .logo span {
        color: #00a2ff;
    }

.nav-link {
    color: #031b34 !important;
    font-weight: 500;
    margin-right: 18px;
}

.search-box {
    position: relative;
}

    .search-box input {
        width: 260px;
        border-radius: 30px;
        border: 1px solid #d9ebff;
        padding: 10px 20px;
        padding-right: 45px;
        background: #f8fcff;
    }

    .search-box i {
        position: absolute;
        right: 18px;
        top: 12px;
        color: #009dff;
    }

.cart-icon {
    width: 50px;
    height: 50px;
    background: #031b34;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #00a2ff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

@media(max-width:768px) {

    .search-box input {
        width: 180px;
    }

    .logo {
        font-size: 28px;
    }
}
