/* MENU ICONS COMPONENT CSS - Extracted from partials/home/menu-icons.blade.php (~159 lines) */

    /* Modern Menu Icons Section */
    .modern-menu-icons-section {
        width: 100%;
    }

    .menu-icons-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1.5rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .menu-icon-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: inherit;
        transition: all 0.2s ease;
        padding: 0.5rem;
        border-radius: 0;
    }

    .menu-icon-item:hover {
        color: inherit;
        text-decoration: none;
        transform: translateY(-2px);
    }

    .menu-icon-wrapper {
        width: 64px;
        height: 64px;
        background: #ffffff;
        border: 2px solid #e5e7eb;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.75rem;
        transition: all 0.2s ease;
        position: relative;
    }

    .menu-icon-wrapper::before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg, #001f49 0%, #00aeef 100%);
        border-radius: 0;
        opacity: 0;
        transition: opacity 0.2s ease;
        z-index: -1;
    }

    .menu-icon-item:hover .menu-icon-wrapper {
        border-color: #001f49;
        transform: scale(1.05);
    }

    .menu-icon-item:hover .menu-icon-wrapper::before {
        opacity: 0.1;
    }

    .menu-icon-wrapper i {
        font-size: 1.5rem;
        color: #001f49;
        transition: color 0.2s ease;
        z-index: 1;
        position: relative;
    }

    .menu-icon-item:hover .menu-icon-wrapper i {
        color: #001f49;
    }

    .menu-icon-label {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1a1a1a;
        display: block;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }

    .menu-icon-subtitle {
        font-size: 0.75rem;
        color: #6b7280;
        display: block;
        line-height: 1.2;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .menu-icons-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .menu-icon-wrapper {
            width: 56px;
            height: 56px;
            border-radius: 0;
            margin-bottom: 0.5rem;
        }

        .menu-icon-wrapper i {
            font-size: 1.25rem;
        }

        .menu-icon-label {
            font-size: 0.8rem;
        }

        .menu-icon-subtitle {
            font-size: 0.7rem;
        }
    }

    @media (max-width: 480px) {
        .menu-icons-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }

        .menu-icon-wrapper {
            width: 52px;
            height: 52px;
            border-radius: 0;
        }

        .menu-icon-wrapper i {
            font-size: 1.125rem;
        }

        .menu-icon-label {
            font-size: 0.75rem;
        }

        .menu-icon-subtitle {
            font-size: 0.65rem;
        }
    }

    @media (max-width: 360px) {
        .menu-icons-grid {
            gap: 0.5rem;
        }

        .menu-icon-wrapper {
            width: 48px;
            height: 48px;
        }

        .menu-icon-wrapper i {
            font-size: 1rem;
        }
    }
</style>
