:root {
    --theme-container-wide: 1060px;
    --theme-container-content: 960px;

    --theme-color-primary: #4e73df;
    --theme-color-secondary: #7c4dff;

    --theme-bg: #f5f5f5;
    --theme-text: #1f1f1f;

    --theme-border-radius: 12px;
    --theme-transition: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--theme-bg);
    color: var(--theme-text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.theme-container {
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.theme-container--wide {
    width: 100%;
    max-width: var(--theme-container-wide);
    margin: 0 auto;
}

.container{
    width: 100%;
    max-width: var(--theme-container-wide);
    margin: 0 auto;
}

.theme-container--content {
    width: 100%;
    max-width: var(--theme-container-content);
    margin: 0 auto;
}

.site-header {
    position: relative;
    z-index: 100;
    background: #ffffff;
    padding: 15px 0;
    margin: 0;
    box-shadow: 0 4px 15px rgba(28, 56, 95, 0.08);
    border: none;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header__logo {
    text-decoration: none;
    color: inherit;
}

.site-header__logo-img {
    max-height: 60px;
    width: auto;
}

.site-header__logo-text {
    font-size: 24px;
    font-weight: 900;
    color: #1c385f;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.site-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-header__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #1c385f;
    margin: 0 auto;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -420px;
    z-index: 1001;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: #1c385f;
    padding: 30px 40px;
    transition: right var(--theme-transition);
    overflow-y: auto;
}

.side-menu.is-open {
    right: 0;
    box-shadow: -20px 0 50px rgba(0,0,0,0.6);
}

.side-menu__close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.side-menu__nav {
    margin-top: 60px;
}

.side-menu__nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-menu__nav li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.side-menu__nav li:last-child {
    border-bottom: none;
}

.side-menu__nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 0;
}

.side-menu__nav a:hover {
    opacity: .8;
}

.side-menu__footer {
    margin-top: 40px;
    padding-top: 32px;
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}

.side-menu__contacts {
    margin-bottom: 32px;
}

.side-menu__title {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.side-menu__contacts-content {
    color: #ffffff;
    line-height: 1.7;
}

.side-menu__contacts-content a {
    color: #ffffff;
}

.side-menu__contacts-content ul {
    list-style: none;
}

.side-menu__map-frame iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 8px;
}

.side-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.side-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.site-footer {
    padding: 50px 0;
    background: #fcfcfd;
    border-top: 1px solid #e2e8f0 !important;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 6fr 3fr;
    align-items: stretch;
    gap: 15px;
    margin-bottom: 30px;
}

.site-footer__contacts {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.site-footer__contacts-content {
    flex: 1;
    height: 100%;
}

.site-footer__map {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(28, 56, 95, 0.06);
}

.site-footer__contacts-content > div {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    height: 100%;
}

.site-footer__contacts-content > div > div {
    flex: 1 1 250px;
    min-width: 250px;
    height: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.site-footer__contacts-content h4 {
    margin: 0 0 12px 0;
    color: #111827;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 6px;
}

.site-footer__contacts-content ul,
.site-footer__contacts-content ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__contacts-content li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__contacts-content li::marker {
    content: '';
}

.site-footer__contacts-content > div > div:first-child li {
    margin-bottom: 8px;
}

.site-footer__contacts-content > div > div:first-child li:last-child {
    margin-bottom: 0;
}

.site-footer__contacts-content > div > div:nth-child(2) ul {
    font-size: 0.8em;
    line-height: 1.2;
}

.site-footer__contacts-content > div > div:nth-child(2) li {
    display: flex;
    flex-direction: column;
    border: 1px solid #cbd5e1;
    background: rgba(128, 128, 128, 0.05);
    padding: 6px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.site-footer__contacts-content > div > div:nth-child(2) li:last-child {
    margin-bottom: 0;
}

.site-footer__contacts-content > div > div:nth-child(2) strong {
    margin-bottom: 2px;
    font-size: 1.05em;
}

.site-footer__contacts-content a {
    color: #2563eb;
    text-decoration: underline;
}

.site-footer__map-title {
    color: #111827;
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 12px 0;
    font-weight: 600;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 6px;
    display: block;
    line-height: 1.2;
    flex-shrink: 0;
}

.site-footer__contacts p,
.site-footer__contacts ul,
.site-footer__contacts ol {
    margin-top: 0;
}

.site-footer__contacts > :last-child,
.site-footer__contacts-content > :last-child {
    margin-bottom: 0;
}

.site-footer__map-frame iframe {
    width: 100%;
    min-height: 300px;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.site-footer__nav {
    border-top: 1px solid #cbd5e1;
    padding-top: 30px;
    padding-bottom: 10px;
}

.site-footer__nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__nav ul li a{
    font-size: 13px;
    font-weight: 600;
    color: #1c385f;
    text-decoration: underline;
    text-transform: uppercase;
}

/* Page Main and Content Styles */
.page-main {
    padding: 40px 0 60px;
}

.page-content__header {
    margin-bottom: 24px;
}

.page-content__title {
    margin: 0;
    font-size: 36px;
    line-height: 1.2;
    color: #1c385f;
}

.page-content__body {
    line-height: 1.7;
}

.page-content__body > :first-child {
    margin-top: 0;
}

.page-content__body > :last-child {
    margin-bottom: 0;
}

/* Product Card */
.product-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 30px;
    background: #1c385f;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    position: relative;
    align-items: start;
}

.product-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
}

.product-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background: #ffffff;
    object-fit: cover;
}

.product-card__discount {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 118px;
    height: 118px;
    overflow: hidden;
    pointer-events: none;
}

.product-card__discount span {
    position: absolute;
    top: 18px;
    right: -38px;
    display: block;
    width: 150px;
    padding: 7px 0;
    background: #ff2d2d;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transform: rotate(45deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.product-card__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    /* min-height: 100%; */
}

.product-card__title {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
}

.product-card__undertitle {
    margin-bottom: 26px;
    color: rgba(255,255,255,.86);
    font-size: 19px;
    line-height: 1.45;
}

.product-card__prices {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
    margin-bottom: 34px;
}

.product-card__old-price,
.product-card__new-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 86px;
    padding: 14px 26px;
    border-radius: 8px;
    text-align: center;
}

.product-card__old-price {
    min-width: 190px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.68);
}

.product-card__old-price span,
.product-card__new-price span {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
}

.product-card__old-price strong {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
}

.product-card__old-price strong::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 2px;
    background: #ff2d2d;
    transform: rotate(-8deg);
}

