﻿.water-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.water-header-inner {
    max-width: 1180px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.water-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--aqua);
    text-decoration: none;
}

.water-profile-wrap {
    position: relative;
}

.water-profile-btn {
    border: none;
    background: white;
    border-radius: 14px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
}

.water-profile-menu {
    position: absolute;
    top: 52px;
    right: 0;
    width: 180px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(0,0,0,.12);
    padding: 10px;
}

    .water-profile-menu a,
    .water-profile-menu button {
        width: 100%;
        display: block;
        padding: 12px;
        border: none;
        background: transparent;
        text-align: left;
        text-decoration: none;
        color: #222;
        border-radius: 12px;
        cursor: pointer;
    }

        .water-profile-menu a:hover,
        .water-profile-menu button:hover {
            background: #f4f8fb;
        }

@media (max-width:768px) {

    .water-header-inner {
        padding: 12px;
    }

    .water-brand {
        font-size: 1.1rem;
    }
}
