/* Main Menu Shortcode Styles */
.asme-main-menu-wrapper {
    border-radius: 12px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.asme-main-menu {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.asme-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    background: rgb(0 142 236 / 85%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid #0774BC;
    min-width: 140px;
    width: fit-content;
    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;
}

.asme-main-menu--coming-soon .asme-menu-item {
    background: rgb(4 128 211 / 60%);
    color: #ffffff94;
}

.asme-menu-status {
    font-size: 12px;
    background: #ffffff30;
    line-height: 1em;
    padding: 4px 10px;
    border-radius: 4px;
}

/* 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;
        flex-wrap: wrap;
    }

    .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;
    }
}

/* =========================================
   Simple Menu Styles (type="simple")
   ========================================= */
.asme-simple-menu-wrapper {
    width: 100%;
}

.asme-simple-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.asme-simple-menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.asme-simple-menu-item:hover {
    color: #FFD700;
    text-decoration: none;
}

.asme-simple-menu-item--active {
    color: #FFD700;
}

.asme-simple-menu-item--active:hover {
    color: #FFD700;
}

/* Simple Menu Icon Styling */
.asme-simple-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.asme-simple-menu-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.asme-simple-menu-label {
    white-space: nowrap;
}

/* Simple Menu Responsive */
@media (max-width: 768px) {
    .asme-simple-menu-wrapper {
        padding: 12px 16px;
    }

    .asme-simple-menu {
        gap: 24px;
    }

    .asme-simple-menu-item {
        font-size: 15px;
    }

    .asme-simple-menu-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .asme-simple-menu {
        gap: 16px;
    }

    .asme-simple-menu-item {
        font-size: 14px;
        gap: 6px;
    }

    .asme-simple-menu-icon {
        width: 16px;
        height: 16px;
    }
}