.medication-name-page {
    background: #f4f5fb;
    color: #2b3038;
    padding-bottom: 72px;
}

.mn-hero {
    padding: 18px 0 54px;
}

.mn-breadcrumbs {
    margin-bottom: 34px;
}

.mn-hero__grid {
    display: grid;
    grid-template-columns: minmax(250px, 370px) minmax(0, 1fr) minmax(320px, 400px);
    grid-template-areas:
        "image intro offer"
        "image about offer";
    gap: 28px;
    align-items: stretch;
}

.mn-hero__intro {
    grid-area: intro;
    align-self: start;
}

.mn-hero__about {
    grid-area: about;
    align-self: start;
}

.mn-product-card,
.mn-offer-card,
.mn-about-card,
.mn-info-card,
.mn-variant-card,
.mn-analog-card,
.mn-order-info-card,
.mn-empty-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(40, 51, 72, 0.06);
}

.mn-product-card {
    grid-area: image;
    padding: 14px 14px 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

.mn-product-card__image-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
    pointer-events: none;
}

.mn-about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.mn-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 5px 12px;
    border: 1px solid #d9dce5;
    border-radius: 5px;
    color: #5d6470;
    font-size: 13px;
    line-height: 1;
}

.mn-badge__icon {
    font-size: 13px;
    line-height: 1;
}

.mn-badge__icon-img {
    display: block;
    flex-shrink: 0;
    width: 14px;
    height: 12px;
}

.mn-badge--green .mn-badge__icon-img {
    filter: brightness(0) invert(1);
}

.mn-badge__icon--alert {
    display: inline-flex;
    width: 14px;
    height: 14px;
    justify-content: center;
    align-items: center;
    border: 1px solid #cc2f3a;
    border-radius: 50%;
    color: #cc2f3a;
    font-weight: 700;
    font-size: 10px;
}

.mn-badge--prescription {
    border-color: #cc2f3a;
    background: #fff5f6;
    color: #cc2f3a;
    font-weight: 700;
}

.mn-badge--green {
    border-color: #3e9694;
    background: #3e9694;
    color: #fff;
    font-weight: 700;
}

.mn-badge--warn {
    border-color: #e8c4c7;
    background: #fff5f6;
    color: #8a3a42;
}

.mn-badge--warn .mn-badge__icon--child {
    border-color: #cc2f3a;
    color: #cc2f3a;
}

.mn-badge--child {
    border-color: #c5e8e7;
    background: #f0faf9;
    color: #2d6a68;
}

.mn-badge__icon--child {
    display: inline-flex;
    width: 14px;
    height: 14px;
    justify-content: center;
    align-items: center;
    border: 1px solid #3e9694;
    border-radius: 50%;
    font-weight: 700;
    font-size: 10px;
}

.mn-badge--child .mn-badge__icon--child {
    color: #3e9694;
}

.mn-badge__icon--doc {
    font-weight: 700;
    font-size: 11px;
    color: #5d6470;
}

.mn-product-card__image-wrap {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    min-height: 212px;
}

.mn-product-card__image-link {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    cursor: zoom-in;
    text-decoration: none;
}

.mn-product-card__image-link:focus-visible {
    outline: 2px solid #3e9694;
    outline-offset: 4px;
    border-radius: 4px;
}

.mn-product-card__image {
    /* max-width: 190px; */
    max-height: 230px;
    object-fit: contain;
}

.mn-product-card__note {
    color: #737b88;
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
    margin-top: auto;
    padding-top: 16px;
}

.mn-title {
    max-width: 600px;
    margin: 0 0 10px;
    color: #2b3038;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.14;
}

.mn-rating {
    display: flex;
    gap: 14px;
    align-items: center;
    color: #2f3440;
    font-size: 14px;
    margin-bottom: 20px;
}

.mn-rating__star {
    color: #ffb800;
    font-size: 16px;
}

.mn-rating__value {
    color: #2b3038;
}

.mn-rating__meta {
    color: #4e5563;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mn-rating__question {
    display: inline-flex;
    width: 14px;
    height: 14px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #303845;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.mn-about-title {
    margin: 0 0 10px;
    color: #2b3038;
    font-size: 24px;
    line-height: 1.2;
}

