/* /Layout/Footer.razor.rz.scp.css */
/* ======== DESKTOP ======== */

.footer[b-d39dh4o17j] {
    margin-top: 40px;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    background: #f3f3f3;
    border-top: 6px solid #fbc02d;
    font-family: Bahnschrift, sans-serif;
}

.footer-section .footer-title[b-d39dh4o17j] {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: black;
}

.footer-section .footer-subtitle[b-d39dh4o17j] {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.footer-section p[b-d39dh4o17j] {
    margin: 4px 0;
    color: #444;
    font-size: 15px;
}

.footer-section a[b-d39dh4o17j] {
    display: block;
    margin: 5px 0;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    transition: 0.2s;
}

    .footer-section a:hover[b-d39dh4o17j] {
        color: #fbc02d;
        transform: translateX(3px);
    }

/* Нижняя линия */
.footer-bottom[b-d39dh4o17j] {
    text-align: center;
    padding: 14px 0;
    background: #1a1a1a;
    color: #fbc02d;
    font-size: 14px;
    letter-spacing: 0.5px;
}



/* ======== TABLET (≤ 900px) ======== */

@media (max-width: 900px) {
    .footer[b-d39dh4o17j] {
        padding: 35px 20px;
        gap: 30px;
    }

    .footer-section .footer-title[b-d39dh4o17j] {
        font-size: 24px;
    }

    .footer-section .footer-subtitle[b-d39dh4o17j] {
        font-size: 17px;
    }

    .footer-section p[b-d39dh4o17j],
    .footer-section a[b-d39dh4o17j] {
        font-size: 14px;
    }
}



/* ======== MOBILE (≤ 600px) ======== */

@media (max-width: 600px) {
    .footer[b-d39dh4o17j] {
        grid-template-columns: 1fr; /* всё в один столбец */
        text-align: center;
        gap: 24px;
        padding: 30px 15px;
    }

    .footer-section .footer-title[b-d39dh4o17j] {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .footer-section .footer-subtitle[b-d39dh4o17j] {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .footer-section a[b-d39dh4o17j] {
        margin: 3px 0;
        font-size: 15px;
    }

    .footer-section p[b-d39dh4o17j] {
        font-size: 14px;
    }
}



/* ======== SMALL MOBILE (≤ 400px) ======== */

@media (max-width: 400px) {
    .footer[b-d39dh4o17j] {
        padding: 24px 12px;
    }

    .footer-section .footer-title[b-d39dh4o17j] {
        font-size: 20px;
    }

    .footer-section .footer-subtitle[b-d39dh4o17j] {
        font-size: 15px;
    }

    .footer-bottom[b-d39dh4o17j] {
        font-size: 12px;
    }
}
/* /Layout/Header.razor.rz.scp.css */
/* ========== DESKTOP (основной стиль) ========== */

.construction-header[b-52goyg19wz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #1a1a1a;
    border-bottom: 6px solid #fbc02d;
    font-family: Bahnschrift, sans-serif;
    position: relative;
}

#appname[b-52goyg19wz] {
    font-size: 32px;
    font-weight: 700;
    color: #fbc02d;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0 black;
}

#links[b-52goyg19wz] {
    display: flex;
    align-items: center;
    gap: 28px;
}

.construction-header a[b-52goyg19wz] {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
}

    .construction-header a:hover[b-52goyg19wz] {
        color: #fbc02d;
    }

#publish-btn[b-52goyg19wz] {
    padding: 10px 18px;
    border-radius: 8px;
    background: #fbc02d;
    color: black;
    font-weight: 700;
    border: 2px solid black;
    transition: 0.2s;
}

    #publish-btn:hover[b-52goyg19wz] {
        background: #ffd54f;
        transform: translateY(-2px);
    }

/* бургер — по умолчанию скрыт */
#burger[b-52goyg19wz] {
    display: none;
    font-size: 28px;
    color: #fbc02d;
    cursor: pointer;
}

