/* Footer container */
#cfm-footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 6px 0 18px 0;
    font-family: sans-serif;
    position: relative;
    z-index: 9999;
}

/* Title */
#cfm-footer .cfm-title {
    font-weight: 700;
    font-size: 20px;
    padding: 10px 0;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    background: linear-gradient(#2b2b2b,#222);
    box-shadow: inset 0 -6px 0 rgba(255,255,255,0.03);
}

/* Menu list stacked */
#cfm-footer ul#cfm-menu-list {
    list-style: none;
    margin: 8px 0;
    padding: 0;
}
#cfm-footer ul#cfm-menu-list li.cfm-item {
    margin: 8px 0;
    background: linear-gradient(#2b2b2b,#222);
    padding: 14px 10px;
    border-top: 1px solid rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    transition: background 0.18s, color 0.18s, transform 0.08s;
    box-shadow: 0 1px 0 rgba(0,0,0,0.6) inset;
}
#cfm-footer ul#cfm-menu-list li.cfm-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
}

/* hover = white stripe like image */
#cfm-footer ul#cfm-menu-list li.cfm-item:hover {
    background: #fff;
    transform: translateY(-1px);
}
#cfm-footer ul#cfm-menu-list li.cfm-item:hover a {
    color: #000;
}

/* Dropdown layout: horizontal */
#cfm-footer.dropdown ul#cfm-menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}
#cfm-footer.dropdown ul#cfm-menu-list li.cfm-item {
    padding: 12px 20px;
    margin: 6px 0;
    border-radius: 2px;
    min-width: 220px;
}

/* Search box at bottom */
#cfm-footer .cfm-search-wrap {
    margin-top: 12px;
    display: inline-block;
    position: relative;
}
#cfm-footer #cfm-search-input {
    padding: 10px 12px;
    width: 380px;
    max-width: 85vw;
    border-radius: 2px;
    border: none;
    outline: none;
    font-size: 15px;
}
#cfm-footer #cfm-search-btn {
    position: absolute;
    right: -42px;
    top: 0;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    border: none;
    background: #d62828;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
#cfm-footer #cfm-search-btn:active {
    transform: translateY(1px);
}

/* Responsive tweaks */
@media (max-width: 600px) {
    #cfm-footer .cfm-title { font-size: 16px; padding: 8px 0; }
    #cfm-footer #cfm-search-input { width: 60vw; }
    #cfm-footer ul#cfm-menu-list li.cfm-item { padding: 12px 8px; }
}
