/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 04 2026 | 18:15:39 */
/* =====================================================
   MEGAMENU PANEL — sf-menu / Salient positioning
   ===================================================== */

.sf-menu > li.has-cmm {
    position: static;
}

.cmm-dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-top: 2px solid #000;    /* ← swap for your accent color */
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

/* SuperFish reveals via :hover AND .sfHover (JS-managed) */
.sf-menu > li.has-cmm:hover > .cmm-dropdown-panel,
.sf-menu > li.has-cmm.sfHover > .cmm-dropdown-panel {
    display: block;
}

/* Hide Salient's native sub-menu on this item so they don't overlap */
.sf-menu > li.has-cmm > .sub-menu {
    display: none !important;
}

/* =====================================================
   MEGAMENU INNER WRAPPER
   ===================================================== */

.cmm-wrapper {
    width: 100%;
    padding: 28px 32px;
    box-sizing: border-box;
    background: #ffffff;
}

/* =====================================================
   GRID LAYOUT
   ===================================================== */

.cmm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px 24px;
}

/* =====================================================
   COLUMN
   ===================================================== */

.cmm-col {
    display: flex;
    flex-direction: column;
}

.cmm-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.cmm-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
}

.cmm-col-icon {
    font-size: 16px;
    color: #999;
}

.cmm-col-subtitle {
    font-size: 12px;
    color: #aaa;
    margin: 0 0 10px;
    line-height: 1.4;
}

/* Divider line that appears under column title / subtitle */
.cmm-col-header + .cmm-links,
.cmm-col-subtitle + .cmm-links {
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

/* =====================================================
   LINKS LIST
   ===================================================== */

.cmm-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* =====================================================
   INDIVIDUAL LINK
   ===================================================== */

.cmm-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1;
}

.cmm-link:hover {
    background: #f5f5f5;
    color: #000;
    text-decoration: none;
}

.cmm-link-arrow {
    font-size: 14px;
    color: #ccc;
    flex-shrink: 0;
    transition: color 0.15s ease, transform 0.15s ease;
    margin-top: 1px;
}

.cmm-link:hover .cmm-link-arrow {
    color: #555;
    transform: translateX(2px);
}

.cmm-link-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.cmm-link-label {
    font-size: 14px;
    font-weight: 500;
}

.cmm-link-desc {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    line-height: 1.3;
}

/* =====================================================
   BADGE
   ===================================================== */

.cmm-badge {
    display: inline-block;
    align-self: center;
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: #e74c3c;    /* ← swap for your accent color */
    color: #fff;
    padding: 2px 6px;
    border-radius: 20px;
}

/* =====================================================
   RESPONSIVE — stack on mobile
   ===================================================== */

@media (max-width: 768px) {
    .cmm-dropdown-panel {
        position: static;
        max-width: 100%;
        box-shadow: none;
        border-radius: 0;
        border-top-width: 1px;
    }

    .cmm-wrapper {
        padding: 20px 16px;
    }

    .cmm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}