:root {
    --color-text: #151515;
    --color-white: #ffffff;
    --container-max: 1320px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

.page-main {
    overflow: hidden;
}

.product-hero {
    position: relative;
    min-height: 820px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.product-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.06) 30%,
        rgba(255, 255, 255, 0.00) 60%
    );
    pointer-events: none;
}

.product-hero__container {
    position: relative;
    z-index: 2;
    min-height: 820px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.product-hero__inner {
    min-height: 752px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.product-hero__branding {
    margin-bottom: 24px;
}

.product-hero__logo-link {
    display: inline-block;
    text-decoration: none;
}

.product-hero__logo {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
}

.product-hero__content {
    max-width: 540px;
    padding-top: 120px;
    padding-left: 240px;
}

.product-hero__title {
    margin: 0 0 20px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--color-text);
}

.product-hero__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-hero__list li {
    margin-bottom: 18px;
    font-size: 1.2rem;
    line-height: 1.05;
    font-weight: 500;
    color: #111111;
}

.product-hero__list li:last-child {
    margin-bottom: 0;
}

.section-heading-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Вторая секция */
.product-offer-section {
    padding: 64px 0;
    background-color: var(--color-white);
}

.product-offer-section__media {
    margin: 0;
    text-align: center;
}

.product-offer-section__image {
    display: inline-block;
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
}

.product-offer-section__content {
    color: #111111;
}

.product-offer-section__header {
    margin-bottom: 20px;
}

.product-offer-section__title {
    margin: 0 0 12px;
    color: #7a5d47;
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.product-offer-section__subtitle {
    margin: 0;
    color: #7a5d47;
    font-size: clamp(14px, 3vw, 24px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.product-offer-section__text {
    margin-bottom: 28px;
}

.product-offer-section__text p {
    margin: 0 0 12px;
    color: #111111;
    font-size: 1rem;
    line-height: 1.35;
    text-transform: uppercase;
}

.product-offer-section__text p:last-child {
    margin-bottom: 0;
}

.product-offer-section__price-wrap {
    margin-bottom: 28px;
}

.product-offer-section__price-box {
    display: flex;
    align-items: baseline;
    gap: 18px;
    flex-wrap: wrap;
}

.product-offer-section__price {
    color: #7a5d47;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.product-offer-section__old-price {
    color: #a94739;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.product-offer-section__button {
    min-height: 92px;
    padding: 20px 28px;
    border-radius: 16px;
    background-color: #c5b69f;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: opacity 0.2s ease;
}

.product-offer-section__button:hover,
.product-offer-section__button:focus {
    color: var(--color-white);
    opacity: 0.9;
}

.product-offer-section__button-text {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-offer-section__button-icon {
    flex-shrink: 0;
    line-height: 0;
}

/* Третья секция */
.product-problem-section {
    padding: 23px 0;
    background-color: var(--color-white);
}

.product-problem-section__content {
    color: #111111;
    word-wrap: break-word;
}

.product-problem-section__title {
    margin: 0 0 18px;
    color: #7a5d47;
    font-size: clamp(16px, 3vw, 36px);
    font-weight: 600;
    line-height: 1.12;
    text-transform: uppercase;
}

.product-problem-section__subtitle {
    margin: 0;
    color: #7a5d47;
    font-size: clamp(16px, 3vw, 22px);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-problem-section__text p {
    margin: 0 0 18px;
    color: #111111;
    font-size: 1rem;
    line-height: 1.45;
    text-transform: uppercase;
}

.product-problem-section__list {
    margin: 0;
    padding-left: 24px;
}

.product-problem-section__list li {
    margin-bottom: 10px;
    color: #111111;
    font-size: 1rem;
    line-height: 1.45;
    text-transform: uppercase;
}

.product-problem-section__list li:last-child {
    margin-bottom: 0;
}

.product-problem-section__media {
    margin: 0;
    text-align: center;
}

.product-problem-section__image {
    display: inline-block;
    max-width: 100%;
    width: 360px;
    height: auto;
}

/* Четвертая секция */
.product-solution-section {
    padding: 56px 0;
    background-color: var(--color-white);
}

.product-solution-section__header {
    margin-bottom: 28px;
}

.product-solution-section__title {
    margin: 0 0 14px;
    color: #7a5d47;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.product-solution-section__subtitle {
    margin: 0;
    color: #111111;
    font-size: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.product-solution-section__items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.product-solution-item__media {
    margin: 0;
    text-align: center;
}

.product-solution-item__image {
    display: inline-block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.product-solution-item__media--left .product-solution-item__image {
    max-width: 320px;
}

.product-solution-item__media--right .product-solution-item__image {
    max-width: 300px;
}

.product-solution-item__content {
    color: #111111;
}

.product-solution-item__content p {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.42;
}

.product-solution-item__label {
    margin: 0 0 12px;
    color: #111111;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-solution-item__steps {
    margin: 0 0 14px;
    padding-left: 20px;
}

.product-solution-item__steps li {
    margin-bottom: 6px;
    font-size: 1rem;
    line-height: 1.42;
}

.product-solution-item__steps li:last-child {
    margin-bottom: 0;
}

.product-solution-item__composition {
    margin-bottom: 0;
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
}

/* Пятая секция */
.product-expert-section {
    background-color: var(--color-white);
}

.product-expert-section__content {
    max-width: 980px;
    color: #111111;
}

.product-expert-section__header {
    margin-bottom: 18px;
}

.product-expert-section__title {
    margin: 0;
    color: #7a5d47;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.product-expert-section__text p {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.42;
    text-transform: uppercase;
}

.product-expert-section__subtitle {
    margin: 0 0 10px;
    color: #111111;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
}

.product-expert-section__list {
    margin: 0;
    padding-left: 22px;
}

.product-expert-section__list li {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.42;
    text-transform: uppercase;
}

.product-expert-section__list li:last-child {
    margin-bottom: 0;
}

/* Шестая секция */
.product-result-section {
    padding: 56px 0;
    background-color: var(--color-white);
}

.product-result-section__content {
    /* max-width: 560px; */
    color: #111111;
}

.product-result-section__header {
    margin-bottom: 18px;
}

.product-result-section__title {
    margin: 0;
    color: #7a5d47;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.product-result-section__list {
    margin: 0;
    padding-left: 24px;
}

.product-result-section__list li {
    margin-bottom: 14px;
    color: #111111;
    font-size: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
}

.product-result-section__list li:last-child {
    margin-bottom: 0;
}

.product-result-section__media {
    margin: 0;
    text-align: right;
}

.product-result-section__image {
    display: inline-block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: cover;
}

@media (min-width: 992px) {
    .product-solution-item--reverse > .row > div:first-child {
        order: 2;
    }

    .product-solution-item--reverse > .row > div:last-child {
        order: 1;
    }
}
