﻿/* HOME CSS */


/* SEARCH SECTION */

.search {
    border-bottom: 1px solid #ddd;
    padding: 2rem 0;
    background-color: #f6f8f2;
}

.search-options {
    justify-content: space-between;
    background-color: #fff;
}

    .search-options::before,
    .search-options::after {
        content: none;
    }

.search-container {
    border: 1px solid #ddd;
}

.search-options a {
    font-size: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    padding: 1rem 1rem;
    justify-content: center;
}

    .search-options a:hover,
    .search-options a.active,
    .search-options a:active {
        background-color: #f6f8f2;
        border-bottom: 3px solid #729961;
        text-decoration: none;
    }

.searchbox input[type="text"] {
    border: none;
    border-top: 1px solid #ddd;
    color: #333;
    font-weight: 600;
    background-color: #fff;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    padding-right: 8rem;
    font-size: 1.8rem;
}

.searchbox {
    position: relative;
}

    .searchbox i {
        color: #8b8b8b;
        top: 50%;
        right: 1.5rem;
        position: absolute;
        transform: translateY(-50%);
        font-size: 2rem;
        padding: 10px;
    }

@media (max-width: 768px) {
    .search {
        padding: 0;
    }

    .search-container {
        border: none;
    }

    #searchbar {
        border: none;
        background-color: #f6f8f2;
    }
}


/* MAP */
#map {
    width: 100%;
    height: 400px;
    background-color: grey;
    border-bottom: 1px solid #ddd;
}

/*  Favourites Section 
    Near Me Section 
*/

.listing {
    /*border-bottom: 1px solid #ddd;*/
    padding: 3rem 0;
}

.listing-header {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

    .listing-header::before,
    .listing-header::after {
        content: none;
    }

    .listing-header h3 {
        font-weight: 600;
        font-size: 2rem;
        margin: 0 1.5rem;
    }

.merchant-list-header h3 {
    font-size: 1.6rem;
}

.listing-header a {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: #333;
}

@media (max-width: 768px) {
    .listing-header {
        margin-bottom: 0;
    }

    .listing {
        padding: 1.5rem 0;
    }

    #add-fav span {
        display: none;
    }
}


/* Favourites Card Style */
.scroll-wrapper {
    margin: 0 -1.5rem;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.fav-card {
    display: inline-block;
    padding: 1.5rem;
    width: 250px;
    color: #333;
}

    .fav-card:hover {
        border: 1px solid #ddd;
        color: #333;
        -webkit-box-shadow: 0 0px 10px -6px #777;
        -moz-box-shadow: 0 0px 10px -6px #777;
        box-shadow: 0 0px 10px -6px #777;
    }

    .fav-card img {
        width: 100%;
    }
