

/* Start:/local/components/api/category.tree.main/templates/v2/style.css?17795307273655*/
.catalog {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.catalog-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px 28px;
}

.catalog-category {
    border-bottom: 1px solid #ececec;
}

.catalog-category__head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
}

.catalog-category__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.catalog-category__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.catalog-category__main {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.catalog-category__title {
    display: block;
    min-width: 0;
    line-height: 1.35;
    font-weight: 600;
    color: #111;
    transition: color .15s ease;
    text-decoration: none;
}

.catalog-category__title:hover {
    text-decoration: none;
}

.catalog-category__stats {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1;
}

.catalog-category__count {
    color: #555;
    white-space: nowrap;
}

.catalog-category__today {
    background: var(--agr-counters-bg);
    color: var(--agr-counters-color);
    font-size: 12px;
    padding: 0 5px;
    border-radius: 3px;
    white-space: nowrap;
}

.catalog-category__toggle {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.catalog-category__toggle svg {
    width: 100%;
    height: 100%;
    stroke: #666;
    stroke-width: 2;
    fill: none;
    transition: transform .18s ease;
}

.catalog-category.is-open .catalog-category__toggle svg {
    transform: rotate(180deg);
}

.catalog-category__children {
    overflow: hidden;
    max-height: 0;
    transition: max-height .22s ease;
}

.catalog-category.is-open .catalog-category__children {
    max-height: 1200px;
}

.catalog-category__children-inner {
    padding: 0 0 10px 0;
}

.catalog-sub {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 0;
    border-bottom: 1px solid #ececec;
}

.catalog-sub__title {
    min-width: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.35;
    color: #444;
    text-decoration: none;
}

.catalog-sub__title:hover {
    text-decoration: none;
}

.catalog-sub__stats {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 1;
}

.catalog-sub__count {
    color: #777;
    white-space: nowrap;
}

.catalog-sub__today {
    background: var(--agr-counters-bg);
    color: var(--agr-counters-color);
    font-size: 12px;
    padding: 0 5px;
    border-radius: 3px;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .catalog-grid {
        grid-template-columns:1fr;
        gap: 0;
    }
}

@media (max-width: 640px) {
    .catalog {
        padding: 10px 10px 30px;
    }

    .catalog-category__head {
        gap: 8px;
        padding: 9px 0;
    }

    .catalog-category__main {
        gap: 8px;
    }

    .catalog-category__title {
        /*font-size: 14px;*/
    }

    .catalog-category__stats {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }

    .catalog-category__children-inner {
        padding-left: 0;
    }

    .catalog-sub {
        gap: 8px;
        /*font-size: 14px;*/
    }

    .catalog-sub__title {
        /*font-size: 13px;*/
    }

    .catalog-sub__stats {
        flex-direction: column;
        align-items: flex-end;
        gap: 3px;
    }
}

/* End */


/* Start:/local/components/api/ads.premium/templates/carousel_v1/style.css?17797050056603*/
.carousel {
    position: relative;
}

.carousel {
    position: relative;
    visibility: hidden;
}

.carousel.is-ready {
    visibility: visible;
}

.carousel__slider {
    position: relative;
}

.carousel__slider::before,
.carousel__slider::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 36px;
    z-index: 2;
    pointer-events: none;
    transition: opacity .2s;
}
.carousel__slider::before { left:  0; }
.carousel__slider::after  { right: 0; }
.carousel.is-at-start .carousel__slider::before { opacity: 0; }
.carousel.is-at-end   .carousel__slider::after  { opacity: 0; }

.carousel__viewport {
    overflow: hidden;
}

.carousel__track {
    display: flex;
    list-style: none;
    will-change: transform;
    cursor: grab;
    touch-action: pan-y;
}
.carousel__track.is-dragging {
    cursor: grabbing;
    transition: none !important;
}

.carousel__item {
    display: flex;
    flex-shrink: 0;
    min-width: 0;
}

.carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--agr-border-dark);
    background: var(--agr-white);
    color: var(--agr-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: background .15s, border-color .15s, color .15s, box-shadow .15s, opacity .2s;
    line-height: 1;
}
.carousel__arrow:disabled {
    opacity: .25;
    cursor: not-allowed;
    pointer-events: none;
}
.carousel__arrow svg {
    display: block;
    width: 16px; height: 16px;
    stroke: currentColor; fill: none;
    stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}
