/* ================= NAVBAR ================= */

.bottom-nav {

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    max-width: 100%;
    height: calc(73px + env(safe-area-inset-bottom, 0px));

    background: #F3F3F3;
    border-radius: 0;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 env(safe-area-inset-bottom, 0px) 0;
    margin: 0;
    box-sizing: border-box;

    z-index: 1000;

}


/* ================= ITEM ================= */

.bottom-nav-item {

    width: 82px;
    height: 73px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 2px;
    text-decoration: none;
    z-index: 2; 
}


/* ================= ICON ================= */

.bottom-nav-icon-wrapper {

    width: 40px;
    height: 40px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

}

.bottom-nav-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.bottom-nav-item.active .bottom-nav-icon {
    width: 40px;
    height: 40px;
}
/* ================= TEXT ================= */

.bottom-nav-text {

    font-family: "Figtree", "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 12px;

    line-height: normal;

    letter-spacing: 0;
    color: #000;

}


/* ================= SEARCH ================= */

.bottom-nav-spotlight {
    position: relative;
    width: 82px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10; 
}

.spotlight-border {
    position: absolute;
    top: -5px; /* Опустили кнопку ниже */
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #F3F3F3; /* Фон обводки как у навбара */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6.83px solid #FFFFFF; /* Белая обводка, как в макете (сливается с белым фоном страницы) */
    box-sizing: border-box;
}

.spotlight-circle {

    width: 59px;
    height: 59px;

    border-radius: 50%;

    background: linear-gradient(
        180deg,
        #FFB200 0%,
        #F7D917 100%
    );

    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4.5px 23px rgba(0, 170, 91, 0.15);
    text-decoration: none;
}

.spotlight-icon {
    width: 27.33px;
    height: 27.33px;
}


/* ================= CART BADGE ================= */

.cart-badge {

    position: absolute;

    top: -4px;
    right: -4px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    background: #FFB200;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;
}