.product-card__new-price {
    min-width: 190px;
    background: #ff2d2d;
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(255, 45, 45, 0.24);
}

.product-card__new-price strong {
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
}

.product-card__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-card__input {
    width: 100%;
    height: 72px;
    border: 0;
    border-radius: 8px;
    padding: 0 24px;
    font-size: 18px;
}

.product-card__button {
    height: 78px;
    border: 0;
    border-radius: 8px;
    background: #f6b323;
    color: #1c385f;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(246, 179, 35, 0.2);
}

.product-card__button:hover {
    opacity: .9;
}

.product-card__combo {
    grid-column: 1 / -1;
    margin-top: 6px;
    background: #eef2f7;
    border: 0;
    border-radius: 10px;
    padding: 22px 24px;
    text-align: center;
}

.product-card__combo-title {
    max-width: 520px;
    margin: 0 auto 14px;
    color: #20252c;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.product-card__combo-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.product-card__combo-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(28, 56, 95, 0.18);
    margin: 0;
    padding: 20px 18px;
    color: #20252c;
    font-size: clamp(16px, 1.7vw, 22px);
    font-weight: 300;
    line-height: 1.28;
}

.product-card__combo-item:last-child {
    border-bottom: 0;
}

/* .product-card__combo-item + .product-card__combo-item {
    border-left: 1px solid rgba(28, 56, 95, 0.18);
} */
.product-card__combo-quantity {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card__combo-price {
    display: block;
    font-size: 1.25em;
    font-weight: 900;
}

.product-card__combo-discount {
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .product-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .product-card__title {
        font-size: 28px;
    }

    .product-card__combo {
        grid-column: auto;
    }
    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .theme-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .page-main {
        padding: 24px 0 40px;
    }

    .page-content__title {
        font-size: 28px;
    }
}

/* Default product landing layout */
.product-page--default {
    --product-bg: #f6f7fb;
    --product-card-bg: #ffffff;
    --product-text: #111827;
    --product-muted: #6b7280;
    --product-accent: #ff6b00;
    --product-accent-dark: #e75f00;
    --product-border: #e5e7eb;
    --product-radius: 24px;
    background: var(--product-bg);
    color: var(--product-text);
}

.product-page--default .container {
    width: min(1260px, calc(100% - 32px));
    margin-inline: auto;
}

.product-page--default .section-padding {
    padding: 56px 0;
}

.product-section__title {
    position: relative;
    margin: 0 0 44px;
    padding-bottom: 22px;
    color: #20252c;
    font-size: clamp(26px, 3.7vw, 48px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-align: left;
    text-transform: uppercase;
}

.product-section__title--decorated::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: #1e88ff;
    box-shadow: 86px 0 0 #1e88ff;
}

.product-section__title strong {
    color: var(--product-accent);
}

.product-hero {
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 107, 0, 0.16), transparent 32%),
        linear-gradient(135deg, #fff7ed 0%, #f6f7fb 48%, #eef2ff 100%);
}