.carousel__arrow--prev { left:  -19px; }
.carousel__arrow--next { right: -19px; }

.carousel__dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.carousel__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    border: none; padding: 0;
    background: var(--agr-border-dark);
    cursor: pointer;
    flex-shrink: 0;
    transition: width .2s, border-radius .2s, background .2s;
}
.carousel__dot.is-active {
    width: 22px;
    border-radius: 4px;
}

.carousel__progress {
    height: 2px;
    background: var(--agr-border-soft);
    margin-top: 10px;
    border-radius: 1px;
    overflow: hidden;
}
.carousel__progress-bar {
    height: 100%;
    width: 0;
    border-radius: 1px;
}

.premium-ads {
    background: var(--agr-page-bg);
    margin: 30px 0;
}

.premium-ads__container {
    max-width: var(--agr-container);
    margin: 0 auto;
    padding: 0;
}

.premium-ads__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.premium-ads__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--agr-text);
    display: flex;
    align-items: center;
    gap: 9px;
}
.premium-ads__title-icon {
    color: var(--agr-brand);
    font-style: normal;
    font-size: 20px;
    line-height: 1;
}

.premium-ads__all-link {
    color: var(--agr-brand);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}
.premium-ads__all-link:hover {
    color: var(--agr-brand-dark);
    text-decoration: none;
}

.premium-ads .carousel__slider::before {
    background: linear-gradient(to right, var(--agr-brand-soft), transparent);
}
.premium-ads .carousel__slider::after {
    background: linear-gradient(to left, var(--agr-brand-soft), transparent);
}

.premium-ads .carousel__arrow:hover {
    background: var(--agr-brand);
    border-color: var(--agr-brand);
    color: var(--agr-white);
    box-shadow: 0 4px 12px rgba(248,116,28,.35);
}
.premium-ads .carousel__dot.is-active { background: var(--agr-brand); }
.premium-ads .carousel__progress-bar  { background: var(--agr-brand); }

.ad-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--agr-white);
    border: 1px solid var(--agr-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.ad-card:hover {
    box-shadow: var(--agr-hover-shadow-sm);
    transform: translateY(-3px);
    border-color: var(--agr-border-dark);
    text-decoration: none;
}

.ad-card__badge {
    position: absolute;
    top: 9px; left: 9px;
    z-index: 1;
    background: var(--agr-brand);
    color: var(--agr-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.5;
    pointer-events: none;
}

.ad-card__img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--agr-border-soft);
    flex-shrink: 0;
}
.ad-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.ad-card:hover .ad-card__img { transform: scale(1.05); }

.ad-card__body {
    padding: 10px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    justify-content: space-between;
}

.ad-card__title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--agr-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
}
.ad-card:hover .ad-card__title {
    color: var(--agr-brand-dark);
}

.ad-card__price-row { margin-top: auto; }

.ad-card__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--card-price);
    line-height: 1.2;
    white-space: nowrap;
}

.ad-card__unit {
    font-size: 11px;
    font-weight: 400;
    color: var(--agr-muted);
    margin-left: 2px;
}


@media (max-width: 1160px) {
    .carousel__arrow--prev { left:  4px; }
    .carousel__arrow--next { right: 4px; }
    .carousel__viewport    { padding: 0 26px; }
}
@media (max-width: 768px) {
    .carousel__arrow { width: 30px; height: 30px; }
    .carousel__arrow svg { width: 13px; height: 13px; }
}
@media (max-width: 480px) {
    .premium-ads { padding: 0; }
}
/* End */


/* Start:/local/components/api/ads.new/templates/offer_v2/style.css?17797050055499*/
:root {
    --img-h: 168px;
    --gap:   14px;
}

