/* ===== История продаж — sh- prefix ===== */
/* v2 — увеличенные шрифты, улучшенный UX */

/* --- Page --- */
.sh-page { padding-bottom: 8rem; }

/* --- Header --- */
.sh-header { margin-bottom: 4rem; text-align: center; padding-top: 1rem; }
.sh-header h1 {
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    letter-spacing: -.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #1a1a2e 0%, #d32f2f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sh-header__subtitle {
    font-size: 1.9rem;
    color: #666;
    margin: 0;
    font-weight: 400;
    letter-spacing: -.01em;
}
.sh-header__count {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.6rem;
    padding: .8rem 2rem;
    background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
    border-radius: 3rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    border: 1px solid #e8e8e8;
}

/* --- Filter --- */
.sh-filter {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 1.6rem;
    padding: 2.4rem 3rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.03);
}
.sh-filter__row { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.sh-filter__item { flex: 1; min-width: 17rem; }
.sh-filter__item--double { display: flex; gap: .8rem; align-items: center; flex: 1; min-width: 22rem; }
.sh-filter__item--double .sh-filter__input { flex: 1; }
.sh-filter__sep { color: #bbb; font-size: 1.6rem; }
.sh-filter__select,
.sh-filter__input {
    width: 100%;
    height: 5.2rem;
    padding: 0 1.6rem;
    border: 2px solid #eee;
    border-radius: 1rem;
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    background: #fafafa;
    color: #222;
    transition: border-color .2s, background .2s, box-shadow .2s;
    appearance: none;
    -webkit-appearance: none;
}
.sh-filter__select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.4rem center;
    padding-right: 3.6rem;
    background-color: #fafafa;
}
.sh-filter__select:focus,
.sh-filter__input:focus {
    border-color: #d32f2f;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(211,47,47,.08);
}
.sh-filter__item--btn { display: flex; gap: 1rem; align-items: center; flex: 0 0 auto; }
.sh-filter__submit {
    height: 5.2rem;
    padding: 0 3.2rem;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    letter-spacing: .02em;
}
.sh-filter__submit:hover { background: #b71c1c; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(211,47,47,.3); }
.sh-filter__submit:active { transform: translateY(0); }
.sh-filter__reset {
    font-size: 1.5rem;
    color: #999;
    text-decoration: none;
    transition: color .2s;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 1px;
}
.sh-filter__reset:hover { color: #d32f2f; border-bottom-color: #d32f2f; }

/* --- Sort --- */
.sh-sort { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.sh-sort__label { font-size: 1.6rem; color: #888; font-weight: 500; }
.sh-sort__item {
    font-size: 1.5rem;
    padding: .7rem 1.6rem;
    border-radius: 3rem;
    color: #444;
    background: #f5f5f5;
    text-decoration: none;
    transition: all .2s;
    font-weight: 600;
    border: 1px solid transparent;
}
.sh-sort__item:hover { background: #eee; border-color: #ddd; }
.sh-sort__item.active { background: #d32f2f; color: #fff; border-color: #d32f2f; }

/* --- Cards list (horizontal) --- */
.sh-list { display: flex; flex-direction: column; gap: 2rem; }

.sh-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 1.6rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 0 0 1px rgba(0,0,0,.04);
    transition: box-shadow .3s ease, transform .3s ease;
}
.sh-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.06);
    transform: translateY(-3px);
}
.sh-card__photo {
    position: relative;
    flex: 0 0 38rem;
    min-height: 24rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}
.sh-card__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='3' width='20' height='18' rx='2' stroke='%23ccc' stroke-width='1.5'/%3E%3Ccircle cx='8.5' cy='9.5' r='2' stroke='%23ccc' stroke-width='1.5'/%3E%3Cpath d='M2 17l5-5 3 3 4-4 8 8' stroke='%23ccc' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center center;
    opacity: .4;
    pointer-events: none;
    z-index: 1;
}
.sh-card__photo:has(img[src]:not([src=""])) ::after { display: none; }
.sh-card__photo img ~ .sh-card__photo::after { display: none; }
.sh-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.sh-card:hover .sh-card__photo img { transform: scale(1.06); }

.sh-card__badge {
    position: absolute;
    top: 1.4rem;
    left: 1.4rem;
    z-index: 2;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding: .7rem 1.6rem;
    border-radius: .8rem;
    letter-spacing: .01em;
    box-shadow: 0 2px 8px rgba(46,125,50,.3);
}

.sh-card__body {
    flex: 1;
    padding: 2.4rem 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}
.sh-card__top { margin-bottom: 1.4rem; }
.sh-card__title {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 0 0 .8rem;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -.02em;
    line-height: 1.2;
}
.sh-card__price-row { margin-bottom: .6rem; }
.sh-card__price { font-size: 3rem; font-weight: 900; color: #d32f2f; letter-spacing: -.02em; display: block; }
.sh-card__price-label { font-size: 1.35rem; color: #888; font-weight: 500; display: block; margin-top: .2rem; }

.sh-card__economy {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.2rem;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: .6rem;
    margin-top: .4rem;
}
.sh-card__economy svg { stroke: #2e7d32; flex-shrink: 0; }

.sh-card__specs { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.4rem; }
.sh-card__spec {
    font-size: 1.5rem;
    color: #444;
    padding: .55rem 1.2rem;
    background: #f5f5f5;
    border-radius: .6rem;
    white-space: nowrap;
    font-weight: 600;
    border: 1px solid #eee;
}

.sh-card__review {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: 1rem 1.4rem;
    background: #fefce8;
    border-radius: .8rem;
    border-left: 3px solid #f59e0b;
    margin-bottom: 1.4rem;
    font-size: 1.35rem;
    color: #555;
    line-height: 1.5;
    font-style: italic;
}
.sh-card__review svg { flex-shrink: 0; margin-top: .1rem; stroke: #f59e0b; opacity: .7; }
.sh-card__review span { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

.sh-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap; }
.sh-card__meta { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.sh-card__city,
.sh-card__date,
.sh-card__delivery {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.4rem;
    color: #666;
    font-weight: 500;
}
.sh-card__city svg,
.sh-card__date svg,
.sh-card__delivery svg { flex-shrink: 0; opacity: .6; }

.sh-card__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 2rem;
    background: #d32f2f;
    color: #fff;
    border-radius: .8rem;
    font-size: 1.4rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    flex-shrink: 0;
}
.sh-card:hover .sh-card__btn { background: #b71c1c; transform: translateX(2px); }

/* --- Empty --- */
.sh-empty { text-align: center; padding: 8rem 2rem; }
.sh-empty__icon { margin-bottom: 2.4rem; opacity: .4; }
.sh-empty__text { font-size: 2.4rem; font-weight: 800; color: #222; margin: 0 0 1rem; }
.sh-empty__hint { font-size: 1.6rem; color: #999; margin: 0 0 2.4rem; }
.sh-empty__btn {
    display: inline-block;
    padding: 1.2rem 3.2rem;
    background: #d32f2f;
    color: #fff;
    text-decoration: none;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.6rem;
    transition: background .2s, transform .15s;
}
.sh-empty__btn:hover { background: #b71c1c; transform: translateY(-1px); }

/* --- Pagination --- */
.sh-pagination { display: flex; align-items: center; justify-content: center; gap: .8rem; margin-top: 4rem; padding-top: 2rem; }
.sh-pagination__num,
.sh-pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
    color: #444;
    background: #f5f5f5;
    transition: all .2s;
    border: 1px solid transparent;
}
.sh-pagination__num:hover,
.sh-pagination__btn:hover { background: #eee; border-color: #ddd; }
.sh-pagination__num.active { background: #d32f2f; color: #fff; border-color: #d32f2f; box-shadow: 0 3px 10px rgba(211,47,47,.25); }
.sh-pagination__dots { font-size: 1.6rem; color: #bbb; padding: 0 .4rem; }

/* ======================================= */
/* ============ DETAIL PAGE ============== */
/* ======================================= */

.sh-detail__header { margin-bottom: 3rem; }
.sh-detail__header h1 {
    font-size: 4.4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: #111;
}
.sh-detail__meta { display: flex; gap: 2.4rem; flex-wrap: wrap; }
.sh-detail__meta-item {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: 1.7rem;
    color: #444;
    font-weight: 500;
    padding: .6rem 1.4rem;
    background: #f5f5f5;
    border-radius: .8rem;
}
.sh-detail__meta-item svg { opacity: .5; }

/* --- Top: gallery + info --- */
.sh-detail__top { display: grid; grid-template-columns: 1fr 40rem; gap: 3.6rem; margin-bottom: 4rem; align-items: start; }

/* --- Gallery --- */
.sh-gallery__main {
    border-radius: 1.6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    aspect-ratio: 16/10;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.sh-gallery__main img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: zoom-in; transition: transform .4s; }
.sh-gallery__main img:hover { transform: scale(1.02); }
.sh-gallery__main.sh-gallery__nophoto {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 1.8rem;
    font-weight: 600;
}
.sh-gallery__thumbs { display: flex; gap: 1rem; margin-top: 1.2rem; overflow-x: auto; padding-bottom: .6rem; }
.sh-gallery__thumbs::-webkit-scrollbar { height: 4px; }
.sh-gallery__thumbs::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }
.sh-gallery__thumb {
    flex: 0 0 9rem;
    height: 6.2rem;
    border-radius: .8rem;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color .2s, box-shadow .2s;
    cursor: pointer;
}
.sh-gallery__thumb.active,
.sh-gallery__thumb:hover { border-color: #d32f2f; box-shadow: 0 2px 8px rgba(211,47,47,.2); }
.sh-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --- Info panel --- */
.sh-detail__info {
    background: #fff;
    border-radius: 1.6rem;
    padding: 3rem;
    position: sticky;
    top: 10rem;
    box-shadow: 0 2px 16px rgba(0,0,0,.07), 0 0 0 1px rgba(0,0,0,.04);
}
.sh-detail__price-block { margin-bottom: 2.4rem; padding-bottom: 2.4rem; border-bottom: 1px solid #eee; }
.sh-detail__price-label { font-size: 1.4rem; color: #888; font-weight: 500; margin-bottom: .4rem; }
.sh-detail__price {
    font-size: 4rem;
    font-weight: 900;
    color: #d32f2f;
    line-height: 1.15;
    letter-spacing: -.03em;
}
.sh-detail__economy {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: .8rem;
    padding: .6rem 1.4rem;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: .7rem;
}

.sh-detail__specs { margin-bottom: 2.4rem; }
.sh-detail__spec {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.7rem;
}
.sh-detail__spec:last-child { border-bottom: none; }
.sh-detail__spec-label { color: #888; white-space: nowrap; font-weight: 500; }
.sh-detail__spec-dots { flex: 1; border-bottom: 1px dotted #ddd; min-width: 2rem; position: relative; top: -.3rem; }
.sh-detail__spec-value { font-weight: 700; color: #111; white-space: nowrap; }

.sh-detail__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    width: 100%;
    padding: 1.8rem;
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
    color: #fff;
    text-decoration: none;
    border-radius: 1.2rem;
    font-size: 1.8rem;
    font-weight: 800;
    transition: background .2s, transform .15s, box-shadow .2s;
    letter-spacing: .01em;
    box-shadow: 0 4px 14px rgba(211,47,47,.2);
}
.sh-detail__cta:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211,47,47,.3);
}
.sh-detail__cta:active { transform: translateY(0); }

/* --- Review top block (above tabs) --- */
.sh-detail__review-top { margin-bottom: 3rem; }
.sh-detail__review-top .sh-review-card { max-width: 90rem; }
.sh-review-card__header { display: flex; align-items: center; gap: 1.4rem; margin-bottom: 1rem; flex-wrap: wrap; }
.sh-review-card__title { font-size: 2.2rem; font-weight: 800; margin: 0; color: #111; }

/* --- Tabs --- */
.sh-tabs {
    position: sticky;
    top: 7rem;
    z-index: 50;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 3rem;
    padding-top: .6rem;
}
.sh-tabs__nav { display: flex; gap: 0; overflow-x: auto; }
.sh-tabs__nav::-webkit-scrollbar { display: none; }
.sh-tabs__link {
    padding: 1.6rem 2.6rem;
    font-size: 1.7rem;
    font-weight: 700;
    color: #888;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
    margin-bottom: -2px;
}
.sh-tabs__link:hover { color: #333; }
.sh-tabs__link.active { color: #d32f2f; border-bottom-color: #d32f2f; }

/* --- Sections --- */
.sh-sections { max-width: 90rem; }
.sh-section { margin-bottom: 5rem; scroll-margin-top: 12rem; }
.sh-section__title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -.02em;
    color: #111;
    position: relative;
    padding-left: 1.8rem;
}
.sh-section__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: .3em;
    width: .4rem;
    height: .7em;
    background: #d32f2f;
    border-radius: .2rem;
}
.sh-section__text {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #333;
}
.sh-section__text p { margin-bottom: 1.4rem; }
.sh-section__text p:last-child { margin-bottom: 0; }

.sh-section__photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.sh-section__photo {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
}
.sh-section__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.sh-section__photo:hover img { transform: scale(1.06); }

/* --- Review card --- */
.sh-review-card {
    background: #fff;
    border-radius: 1.6rem;
    padding: 3rem;
    border-left: 5px solid #f59e0b;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.sh-review-card__rating { display: flex; gap: .3rem; margin-bottom: 1.2rem; }
.sh-review-card__rating svg { width: 2.4rem; height: 2.4rem; }
.sh-review-card__date { font-size: 1.5rem; color: #999; margin-bottom: 1.2rem; font-weight: 500; }
.sh-review-card__text {
    font-size: 1.8rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    position: relative;
    padding-left: 2.8rem;
}
.sh-review-card__text::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -.3rem;
    font-size: 4rem;
    color: #f59e0b;
    font-family: Georgia, serif;
    line-height: 1;
}

/* --- CTA block --- */
.sh-cta-block { margin: 5rem 0; }
.sh-cta-block__card {
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
    border-radius: 2rem;
    padding: 5rem 4rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.sh-cta-block__card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 50rem;
    height: 50rem;
    background: radial-gradient(circle, rgba(211,47,47,.1) 0%, transparent 70%);
    pointer-events: none;
}
.sh-cta-block__label {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #d32f2f;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 1.2rem;
    position: relative;
}
.sh-cta-block__heading {
    font-size: 4rem;
    font-weight: 800;
    margin: 0 0 1.4rem;
    letter-spacing: -.02em;
    position: relative;
    color: #fff;
}
.sh-cta-block__desc {
    font-size: 1.8rem;
    color: rgba(255,255,255,.6);
    margin: 0 0 3rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
}
.sh-cta-block__buttons {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
    position: relative;
}
.sh-cta-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 3.6rem;
    font-size: 1.7rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: .8rem;
    transition: background .2s, transform .2s, box-shadow .2s, border-color .2s;
    letter-spacing: .01em;
    cursor: pointer;
}
.sh-cta-block__btn--primary {
    background: #d32f2f;
    color: #fff;
    border: 2px solid #d32f2f;
}
.sh-cta-block__btn--primary:hover {
    background: #e53935;
    border-color: #e53935;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211,47,47,.35);
}
.sh-cta-block__btn--outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.3);
}
.sh-cta-block__btn--outline:hover {
    border-color: rgba(255,255,255,.6);
    transform: translateY(-2px);
}
.sh-cta-block__address {
    font-size: 1.4rem;
    color: rgba(255,255,255,.4);
    margin: 0 0 2rem;
    position: relative;
}
.sh-cta-block__social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    position: relative;
}
.sh-cta-block__soc-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.6rem;
    background: rgba(255,255,255,.08);
    color: #fff;
    text-decoration: none;
    border-radius: 5rem;
    font-size: 1.35rem;
    font-weight: 500;
    transition: background .2s;
}
.sh-cta-block__soc-link:hover {
    background: rgba(255,255,255,.15);
}
.sh-cta-block__soc-link svg {
    flex-shrink: 0;
}

/* --- Similar --- */
.sh-similar { margin-top: 5rem; }
.sh-similar__title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2.4rem;
    letter-spacing: -.02em;
}
.sh-similar__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.sh-similar__card {
    background: #fff;
    border-radius: 1.4rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,.05), 0 0 0 1px rgba(0,0,0,.03);
    transition: box-shadow .3s, transform .3s;
}
.sh-similar__card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); transform: translateY(-3px); }
.sh-similar__photo { aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, #f5f5f5, #e8e8e8); }
.sh-similar__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.sh-similar__card:hover .sh-similar__photo img { transform: scale(1.06); }
.sh-similar__body { padding: 1.8rem 2rem; }
.sh-similar__name { font-size: 1.7rem; font-weight: 800; margin: 0 0 .5rem; color: #111; }
.sh-similar__year { font-size: 1.5rem; color: #888; font-weight: 500; }
.sh-similar__price { display: block; font-size: 1.9rem; font-weight: 800; color: #d32f2f; margin-top: .6rem; }

/* ======================================= */
/* ============== MOBILE ================= */
/* ======================================= */

@media (max-width: 1024px) {
    .sh-detail__top { grid-template-columns: 1fr; }
    .sh-detail__info { position: static; }
    .sh-similar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sh-header h1 { font-size: 3.2rem; }
    .sh-header__subtitle { font-size: 1.6rem; }
    .sh-detail__header h1 { font-size: 2.8rem; }

    .sh-filter { padding: 2rem; }
    .sh-filter__row { flex-direction: column; }
    .sh-filter__item,
    .sh-filter__item--double { min-width: 100%; }
    .sh-filter__item--btn { width: 100%; }
    .sh-filter__submit { width: 100%; }

    .sh-card { flex-direction: column; }
    .sh-card__photo { flex: none; height: 24rem; }
    .sh-card__body { padding: 2rem; }
    .sh-card__title { white-space: normal; font-size: 2rem; }
    .sh-card__price { font-size: 2.2rem; }
    .sh-card__bottom { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
    .sh-card__btn { width: 100%; justify-content: center; padding: 1rem; font-size: 1.5rem; }

    .sh-gallery__thumb { flex: 0 0 7rem; height: 4.8rem; }
    .sh-detail__price { font-size: 2.8rem; }
    .sh-detail__info { padding: 2.4rem; }

    .sh-section__title { font-size: 2.2rem; }
    .sh-section__text { font-size: 1.5rem; }
    .sh-section__photos { grid-template-columns: repeat(2, 1fr); }
    .sh-similar__grid { grid-template-columns: 1fr; }

    .sh-cta-block__card { padding: 3rem 2rem; }
    .sh-cta-block__heading { font-size: 2.6rem; }
    .sh-cta-block__desc { font-size: 1.5rem; }
    .sh-cta-block__buttons { flex-direction: column; align-items: center; }
    .sh-cta-block__btn { width: 100%; max-width: 32rem; }

    .sh-tabs__link { padding: 1.2rem 1.6rem; font-size: 1.4rem; }

    .sh-review-card { padding: 2rem; }
    .sh-review-card__text { font-size: 1.5rem; padding-left: 2rem; }
}

@media (max-width: 480px) {
    .sh-header h1 { font-size: 2.6rem; }
    .sh-header__subtitle { font-size: 1.4rem; }
    .sh-header__count { font-size: 1.4rem; }

    .sh-card__photo { height: 18rem; }
    .sh-card__title { font-size: 1.8rem; }
    .sh-card__price { font-size: 2rem; }
    .sh-card__specs { gap: .5rem; }
    .sh-card__spec { font-size: 1.25rem; padding: .4rem .8rem; }

    .sh-section__photos { grid-template-columns: 1fr 1fr; gap: .8rem; }

    .sh-detail__price { font-size: 2.4rem; }
    .sh-detail__spec { font-size: 1.4rem; }

    .sh-cta-block__heading { font-size: 2rem; }
    .sh-cta-block__btn { padding: 1.4rem 2.8rem; font-size: 1.5rem; }
    .sh-cta-block__social { gap: .8rem; }
    .sh-cta-block__soc-link { font-size: 1.2rem; padding: .6rem 1.2rem; }
}
