.chipin-profile-dropdown .dropdown-toggle::after {
    display: none;
}

.chipin-profile-toggle {
    min-height: 2.5rem;
}

.chipin-profile-toggle-chevron {
    transition: transform 0.2s ease, color 0.2s ease;
}

.chipin-profile-toggle[aria-expanded="true"] {
    background-color: #343a40;
}

.chipin-profile-toggle[aria-expanded="true"] .chipin-profile-toggle-chevron {
    transform: rotate(180deg);
    color: #ffffff !important;
}

.chipin-profile-menu {
    width: min(88vw, 18rem);
    min-width: 16rem;
    margin-top: 0.75rem !important;
    border-radius: 1.25rem;
    background-color: #ffffff;
    box-shadow: 0 1.25rem 3rem rgba(15, 23, 42, 0.18);
}

.chipin-profile-menu-header {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.chipin-profile-menu-label {
    font-size: 1rem;
    font-weight: 700;
    color: #212529;
}

.chipin-profile-menu-content {
    padding: 0.5rem;
}

.chipin-profile-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0.875rem;
    border-radius: 0.875rem;
    color: #212529;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.chipin-profile-menu-item:hover,
.chipin-profile-menu-item:focus,
.chipin-profile-menu-item:active {
    background-color: #f8f9fa;
    color: #212529;
}

.chipin-profile-menu-item.is-active {
    background-color: rgba(0, 190, 90, 0.08);
    color: #0c9f4e;
}

.chipin-profile-menu-icon {
    width: 1.25rem;
    text-align: center;
    color: #00be5a;
    flex-shrink: 0;
}

.chipin-login-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.chipin-login-btn:hover,
.chipin-login-btn:focus,
.chipin-login-btn:active {
    background-color: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-1px);
}

.chipin-login-btn .chipin-login-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: rgba(0, 190, 90, 0.2);
    color: #6ef0ad;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.chipin-header-logo-link {
    cursor: pointer;
    text-decoration: none;
}

@media (max-width: 575.98px) {
    .chipin-profile-menu {
        width: min(92vw, 18rem);
    }
}