.section { padding: 28px 0 40px; }
.section-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 18px;
}
.section-title {
    font-family: 'PT Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--agr-text);
    letter-spacing: -.02em;
}
.section-count {
    font-size: .8rem;
    color: var(--agr-muted);
    font-weight: 500;
}
.section-all {
    margin-left: auto;
    font-size: .82rem;
    font-weight: 700;
    color: var(--agr-brand);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border: 1.5px solid var(--agr-brand);
    border-radius: 20px;
    transition: background .15s, color .15s;
}
.section-all:hover { background: var(--agr-brand); color: #fff; }

.filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.filter-tab {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--agr-border-dark);
    background: var(--agr-white);
    color: var(--agr-text-2);
    font-family: inherit;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.filter-tab:hover {
    border-color: var(--agr-brand);
    color: var(--agr-brand);
    background: var(--agr-brand-soft);
}
.filter-tab.is-active {
    background: var(--agr-brand);
    border-color: var(--agr-brand);
    color: #fff;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap);
}
.product-card {
    background: var(--agr-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s cubic-bezier(.22,.68,0,1.2), box-shadow .2s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-3px);
}
.product-card:hover .card-img img {
    transform: scale(1.04);
}

.card-img {
    position: relative;
    /*height: var(--img-h);*/
    overflow: hidden;
    background: var(--agr-brand-soft-2);
    flex-shrink: 0;
    border-radius: var(--card-radius);
    aspect-ratio: 1;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.card-img .img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-img .img-placeholder svg { opacity: .18; }

.card-cat {
    position: absolute;
    top: 9px;
    left: 9px;
    background: rgba(248,116,28,.82);
    color: #fff;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    pointer-events: none;
    white-space: nowrap;
}

.card-body {
    padding: 11px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
}
.card-title-header {
    display: flex;
    justify-content: space-between;
}

.card-title {
    font-weight: 600;
    color: var(--agr-text);
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color .15s;
    word-break: break-word;
}
.card-title:hover {
    color: var(--agr-brand);
    text-decoration: none;
}

.card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--card-price);
    letter-spacing: -.01em;
    white-space: nowrap;
}
.card-price .unit {
    font-size: .75rem;
    font-weight: 500;
    color: var(--agr-muted);
    margin-left: 2px;
}
.card-price.negotiable { color: var(--agr-muted); font-size: .88rem; }

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 4px;
}
.card-region {
    font-size: .72rem;
    color: var(--agr-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
}
.card-region span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-region svg { flex-shrink: 0; }

.card-date {
    font-size: .68rem;
    color: var(--agr-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-new {
    position: absolute;
    bottom: 9px;
    left: 9px;
    background: var(--agr-blue);
    color: #fff;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 4px;
    pointer-events: none;
}

@media (max-width: 1300px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1020px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    :root { --img-h: 154px; }
}
@media (max-width: 720px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); --gap: 10px; }
    :root { --img-h: 144px; }
    .header-nav { display: none; }
    .header-search { max-width: none; }
    .section-title { font-size: 1rem; }
}
@media (max-width: 420px) {
    :root { --img-h: 130px; }
    .products-grid { --gap: 8px; }
    .card-body { padding: 9px 0 11px; gap: 5px; }
    .card-title { font-size: 1rem; }
}


/* End */


/* Start:/local/components/api/stats.all/templates/v2/style.css?17795307271992*/
.stats-accent {
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(134deg, var(--agr-brand) 0%, var(--agr-brand-soft) 100%);
    margin: 40px 0;
}

.stats-accent__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.stats-accent__item {
    min-width: 0;
    padding: 22px;
    border-radius: 14px;
    background: var(--agr-white);
    backdrop-filter: blur(6px);
    transition: .2s ease;
}

.stats-accent__item:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,.9);
}

.stats-accent__value {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--agr-text);
}

.stats-accent__growth {
    display: inline-flex;
    align-items: center;
    padding: 3px 7px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: var(--agr-brand-dark);
    background: rgba(248,116,28,.12);
}

.stats-accent__label {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.35;
    color: var(--agr-text-2);
}

@media (max-width: 992px) {

    .stats-accent__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-accent__value {
        font-size: 24px;
    }

}