.product-hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
}

.product-bottom-offer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 32px;
    align-items: center;
}

.product-hero__content {
    min-height: 0;
    text-align: left;
}

.product-bottom-offer__content {
    min-height: 160px;
}

.product-hero__card {
    justify-self: stretch;
    width: 100%;
}

.product-bottom-offer__card {
    justify-self: end;
    width: 100%;
}

.product-page--default .product-card {
    grid-template-columns: minmax(420px, 46%) minmax(0, 1fr);
    gap: 34px;
    width: 100%;
    margin: 0;
    padding: 34px 42px 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--product-radius);
    background: #1c385f;
}

.product-page--default .product-card__left {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.product-page--default .product-card__combo {
    grid-column: auto;
    margin-top: 0;
}

.product-page--default .product-card__title {
    margin-bottom: 22px;
    font-size: clamp(34px, 4vw, 44px);
}

.product-card__timer {
    margin-top: 20px;
    padding: 18px 18px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    text-align: center;
}

.product-card__timer-label {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.product-card__timer-items {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}

.product-card__timer-item {
    min-width: 0;
    padding: 10px 6px 8px;
    border-radius: 8px;
    background: #ffffff;
    color: #1c385f;
}

.product-card__timer-item strong {
    display: block;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

.product-card__timer-item span {
    display: block;
    margin-top: 5px;
    color: rgba(28, 56, 95, 0.7);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.product-card__timer-separator {
    color: #f6b323;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.product-card__timer-note {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.45;
}

.product-card__timer-note p {
    margin: 0;
}

.product-catalogue__grid,
.product-benefits__grid,
.product-instruction__grid,
.product-reviews__grid {
    display: grid;
    gap: 22px;
}

.product-catalogue__grid,
.product-benefits__grid,
.product-instruction__grid,
.product-reviews__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-catalogue-card,
.product-benefit-card,
.product-step-card,
.product-review-card {
    overflow: hidden;
    border: 1px solid var(--product-border);
    border-radius: var(--product-radius);
    background: var(--product-card-bg);
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.07);
}

.product-catalogue-card {
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-catalogue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(28, 56, 95, 0.14);
}

.product-catalogue-card__image,
.product-benefit-card__image,
.product-step-card__image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-catalogue-card__body,
.product-benefit-card,
.product-step-card,
.product-review-card {
    padding: 22px;
}

.product-catalogue-card__body {
    display: flex;
    flex-direction: column;
    min-height: 210px;
}

.product-catalogue-card__title,
.product-benefit-card__title,
.product-step-card__title {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.2;
}

.product-catalogue-card__title {
    color: #1c385f;
    font-size: 20px;
    font-weight: 900;
}

.product-catalogue-card__description,
.product-benefit-card__text,
.product-step-card__text,
.product-review-card__text {
    margin: 0;
    color: var(--product-muted);
    font-size: 15px;
    line-height: 1.65;
}

.product-catalogue-card__prices {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}

.product-catalogue-card__old-price,
.product-price--old {
    position: relative;
    display: inline-block;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #ef4444;
}

.product-catalogue-card__old-price::after,
.product-price--old::after {
    content: '';
    position: absolute;
    left: -3px;
    right: -3px;
    top: 50%;
    height: 2px;
    background: #ef4444;
    transform: rotate(-8deg);
}

.product-catalogue-card__new-price {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #ff2d2d;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.product-catalogue-card__id {
    display: inline-block;
    margin-top: 12px;
    color: var(--product-muted);
    font-size: 13px;
}

.product-description {
    background: #ffffff;
}

.product-description__inner {
    display: block;
}

.product-characteristics__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    gap: 36px;
    align-items: center;
}

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

.product-description__content .product-section__title,
.product-characteristics__content .product-section__title {
    text-align: left;
}
.product-order-steps {
    background: #ffffff;
}

.product-order-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-order-card {
    overflow: hidden;
    border: 1px solid var(--product-border);
    border-radius: var(--product-radius);
    background: #ffffff;
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.10);
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-order-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(17, 24, 39, 0.16);
}

.product-order-card__media {
    overflow: hidden;
    background: #eef2f7;
}

.product-order-card__image {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.product-order-card__body {
    position: relative;
    padding: 22px;
    padding-top: 34px;
}

.product-order-card__head {
    display: block;
    margin-bottom: 12px;
}

.product-order-card__icon,
.product-order-card__number {
    position: absolute;
    top: -24px;
    left: 22px;
    display: grid;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: #1c385f;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.18);
    z-index: 2;
}

.product-order-card__icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.product-order-card__title {
    margin: 0;
    margin-top: 4px;
    color: #1c385f;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.product-order-card__text {
    margin: 0;
    color: var(--product-muted);
    font-size: 15px;
    line-height: 1.6;
}

.product-richtext {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 44px;
    align-items: start;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.58;
    text-align: justify;
    text-wrap: pretty;
}

.product-richtext h2,
.product-richtext h3,
.product-richtext h4 {
    margin: 10px 0 15px 0;
    color: #1c385f;
    font-weight: 900;
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    text-align: left;
}

.product-richtext h2 {
    grid-column: 1 / -1;
    margin: 0;
    color: #20252c;
    font-size: clamp(34px, 4.8vw, 52px);
    text-align: left;
    text-transform: uppercase;
}

.product-richtext h3 {
    color: #1c385f;
    font-size: clamp(26px, 3vw, 38px);
    text-align: left;
    text-transform: uppercase;
}

.product-richtext p {
    margin: 0;
    color: #4b5563;
    text-align: justify;
}

/* Respect alignment selected for a parent block in the SCF WYSIWYG editor. */
.product-richtext [style*="text-align: center"] > :not([style*="text-align"]),
.product-richtext [style*="text-align:center"] > :not([style*="text-align"]) {
    text-align: center;
}

.product-richtext h3 + p {
    margin-top: 18px;
}

.product-richtext > h3:nth-of-type(1) {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
}

.product-richtext > p:nth-of-type(1) {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
}

.product-richtext > img:nth-of-type(1) {
    grid-column: 2;
    grid-row: 2 / span 2;
}

.product-richtext > h3:nth-of-type(2) {
    grid-column: 1;
    grid-row: 4;
    align-self: end;
    margin-top: 28px;
}

.product-richtext > p:nth-of-type(2) {
    grid-column: 1;
    grid-row: 5;
    align-self: start;
}

.product-richtext > img:nth-of-type(2) {
    grid-column: 2;
    grid-row: 4 / span 2;
    margin-top: 28px;
}

.product-richtext > img:nth-of-type(3) {
    grid-column: 1;
    grid-row: 6;
    margin-top: 38px;
}

.product-richtext > h3:nth-of-type(3) {
    grid-column: 1;
    grid-row: 7;
    margin-top: 28px;
}

.product-richtext > p:nth-of-type(3) {
    grid-column: 1;
    grid-row: 8;
}

.product-richtext > img:nth-of-type(4) {
    grid-column: 2;
    grid-row: 6;
    margin-top: 38px;
}

.product-richtext > h3:nth-of-type(4) {
    grid-column: 2;
    grid-row: 7;
    margin-top: 28px;
}

.product-richtext > p:nth-of-type(4) {
    grid-column: 2;
    grid-row: 8;
}

.product-richtext strong,
.product-richtext b {
    color: #1c385f;
    font-weight: 900;
}

.product-richtext img {
    max-width: 100%;
    width: 100%;
    height: 330px;
    justify-self: stretch;
    align-self: stretch;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 16px 36px rgba(28, 56, 95, 0.12);
}

.product-description__video {
    overflow: hidden;
    border-radius: var(--product-radius);
    background: #111827;
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.16);
}

.product-description__video iframe,
.product-description__video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.product-benefits,
.product-reviews {
    background: #ffffff;
}

.product-benefit-card,
.product-step-card {
    position: relative;
    text-align: left;
}

.product-benefit-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
}