.mn-about-list {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.mn-about-card {
    display: flex;
    gap: 14px;
    align-items: center;
    width: min(100%, 460px);
    padding: 12px 14px;
    margin: 0;
    border-radius: 4px;
    box-shadow: none;
}

.mn-about-card > div {
    flex: 1;
    min-width: 0;
}

.mn-about-card__icon {
    flex: 0 0 30px;
    width: 30px;
    min-width: 30px;
    height: 30px;
    display: block;
    object-fit: contain;
}

.mn-about-card__label {
    display: block;
    color: #7a828f;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.mn-about-card strong {
    display: block;
    color: #2b3038;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.mn-about-card strong a {
    color: inherit;
    text-decoration: none;
}

.mn-about-card strong a:hover {
    color: #3e9694;
}

.mn-about-card__sep {
    font-weight: 400;
}

.mn-summary {
    width: min(100%, 460px);
    margin: 0;
}

.mn-summary__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid #d6dae4;
}

.mn-summary dt {
    color: #5d6573;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 400;
}

.mn-summary dd {
    color: #3e9694;
    font-size: 18px;
    line-height: 1.25;
    margin: 0;
    text-align: right;
}

.mn-offer-card {
    grid-area: offer;
    padding: 14px;
    overflow: visible;
}

@media (min-width: 1181px) {
    .mn-offer-card {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 0;
        align-self: stretch;
    }
}

.mn-offer-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    overflow: visible;
}

.mn-offer-card__orders {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #737b88;
    font-size: 15px;
    line-height: 1.1;
}

.mn-offer-card__orders-icon {
    display: block;
    flex-shrink: 0;
}

.mn-offer-card__favorite {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 0;
    border-radius: 0;
    width: auto;
    height: auto;
    margin-right: 6px;
    padding: 0;
    background: transparent;
    cursor: pointer;
    overflow: visible;
}

.mn-offer-card__favorite-icon {
    display: block;
    flex-shrink: 0;
    width: 29px;
    height: 26px;
    object-fit: contain;
    overflow: visible;
}

.mn-offer-card__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 8px;
    margin: 0 0 12px;
}

.mn-offer-card__label {
    color: #3e9694;
    font-size: 24px;
    line-height: 1;
}

.mn-offer-card__price-row .mn-offer-card__label {
    margin: 0;
}

.mn-offer-card__price {
    color: #3e9694;
    font-size: 38px;
    line-height: 1.08;
    margin: 0;
}

.mn-offer-card__price-row .mn-offer-card__price {
    font-weight: 700;
}

.mn-offer-card__price--muted {
    color: #737b88;
    font-size: 22px;
}

.mn-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    flex: 1;
}

.mn-button__icon {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.mn-offer-seo {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8ebf0;
}

.mn-offer-seo p {
    margin: 0 0 10px;
    color: #737b88;
    font-size: 12px;
    line-height: 1.55;
}

.mn-offer-seo p:last-child {
    margin-bottom: 0;
}

.mn-offer-seo__highlight {
    color: #cc2f3a;
    font-weight: 700;
}

.mn-offer-seo__details > p:last-child {
    margin-bottom: 0;
}

.mn-offer-seo__spoiler {
    display: none;
    margin: 0 0 10px;
    border: 0;
    padding: 0;
}

.mn-offer-seo__spoiler > summary {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    list-style: none;
    color: #3e9694;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
}

.mn-offer-seo__spoiler > summary::-webkit-details-marker {
    display: none;
}

.mn-offer-seo__spoiler > summary::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-1px) rotate(45deg);
    vertical-align: middle;
}

.mn-offer-seo__spoiler[open] > summary {
    margin-bottom: 10px;
}

.mn-offer-seo__spoiler[open] > summary::after {
    transform: translateY(1px) rotate(-135deg);
}

.mn-offer-seo__spoiler-body > p:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .mn-offer-seo__details {
        display: none;
    }

    .mn-offer-seo__spoiler {
        display: block;
    }
}

.mn-offer-card__actions {
    display: flex;
    gap: 10px;
}

.mn-offer-card__actions .mn-button {
    width: 100%;
    cursor: pointer;
}

.mn-button--primary {
    background: #d81f4f;
    color: #fff;
}

.mn-button--primary:hover {
    color: #fff;
}

.mn-button--secondary {
    background: #fff;
    border-color: #d81f4f;
    color: #2b3038;
}

.mn-button.is-disabled {
    pointer-events: none;
    opacity: 0.65;
}

.mn-section,
.mn-info {
    padding: 34px 0;
}

.mn-section__title {
    color: #2b3038;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 28px;
}

