/* Figma Bottom Navigation Styles - Exact Design Match */
.figma-bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: hsl(215, 100%, 70%);
    z-index: 50;
    padding: 8px 0 16px 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 24px 24px 0 0;
}

.figma-nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.figma-nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding: 0 16px;
}

.figma-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    min-width: 50px;
    position: relative;
    background-color: transparent !important;
    border-radius: 8px;
}

/* Active state - White text and icons, fully opaque */
.figma-nav-link-active {
    background-color: transparent !important;
    color: white !important;
}

.figma-nav-link-active .figma-nav-icon {
    opacity: 1;
    margin-bottom: 4px;
}

.figma-nav-link-active .figma-nav-text {
    color: white !important;
    font-weight: 600;
    opacity: 1;
}

/* Inactive state - White text and icons, slightly transparent */
.figma-nav-link-inactive {
    color: white !important;
    background-color: transparent !important;
}

.figma-nav-link-inactive .figma-nav-icon {
    opacity: 0.75;
    margin-bottom: 4px;
}

.figma-nav-link-inactive .figma-nav-text {
    color: white !important;
    font-weight: 400;
    opacity: 0.75;
}

/* Remove hover effects to match Figma design */
.figma-nav-link:hover,
.figma-nav-link-inactive:hover,
.figma-nav-link-active:hover {
    background-color: transparent !important;
    color: white !important;
}

.figma-nav-link:hover .figma-nav-icon,
.figma-nav-link-inactive:hover .figma-nav-icon,
.figma-nav-link-active:hover .figma-nav-icon {
    opacity: 1;
}

.figma-nav-link:hover .figma-nav-text,
.figma-nav-link-inactive:hover .figma-nav-text,
.figma-nav-link-active:hover .figma-nav-text {
    color: white !important;
    opacity: 1;
}

.figma-nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.figma-nav-icon svg {
    width: 24px;
    height: 24px;
}

.figma-nav-text {
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    line-height: 1;
    color: white !important;
}

/* Special Plus Button - Exact Figma Design */
.figma-special-link {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.figma-special-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    cursor: pointer;
    margin-bottom: 2px;
    transform: translateY(4px);
}

.figma-special-button:hover {
    background: hsl(215, 100%, 70%);
    transform: translateY(4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.figma-plus-icon {
    width: 24px !important;
    height: 24px !important;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .figma-nav-container {
        padding: 0 12px;
    }

    .figma-nav-link {
        min-width: 50px;
        padding: 6px 8px;
    }

    .figma-nav-text {
        font-size: 11px;
    }

    .figma-special-button {
        width: 48px;
        height: 48px;
    }

    .figma-plus-icon {
        width: 28px !important;
        height: 28px !important;
    }
}