.product-benefit-card__image,
.product-step-card__image {
    height: 170px;
    margin: -22px -22px 20px;
    width: calc(100% + 44px);
}

.product-step-card__number {
    position: absolute;
    top: 14px;
    left: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--product-accent);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

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

.product-characteristics__image,
.product-characteristics__gallery img {
    display: block;
    width: 100%;
    border-radius: var(--product-radius);
    object-fit: cover;
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.09);
}

.product-characteristics__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.product-characteristics__gallery img {
    height: 190px;
}

.product-characteristics__list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.product-characteristics__item {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid var(--product-border);
    border-radius: 16px;
    background: #ffffff;
}

.product-characteristics__item dt {
    color: var(--product-muted);
    font-weight: 500;
}

.product-characteristics__item dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.product-review-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.product-review-card__image {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.product-review-card__author {
    font-size: 17px;
}

.product-bottom-offer {
    background:
        radial-gradient(circle at 80% 16%, rgba(255, 107, 0, 0.13), transparent 30%),
        #111827;
    color: #ffffff;
}

.product-bottom-offer .product-section__title {
    max-width: 820px;
    margin-inline: auto;
    color: #ffffff;
    text-align: center;
}

.product-bottom-offer__content {
    max-width: 860px;
    min-height: 0;
    margin: 0 auto 28px;
    text-align: center;
}

.product-bottom-offer__content p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.65;
}

