.hm-section {
    padding: 28px 0;
    background: var(--hm-bg, #fff);
    color: var(--hm-text, #0e3340);
}

.hm-section--trust_bar {
    padding: 4px 0 8px;
}

.hm-section--trust_bar .hm-section__inner {
    padding-top: 0;
    padding-bottom: 0;
}

.hm-section__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.hm-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.hm-section__title {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--hm-text, #0e3340);
}

.hm-section__see-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hm-text, #111);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.hm-section__see-all i {
    color: var(--hm-accent, #24b4c8);
    font-size: 1.1rem;
}

.hm-section__see-all:hover {
    color: var(--hm-accent, #24b4c8);
}

.hm-empty {
    padding: 24px;
    text-align: center;
    color: #6b8a96;
    background: #f7fbfc;
    border-radius: 12px;
}

/* Rail / Grid shell */
.hm-rail-wrap {
    position: relative;
}

.hm-rail {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.hm-rail::-webkit-scrollbar {
    display: none;
}

.hm-rail > * {
    flex: 0 0 calc((100% - (var(--hm-cols, 6) - 1) * 14px) / var(--hm-cols, 6));
    min-width: calc((100% - (var(--hm-cols, 6) - 1) * 14px) / var(--hm-cols, 6));
    scroll-snap-align: start;
}

.hm-grid {
    display: grid;
    grid-template-columns: repeat(var(--hm-cols, 6), minmax(0, 1fr));
    gap: 14px;
}

.hm-rail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #c8e8f0;
    border-radius: 50%;
    background: #fff;
    color: var(--hm-accent, #24b4c8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(36, 180, 200, .15);
}

.hm-rail-nav--prev { left: -8px; }
.hm-rail-nav--next { right: -8px; }

/* categories_circle */
.hm-cat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    min-width: 88px;
}

.hm-cat-circle__photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eef8fb;
    transition: border-color .2s, transform .2s;
}

.hm-cat-circle__photo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fafafa;
}

.hm-cat-circle--all .hm-cat-circle__photo {
    border-color: #e8e8e8;
    background: #fafafa;
}

.hm-cat-circle--all .hm-cat-circle__photo img {
    width: 62%;
    height: 62%;
    object-fit: contain;
}

.hm-cat-circle--all .hm-cat-circle__name {
    font-weight: 700;
}

.hm-cat-circle__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-cat-circle:hover .hm-cat-circle__photo {
    border-color: var(--hm-item-accent, var(--hm-accent));
    transform: translateY(-2px);
}

.hm-cat-circle__name {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    color: var(--hm-text, #0e3340);
}

.hm-section--categories_circle .hm-section__head {
    justify-content: center;
    text-align: center;
}

.hm-section--categories_circle .hm-rail-wrap {
    position: static;
}

.hm-section--categories_circle .hm-rail-nav {
    display: none !important;
}

.hm-section--categories_circle .hm-grid--categories_circle,
.hm-section--categories_circle .hm-rail--categories_circle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 36px;
    max-width: 920px;
    margin: 0 auto;
    overflow: visible;
    scroll-snap-type: none;
}

.hm-section--categories_circle .hm-grid--categories_circle > *,
.hm-section--categories_circle .hm-rail--categories_circle > * {
    flex: 0 0 auto;
    min-width: 88px;
    width: auto;
}

.hm-cat-circle__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ddf3f8;
    color: var(--hm-accent);
    font-size: 1.6rem;
}

/* categories_cards */
.hm-section--categories_cards .hm-grid--categories_cards {
    gap: 12px;
}

.hm-cat-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hm-cat-card__box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f3f4f6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hm-cat-card__box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform .25s ease;
}

.hm-cat-card:hover .hm-cat-card__box img {
    transform: scale(1.04);
}

.hm-cat-card__name {
    font-size: 12.5px;
    font-weight: 700;
    text-align: center;
    color: var(--hm-text, #0e3340);
}

.hm-cat-card__placeholder {
    min-height: 0;
    aspect-ratio: 1;
}

/* categories_cta */
.hm-section--categories_cta .hm-grid--categories_cta {
    gap: 14px;
}

.hm-cta-block {
    --hm-cta-fg: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 18px 18px 18px 16px;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    color: var(--hm-cta-fg);
    background:
        radial-gradient(120% 140% at 0% 0%, rgba(255, 255, 255, .22), transparent 55%),
        radial-gradient(90% 120% at 100% 100%, rgba(0, 0, 0, .18), transparent 50%),
        linear-gradient(135deg, var(--hm-item-accent, #1b81fc), color-mix(in srgb, var(--hm-item-accent, #1b81fc) 55%, #0b1220));
    box-shadow: 0 10px 28px color-mix(in srgb, var(--hm-item-accent, #1b81fc) 28%, transparent);
    transition: transform .2s ease, box-shadow .2s ease;
}

.hm-cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, .08) 50%, transparent 60%);
    opacity: .7;
    pointer-events: none;
    z-index: 0;
}

.hm-cta-block > * {
    position: relative;
    z-index: 1;
}

.hm-cta-block__icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
    font-size: 22px;
    line-height: 1;
}

.hm-cta-block__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hm-cta-block__text {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #fff;
}

.hm-cta-block__sub {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .78);
    line-height: 1.3;
}

