/* ========================================
   MEMBER PAGE
======================================== */

.member-page {
    width: 100%;

    min-height: 100vh;
    min-height: 100dvh;

    background:
        radial-gradient(
            ellipse at 50% 0%,
            #0a0a0a 0%,
            #050505 45%,
            #000000 100%
        );

    color: #ffffff;

    padding: 120px 40px 60px;
}


/* ========================================
   INNEHÅLL
======================================== */

.member-content {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
}


/* ========================================
   LITEN NOTAN LOGO
======================================== */

.member-logo {
    margin-bottom: 70px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 5px;
}


/* ========================================
   RUBRIK
======================================== */

.member-title {
    margin-bottom: 12px;

    font-size: 42px;
    font-weight: 500;

    letter-spacing: -1px;
}


.member-subtitle {
    margin-bottom: 45px;

    color: rgba(255, 255, 255, 0.38);

    font-size: 14px;
}


/* ========================================
   SÖK RESTAURANG
======================================== */

.restaurant-search {
    position: relative;

    width: 100%;
    max-width: 600px;
}


.restaurant-search input {
    width: 100%;
    height: 58px;

    padding: 0 55px 0 20px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    color: #ffffff;

    font-size: 15px;

    outline: none;

    transition: 0.2s;
}


.restaurant-search input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}


.restaurant-search input:focus {
    border-color: rgba(245, 196, 81, 0.55);

    background: rgba(255, 255, 255, 0.055);
}


/* ========================================
   TA BORT WEBBLÄSARENS X I SEARCH
======================================== */

.restaurant-search input::-webkit-search-cancel-button {
    display: none;
}


/* ========================================
   SÖKIKON
======================================== */

.search-icon {
    position: absolute;

    top: 50%;
    right: 20px;

    transform: translateY(-50%);

    color: #f5c451;

    font-size: 18px;

    pointer-events: none;
}


/* ========================================
   RESTAURANG SEKTION
======================================== */

.restaurant-section {
    width: 100%;
    max-width: 600px;

    margin-top: 65px;
}


.restaurant-section-title {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 2.5px;
}


/* ========================================
   RESULTAT
======================================== */

.restaurant-results {
    width: 100%;
}


/* ========================================
   RESTAURANG
======================================== */

.restaurant-result {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 20px 0;

    background: transparent;

    border: none;
    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    color: #ffffff;

    text-align: left;

    font-family: inherit;

    cursor: pointer;

    transition:
        opacity 0.2s,
        padding 0.2s;
}


.restaurant-result:last-child {
    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}


.restaurant-result:hover {
    padding-left: 8px;

    opacity: 0.82;
}


/* ========================================
   RESTAURANG INFO
======================================== */

.restaurant-result-main {
    flex: 1;

    min-width: 0;
}


.restaurant-name {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 500;

    line-height: 1.3;
}


.restaurant-address {
    margin: 0;

    color: rgba(255, 255, 255, 0.34);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}


/* ========================================
   GOOGLE BETYG
======================================== */

.restaurant-google-rating {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 6px;

    white-space: nowrap;
}


.restaurant-star {
    color: #f5c451;

    font-size: 16px;
}


.restaurant-rating-number {
    color: rgba(255, 255, 255, 0.9);

    font-size: 14px;
    font-weight: 500;
}


.restaurant-rating-count {
    margin-left: 3px;

    color: rgba(255, 255, 255, 0.28);

    font-size: 11px;
}


/* ========================================
   TOMT LÄGE / SÖKER / FEL
======================================== */

.restaurant-empty {
    width: 100%;

    padding: 30px 0;

    border-top:
        1px solid rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.28);

    font-size: 13px;
}


/* ========================================
   DÖLJ
======================================== */

.member-page.hidden {
    display: none;
}


/* ========================================
   MOBIL
======================================== */

@media (max-width: 600px) {

    .member-page {
        padding:
            120px
            28px
            50px;
    }


    .member-logo {
        margin-bottom: 55px;

        font-size: 11px;

        letter-spacing: 4px;
    }


    .member-title {
        font-size: 31px;

        letter-spacing: -0.5px;
    }


    .member-subtitle {
        margin-bottom: 35px;

        font-size: 13px;

        line-height: 1.5;
    }


    /* ====================================
       SÖK
    ==================================== */

    .restaurant-search {
        max-width: none;
    }


    .restaurant-search input {
        height: 54px;

        font-size: 16px;
    }


    /* ====================================
       RESULTAT
    ==================================== */

    .restaurant-section {
        max-width: none;

        margin-top: 50px;
    }


    .restaurant-result {
        align-items: flex-start;

        gap: 15px;

        padding: 18px 0;
    }


    .restaurant-result:hover {
        padding-left: 0;

        opacity: 1;
    }


    .restaurant-name {
        font-size: 15px;
    }


    .restaurant-address {
        max-width: 220px;

        font-size: 11px;
    }


    /* ====================================
       BETYG MOBIL
    ==================================== */

    .restaurant-google-rating {
        display: grid;

        grid-template-columns:
            auto
            auto;

        gap: 2px 5px;

        justify-content: end;
    }


    .restaurant-star {
        grid-column: 1;

        font-size: 15px;
    }


    .restaurant-rating-number {
        grid-column: 2;

        font-size: 13px;
    }


    .restaurant-rating-count {
        grid-column: 1 / 3;

        margin: 3px 0 0;

        text-align: right;

        font-size: 9px;
    }

}