/*------------------------------------- Header ---------------------------------------*/
.container .navbar {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    max-width: 1920px;
    margin: 0 auto;
}

.container .navbar .right {
    display: flex;
    align-items: center;
}

.container .navbar .right a {
    font-size: 15px;
    font-family: 'YekanBakhFaNum-Regular', sans-serif;
    color: black;
    padding: 13px;
    border-radius: 50px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.container .navbar .right a:hover {
    background-color: #f9f9f9;
    box-shadow: 0 0 5px #dddddd;
    transition: all 0.3s;
}

.container .navbar .right #main span {
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
}

.container .navbar .right a img {
    width: 40px;
    margin-top: -6px;
    height: 40px;
}

.container .navbar .center {
    position: relative;
}

.container .navbar .center #search-box {
    padding: 13px;
    font-size: 14px;
    border: 1px solid #cccccc;
    border-radius: 50px;
    width: 300px;
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
}

.container .navbar .center #search-box::placeholder {
    color: #a3a3a3;
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
}

.container .navbar .center #search-box:-ms-input-placeholder {
    color: #a3a3a3;
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
}

.container .navbar .center #search-box::-ms-input-placeholder {
    color: #a3a3a3;
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
}

.container .navbar .center #search-box:focus {
    outline: none;
    border: 1px solid #aaaaaa;
    transition: all 0.3s;
}

.container .navbar .center .list-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    border-radius: 10px;
    overflow-y: scroll;
    max-height: 70vh;
}

.container .navbar .center .list-item::-webkit-scrollbar {
    display: none;
}

.container .navbar .center .list-item {
    overflow: -moz-scrollbars-none;
}

.container .navbar .center .list-item .item {
    display: flex;
    gap: 10px;
    width: 300px;
    background-color: white;
    padding: 10px;
    border: 1px solid #cccccc;
}

.container .navbar .center .list-item .item:first-child {
    border-radius: 10px 10px 0 0;
}

.container .navbar .center .list-item .item:nth-child(even) {
    background-color: #f7f7f7;
}

.container .navbar .center .list-item .item:last-child {
    border-radius: 0 0 10px 10px;
}

.container .navbar .center .list-item .item .image {
    width: 100px;
    height: 100px;
}

.container .navbar .center .list-item .item .details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.container .navbar .center .list-item .item .details .title {
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
    font-size: 17px;
    color: black;
}

.container .navbar .center .list-item .item .details .price {
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
    font-size: 14px;
    color: #aaaaaa;
}

.container .navbar .left #login {
    background-color: black;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-family: 'YekanBakhFaNum-SemiBold', sans-serif;
}

.container .navbar .left #login:hover {
    box-shadow: 0 0 5px 3px #ffdc73;
    transition: all 0.3s;
}

.container .navbar .left #login img {
    width: 50px;
    height: 50px;
}

.hide {
    display: none !important;
}

@media all and (max-width: 850px) {
    .container .navbar .right {
        gap: 5px;
    }

    .container .navbar .right a {
        font-size: 16px;
    }
}

/*------------------------------------- Footer ---------------------------------------*/
.container footer {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #171d1e;
    flex-direction: column;
}

.container footer .section {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 95%;
    margin: 35px auto;
    gap: 20px;
}

.container footer .section .section-right {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-evenly;
}

.container footer .section .section-right .detail {
    font-family: "YekanBakhFaNum-Regular", sans-serif;
    font-size: 15px;
    text-align: justify;
    color: wheat;
    min-width: fit-content;
    max-width: 100%;
}

.container footer .section .section-left {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-evenly;
}

.container footer .section .section-left .link {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: fit-content;
    max-width: 100%;
}

.container footer .section .section-left .link h6,
.container footer .section .section-left .contact h6,
.container footer .section .section-right .credits h6 {
    font-family: "YekanBakhFaNum-Regular", sans-serif;
    font-size: 17px;
    color: #dddddd;
}

.container footer .section .section-left .link a {
    font-size: 15px;
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
}

.container footer .section .section-right .credits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.container footer .section .section-left .contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: fit-content;
    max-width: 100%;
}

.container footer .section .section-left .contact p {
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
    font-size: 15px;
    color: #dddddd;
}

.container footer .section .section-left .contact p a {
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
    font-size: 15px;
}

.container footer .copy-right {
    border-top: 1px solid #eaeaea;
    padding: 20px 0;
    color: #dddddd;
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
    font-size: 14px;
    text-align: center;
}

.container footer .copy-right a {
    font-family: "YekanBakhFaNum-SemiBold", sans-serif;
    font-size: 18px;
}

@media all and (max-width: 1600px) {
    .container footer .section .section-right {
        flex-direction: column;
        align-items: stretch;
        width: 49%;
    }

    .container footer .section .section-left {
        flex-direction: column;
        align-items: stretch;
        width: 49%;
    }
}

@media all and (max-width: 1100px) {
    .container footer .section .section-left .contact {
        width: 100%;
    }
}

@media all and (max-width: 950px) {
    .container footer {
        gap: 5px;
        padding: 25px 0;
    }

    .container footer .section {
        flex-direction: column;
        gap: 15px;
    }

    .container footer .section .section-right {
        width: 100%;
        gap: 15px;
    }

    .container footer .section .section-left {
        width: 100%;
        gap: 15px;
    }

    .container footer .section .section-right .detail,
    .container footer .section .section-right .credits,
    .container footer .section .section-left .link {
        padding-bottom: 10px;
        border-bottom: 1px solid #cccccc;
    }

    .container footer .copy-right {
        margin-top: 15px;
        padding-top: 20px;
    }
}