@media (max-width: 991px) {
    .product-hero__inner,
    .product-bottom-offer__inner,
    .product-description__inner,
    .product-characteristics__inner {
        grid-template-columns: 1fr;
    }

    .product-hero__card,
    .product-bottom-offer__card {
        justify-self: stretch;
    }

    .product-catalogue__grid,
    .product-benefits__grid,
    .product-instruction__grid,
    .product-reviews__grid,
    .product-order-steps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-page--default .product-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px;
    }

    .product-card__prices {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .product-page--default .container {
        width: min(100% - 24px, 1180px);
    }

    .product-page--default .section-padding {
        padding: 36px 0;
    }

    .product-section__title,
    .product-characteristics__content .product-section__title {
        margin-bottom: 28px;
        font-size: clamp(30px, 10vw, 44px);
        text-align: left;
    }

    .product-section__title--decorated::after {
        width: 52px;
        box-shadow: 64px 0 0 #1e88ff;
    }

    .product-bottom-offer .product-section__title {
        text-align: center;
    }

    .product-catalogue__grid,
    .product-benefits__grid,
    .product-instruction__grid,
    .product-reviews__grid,
    .product-order-steps__grid,
    .product-characteristics__gallery,
    .product-richtext {
        grid-template-columns: 1fr;
    }

    .product-order-card__image {
        height: 120px;
    }

    .product-order-card__body {
        padding: 18px;
    }

    .product-order-card__icon,
    .product-order-card__number {
        left: 18px;
        width: 52px;
        height: 52px;
    }

    .product-characteristics__item {
        display: block;
    }

    .product-characteristics__item dd {
        margin-top: 4px;
        text-align: left;
    }

    .product-card__prices {
        flex-direction: column;
        gap: 12px;
    }

    .product-card__old-price,
    .product-card__new-price {
        min-width: 0;
        width: 100%;
    }

    .product-card__combo {
        padding: 22px 16px;
    }

    .product-card__combo-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card__combo-item {
        padding: 0;
    }

    .product-card__combo-item + .product-card__combo-item {
        border-left: 0;
        border-top: 1px solid rgba(28, 56, 95, 0.18);
        padding-top: 12px;
    }

    .product-card__combo-item {
        font-size: 18px;
    }

    .product-card__input {
        height: 58px;
        font-size: 16px;
    }

    .product-card__button {
        height: 62px;
        font-size: 18px;
    }

    .product-card__timer {
        padding: 14px 12px;
    }

    .product-card__timer-items {
        gap: 5px;
    }

    .product-card__timer-item {
        padding: 8px 4px 7px;
    }

    .product-card__timer-item strong {
        font-size: 20px;
    }

    .product-card__timer-item span {
        font-size: 9px;
    }

    .product-card__timer-separator {
        font-size: 20px;
    }

    .product-richtext {
        gap: 18px;
        text-align: left;
    }

    .product-richtext h2 {
        margin-bottom: 8px;
        font-size: clamp(30px, 10vw, 44px);
        text-transform: uppercase;
    }

    .product-richtext > h3:nth-of-type(n),
    .product-richtext > p:nth-of-type(n),
    .product-richtext > img:nth-of-type(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .product-richtext h3 {
        text-transform: uppercase;
    }

    .product-richtext h3 + p {
        margin-top: 12px;
    }

    .product-richtext p {
        text-align: left;
    }

    .product-richtext img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
    }
}

