﻿@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-ExtraBold.woff2") format("woff2"), url("../fonts/OpenSans-ExtraBold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-BoldItalic.woff2") format("woff2"), url("../fonts/OpenSans-BoldItalic.woff") format("woff");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Italic.woff2") format("woff2"), url("../fonts/OpenSans-Italic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-MediumItalic.woff2") format("woff2"), url("../fonts/OpenSans-MediumItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-ExtraBoldItalic.woff2") format("woff2"), url("../fonts/OpenSans-ExtraBoldItalic.woff") format("woff");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-LightItalic.woff2") format("woff2"), url("../fonts/OpenSans-LightItalic.woff") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Medium.woff2") format("woff2"), url("../fonts/OpenSans-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-SemiBoldItalic.woff2") format("woff2"), url("../fonts/OpenSans-SemiBoldItalic.woff") format("woff");
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}


*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


a {
    text-decoration: none;
    color: inherit;
}


ul {
    list-style: none;
}


h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
    text-align: center;
}


h1 {
    font-size: 2.5rem;
}


h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}


h3 {
    font-size: 1.5rem;
}


h4 {
    font-size: 1.25rem;
}


body, button, input, select {
    font-family: "Open Sans", sans-serif;
    color: #4a4a4a;
    font-size: 1rem;
}


body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}


.red-font {
    color: #bf1313;
}


header {
    position: fixed;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    background-color: hsla(0, 0%, 100%, .8);
    backdrop-filter: blur(4px);
    z-index: 10;
}


header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 50px;
}


.logo img {
    height: 50px;
}


.header-menu-list, .mobile-header-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.mobile-header-menu-list {
    flex-direction: column;
    align-items: center;
}


.header-button {
    border: none;
    background: none;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: all .5s ease;
}


.header-button:hover {
    text-shadow: 1px 1px 2px rgba(74, 74, 74, .5);
}


.header-button:hover::before {
    width: 100%;
    left: 0;
}


.header-button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #4a4a4a;
    border-radius: 9999px;
    transition: all .5s ease;
}


#mobile-header-menu {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 9;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 100px 50px;
    gap: 20px;
    width: 100%;
    transition: all .5s ease;
}


#mobile-header-menu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


#mobile-header-menu button, #mobile-header-menu a {
    font-size: 1.5rem;
}


#mobile-menu-btn-wrapper {
    display: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: none;
    background-color: rgba(0, 0, 0, 0);
}


#mobile-menu-btn {
    position: relative;
    background-color: #4a4a4a;
    width: 32px;
    height: 4px;
    border-radius: 9999px;
}


#mobile-menu-btn::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    background-color: #4a4a4a;
    width: 32px;
    height: 4px;
    border-radius: 9999px;
}


#mobile-menu-btn::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    background-color: #4a4a4a;
    width: 32px;
    height: 4px;
    border-radius: 9999px;
}


#mobile-page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: all .5s ease;
}


#mobile-page-overlay.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}


main {
    flex: 1;
    margin-top: 100px;
}


footer {
    margin-top: 20px;
    border-top: 1px solid #e0e0e0;
}


footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}


footer .container > a {
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: all .5s ease;
}


footer .container > a:hover {
    border: 1px solid #4a4a4a;
}


footer p {
    text-indent: 0;
    margin-bottom: 0;
}


footer p a:hover {
    text-decoration: underline;
}


footer a {
    color: #4a4a4a;
}


.footer-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.web-settings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.container {
    width: min(95%, 1200px);
    margin: 0 auto;
}


.btn {
    color: #4a4a4a;
    font-size: 1rem;
    padding: 4px 12px;
    cursor: pointer;
    border: 2px solid #d95e5e;
    background-color: #fff;
    transition: all .5s ease;
    border-radius: 4px;
}


.btn:hover {
    background-color: #f0f0f0;
}


.font-color-red {
    color: red;
}


.pagination {
    text-align: center;
    margin: 5px;
}


.pagination span {
    margin: 0 10px;
}


.pagination a {
    text-decoration: underline;
    transition: all .5s ease;
}


.pagination a:hover {
    text-decoration: underline;
    text-shadow: 1px 1px 1px rgba(74, 74, 74, .5);
}


.breadcrumb {
    margin: 10px 0;
}


.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
}


.breadcrumb a {
    text-decoration: underline;
    transition: all .5s ease;
}


.breadcrumb a:hover {
    text-shadow: 1px 1px 1px rgba(74, 74, 74, .5);
}


input, textarea {
    padding: 5px;
}


.header-search-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}


.search-input {
    border: 1px solid #4a4a4a;
    padding: 5px;
    width: 140px;
}


.break-word {
    word-break: break-word;
    overflow-wrap: break-word;
}


#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    color: #000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 20;
    gap: 10px;
    border-top: 1px solid #000;
    text-align: center;
}


#cookie-banner a {
    color: #000;
    text-decoration: underline;
}


.cookie-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}


.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
}


.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.social-link:hover .social-icon {
    transform: scale(1.1);
}


.social-icon {
    width: 80%;
    height: 80%;
    transition: all .5s ease;
}


.scaled-icon {
    transform: scale(0.85);
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip-path: inset(50%);
    overflow: hidden;
    white-space: nowrap;
}


.listing-error-toast {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 30;
    width: min(420px, calc(100vw - 32px));
    padding: 16px 48px 16px 18px;
    border: 2px solid #d95e5e;
    border-left: 6px solid #bf1313;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(74, 74, 74, .18);
    color: #4a4a4a;
}


.listing-error-toast p {
    margin: 0;
    line-height: 1.45;
}


.listing-error-toast-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #bf1313;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
}


.listing-error-toast-close:hover {
    text-shadow: 1px 1px 2px rgba(74, 74, 74, .3);
}


@media (max-width: 1000px) {
    #mobile-menu-btn-wrapper {
        display: flex;
    }


    #header-menu, .search-box, header .social-link {
        display: none;
    }


    .mobile-search-box {
        display: block;
        margin-bottom: 20px;
    }


    footer .container {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }


    .footer-menu-list {
        flex-direction: column;
        gap: 10px;
    }

}

@media (max-width: 800px) {
    .header-button {
        text-decoration: underline;
    }

}

@media (max-width: 600px) {
    .listing-error-toast {
        top: 76px;
        right: 12px;
        width: calc(100vw - 24px);
    }


    .mobile-search-box #search-input {
        width: 150px;
        display: block;
        margin-bottom: 5px;
    }


    .mobile-search-box #search-button {
        display: block;
        margin: 0 auto;
    }


    .breadcrumb {
        font-size: 1.25rem;
    }

}

@media (max-width: 500px) {
    .btn {
        font-size: 1.25rem;
    }


    .web-settings {
        flex-direction: column;
        gap: 10px;
    }

}