@media (max-width: 768px) {

    .stats-accent {
        padding: 12px;
        border-radius: 14px;
    }

    .stats-accent__grid {
        gap: 10px;
    }

    .stats-accent__item {
        padding: 16px;
        border-radius: 12px;
    }

    .stats-accent__value {
        font-size: 22px;
        gap: 6px;
    }

    .stats-accent__growth {
        font-size: 11px;
        padding: 2px 6px;
    }

    .stats-accent__label {
        margin-top: 8px;
        font-size: 14px;
    }

}

@media (max-width: 480px) {

    .stats-accent__grid {
        grid-template-columns: 1fr;
    }

    .stats-accent__value {
        font-size: 20px;
    }

}
/* End */


/* Start:/local/components/api/ads.new/templates/spros_v2/style.css?17799024514701*/
.purchases {
    max-width: 1180px;
    margin: 0 auto;
}

.purchases__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 24px;
}

.purchases__header p {
    margin: 6px 0 0;
    color: var(--agr-muted);
    font-size: 15px;
}

.purchases__all-link {
    color: var(--agr-brand);
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.purchases__all-link:hover {
    text-decoration: none;
}

.purchases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 16px;
}

.card {
    padding: 16px;
    display: flex;
    flex-direction: column;
    background: var(--agr-white);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: transform .2s cubic-bezier(.22, .68, 0, 1.2), box-shadow .2s;
    position: relative;
    border: 1px solid var(--agr-border);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--agr-hover-shadow-md);
}

.card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--agr-brand-soft);
    color: var(--agr-brand);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
    line-height: 1;
}

.card__date {
    font-size: 12px;
    color: var(--agr-muted);
    white-space: nowrap;
}

.card__title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px;
    line-height: 1.35;
    overflow-wrap: break-word;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    .card__title {
        font-size: 18px;
        line-height: 1.32;
    }
}

@media (max-width: 768px) {
    .card__title {
        font-size: 17px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .card__title {
        font-size: 16px;
        line-height: 1.28;
    }
}

.card__title a {
    color: var(--agr-text);
    text-decoration: none;
}

.card__title a:hover {
    color: var(--agr-brand);
    text-decoration: none;
}

.card__text {
    line-height: 1.45;
    color: var(--agr-muted);
    margin-bottom: 14px;
    flex-grow: 1;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.card__meta span {
    font-size: 12px;
    background: #fafafa;
    border: 1px solid var(--agr-border-soft);
    border-radius: 6px;
    padding: 4px 8px;
    color: #555;
}

.card__footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--agr-border-soft);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.card__price-label {
    font-size: 11px;
    color: var(--agr-muted);
    margin-bottom: 2px;
}

.card__price {
    font-size: 14px;
    font-weight: 700;
}

.card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    background: var(--agr-brand-soft);
    color: var(--agr-brand-dark);
    text-decoration: none;
    border: 1px solid var(--agr-brand);
    border-radius: 7px;
    padding: 9px 14px;
    font-weight: 700;
    transition: .2s ease;
}

.btn:hover {
    background: var(--agr-border-soft-2);
    border-color: var(--agr-brand);
    transform: translateY(-1px);
    text-decoration: none;
}

.card__fav-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--agr-border);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s ease;
    flex-shrink: 0;
}

.card__fav-btn:hover {
    border-color: #ffb38a;
    background: #fff7f2;
}

.card__fav-icon {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #999;
    stroke-width: 2;
    transition: .2s ease;
}

.card__fav-btn:hover .card__fav-icon {
    stroke: var(--agr-brand);
}

@media (max-width: 768px) {
    .purchases__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .purchases__header h2 {
        font-size: 24px;
    }

    .purchases__grid {
        grid-template-columns: 1fr;
    }
}
/* End */
/* /local/components/api/category.tree.main/templates/v2/style.css?17795307273655 */
/* /local/components/api/ads.premium/templates/carousel_v1/style.css?17797050056603 */
/* /local/components/api/ads.new/templates/offer_v2/style.css?17797050055499 */
/* /local/components/api/stats.all/templates/v2/style.css?17795307271992 */
/* /local/components/api/ads.new/templates/spros_v2/style.css?17799024514701 */