/* мобильное меню (скрыто) */
#mobile-menu[b-52goyg19wz] {
    display: none;
    flex-direction: column;
    background: #1a1a1a;
    padding: 12px 20px;
    border-bottom: 4px solid #fbc02d;
}

    #mobile-menu.open[b-52goyg19wz] {
        display: flex;
    }

    #mobile-menu a[b-52goyg19wz] {
        padding: 10px 0;
        color: white;
        text-decoration: none;
        font-size: 18px;
        border-bottom: 1px solid #333;
    }



/* ========== TABLET (1024px → уменьшение размеров) ========== */

@media (max-width: 1024px) {
    #appname[b-52goyg19wz] {
        font-size: 26px;
    }

    #links[b-52goyg19wz] {
        gap: 20px;
    }

    .construction-header a[b-52goyg19wz] {
        font-size: 15px;
    }

    #publish-btn[b-52goyg19wz] {
        padding: 8px 14px;
        font-size: 15px;
    }
}



/* ========== MOBILE (768px → бургер меню) ========== */

@media (max-width: 768px) {
    #links[b-52goyg19wz] {
        display: none; /* скрываем обычное меню */
    }

    #burger[b-52goyg19wz] {
        display: block;
    }

    #appname[b-52goyg19wz] {
        font-size: 24px;
    }

    .construction-header[b-52goyg19wz] {
        padding: 14px 16px;
    }
}



/* ========== SMALL MOBILE (480px → ещё компактнее) ========== */

@media (max-width: 480px) {
    #appname[b-52goyg19wz] {
        font-size: 20px;
        letter-spacing: 0.5px;
    }

    #burger[b-52goyg19wz] {
        font-size: 26px;
    }

    #mobile-menu a[b-52goyg19wz] {
        font-size: 16px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* /Layout/SearchBar.razor.rz.scp.css */
/* ======== ОБЁРТКА ======== */
.search-wrapper[b-7f3vehjvz8] {
    position: relative;
    width: 100%;
    background: #fff;
}

/* ======== СТРОКА ПОИСКА ======== */
.search-bar[b-7f3vehjvz8] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    font-family: Bahnschrift, sans-serif;
}

/* Поле ввода */
.search-input[b-7f3vehjvz8] {
    flex: 1;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid #ddd;
    background: #fafafa;
    transition: 0.2s;
}

    .search-input:focus[b-7f3vehjvz8] {
        border-color: #fbc02d;
        background: #fff;
    }

