/* === CONTACT WIDGET — Header Dropdown === */

.cw-dropdown-toggle {
    color: #6b7280;
    padding: 4px 8px !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: background 0.12s ease, color 0.12s ease;
}
.cw-dropdown-toggle:hover,
.cw-dropdown-toggle.show {
    background: #f5f6f8;
    color: #111111 !important;
}
.cw-dropdown-toggle i {
    font-size: 15px;
}

.cw-dropdown-menu {
    border: 1px solid #eeeff2;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 8px;
    min-width: 220px;
    margin-top: 6px !important;
}

.cw-dropdown-header {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 4px 10px 8px;
}

.cw-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 9px 10px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: background 0.12s ease;
    color: #374151 !important;
}
.cw-dropdown-item:hover,
.cw-dropdown-item:focus {
    background: #f5f6f8 !important;
    color: #111111 !important;
    text-decoration: none !important;
}

.cw-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cw-item-icon svg {
    width: 19px;
    height: 19px;
    fill: #ffffff;
}
.cw-whatsapp-icon  { background: #25d366; }
.cw-messenger-icon { background: #0084ff; }

.cw-item-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.3;
}
.cw-item-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: #111111;
}
.cw-item-sub {
    font-size: 0.71rem;
    color: #9ca3af;
}
