.product-page {
    padding-block: 24px 56px;
}

.product-breadcrumbs {
    margin-bottom: 18px;
    font-size: 13px;
}

.product-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-breadcrumbs li {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    color: var(--store-muted);
}

.product-breadcrumbs li + li::before {
    color: #a5a5a5;
    content: "—";
}

.product-breadcrumbs a {
    color: var(--store-dark);
    font-weight: 700;
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    color: var(--store-red-action);
}

.product-breadcrumbs li:last-child {
    overflow-wrap: anywhere;
}

.product-title {
    width: 100%;
    max-width: none;
    margin: 0 0 16px;
    color: var(--store-dark);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 0.80;
    overflow-wrap: anywhere;
}

.product-identity {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 30px;
    padding-block: 18px 24px;
}

.product-brand {
    display: inline-flex;
    min-width: 120px;
    min-height: 52px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 7px 13px;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-small);
    background: var(--store-white);
}

.product-brand img {
    display: block;
    width: auto;
    max-width: 160px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

.product-brand__caption {
    color: var(--store-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
}

.product-brand strong {
    margin-top: 5px;
    color: var(--store-dark);
    font-size: 17px;
    line-height: 1;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin: 0;
}

.product-meta div {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.product-meta dt {
    color: var(--store-muted);
    font-size: 13px;
}

.product-meta dd {
    margin: 0;
    color: var(--store-dark);
    font-size: 14px;
    font-weight: 750;
}

.product-main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: start;
}

.product-gallery {
    min-width: 0;
}

.product-gallery__stage {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    background: var(--store-white);
}

.product-gallery__open {
    position: absolute;
    inset: 0;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    overflow: hidden;
    border: 0;
    color: var(--store-dark);
    background: transparent;
    cursor: zoom-in;
}

.product-gallery__main-image {
    position: absolute;
    inset: 22px;
    display: block;
    width: calc(100% - 44px);
    max-width: none;
    height: calc(100% - 44px);
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.product-gallery__main-image--placeholder {
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
}

.product-gallery__zoom-hint {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 6px 12px 6px 34px;
    border: 1px solid rgba(33, 42, 49, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 5px 18px rgba(33, 42, 49, 0.12);
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    pointer-events: none;
}

.product-gallery__zoom-hint::before,
.product-gallery__zoom-hint::after {
    position: absolute;
    content: "";
}

.product-gallery__zoom-hint::before {
    left: 13px;
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.product-gallery__zoom-hint::after {
    left: 24px;
    width: 7px;
    height: 2px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
}

.product-gallery__open:hover .product-gallery__zoom-hint {
    border-color: var(--store-yellow);
    background: var(--store-yellow);
}

.product-gallery__open:focus-visible {
    outline-offset: -4px;
}

.product-gallery__thumbs {
    display: flex;
    gap: 10px;
    padding-block: 12px 2px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.product-gallery__thumb {
    position: relative;
    display: block;
    width: 76px;
    min-width: 76px;
    height: 76px;
    min-height: 76px;
    flex: 0 0 76px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-small);
    background: var(--store-white);
    cursor: pointer;
}

.product-gallery__thumb img {
    position: absolute;
    inset: 3px;
    display: block;
    width: calc(100% - 6px);
    max-width: none;
    height: calc(100% - 6px);
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.product-gallery__thumb.is-active {
    border: 3px solid var(--store-yellow);
}

.purchase-card {
    position: sticky;
    z-index: 10;
    top: 20px;
    padding: 26px;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    background: var(--store-white);
    box-shadow: var(--store-shadow);
}

.purchase-card__header,
.purchase-article,
.purchase-price {
    margin-bottom: 24px;
}

.purchase-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.purchase-stock {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--store-dark);
    font-size: 15px;
}

.stock-badge {
    display: inline-flex;
    min-height: 31px;
    align-items: center;
    padding: 5px 11px;
    border: 2px solid var(--store-yellow);
    border-radius: 999px;
    color: var(--store-dark);
    background: var(--store-yellow);
    font-size: 13px;
    font-weight: 800;
}

.stock-badge--outline {
    background: var(--store-white);
}

.purchase-price {
    padding: 0;
}

.purchase-price > span {
    display: block;
    margin-bottom: 0;
    color: var(--store-muted);
    font-size: 13px;
}

.purchase-price > strong {
    display: block;
    color: var(--store-dark);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 850;
    line-height: 1.1;
}

.supplier-offers {
    position: relative;
    padding: 17px 17px 0;
    border-left: 4px solid var(--store-yellow);
    border-radius: var(--store-radius-small);
    background: var(--store-yellow-light);
}

.supplier-offers__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.supplier-offers h3 {
    margin: 0;
    color: var(--store-dark);
    font-size: 16px;
    line-height: 1.3;
}

.placeholder-label {
    flex: none;
    padding: 3px 7px;
    border: 1px solid #dbc21e;
    border-radius: 999px;
    color: #6d6000;
    background: var(--store-white);
    font-size: 10px;
    font-weight: 750;
    text-transform: uppercase;
}

.supplier-summary {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 15px 0;
}

.supplier-summary div {
    width: 100%;
    min-width: 0;
}

.supplier-summary div:nth-child(2) {
    text-align: center;
}

.supplier-summary div:nth-child(3) {
    text-align: right;
}

.supplier-summary dt {
    color: var(--store-muted);
    font-size: 11px;
}

.supplier-summary dd {
    margin: 2px 0 0;
    color: var(--store-dark);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.supplier-offers details {
    padding-bottom: 0;
    border-top: 1px solid rgba(33, 42, 49, 0.15);
}

.supplier-offers details:not([open]) {
    padding-bottom: 12px;
}

.supplier-offers summary {
    padding-top: 11px;
    color: var(--store-dark);
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.supplier-table-wrap {
    max-height: min(360px, calc(100vh - 160px));
    margin-top: 10px;
    padding: 0;
    overflow: auto;
}

.supplier-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 12px;
}

.supplier-table th,
.supplier-table td {
    padding: 7px 5px;
    border-bottom: 1px solid rgba(33, 42, 49, 0.13);
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
}

.supplier-table th {
    color: var(--store-muted);
    font-weight: 650;
}

.supplier-table tbody tr:last-child td {
    border-bottom-color: transparent;
}

.supplier-table th:nth-child(2),
.supplier-table td:nth-child(2),
.supplier-table th:nth-child(3),
.supplier-table td:nth-child(3) {
    text-align: center;
}

.supplier-table th:nth-child(4),
.supplier-table td:nth-child(4) {
    text-align: right;
}

.supplier-dropshipping {
    color: #000;
    font-weight: 400;
}

.supplier-dropshipping--yes {
    color: #16813a;
}

.supplier-dropshipping--no {
    color: #000;
}

.offer-badge {
    display: block;
    width: max-content;
    margin-top: 3px;
    padding: 1px 5px;
    border-radius: 999px;
    color: var(--store-dark);
    background: var(--store-yellow);
    font-size: 9px;
    font-weight: 750;
}

.supplier-table td:nth-child(3) .offer-badge {
    margin-inline: auto;
}

.purchase-actions {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 12px;
    align-items: end;
    margin-top: 22px;
}

.quantity-field span {
    display: block;
    margin-bottom: 5px;
    color: var(--store-muted);
    font-size: 12px;
}

.quantity-field input {
    width: 100%;
    height: 48px;
    padding: 8px 10px;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-small);
    color: var(--store-dark);
    background: var(--store-white);
    font-weight: 750;
    text-align: center;
}

.purchase-actions .store-button {
    width: 100%;
}

.purchase-note {
    margin: 14px 0 0;
    color: var(--store-muted);
    font-size: 12px;
    line-height: 1.45;
}

.product-information {
    margin-top: 40px;
    overflow: hidden;
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    background: var(--store-white);
    box-shadow: var(--store-shadow);
}

.product-information__tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid var(--store-border);
    background: #f6f7f8;
}

.product-information__tabs--single {
    grid-template-columns: minmax(0, 1fr);
}

.product-information__tabs--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-information__tabs--with-tags {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-information__tabs--single .product-information__tab {
    border-right: 0;
}

.product-information__tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 52px;
    padding: 13px 14px 9px;
    border: 0;
    border-right: 1px solid var(--store-border);
    color: var(--store-dark);
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
}

.product-information__tab:last-child {
    border-right: 0;
}

.product-information__tab:hover {
    background: var(--store-yellow-light);
}

.product-information__tab:focus-visible {
    position: relative;
    z-index: 1;
    outline: 2px solid var(--store-dark);
    outline-offset: -3px;
}

.product-information__section {
    padding: 26px;
    scroll-margin-top: 90px;
}

.product-information__section + .product-information__section {
    border-top: 1px solid var(--store-border);
}

.product-information__section h2 {
    margin: 0 0 14px;
    color: var(--store-dark);
    font-size: 22px;
    line-height: 1.2;
}

.product-information__text {
    color: var(--store-dark);
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.product-information__text h3 {
    margin: 24px 0 10px;
    padding-left: 10px;
    border-left: 3px solid var(--store-yellow);
    color: var(--store-dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.product-information__text p,
.product-information__text ul,
.product-information__text ol {
    margin: 0 0 12px;
}

.product-information__text ul,
.product-information__text ol {
    padding-left: 24px;
}

.product-information__text a {
    color: var(--store-red-action);
}

/* Изображения внутри описания товара */
.product-information__text img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 12px auto;
}

/* Если редактор обернул изображение в абзац — центрируем и убираем лишние отступы */
.product-information__text p:has(> img:only-child) {
    margin: 12px 0;
    text-align: center;
}

.product-information__text p:has(> img:only-child) img {
    margin: 0 auto;
}

/* Пустые строки, которые визуальный редактор может оставить после изображения */
.product-information__text p:empty,
.product-information__text p:has(> br:only-child) {
    display: none;
    margin: 0;
    padding: 0;
}

.product-information__text > :first-child,
.product-information__description-block > :first-child {
    margin-top: 0;
}

.product-information__text > :last-child,
.product-information__description-block > :last-child {
    margin-bottom: 0;
}

.product-information__description-block
+ .product-information__description-block {
    margin-top: 20px;
}

.product-information__empty {
    margin: 0;
    color: var(--store-muted);
    font-size: 14px;
}

.product-interchange-text {
    margin: 0;
    color: var(--store-dark);
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.product-interchange-text__group {
    display: block;
}

body.product-lightbox-open {
    overflow: hidden;
}

.product-lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    grid-template-rows: 44px minmax(0, 1fr) 28px;
    padding: 12px 18px;
    overflow: hidden;
    color: var(--store-white);
    background: rgba(12, 15, 18, 0.96);
}

.product-lightbox[hidden],
.product-lightbox__nav[hidden] {
    display: none;
}

.product-lightbox__top {
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: flex-end;
}

.product-lightbox__close,
.product-lightbox__nav {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--store-white);
    background: rgba(255, 255, 255, 0.08);
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
}

.product-lightbox__close {
    position: relative;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0;
}

.product-lightbox__close::before,
.product-lightbox__close::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
}

.product-lightbox__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.product-lightbox__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.product-lightbox__close:hover,
.product-lightbox__nav:hover {
    border-color: var(--store-yellow);
    color: var(--store-dark);
    background: var(--store-yellow);
}

.product-lightbox__close:hover {
    border-color: transparent;
    color: var(--store-white);
    background: var(--store-red-action);
}

.product-lightbox__viewport {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    place-items: center;
    padding-inline: 72px;
    overflow: hidden;
    touch-action: none;
}

.product-lightbox__image {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: auto;
    max-width: min(calc(100% - 176px), 1440px);
    height: auto;
    max-height: calc(100% - 24px);
    object-fit: contain;
    object-position: center;
    transform: translate(-50%, -50%);
    user-select: none;
    -webkit-user-drag: none;
}

.product-lightbox__nav {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 4px;
    color: var(--store-dark);
    background: var(--store-yellow);
    font-size: 0;
    transform: translateY(-50%);
}

.product-lightbox__nav::before {
    display: block;
    width: 16px;
    height: 20px;
    background: currentColor;
    content: "";
    transform: translateY(4px);
}

.product-lightbox__nav--previous {
    left: 18px;
}

.product-lightbox__nav--previous::before {
    -webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.product-lightbox__nav--next {
    right: 18px;
}

.product-lightbox__nav--next::before {
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-lightbox__nav:hover {
    border-color: transparent;
    color: var(--store-dark);
    background: var(--store-yellow);
    filter: brightness(0.92);
}

.product-lightbox__counter {
    min-height: 28px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

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

    .product-gallery__stage {
        max-height: 680px;
    }

    .purchase-card {
        position: static;
        z-index: auto;
    }

    .supplier-offers details {
        position: static;
        padding-bottom: 0;
    }

    .supplier-offers details:not([open]) {
        padding-bottom: 12px;
    }

    .supplier-table-wrap {
        position: static;
        max-height: 260px;
        margin-top: 10px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
}

.product-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tags__list a {
    display: inline-block;
    padding: 7px 11px;
    border: 1px solid var(--store-border);
    border-radius: 18px;
    color: inherit;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.product-tags__list a:hover,
.product-tags__list a:focus-visible {
    border-color: #be2020;
    color: #be2020;
}

@media (max-width: 640px) {
    .product-page {
        padding-block: 16px 34px;
    }

    .product-breadcrumbs {
        margin-bottom: 13px;
        font-size: 11px;
    }

    .product-breadcrumbs li:last-child {
        flex-basis: 100%;
    }

    .product-breadcrumbs li:last-child::before {
        display: none;
    }

    .product-title {
        font-size: 25px;
    }

    .product-identity {
        gap: 12px 18px;
        padding-block: 15px 20px;
    }

    .product-brand {
        min-height: 44px;
    }

    .product-brand img {
        max-width: 130px;
        max-height: 42px;
    }

    .product-meta {
        gap: 5px 18px;
    }

    .product-meta div {
        display: block;
    }

    .product-gallery__stage {
        border-radius: 7px;
    }

    .product-gallery__open .product-gallery__main-image {
        inset: 12px;
        width: calc(100% - 24px);
        height: calc(100% - 24px);
    }

    .product-gallery__zoom-hint {
        right: 9px;
        bottom: 9px;
        min-height: 31px;
        padding: 5px 9px 5px 30px;
    }

    .product-gallery__zoom-hint::before {
        left: 10px;
    }

    .product-gallery__zoom-hint::after {
        left: 21px;
    }

    .product-gallery__thumb {
        width: 64px;
        min-width: 64px;
        height: 64px;
        min-height: 64px;
        flex-basis: 64px;
    }

    .purchase-card {
        padding: 20px 16px;
        border-radius: 7px;
        box-shadow: 0 8px 24px rgba(33, 42, 49, 0.07);
    }

    .purchase-card__header,
    .purchase-article,
    .purchase-price {
        margin-bottom: 20px;
    }

    .purchase-card__header {
        gap: 12px;
    }

    .purchase-price > strong {
        font-size: 34px;
    }

    .supplier-offers {
        padding: 14px 14px 0;
    }

    .supplier-offers details:not([open]) {
        padding-bottom: 9px;
    }

    .supplier-summary {
        gap: 5px;
    }

    .supplier-summary dd {
        font-size: 13px;
    }

    .purchase-actions {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 9px;
    }

    .product-information {
        margin-top: 28px;
        border-radius: 7px;
    }

    .product-information__tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-information__tabs--single {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-information__tabs--with-tags {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-information__tab {
        min-height: 46px;
        padding: 11px 8px 7px;
        font-size: 13px;
    }

    .product-information__tab:nth-child(2) {
        border-right: 0;
    }

    .product-information__tab:nth-child(-n + 2) {
        border-bottom: 1px solid var(--store-border);
    }

    .product-information__tabs--single .product-information__tab {
        border-right: 0;
        border-bottom: 0;
    }

    .product-information__tabs--two .product-information__tab {
        border-bottom: 0;
    }

    .product-information__tabs--with-tags .product-information__tab:nth-child(3),
    .product-information__tabs--with-tags .product-information__tab:nth-child(4) {
        border-bottom: 1px solid var(--store-border);
    }

    .product-information__tabs--with-tags .product-information__tab:last-child {
        grid-column: 1 / -1;
        border-right: 0;
    }

    .product-information__section {
        padding: 20px 16px;
        scroll-margin-top: 72px;
    }

    .product-information__section h2 {
        margin-bottom: 11px;
        font-size: 19px;
    }

    .product-lightbox {
        grid-template-rows: 40px minmax(0, 1fr) 64px;
        padding: 8px;
    }

    .product-lightbox__viewport {
        padding-inline: 0;
        overflow: visible;
    }

    .product-lightbox__image {
        width: auto;
        max-width: calc(100% - 16px);
        height: auto;
        max-height: calc(100% - 16px);
    }

    .product-lightbox__nav {
        top: auto;
        bottom: -50px;
        width: 36px;
        height: 36px;
        transform: none;
    }

    .product-lightbox__nav--previous {
        left: calc(50% - 54px);
    }

    .product-lightbox__nav--next {
        right: calc(50% - 54px);
    }

    .product-lightbox__counter {
        min-height: 64px;
        line-height: 64px;
    }
}

@media (max-width: 390px) {
    .supplier-offers__heading {
        display: block;
    }

    .placeholder-label {
        display: inline-block;
        margin-top: 7px;
    }
}

/* Таблицы характеристик внутри описания товара */
.product-information__text table.product-description-table,
.product-information__text table {
    width: 100%;
    margin: 12px 0;
    overflow: hidden;
    border: 1px solid var(--store-border);
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--store-radius-small);
    table-layout: auto;
    font-size: inherit;
    line-height: 1.35;
}

.product-information__text table.product-description-table th,
.product-information__text table.product-description-table td,
.product-information__text table th,
.product-information__text table td {
    padding: 4px 7px;
    border: 0;
    border-right: 1px solid var(--store-border);
    border-bottom: 1px solid var(--store-border);
    vertical-align: middle;
}

.product-information__text table tr > *:last-child {
    border-right: 0;
}

.product-information__text table tr:last-child > * {
    border-bottom: 0;
}

.product-information__text table.product-description-table th,
.product-information__text table th {
    background: #f6f7f8;
    font-weight: 700;
    text-align: left;
}

.product-information__text table .product-description-align-left {
    text-align: left;
}

.product-information__text table .product-description-align-center {
    text-align: center;
}

.product-information__text table .product-description-align-right {
    text-align: right;
}

@media (max-width: 640px) {
    /*
     * Таблицы, добавленные через редактор описания товара.
     * На мобильных каждая исходная строка превращается в отдельную
     * мини-таблицу: ячейки идут вертикально одна под другой.
     * Таблица поставщиков находится вне .product-information__text
     * и этими правилами не затрагивается.
     */
    .product-information__text {
        overflow-x: visible !important;
    }

    .product-information__text table.product-description-table,
    .product-information__text table {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 10px 0 !important;
        overflow: visible !important;
        border: 0 !important;
        border-radius: 0 !important;
        border-collapse: separate !important;
        border-spacing: 0 !important;
        background: transparent !important;
        table-layout: auto !important;
    }

    .product-information__text table thead,
    .product-information__text table tbody,
    .product-information__text table tfoot {
        display: block !important;
        width: 100% !important;
    }

    .product-information__text table tr {
        display: block !important;
        width: 100% !important;
        margin: 0 0 4px !important;
        padding: 0 !important;
        overflow: hidden !important;
        border: 1px solid var(--store-border) !important;
        border-radius: var(--store-radius-small) !important;
        background: var(--store-white) !important;
    }

    .product-information__text table tr:last-child {
        margin-bottom: 0 !important;
    }

    .product-information__text table th,
    .product-information__text table td,
    .product-information__text table tr > * {
        display: block !important;
        box-sizing: border-box !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 5px 8px !important;
        border: 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid var(--store-border) !important;
        background: transparent !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
        text-align: left !important;
        vertical-align: middle !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }

    .product-information__text table tr > *:first-child {
        background: #f6f7f8 !important;
        font-weight: 400 !important;
    }

    .product-information__text table tr > *:last-child {
        border-bottom: 0 !important;
        background: var(--store-white) !important;
        font-weight: 400 !important;
        text-align: right !important;
    }
}