/* Кнопка "Фильтры" */
.search-filter-btn[b-7f3vehjvz8] {
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid #ccc;
    background: #f3f3f3;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

    .search-filter-btn:hover[b-7f3vehjvz8] {
        background: #e9e9e9;
    }

/* Кнопка "Найти" */
.search-action-btn[b-7f3vehjvz8] {
    padding: 12px 20px;
    border-radius: 10px;
    background: #fbc02d;
    color: black;
    border: 2px solid #111;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

    .search-action-btn:hover[b-7f3vehjvz8] {
        background: #ffd54f;
        transform: translateY(-2px);
    }

/* ======== ВЫПАДАЮЩИЕ ФИЛЬТРЫ ======== */
.filters-panel[b-7f3vehjvz8] {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% - 2px);
    background: white;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 20px 18px;
    z-index: 200;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
    animation: fadeIn-b-7f3vehjvz8 0.18s ease-out;
    font-family: Bahnschrift, sans-serif;
}

@keyframes fadeIn-b-7f3vehjvz8 {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filters-title[b-7f3vehjvz8] {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.filter-item[b-7f3vehjvz8] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

    .filter-item input[b-7f3vehjvz8],
    .filter-item select[b-7f3vehjvz8] {
        padding: 12px 14px;
        border: 2px solid #ccc;
        border-radius: 10px;
        transition: 0.2s;
    }

        .filter-item input:focus[b-7f3vehjvz8],
        .filter-item select:focus[b-7f3vehjvz8] {
            border-color: #fbc02d;
        }

/* Кнопка "Применить" */
.apply-btn[b-7f3vehjvz8] {
    width: 100%;
    padding: 14px;
    background: #fbc02d;
    border-radius: 12px;
    border: 2px solid #111;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

    .apply-btn:hover[b-7f3vehjvz8] {
        background: #ffd54f;
        transform: translateY(-2px);
    }



/* ======== TABLET (≤ 900px) ======== */

@media (max-width: 900px) {
    .search-bar[b-7f3vehjvz8] {
        padding: 14px 16px;
        gap: 10px;
    }

    .search-input[b-7f3vehjvz8] {
        font-size: 15px;
        padding: 10px 14px;
    }

    .search-action-btn[b-7f3vehjvz8],
    .search-filter-btn[b-7f3vehjvz8] {
        padding: 10px 12px;
        font-size: 15px;
    }
}



/* ======== MOBILE (≤ 600px) ======== */

@media (max-width: 600px) {

    .search-bar[b-7f3vehjvz8] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px 14px;
    }

    .search-input[b-7f3vehjvz8] {
        width: 100%;
        font-size: 16px;
    }

    .search-filter-btn[b-7f3vehjvz8],
    .search-action-btn[b-7f3vehjvz8] {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .filters-panel[b-7f3vehjvz8] {
        left: 10px;
        right: 10px;
        padding: 16px;
    }

    .filters-title[b-7f3vehjvz8] {
        font-size: 18px;
    }
}



/* ======== SMALL MOBILE (≤ 400px) ======== */

@media (max-width: 400px) {
    .search-bar[b-7f3vehjvz8] {
        padding: 12px;
    }

    .search-input[b-7f3vehjvz8] {
        font-size: 15px;
        padding: 10px 12px;
    }

    .search-filter-btn[b-7f3vehjvz8],
    .search-action-btn[b-7f3vehjvz8] {
        padding: 10px;
        font-size: 14px;
    }
}
/* /Pages/About.razor.rz.scp.css */
.about-container[b-onsgcrokj1] {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 18px 60px;
    font-family: Bahnschrift, sans-serif;
}

.about-title[b-onsgcrokj1] {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-subtitle[b-onsgcrokj1] {
    font-size: 16px;
    color: #444;
    margin-bottom: 32px;
}

/* Блок */
.about-block[b-onsgcrokj1] {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

    .about-block h2[b-onsgcrokj1] {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .about-block p[b-onsgcrokj1] {
        font-size: 15px;
        line-height: 1.5;
        color: #555;
    }

.about-list[b-onsgcrokj1] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .about-list li[b-onsgcrokj1] {
        padding-left: 18px;
        position: relative;
        margin-bottom: 10px;
        font-size: 15px;
        color: #444;
    }

        .about-list li[b-onsgcrokj1]::before {
            content: "•";
            color: #fbc02d;
            font-size: 20px;
            position: absolute;
            left: 0;
            top: -1px;
        }

/* Кнопка */
.about-btn[b-onsgcrokj1] {
    margin-top: 16px;
    padding: 12px 20px;
    background: #fbc02d;
    border-radius: 10px;
    border: 2px solid #111;
    font-weight: 700;
    cursor: pointer;
    transition: 0.15s;
}

    .about-btn:hover[b-onsgcrokj1] {
        background: #ffd54f;
        transform: translateY(-2px);
    }

/* Mobile */
@media (max-width: 600px) {
    .about-title[b-onsgcrokj1] {
        font-size: 26px;
    }

    .about-block[b-onsgcrokj1] {
        padding: 20px;
    }
}
/* /Pages/ForemanFull.razor.rz.scp.css */
/* ================================
   КОНТЕЙНЕР
================================ */
.container[b-86n5h38g07] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    font-family: Bahnschrift, sans-serif;
}

/* ================================
   ЗАГОЛОВОК БРИГАДЫ
================================ */
.foreman-title[b-86n5h38g07] {
    font-size: 32px;
    font-weight: 800;
    margin: 24px 0 10px;
    color: #222;
    border: none !important;
    outline: none !important;
}

/* ================================
   ГЛАВНАЯ СЕТКА (DESKTOP)
================================ */
.info-grid[b-86n5h38g07] {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    margin-top: 20px;
}

/* ================================
   ЛЕВАЯ КОЛОНКА
================================ */
.left-info .foreman-block[b-86n5h38g07] {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 20px;
}

/* ================================
   ПРАВАЯ КОЛОНКА
================================ */
.right-panel .foreman-block[b-86n5h38g07] {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 18px;
}

.right-panel h3[b-86n5h38g07] {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

/* ================================
   СПИСКИ И МЕТА
================================ */
.info-list[b-86n5h38g07] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .info-list li[b-86n5h38g07] {
        margin-bottom: 8px;
        font-size: 16px;
        color: #444;
    }

.meta-row[b-86n5h38g07] {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 12px;
    color: #666;
}

/* ================================
   РЕЙТИНГ
================================ */
.rating-row[b-86n5h38g07] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.star[b-86n5h38g07] {
    font-size: 22px;
    color: #ccc;
}

    .star.full[b-86n5h38g07] {
        color: #fbc02d;
    }

.rating-number[b-86n5h38g07] {
    font-size: 16px;
    font-weight: 700;
}

/* ================================
   ЦЕНА
================================ */
.price-block[b-86n5h38g07] {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
}

/* ================================
   КНОПКА ПОКАЗАТЬ НОМЕР
================================ */
.call-btn[b-86n5h38g07] {
    width: 100%;
    background: #fbc02d;
    border: 2px solid #111;
    padding: 15px 0;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

    .call-btn:hover[b-86n5h38g07] {
        background: #ffd54f;
    }

    .call-btn.phone-revealed[b-86n5h38g07] {
        background: #fff5cc;
    }

/* ================================
   ГАЛЕРЕЯ
================================ */
.gallery[b-86n5h38g07] {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.gallery-main[b-86n5h38g07] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.gallery-btn[b-86n5h38g07] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    border: none;
    color: white;
    font-size: 32px;
    width: 46px;
    height: 70px;
    cursor: pointer;
    border-radius: 4px;
}

    .gallery-btn.left[b-86n5h38g07] {
        left: 8px;
    }

    .gallery-btn.right[b-86n5h38g07] {
        right: 8px;
    }

/* Миниатюры */
.gallery-thumbs[b-86n5h38g07] {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.thumb[b-86n5h38g07] {
    width: 90px;
    height: 66px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.65;
    cursor: pointer;
    transition: 0.2s;
}

    .thumb.active-thumb[b-86n5h38g07] {
        opacity: 1;
        border: 3px solid #fbc02d;
    }

/* ================================
   ОТЗЫВЫ
================================ */
.review[b-86n5h38g07] {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.review-header[b-86n5h38g07] {
    display: flex;
    justify-content: space-between;
}

.review-photos[b-86n5h38g07] {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.review-photo[b-86n5h38g07] {
    width: 120px;
    height: 85px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

/* ================================
   VIEWER
================================ */
.viewer-overlay[b-86n5h38g07] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.viewer-inner[b-86n5h38g07] {
    position: relative;
    max-width: 92%;
    max-height: 92%;
}

.viewer-photo[b-86n5h38g07] {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.viewer-close-btn[b-86n5h38g07] {
    position: absolute;
    top: -50px;
    right: 0;
    font-size: 36px;
    color: #fff;
    border: none;
    background: none;
    cursor: pointer;
}

.viewer-btn[b-86n5h38g07] {
    position: absolute;
    top: 50%;
    font-size: 44px;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    width: 55px;
    height: 85px;
    cursor: pointer;
}

    .viewer-btn.left[b-86n5h38g07] {
        left: -60px;
    }

    .viewer-btn.right[b-86n5h38g07] {
        right: -60px;
    }

/* ================================
   ANIMATION
================================ */
.fade-enter[b-86n5h38g07] {
    opacity: 0;
}

.fade-enter-active[b-86n5h38g07] {
    opacity: 1;
    transition: opacity .25s;
}

/* ================================
   TABLET (≤ 900px)
================================ */
@media (max-width: 900px) {
    .info-grid[b-86n5h38g07] {
        grid-template-columns: 1fr;
    }

    .gallery[b-86n5h38g07] {
        height: 320px;
    }

    .right-panel .foreman-block[b-86n5h38g07] {
        order: -1;
    }

    .foreman-title[b-86n5h38g07] {
        border: none !important;
        outline: none !important;
        font-size: 28px;
    }
}

/* ================================
   MOBILE (≤ 600px)
================================ */
@media (max-width: 600px) {
    .foreman-title[b-86n5h38g07] {
        border: none !important;
        outline: none !important;
        font-size: 24px;
        margin-top: 16px;
    }

    .gallery[b-86n5h38g07] {
        height: 260px;
    }

    .gallery-btn[b-86n5h38g07] {
        width: 38px;
        height: 58px;
        font-size: 26px;
    }

    .thumb[b-86n5h38g07] {
        width: 70px;
        height: 52px;
    }

    .call-btn[b-86n5h38g07] {
        font-size: 15px;
    }
}

/* ================================
   SMALL MOBILE (≤ 400px)
================================ */
@media (max-width: 400px) {
    .gallery[b-86n5h38g07] {
        height: 220px;
    }

    .foreman-title[b-86n5h38g07] {
        border: none !important;
        outline: none !important;
        font-size: 22px;
    }

    .thumb[b-86n5h38g07] {
        width: 62px;
        height: 45px;
    }
}

body[b-86n5h38g07], html[b-86n5h38g07] {
    overflow-x: hidden !important;
}

*[b-86n5h38g07] {
    box-sizing: border-box;
}

.foreman-page[b-86n5h38g07],
.container[b-86n5h38g07],
.info-grid[b-86n5h38g07],
.left-info[b-86n5h38g07],
.right-panel[b-86n5h38g07],
.foreman-block[b-86n5h38g07],
.gallery[b-86n5h38g07] {
    overflow-x: hidden !important;
}

.foreman-block[b-86n5h38g07],
.gallery[b-86n5h38g07] {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 14px;
    overflow: hidden; /* ← ГЛАВНОЕ */
}
/* /Pages/Foremans.razor.rz.scp.css */
/* ===========================
   ОБЩИЙ КОНТЕЙНЕР
=========================== */
.results[b-prjkbkl7l8] {
    padding: 10px 20px 30px;
    max-width: 900px;
    margin: 0 auto;
    font-family: Bahnschrift, sans-serif;
}

    .results h2[b-prjkbkl7l8] {
        font-size: 26px;
        font-weight: 800;
        margin: 20px 0;
        color: #222;
    }

/* ===========================
   СПИСОК КАРТОЧЕК
=========================== */
.cards[b-prjkbkl7l8] {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ===========================
   КАРТОЧКА
=========================== */
.card[b-prjkbkl7l8] {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    cursor: pointer;
    transition: 0.18s ease;
}

    .card:hover[b-prjkbkl7l8] {
        transform: translateY(-3px);
        box-shadow: 0 7px 20px rgba(0,0,0,0.12);
    }

/* ===========================
   ФОТО
=========================== */
.photo-wrap[b-prjkbkl7l8] {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

    .photo-wrap img[b-prjkbkl7l8] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ===========================
   КОНТЕНТ
=========================== */
.content[b-prjkbkl7l8] {
    padding: 20px 22px 24px;
}

    /* Название */
    .content h3[b-prjkbkl7l8] {
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 10px;
        color: #111;
    }

/* Рейтинг */
.rating[b-prjkbkl7l8] {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.stars[b-prjkbkl7l8] {
    color: #FFD600;
    font-size: 17px;
    margin-right: 6px;
}

.rating .count[b-prjkbkl7l8] {
    font-size: 14px;
    color: #666;
}

/* Локация и дата */
.meta[b-prjkbkl7l8] {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

/* Краткое описание */
.content p[b-prjkbkl7l8] {
    font-size: 15px;
    line-height: 1.4;
    color: #555;
    margin-bottom: 16px;
}

/* Нижняя строка */
.bottom[b-prjkbkl7l8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price[b-prjkbkl7l8] {
    font-size: 20px;
    font-weight: 800;
    color: #111;
}

.exp[b-prjkbkl7l8] {
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

/* ===========================
   TABLET (до 900px)
=========================== */
@media (max-width: 900px) {
    .results h2[b-prjkbkl7l8] {
        font-size: 24px;
    }

    .photo-wrap[b-prjkbkl7l8] {
        height: 260px;
    }

    .content h3[b-prjkbkl7l8] {
        font-size: 20px;
    }

    .content[b-prjkbkl7l8] {
        padding: 18px 20px;
    }

    .price[b-prjkbkl7l8] {
        font-size: 19px;
    }
}

/* ===========================
   MOBILE (до 600px)
=========================== */
@media (max-width: 600px) {
    .photo-wrap[b-prjkbkl7l8] {
        height: 200px;
    }

    .content[b-prjkbkl7l8] {
        padding: 16px 16px 20px;
    }

        .content h3[b-prjkbkl7l8] {
            font-size: 18px;
        }

    .stars[b-prjkbkl7l8] {
        font-size: 15px;
    }

    .rating .count[b-prjkbkl7l8] {
        font-size: 12px;
    }

    .meta[b-prjkbkl7l8] {
        font-size: 12px;
    }

    .content p[b-prjkbkl7l8] {
        font-size: 14px;
    }

    .price[b-prjkbkl7l8] {
        font-size: 18px;
    }
}

/* ===========================
   SMALL MOBILE (до 400px)
=========================== */
@media (max-width: 400px) {
    .photo-wrap[b-prjkbkl7l8] {
        height: 170px;
    }

    .content h3[b-prjkbkl7l8] {
        font-size: 17px;
    }

    .price[b-prjkbkl7l8] {
        font-size: 17px;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.home-container[b-x8lnbo8md0] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    font-family: Bahnschrift, sans-serif;
}

/* HERO */
.hero-block[b-x8lnbo8md0] {
    padding: 100px 0;
    text-align: center;
    padding: 40px 0 20px;
}

.hero-block h1[b-x8lnbo8md0] {
    font-size: 32px;
    font-weight: 800;
    border: none !important;
    outline: none !important;
}

.hero-block p[b-x8lnbo8md0] {
    font-size: 16px;
    color: #555;
    margin-top: 6px;
}

.hero-search[b-x8lnbo8md0] {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

    .hero-search input[b-x8lnbo8md0] {
        width: 260px;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1px solid #ccc;
        font-size: 15px;
    }

    .hero-search button[b-x8lnbo8md0] {
        padding: 12px 20px;
        background: #fbc02d;
        border: 1px solid #111;
        border-radius: 10px;
        font-weight: 700;
        cursor: pointer;
    }

/* CTA */
.cta[b-x8lnbo8md0] {
    text-align: center;
    padding: 50px 0;
    margin-top: 40px;
    background: #fff6d5;
    border-radius: 16px;
}

    .cta button[b-x8lnbo8md0] {
        margin-top: 14px;
        padding: 14px 24px;
        background: #fbc02d;
        border: 1px solid #111;
        border-radius: 10px;
        font-weight: 700;
        cursor: pointer;
    }
/* /Pages/NotFound.razor.rz.scp.css */
/* ================================
   ОСНОВНОЙ КОНТЕЙНЕР
================================ */
.not-found-container.construction-style[b-34ce0lvffj] {
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
    padding: 20px;
    font-family: Bahnschrift, sans-serif;
}

/* ================================
   КОРОБКА (ПЛАНШЕТКА)
================================ */
.not-found-box.construction-box[b-34ce0lvffj] {
    text-align: center;
    max-width: 460px;
    padding: 48px 38px;
    background: #ffffff;
    border: 3px solid #fbc02d;
    border-radius: 18px;
    box-shadow: 0 0 0 6px black inset, 0 4px 14px rgba(0,0,0,0.12);
    position: relative;
    animation: appear-b-34ce0lvffj 0.25s ease-out;
}

@keyframes appear-b-34ce0lvffj {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================================
   ИКОНКА
================================ */
.warning-icon[b-34ce0lvffj] {
    font-size: 54px;
    margin-bottom: 12px;
}

/* ================================
   ИНДЕКС 404
================================ */
.not-found-box h1[b-34ce0lvffj] {
    font-size: 82px;
    font-weight: 900;
    margin: 0;
    color: black;
    text-shadow: 3px 3px 0 #fbc02d;
}

/* ================================
   ПОДЗАГОЛОВОК
================================ */
.not-found-box h2[b-34ce0lvffj] {
    margin-top: 6px;
    font-size: 26px;
    font-weight: 700;
    color: #333;
}

/* ================================
   ТЕКСТ
================================ */
.not-found-box p[b-34ce0lvffj] {
    margin: 16px 0 32px;
    color: #555;
    font-size: 17px;
    line-height: 1.4;
}

/* ================================
   КНОПКА
================================ */
.not-found-box button[b-34ce0lvffj] {
    padding: 14px 30px;
    font-size: 17px;
    font-weight: 700;
    background: #fbc02d;
    color: black;
    border: 2px solid black;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

    .not-found-box button:hover[b-34ce0lvffj] {
        background: #ffd54f;
        transform: translateY(-2px);
    }

/* ================================
   СТРОИТЕЛЬНАЯ РАЗМЕТКА ВНИЗУ
================================ */
.not-found-box[b-34ce0lvffj]::after {
    content: "";
    display: block;
    width: 100%;
    height: 14px;
    background: repeating-linear-gradient( 45deg, #fbc02d, #fbc02d 14px, black 14px, black 28px );
    border-radius: 0 0 12px 12px;
    position: absolute;
    bottom: -3px;
    left: 0;
}

/* ================================
   TABLET (до 900px)
================================ */
@media (max-width: 900px) {
    .not-found-box.construction-box[b-34ce0lvffj] {
        padding: 40px 30px;
        max-width: 400px;
    }

    .not-found-box h1[b-34ce0lvffj] {
        font-size: 70px;
    }

    .not-found-box h2[b-34ce0lvffj] {
        font-size: 22px;
    }

    .warning-icon[b-34ce0lvffj] {
        font-size: 48px;
    }
}

/* ================================
   MOBILE (до 600px)
================================ */
@media (max-width: 600px) {
    .not-found-box.construction-box[b-34ce0lvffj] {
        padding: 34px 24px;
        max-width: 360px;
        border-radius: 16px;
    }

    .not-found-box h1[b-34ce0lvffj] {
        font-size: 56px;
        text-shadow: 2px 2px 0 #fbc02d;
    }

    .not-found-box h2[b-34ce0lvffj] {
        font-size: 20px;
    }

    .warning-icon[b-34ce0lvffj] {
        font-size: 42px;
    }

    .not-found-box p[b-34ce0lvffj] {
        font-size: 15px;
        margin: 12px 0 26px;
    }

    .not-found-box button[b-34ce0lvffj] {
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 8px;
    }

    .not-found-box[b-34ce0lvffj]::after {
        height: 10px;
    }
}

/* ================================
   SMALL MOBILE (до 400px)
================================ */
@media (max-width: 400px) {
    .not-found-box.construction-box[b-34ce0lvffj] {
        padding: 26px 18px;
    }

    .not-found-box h1[b-34ce0lvffj] {
        font-size: 48px;
    }

    .not-found-box h2[b-34ce0lvffj] {
        font-size: 18px;
    }

    .warning-icon[b-34ce0lvffj] {
        font-size: 36px;
    }

    .not-found-box p[b-34ce0lvffj] {
        font-size: 14px;
    }
}
/* /Pages/PublishPage.razor.rz.scp.css */
.publish-container[b-o4h5pdns9s] {
    display: flex;
    justify-content: center;
    padding: 40px 16px;
    font-family: Bahnschrift, sans-serif;
}

.publish-box[b-o4h5pdns9s] {
    width: 100%;
    max-width: 650px;
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.publish-title[b-o4h5pdns9s] {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.publish-subtitle[b-o4h5pdns9s] {
    color: #666;
    font-size: 15px;
    margin-bottom: 22px;
}

.publish-field[b-o4h5pdns9s] {
    margin-bottom: 18px;
}

    .publish-field label[b-o4h5pdns9s] {
        display: block;
        margin-bottom: 6px;
        font-size: 15px;
        font-weight: 600;
    }

    .publish-field input[b-o4h5pdns9s],
    .publish-field select[b-o4h5pdns9s],
    .publish-field textarea[b-o4h5pdns9s] {
        width: 100%;
        padding: 12px 14px;
        font-size: 15px;
        border-radius: 10px;
        border: 1px solid #ccc;
    }

    .publish-field textarea[b-o4h5pdns9s] {
        height: 120px;
        resize: vertical;
    }

.publish-btn[b-o4h5pdns9s] {
    width: 100%;
    padding: 15px;
    background: #fbc02d;
    border: 2px solid #111;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.15s;
}

    .publish-btn:hover[b-o4h5pdns9s] {
        background: #ffd54f;
        transform: translateY(-2px);
    }

.publish-error[b-o4h5pdns9s] {
    background: #ffe3e3;
    color: #b10000;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Фото превью */
.publish-photos[b-o4h5pdns9s] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.publish-photo-preview[b-o4h5pdns9s] {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
    .publish-box[b-o4h5pdns9s] {
        padding: 26px 22px;
    }
}
/* /Pages/UserLogin.razor.rz.scp.css */
/* =============================
   LOGIN PAGE
============================= */

.login-container[b-mqkuxywv4b] {
    display: flex;
    justify-content: center;
    padding: 40px 16px;
    font-family: Bahnschrift, sans-serif;
}

.login-box[b-mqkuxywv4b] {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.login-title[b-mqkuxywv4b] {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.login-subtitle[b-mqkuxywv4b] {
    color: #666;
    font-size: 15px;
    margin-bottom: 22px;
}

.login-field[b-mqkuxywv4b] {
    margin-bottom: 18px;
}

    .login-field label[b-mqkuxywv4b] {
        display: block;
        margin-bottom: 6px;
        font-size: 15px;
        font-weight: 600;
    }

    .login-field input[b-mqkuxywv4b] {
        width: 100%;
        padding: 12px 14px;
        font-size: 15px;
        border-radius: 10px;
        border: 1px solid #ccc;
        transition: 0.15s;
    }

        .login-field input:focus[b-mqkuxywv4b] {
            border-color: #fbc02d;
        }

.login-btn[b-mqkuxywv4b] {
    width: 100%;
    padding: 14px;
    background: #fbc02d;
    border: 2px solid #111;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.15s ease;
}

    .login-btn:hover[b-mqkuxywv4b] {
        background: #ffd54f;
        transform: translateY(-2px);
    }

.login-error[b-mqkuxywv4b] {
    background: #ffe3e3;
    color: #b10000;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.login-bottom[b-mqkuxywv4b] {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
}

    .login-bottom a[b-mqkuxywv4b] {
        cursor: pointer;
        color: #fbc02d;
        font-weight: 700;
        margin-left: 6px;
    }

/* Mobile */
@media (max-width: 600px) {
    .login-box[b-mqkuxywv4b] {
        padding: 26px 22px;
    }

    .login-title[b-mqkuxywv4b] {
        font-size: 24px;
    }
}
/* /Pages/UserRegister.razor.rz.scp.css */
.login-container[b-ldx25m75s3] {
    display: flex;
    justify-content: center;
    padding: 40px 16px;
    font-family: Bahnschrift, sans-serif;
}

.login-box[b-ldx25m75s3] {
    width: 100%;
    max-width: 420px;
    background: #fff;
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.login-title[b-ldx25m75s3] {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.login-subtitle[b-ldx25m75s3] {
    color: #666;
    font-size: 15px;
    margin-bottom: 22px;
}

.login-field[b-ldx25m75s3] {
    margin-bottom: 18px;
}

    .login-field label[b-ldx25m75s3] {
        display: block;
        margin-bottom: 6px;
        font-size: 15px;
        font-weight: 600;
    }

    .login-field input[b-ldx25m75s3] {
        width: 100%;
        padding: 12px 14px;
        font-size: 15px;
        border-radius: 10px;
        border: 1px solid #ccc;
        transition: 0.15s;
    }

        .login-field input:focus[b-ldx25m75s3] {
            border-color: #fbc02d;
        }

.login-btn[b-ldx25m75s3] {
    width: 100%;
    padding: 14px;
    background: #fbc02d;
    border: 2px solid #111;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.15s;
}

    .login-btn:hover[b-ldx25m75s3] {
        background: #ffd54f;
        transform: translateY(-2px);
    }

.login-bottom[b-ldx25m75s3] {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
}

    .login-bottom a[b-ldx25m75s3] {
        cursor: pointer;
        color: #fbc02d;
        font-weight: 700;
    }

.login-error[b-ldx25m75s3] {
    background: #ffe3e3;
    color: #b10000;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}