.mn-filter-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.mn-filter-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 18px;
    border: 1px solid #3e9694;
    border-radius: 18px;
    color: #2b3038;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.mn-filter-pills--dosages {
    margin-bottom: 26px;
}

.mn-variant-card.is-hidden {
    display: none;
}

.mn-variants-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 8px;
    padding: 10px 24px;
    border: 0;
    border-radius: 6px;
    background: #3e9694;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}

.mn-variants-more:hover {
    background: #357f7d;
}

.mn-variants-more[hidden] {
    display: none;
}

.mn-page-anchor {
    height: 0;
    overflow: hidden;
}

.mn-filter-pill.is-active {
    background: #3e9694;
    color: #fff;
}

.mn-filter-pill.is-unavailable {
    border-color: #c5c9d1;
    color: #9aa0ab;
    background: #f4f5f7;
}

.mn-filter-pill.is-unavailable.is-active {
    background: #b8bcc4;
    border-color: #b8bcc4;
    color: #fff;
}

.mn-variants-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mn-variant-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 116px;
    padding: 16px 18px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mn-variant-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(40, 51, 72, 0.1);
}

.mn-variant-card.is-unavailable {
    opacity: 0.78;
}

.mn-variant-card__image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 82px;
    height: 82px;
}

.mn-variant-card__image {
    max-width: 72px;
    max-height: 82px;
    object-fit: contain;
}

.mn-variant-card__content {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.mn-variant-card__title {
    color: #2b3038;
    font-size: 16px;
    line-height: 1.25;
}

.mn-variant-card__stock {
    color: #3e9694;
    font-size: 13px;
    line-height: 1.2;
}

.mn-variant-card__price {
    color: #3e9694;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 800;
}

.mn-variant-card__notify {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    border: 0;
    border-radius: 8px;
    background: #3e9694;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.mn-variant-card__notify:hover {
    background: #358884;
}

.mn-analogs {
    padding: 34px 0 40px;
}

.mn-analogs + .mn-analogs {
    padding-top: 0;
}

.mn-analogs__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.mn-analogs__title {
    margin: 0;
}

.mn-analogs__nav {
    flex-shrink: 0;
    margin: 0;
}

.mn-analogs__empty {
    margin: 0;
    color: #737b88;
    font-size: 15px;
    line-height: 1.55;
}

.mn-analogs__btn-prev,
.mn-analogs__btn-next {
    border: 0;
    cursor: pointer;
}

.mn-products-carousel__swiper {
    overflow: hidden;
}

.mn-products-carousel__swiper .swiper-wrapper {
    align-items: stretch;
}

.mn-products-carousel__slide {
    width: 240px;
    height: auto;
    display: flex;
}

.mn-analog-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 18px 16px 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mn-analog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(40, 51, 72, 0.1);
}

.mn-analog-card__image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    margin-bottom: 14px;
}

