/* Main Menu Shortcode Styles */
.asme-main-menu-wrapper {
    border-radius: 12px;
    margin: 0 auto;
    width: 100%;
}

.asme-main-menu {
    display: flex;
    gap: 12px;
}

.asme-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    background: #008EEC;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid #0774BC;
    min-width: 140px;
    width: 100%;
    backdrop-filter: blur(4px);
}

.asme-menu-item:hover {
    background: linear-gradient(180deg, #FFE674 0%, #FFD102 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #000000;
    text-decoration: none;
}

.asme-menu-item--active {
    background: linear-gradient(180deg, #FFE674 0%, #FFD102 100%);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.asme-menu-item--active:hover {
    background: linear-gradient(180deg, #FFE674 0%, #FFD102 100%);
    color: #1a1a1a;
}

/* SVG Icon Styling */
.asme-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.asme-menu-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.asme-menu-label {
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .asme-main-menu-wrapper {
        border-radius: 10px;
    }

    .asme-main-menu {
        gap: 10px;
    }

    .asme-menu-item {
        padding: 12px 20px;
        min-width: 120px;
        font-size: 14px;
    }

    .asme-menu-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .asme-main-menu {
        flex-direction: column;
        gap: 10px;
    }

    .asme-menu-item {
        width: 100%;
        min-width: unset;
        padding: 8px 24px;
    }
}