.custom-menu {
    position: relative;
    display: flex;
    gap: 2rem;
}

.custom-menu-item {
    position: relative;
    padding: 0.5rem 0;
}

.menu-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #e6582c;
    transition: all 0.3s ease;
    width: 0;
    pointer-events: none;
    z-index: 5;
}