/* ==========================================
   ORDER BUTTONS
   ========================================== */

.product-order-button-wrap {
    margin: 40px 0;
    text-align: center;
}

.product-order-button,
.product-fixed-order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 0 40px;
    border: 0;
    border-radius: 10px;
    background: #f6b323;
    color: #1c385f;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 18px 34px rgba(246, 179, 35, 0.25);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        opacity .25s ease;
}

.product-fixed-order-button {
    padding: 40px 40px;
    font-size: 42px;
}

.product-order-button:hover,
.product-fixed-order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(246, 179, 35, 0.35);
}

.product-fixed-order-button {
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 999;
    min-width: 320px;

    opacity: 0;
    visibility: hidden;

    transform: translateX(-50%) translateY(120px);
}

.product-fixed-order-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {

    .product-order-button,
    .product-fixed-order-button {
        width: calc(100% - 24px);
        min-width: 0;
        padding: 0 20px;
        font-size: 18px;
    }

    .product-fixed-order-button {
        left: 12px;
        right: 12px;
        bottom: 12px;
        transform: translateY(120px);
    }

    .product-fixed-order-button.is-visible {
        transform: translateY(0);
    }
}
.product-order-form__website {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.product-order-form__status {
    width: 100%;
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.product-order-form__status.is-error {
    color: #b42318;
}

.product-order-form__status.is-success {
    color: #137333;
}

.js-product-order-form button[aria-busy="true"] {
    cursor: wait;
    opacity: 0.72;
}