.mn-analog-card__image {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.mn-analog-card__body {
    display: grid;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.mn-analog-card__title {
    color: #2b3038;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.mn-analog-card__meta,
.mn-analog-card__manufacturer {
    color: #7a8499;
    font-size: 13px;
    line-height: 1.25;
}

.mn-analog-card__manufacturer {
    color: #9aa3b5;
}

.mn-analog-card__stock {
    color: #3e9694;
    font-size: 13px;
    line-height: 1.2;
}

.mn-analog-card__price {
    margin-top: auto;
    padding-top: 8px;
    color: #2b3038;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 800;
}

.mn-order-info {
    padding: 34px 0 48px;
    background: #f4f6f8;
}

.mn-order-info__title {
    margin-bottom: 24px;
}

.mn-order-info__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mn-order-info-card {
    display: grid;
    gap: 14px;
    padding: 22px 24px;
}

.mn-order-info-card--wide {
    grid-column: 1 / -1;
}

.mn-order-info-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mn-order-info-card__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.mn-order-info-card__title {
    margin: 0;
    color: #2b3038;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.mn-order-info-card__text {
    margin: 0;
    color: #5f6778;
    font-size: 14px;
    line-height: 1.55;
}

.mn-order-info-card__text a {
    color: #3e9694;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.mn-order-info-card__text a:hover {
    text-decoration: underline;
}

.mn-empty-card {
    grid-column: 1 / -1;
    padding: 22px;
    color: #737b88;
}

.mn-page-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    padding: 14px 0;
    background: #f4f5fb;
    border-bottom: 1px solid rgba(43, 48, 56, 0.08);
}

.mn-page-nav .mn-tabs {
    margin-bottom: 0;
}

.mn-page-sections {
    padding-bottom: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.mn-page-section {
    scroll-margin-top: 88px;
}

.mn-page-sections > .mn-page-section > .container > .mn-info-card,
.mn-page-sections > .mn-page-section > .container > .mn-reviews-card {
    margin-bottom: 0;
}

.mn-page-sections > .mn-page-section {
    margin-bottom: 18px;
}

.mn-page-sections > .mn-page-section:last-child {
    margin-bottom: 0;
}

.mn-tabs {
    display: flex;
    gap: 28px;
    align-items: center;
    overflow-x: auto;
    padding: 0 0 12px;
    margin-bottom: 44px;
}

.mn-tabs__item {
    flex: 0 0 auto;
    border: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
    color: #2b3038;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 0 10px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.mn-tabs__item:hover {
    color: #3e9694;
}

.mn-tabs__item.is-active {
    border-color: #3e9694;
}

.mn-info-card {
    padding: 34px 36px;
    margin-bottom: 0;
    box-sizing: border-box;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.mn-info-card h2 {
    color: #2b3038;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 24px;
}

.mn-info-card p {
    color: #3f4652;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.mn-info-card__muted {
    color: #737b88;
}

.mn-accordion {
    border: 0;
    padding: 0;
    margin: 0 0 22px;
}

.mn-accordion:last-child {
    margin-bottom: 0;
}

.mn-accordion summary {
    color: #3e9694;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    list-style: none;
}

.mn-accordion summary::-webkit-details-marker {
    display: none;
}

.mn-accordion summary::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 8px;
    border-top: 2px solid #3e9694;
    border-right: 2px solid #3e9694;
    transform: rotate(45deg);
}

.mn-accordion[open] summary::before {
    transform: rotate(135deg);
}

.mn-accordion__body {
    padding: 12px 0 0 20px;
    color: #1f2430;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    overflow-wrap: break-word;
}

.mn-accordion__body ul,
.mn-accordion__body ol {
    list-style: inside;
    margin: 1.2em 0;
    padding: 0 20px 0 0;
}

.mn-accordion__body ul li,
.mn-accordion__body ol li {
    margin: 0 0 0.3em;
}

.mn-accordion__body table {
    border-collapse: collapse;
    margin: 0.8em 0;
    max-width: 100%;
}

.mn-accordion__body table td,
.mn-accordion__body table th {
    border: 1px solid #e0e0e0;
    padding: 5px 10px;
}

.mn-reviews {
    margin-top: 60px;
    margin-bottom: 40px;
}

.mn-reviews-tabs {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    margin-bottom: 20px;
    overflow-x: auto;
}

.mn-reviews-tabs__item {
    flex: 0 0 auto;
    padding: 0 0 10px;
    border: 0;
    border-bottom: 2px solid #d6dae4;
    background: transparent;
    color: #737b88;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
}

.mn-reviews-tabs__item.is-active {
    border-bottom-color: #3e9694;
    border-bottom-width: 3px;
    color: #2b3038;
}

.mn-reviews-panel[hidden] {
    display: none !important;
}

.mn-review__variant,
.mn-question__variant {
    margin: 0 0 8px;
    color: #737b88;
    font-size: 13px;
    line-height: 1.3;
}

.mn-question {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e6e9ef;
}

.mn-question:last-of-type {
    padding-bottom: 0;
    margin-bottom: 28px;
    border-bottom: 0;
}

.mn-question__text {
    margin: 0 0 12px;
    color: #2b3038;
    font-size: 15px;
    line-height: 1.55;
}

.mn-question__answer {
    margin: 0 0 12px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #f4f6f8;
    color: #2b3038;
    font-size: 14px;
    line-height: 1.5;
}

.mn-question__answer p {
    margin: 6px 0 0;
}

.mn-feedback-form {
    display: none;
    margin: 0 0 24px;
    padding: 22px;
    border: 1px solid #e6e9ef;
    border-radius: 8px;
    background: #f8f9fc;
}

.mn-feedback-form.review-block__form__active {
    display: block;
}

.mn-reviews-actions + .mn-feedback-form.review-block__form__active {
    margin-top: -12px;
}

.mn-feedback-form .review-block__title {
    display: block;
    margin: 0 0 10px;
    color: #2b3038;
    font-size: 15px;
    font-weight: 700;
}

.mn-feedback-form .review-block__form-input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 12px;
    border: 1px solid #d6dae4;
    border-radius: 8px;
    font-size: 14px;
}

.mn-feedback-form .review-block__textarea {
    min-height: 120px;
    resize: vertical;
}

.mn-feedback-form .review-block__close-btn {
    float: right;
    border: 0;
    background: transparent;
    color: #737b88;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.mn-feedback-form .full-stars {
    margin-bottom: 14px;
}

.mn-feedback-form .rating-group {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.mn-feedback-form .rating-group input {
    display: none;
}

.mn-feedback-form .rating-group label {
    cursor: pointer;
}

.mn-reviews-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(40, 51, 72, 0.06);
    padding: 28px 32px 32px;
}

.mn-review {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e6e9ef;
}

.mn-review:last-of-type {
    padding-bottom: 0;
    margin-bottom: 28px;
    border-bottom: 0;
}

.mn-review__stars {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom: 14px;
}

.mn-review__star {
    display: block;
    width: 16px;
    height: 16px;
}

.mn-review__text {
    margin: 0 0 14px;
    color: #2b3038;
    font-size: 15px;
    line-height: 1.55;
}

.mn-review__meta {
    display: grid;
    gap: 4px;
    color: #737b88;
    font-size: 13px;
    line-height: 1.35;
}

.mn-review__author strong {
    color: #2b3038;
    font-weight: 600;
}

.mn-review__date {
    color: #737b88;
}

.mn-reviews-empty {
    margin: 0;
    color: #737b88;
    font-size: 15px;
    line-height: 1.5;
}

.mn-reviews-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.mn-reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
}

.mn-reviews-btn--outline {
    border: 1px solid #3e9694;
    background: #fff;
    color: #2b3038;
}

.mn-reviews-btn--primary {
    border: 1px solid #3e9694;
    background: #3e9694;
    color: #fff;
}

@media (max-width: 1180px) {
    .mn-variants-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mn-products-carousel__slide {
        width: 220px;
    }
}

/* Планшет: фото + цена в одной строке, описание — ниже на всю ширину */
@media (max-width: 1180px) and (min-width: 901px) {
    .mn-hero__grid {
        grid-template-columns: minmax(200px, 280px) minmax(0, 1fr);
        grid-template-areas:
            "image offer"
            "intro intro"
            "about about";
        gap: 20px 24px;
        align-items: start;
    }

    .mn-offer-card {
        align-self: start;
    }

    .mn-title {
        max-width: none;
        font-size: 26px;
    }

    .mn-offer-card__price {
        font-size: 32px;
    }

    .mn-offer-card__label {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .medication-name-page {
        padding-bottom: 42px;
    }

    .mn-hero {
        padding-bottom: 28px;
    }

    .mn-hero__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "intro"
            "offer"
            "about";
        gap: 18px;
    }

    .mn-title {
        font-size: 28px;
    }

    .mn-about-title {
        font-size: 22px;
    }

    .mn-about-card strong,
    .mn-summary dt,
    .mn-summary dd,
    .mn-offer-card__price,
    .mn-button {
        font-size: 16px;
    }

    .mn-offer-card__actions {
        flex-direction: column;
    }

    .mn-summary,
    .mn-about-card {
        width: 100%;
    }

    .mn-variants-grid {
        grid-template-columns: 1fr;
    }

    .mn-analogs__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .mn-products-carousel__slide {
        width: 200px;
    }

    .mn-order-info__grid {
        grid-template-columns: 1fr;
    }

    .mn-order-info-card {
        padding: 18px 16px;
    }

    .mn-info-card {
        padding: 24px 18px;
    }

    .mn-tabs {
        gap: 18px;
        margin-bottom: 24px;
    }

    .mn-reviews-card {
        padding: 22px 18px 24px;
    }

    .mn-reviews-tabs {
        gap: 20px;
    }

    .mn-reviews-actions {
        flex-direction: column;
    }

    .mn-reviews-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mn-title {
        font-size: 24px;
    }

    .mn-about-title {
        font-size: 20px;
    }

    .mn-breadcrumbs {
        margin-bottom: 22px;
    }
}

@media (max-width: 420px) {
    .mn-variant-card {
        grid-template-columns: 68px minmax(0, 1fr);
        padding: 14px;
    }

    .mn-variant-card__image-wrap {
        width: 68px;
        height: 74px;
    }

    .mn-variant-card__image {
        max-width: 60px;
        max-height: 74px;
    }
}