.hm-cta-block__arrow {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 20px;
    transition: transform .2s ease, background .2s ease;
}

.hm-cta-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px color-mix(in srgb, var(--hm-item-accent, #1b81fc) 36%, transparent);
}

.hm-cta-block:hover .hm-cta-block__arrow {
    transform: translateX(3px);
    background: rgba(255, 255, 255, .24);
}

/* categories_framed */
.hm-framed-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hm-framed-card__frame {
    border: 4px solid var(--hm-item-accent, var(--hm-accent));
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.hm-framed-card__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-framed-card__label {
    background: #fff;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    color: var(--hm-text, #0e3340);
}

/* banners_row */
.hm-banner {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    min-height: 120px;
    background: var(--hm-item-accent, #2196f3);
    text-decoration: none;
    aspect-ratio: 4 / 3;
}

.hm-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hm-section--banners_row .hm-grid--banners_row {
    align-items: stretch;
}

.hm-banner__text {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 16px;
    color: var(--hm-text, #fff);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
}

/* manual_cards */
.hm-manual-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hm-manual-card__media {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--hm-item-accent, #e3f2fd);
    border: 2px solid color-mix(in srgb, var(--hm-item-accent, #24b4c8) 40%, #fff);
}

.hm-manual-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-manual-card__title {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: var(--hm-text, #0e3340);
}

.hm-manual-card__subtitle {
    font-size: 11px;
    color: color-mix(in srgb, var(--hm-text, #6b8a96) 72%, transparent);
    text-align: center;
}

/* Product cards — kategori (cat-card) ile aynı */
.hm-section--products_rail,
.hm-section--products_grid,
.hm-grid--products,
.hm-rail--products {
    --cat-accent: #1b81fc;
    --cat-accent-dark: #1565d8;
}

.hm-grid--products .cat-card,
.hm-grid--products .boutique-product-card {
    width: 100%;
}

.hm-rail--products {
    gap: 14px;
}

.hm-rail--products .cat-card,
.hm-rail--products .boutique-product-card {
    flex: 0 0 200px;
    min-width: 200px;
}

.hm-grid--products .cat-card,
.hm-rail--products .cat-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hm-grid--products .cat-card__media,
.hm-rail--products .cat-card__media {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f7f7;
    aspect-ratio: 3 / 4;
}

.hm-grid--products .cat-card__image-link,
.hm-rail--products .cat-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.hm-grid--products .cat-card__image,
.hm-rail--products .cat-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .25s ease;
}

.hm-grid--products .cat-card__image--hover,
.hm-rail--products .cat-card__image--hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.hm-grid--products .cat-card--has-hover:hover .cat-card__image--hover,
.hm-rail--products .cat-card--has-hover:hover .cat-card__image--hover {
    opacity: 1;
}

.hm-grid--products .cat-card--has-hover:hover .cat-card__image:not(.cat-card__image--hover),
.hm-rail--products .cat-card--has-hover:hover .cat-card__image:not(.cat-card__image--hover) {
    opacity: 0;
}

.hm-grid--products .cat-card__fav,
.hm-rail--products .cat-card__fav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.hm-grid--products .cat-card__fav.is-favorite,
.hm-rail--products .cat-card__fav.is-favorite {
    color: #e11d48;
}

.hm-grid--products .cat-card__body,
.hm-rail--products .cat-card__body {
    padding: 10px 2px 0;
}

.hm-grid--products .cat-card__title,
.hm-rail--products .cat-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.45;
    color: #222;
    text-decoration: none;
    min-height: 38px;
}

.hm-grid--products .cat-card__title strong,
.hm-rail--products .cat-card__title strong {
    font-weight: 700;
    margin-right: 4px;
}

.hm-grid--products .cat-card__meta,
.hm-rail--products .cat-card__meta {
    margin-top: 6px;
}

.hm-grid--products .cat-card__rating,
.hm-rail--products .cat-card__rating {
    font-size: 12px;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.hm-grid--products .cat-card__rating i,
.hm-rail--products .cat-card__rating i {
    color: var(--cat-accent, #1b81fc);
}

.hm-grid--products .cat-card__rating small,
.hm-rail--products .cat-card__rating small {
    color: #888;
}

.hm-grid--products .cat-card__price-row,
.hm-rail--products .cat-card__price-row {
    margin-top: 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.hm-grid--products .cat-card__price,
.hm-rail--products .cat-card__price {
    font-size: 15px;
    font-weight: 800;
    color: #111;
}

.hm-grid--products .cat-card__price-old,
.hm-rail--products .cat-card__price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.hm-grid--products .product-variant-chip,
.hm-rail--products .product-variant-chip,
.boutique-product-card__media .product-variant-chip {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 24px;
    padding: 3px 8px 3px 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.hm-grid--products .product-variant-chip__dots,
.hm-rail--products .product-variant-chip__dots {
    display: inline-flex;
    align-items: center;
    padding-left: 2px;
}

.hm-grid--products .product-variant-chip__dot,
.hm-rail--products .product-variant-chip__dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    box-shadow: 0 0 0 0.5px rgba(15, 23, 42, 0.08);
    margin-left: -5px;
    flex-shrink: 0;
}

.hm-grid--products .product-variant-chip__dot:first-child,
.hm-rail--products .product-variant-chip__dot:first-child {
    margin-left: 0;
}

.hm-grid--products .product-variant-chip__count,
.hm-rail--products .product-variant-chip__count {
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: #111827;
}

.hm-grid--products .product-variant-chip--size,
.hm-rail--products .product-variant-chip--size,
.boutique-product-card__media .product-variant-chip--size {
    gap: 5px;
    padding: 3px 8px 3px 5px;
}

.hm-grid--products .product-variant-chip__sizes,
.hm-rail--products .product-variant-chip__sizes,
.boutique-product-card__media .product-variant-chip__sizes {
    display: inline-flex;
    align-items: center;
    padding-left: 2px;
}

.hm-grid--products .product-variant-chip__size,
.hm-rail--products .product-variant-chip__size,
.boutique-product-card__media .product-variant-chip__size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    min-width: 16px;
    padding: 0;
    margin-left: -6px;
    border-radius: 50%;
    background: #eef2f7;
    border: 1.5px solid #fff;
    box-shadow: 0 0 0 0.5px rgba(15, 23, 42, 0.08);
    color: #374151;
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.hm-grid--products .product-variant-chip__size:first-child,
.hm-rail--products .product-variant-chip__size:first-child,
.boutique-product-card__media .product-variant-chip__size:first-child {
    margin-left: 0;
}

.hm-grid--products .product-variant-chip--color.product-variant-chip--stacked,
.hm-rail--products .product-variant-chip--color.product-variant-chip--stacked,
.boutique-product-card__media .product-variant-chip--color.product-variant-chip--stacked {
    right: 8px;
    bottom: 34px;
}

.boutique-product-card__media {
    position: relative;
}

/* ===== FAQ ===== */
.hm-section--faq_accordion {
    padding: 36px 0 40px;
    background: transparent;
}

.hm-section--faq_accordion .hm-section__inner {
    max-width: 880px;
}

.hm-section--faq_accordion .hm-section__head {
    margin-bottom: 18px;
    justify-content: center;
    text-align: center;
}

.hm-section--faq_accordion .hm-section__title {
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hm-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e8eef5;
}

.hm-faq__item {
    border: 0;
    border-bottom: 1px solid #e8eef5;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
}

.hm-faq__item[open] {
    box-shadow: none;
}

.hm-faq__q {
    list-style: none;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 12px;
    padding: 16px 4px;
    cursor: pointer;
    color: #0f172a;
    user-select: none;
}

.hm-faq__q::-webkit-details-marker { display: none; }
.hm-faq__q::marker { content: ''; display: none; }

.hm-faq__num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(27, 129, 252, .1);
    color: #1b81fc;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hm-faq__label {
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.35;
    text-align: left;
}

.hm-faq__toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #e2e8f0;
    position: relative;
    justify-self: end;
    transition: border-color .2s ease, background .2s ease, transform .25s ease;
}

.hm-faq__toggle::before,
.hm-faq__toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #475569;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .25s ease, background .2s ease, opacity .2s ease;
}

.hm-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.hm-faq__item[open] .hm-faq__toggle {
    background: #1b81fc;
    border-color: #1b81fc;
}

.hm-faq__item[open] .hm-faq__toggle::before,
.hm-faq__item[open] .hm-faq__toggle::after {
    background: #fff;
}

.hm-faq__item[open] .hm-faq__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
    opacity: 0;
}

@supports (interpolate-size: allow-keywords) {
    .hm-section--faq_accordion {
        interpolate-size: allow-keywords;
    }
}

.hm-faq__item::details-content {
    display: block;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height .34s ease, opacity .28s ease, content-visibility .34s allow-discrete;
}

.hm-faq__item[open]::details-content {
    height: auto;
    opacity: 1;
}

.hm-faq__a {
    padding: 0 4px 16px 56px;
}

.hm-faq__a > p {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    font-size: 14.5px;
    line-height: 1.7;
    color: #64748b;
}

/* ===== Duyuru kutusu ===== */
.hm-section--announcement {
    padding: 18px 0;
}

.hm-announce {
    display: flex;
    align-items: center;
    gap: 14px 18px;
    flex-wrap: wrap;
    padding: 16px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hm-accent, #1b81fc) 0%, color-mix(in srgb, var(--hm-accent, #1b81fc) 72%, #0f172a) 100%);
    color: #fff;
    box-shadow: 0 10px 28px color-mix(in srgb, var(--hm-accent, #1b81fc) 28%, transparent);
}

.hm-announce__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.hm-announce__body {
    flex: 1 1 220px;
    min-width: 0;
}

.hm-announce__title {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.hm-announce__text {
    margin: 4px 0 0;
    font-size: 13.5px;
    opacity: .92;
    line-height: 1.4;
}

.hm-announce__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    color: var(--hm-accent, #1b81fc);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    flex-shrink: 0;
}

.hm-announce__cta:hover {
    filter: brightness(0.97);
    color: var(--hm-accent, #1b81fc);
}

/* ===== Modül içi e-bülten ===== */
.hm-section--newsletter {
    padding: 20px 0;
}

.hm-newsletter-card {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #1b81fc 0%, #1566d4 100%);
    padding: 22px 24px;
}

.hm-newsletter-card .og-newsletter--banner .og-newsletter__title {
    font-size: 1.2rem;
}

/* ===== Metin bölümü ===== */
.hm-section--rich_text {
    padding: 32px 0;
}

.hm-richtext {
    max-width: 760px;
    margin: 0 auto;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--hm-text, #334155);
}

.hm-richtext__block + .hm-richtext__block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eef2f7;
}

.hm-richtext__title {
    margin: 0 0 8px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--hm-text, #0f172a);
}

.hm-richtext__text {
    margin: 0;
}

/* ===== Banner / Kart polish ===== */
.hm-banner {
    transition: transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .06);
}

.hm-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .1);
}

.hm-manual-card__media {
    transition: transform .18s ease, box-shadow .18s ease;
}

.hm-manual-card:hover .hm-manual-card__media {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.hm-manual-card__placeholder,
.hm-cat-card__placeholder {
    width: 100%;
    height: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.8rem;
    background: #f1f5f9;
}

.hm-framed-card__label {
    border-radius: 8px;
}

.hm-rail-nav {
    border-color: #e2e8f0;
    color: var(--hm-accent, #1b81fc);
    box-shadow: 0 4px 14px rgba(15, 23, 42, .08);
}

.hm-rail-nav:hover {
    background: var(--hm-accent, #1b81fc);
    color: #fff;
    border-color: var(--hm-accent, #1b81fc);
}

@media (max-width: 768px) {
    .hm-section--categories_cta .hm-grid--categories_cta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hm-cta-block {
        min-height: 76px;
        padding: 14px;
        border-radius: 16px;
    }

    .hm-cta-block__icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .hm-cta-block__text {
        font-size: .98rem;
    }

    .hm-grid {
        grid-template-columns: repeat(min(var(--hm-cols, 6), 3), minmax(0, 1fr));
    }

    .hm-rail > * {
        flex: 0 0 42%;
        min-width: 42%;
    }

    .hm-rail-nav {
        display: none;
    }

    .hm-faq__q {
        grid-template-columns: 36px minmax(0, 1fr) 32px;
        gap: 10px;
        padding: 14px;
    }

    .hm-faq__num {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 12px;
    }

    .hm-faq__label {
        font-size: 14px;
    }

    .hm-faq__toggle {
        width: 32px;
        height: 32px;
    }

    .hm-faq__a {
        padding: 0 14px 14px 14px;
    }

    .hm-announce {
        padding: 14px 16px;
    }

    .hm-newsletter-card {
        padding: 18px 16px;
    }
}
