@font-face{
  font-family:'Montserrat';
  src:url('../fonts/montserrat-400.woff2') format('woff2');
  font-weight:400;font-style:normal;font-display:swap;
}
@font-face{
  font-family:'Montserrat';
  src:url('../fonts/montserrat-700.woff2') format('woff2');
  font-weight:700;font-style:normal;font-display:swap;
}
@font-face{
  font-family:'Montserrat';
  src:url('../fonts/montserrat-900.woff2') format('woff2');
  font-weight:900;font-style:normal;font-display:swap;
}

:root {
  --cr-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --tov-main-color: rgb(0, 150, 80);
  --tov-secondary_color: rgb(255, 210, 50);
}
*{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;text-size-adjust:100%}
html,body{scroll-behavior:smooth;overscroll-behavior:none}
body,h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd{margin:0}
ul[role='list'],ol[role='list']{list-style:none;padding:0}
img{max-width:100%;display:block}
body{
  min-height:100vh;
  line-height:1.5;
  font-family:'Montserrat',sans-serif;
  font-weight:400;
  display:flex;
  justify-content:center;
}
.frame-default{border:1px solid #c5c5c5}

:root { --buttonbackground: #c32439; }
.button {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    display: block;
    margin: 20px auto 0;
    border: none;
    background: var(--buttonbackground);
    font-weight: 700;
    font-size: 21px;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
}
.button p { margin-bottom: 0; }

/* ---- critical base rules from theme/style.css (were missing) ---- */
.content-wrap {
    background: #fff;
    border-radius: 5px;
    width: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--cr-shadow);
    position: relative;
}
.margin20 { margin: 20px; }
.margin30 { margin: 30px; }
.title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
h1.title { text-align: left !important; }
@keyframes flareAnimation {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

@keyframes flareMove {
    0% {
        left: -50%;
    }
    50% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-6px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.content-wrap {
border-radius: 0;
}

.header {
padding: 12px 0;
    text-align: center;
}

.product-title {
font-size: 28px;
    color: #000000;
    text-shadow: 1px 1px 5px #d1d0d0;
}

.featured-media .discount {
display: none;
}

.item-card>.countdown h4,
.item-card>.countdown .value {
display: none;
}

.pricing-block {
display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    margin: 8px auto;
    text-align: center;
}

.is-sticky+.pricing-block {
padding-top: 90px;
}

body:has(.countdown.is-sticky) .content-wrap {
padding-top: 110px;
}

.countdown-is-sticky-active .content-wrap {
padding-top: 115px;
}

body:has(.countdown.is-sticky) .pricing-block,
body:has(.countdown.is-sticky) .title,
body:has(.countdown.is-sticky) .block-title,
body:has(.countdown.is-sticky) .number-discount,
body:has(.countdown.is-sticky) h1,
body:has(.countdown.is-sticky) h2,
body:has(.countdown.is-sticky) h3,
body:has(.countdown.is-sticky) .presentation,
body:has(.countdown.is-sticky) .features-block,
body:has(.countdown.is-sticky) .reviews,
body:has(.countdown.is-sticky) .product-description,
body:has(.countdown.is-sticky) .list_section {
padding-top: 0 !important;
    margin-top: 0 !important;
}

.pricing-block .old-price,
.pricing-block .new-price {
font-size: 14px !important;
    padding-bottom: 0 !important;
    margin-left: 10px;
}

.pricing-block .old-price div,
.pricing-block .new-price div {
margin-top: 0;
}

.pricing-block .new-price strong,
.pricing-block .new-price small {
font-size: 50px;
    color: #06064b;
    font-weight: 700;
}

.pricing-block .old-price strong,
.pricing-block .old-price small {
font-size: 30px;
    color: #727272;
    text-decoration: line-through;
    font-weight: 400;
}

.order-button a,
.oreder-form .button-submit {
color: #fff;
    box-shadow: none;
    margin-top: 30px;
    display: block;
    margin: 0 auto;
    width: 400px;
    height: 80px;
    border: none;
    background: linear-gradient(0deg, var(--tov-main-color, rgba(0, 0, 0, 1)) 0%, var(--tov-secondary_color, rgba(131, 82, 57, 1) 100%));
    font-weight: 700;
    font-size: 24px;
    line-height: 80px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.order-button a::after,
.order-form .button-submit::after {
content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: flareAnimation 3s infinite linear;
}

.big-button.button-submit {
color: #fff;
    box-shadow: none;
    margin-top: 30px;
    display: block;
    margin: 0 auto;
    width: 400px;
    height: 80px;
    border: none;
    background: linear-gradient(0deg, #e5287e 0%, #0a3649 100%);
    font-weight: 700;
    font-size: 24px;
    line-height: 80px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.big-button.button-submit:disabled {
cursor: not-allowed;
    opacity: 0.7;
}

.big-button.button-submit::after {
content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 45px;
    transform: skewX(-45deg);
    left: -150%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
    animation: flareAnimation 3s infinite linear;
}

.number-discount .discount-list {
padding-inline-start: 0;
    font-size: 18px;
}

.number-discount .discount-list li:not(:last-child) {
padding-bottom: 10px;
}

.discount-list {
margin: 10px 0 0;
    padding: 0;
    font-size: 20px;
}

h1.title {
margin: 30px 0;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(0deg, var(--tov-main-color, rgba(136, 102, 89, 1)) 0%, var(--tov-secondary_color, rgba(65, 37, 9, 1) 100%));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 0;
    text-align: center !important;
}

.title,
.number-discount .block-title {
margin: 30px 0;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(0deg, #e5287e 0%, #0a3649 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 0;
}

.title:before,
.title:after {
display: none;
}

.presentation {
border: none !important;
    box-shadow: none !important;
}

.presentation p {
margin: 10px 20px;
}

.presentation img {
border-radius: 5px;
}

.presentation ul,
.specifications .characteristics__list {
margin: 25px 0;
    padding: 0;
    list-style: none;
}

.presentation ul li,
.specifications .characteristics__list li {
margin: 0 17px 12px;
    padding: 0 0 0 32px;
    background: url(../images/black-marker.png) left 1px no-repeat;
    background-size: 20px;
}

.specifications img {
margin: 0 auto;
    border-radius: 5px;
}

.reviews {
background: linear-gradient(145deg, #292929, #383838);
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.reviews .title {
font-size: 28px;
    font-weight: 700;
    color: #f5f5f5;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.rev_item {
background: #444;
    padding: 20px 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rev_item:hover {
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.rev_item_image {
border-radius: 3%;
    object-fit: cover;
}

.rev-text {
color: #e0e0e0;
    margin-top: 15px;
}

.rev-title {
font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.rev-author-wrap {
display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.rev-author-name {
font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.swiper-pagination-bullet {
background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid #fff;
    width: 12px;
    height: 12px;
    margin: 5px 5;
}

.swiper-pagination-bullet-active {
background-color: #f5f5f5;
}

.swiper-button-next,
.swiper-button-prev {
color: #fff;
}

.step_item .image {
position: relative;
    width: 50%;
}

.contact-form {
margin: 12px 0 30px;
}

.oreder-form input,
.oreder-form select {
display: block;
    margin: 0 auto 20px;
    padding: 0 20px 0 66px;
    width: 400px;
    height: 66px;
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #f5f5f5;
    font-weight: 400;
    font-size: 16px;
    color: #333;
}

.oreder-form input[name="name"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 24px center;
    background-size: 22px;
}
.oreder-form input[name="phone"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 24px center;
    background-size: 20px;
}
.oreder-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 66px;
    padding-right: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 24px center;
    background-size: 18px;
}

.featured-media+.countdown {
display: none;
}

.title_block {
background: linear-gradient(0deg, #e5287e 0%, #0a3649 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 15px 10px 7px 15px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
}

.reyt {
display: flex;
    justify-content: space-around;
    color: #fff !important;
}

.reyt div p {
margin-bottom: 0;
}

.reyt-block {
display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.reyt-desc {
font-size: 12px;
}

.reyt-block img {
height: 20px;
}

.warehouse-stock {
margin: 20px 0 0;
    text-align: center;
}

.warehouse-stock span {
margin: 0 3px;
    padding: 3px 5px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 2px 2px 1px #acabab;
    color: #06064b;
    font-weight: 700;
}

.features-block .title {
font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-button .big-button {
я font-size: 20px;
    border-radius: 50px;
    text-transform: uppercase;
    background: linear-gradient(0deg, #e5287e 0%, #0a3649 100%);
    ;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.order-button .big-button:hover {
background: linear-gradient(90deg, var(--tov-secondary_color, #6610f2) 0%, var(--tov-main-color, #007bff) 100%);
    transform: translateY(-3px);
}

.oreder-form form {
display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 0.35rem;
    margin-top: 20px;
}

.oreder-form form .wpcf7-form-control-wrap {
width: 100%;
}

.oreder-form form .wpcf7-form-control::placeholder {
color: #8c8c8c;
}

.oreder-form form .big-button:disabled {
background-color: #ccc;
    cursor: not-allowed;
}

.oreder-form form .big-button:hover:enabled {
background-color: #2e7b4d;
}

.oreder-form form .wpcf7-response-output {
margin-top: 0.5rem;
    color: #e74c3c;
    text-align: center;
}

.oreder-form form input[type="hidden"] {
display: none;
}

.footer {
padding: 40px 20px 25px;
    border-top: 1px solid #eaeaea;
    margin-top: 60px;
}

.footer-container {
max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 25px;
}

.footer-links a {
position: relative;
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

.footer-links a::after {
content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1.5px;
    background: #000;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
width: 100%;
}

.footer-links a:hover {
opacity: 0.7;
}

.footer-bottom {
text-align: center;
    color: #777;
    font-size: 13px;
}

.footer-links {
flex-direction: column;
        align-items: center;
        gap: 14px;
}

.footer-links a {
font-size: 15px;
}

.order-step {
margin: 20px;
    text-transform: uppercase;
    color: black;
}

.step-item {
padding: 26px;
    border: 2px solid #dfdfdf;
    border-radius: 5px;
    box-shadow: 0px 0px 8px 1px;
    margin: 15px 0px;
    background: white;
}

.item-top {
display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.top-img img {
width: 30px;
    margin-right: 15px;
}

.top-text {
font-size: 20px;
    font-weight: 700;
}

.item-botton {
font-size: 15px;
}

.order-color {
color: #502516;
    font-weight: 600;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    background: radial-gradient(var(--tov-main-color, rgba(0, 0, 0, 1)) 0%, var(--tov-secondary_color, rgba(131, 82, 57, 1)) 100%);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
transform: translateY(-50%) scale(1.1);
}

.fixed-message {
opacity: 0;
    transform: translateY(100%);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-message.active {
opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fixed-message::before {
content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -webkit-mask-image: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.95) 95%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.95) 95%, rgba(0, 0, 0, 1) 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
    z-index: 0;
}

.button2 {
position: relative;
    z-index: 1;
    width: 370px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    background: linear-gradient(0deg, #e5287e 0%, #0a3649 100%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.button2:hover {
transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.button2 .flare {
position: absolute;
    top: 0;
    left: -50%;
    width: 40%;
    height: 100%;
    background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: flareMove 2.5s infinite;
}

.fixed-message.active .button2 {
animation: bounce 3.6s infinite;
}
/* page-specific custom sections (from inline <style> blocks in original) */
.oxy-benefits {
    padding: 20px 10px;
}
.oxy-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
}
.oxy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.oxy-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}
.oxy-card:hover { transform: translateY(-3px); }
.oxy-icon { font-size: 28px; margin-bottom: 8px; }
.oxy-card h3 { font-size: 14px; font-weight: 700; margin: 0 0 5px; color: #111; }
.oxy-card p { font-size: 12px; line-height: 1.4; color: #666; margin: 0; }

.oxy-specs {
    padding: 20px 15px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}
.oxy-specs h2 { text-align: center; margin: 0 0 20px; font-size: 28px; font-weight: 800; color: #222; }
.oxy-specs ul { list-style: none; padding: 0; margin: 0; }
.oxy-specs li {
    display: flex; align-items: flex-start; gap: 10px; padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); font-size: 15px; line-height: 1.5;
}
.oxy-specs li:last-child { border-bottom: none; }
.oxy-specs .icon { font-size: 18px; flex-shrink: 0; }
.oxy-specs strong { color: #111; }

.oxy-use { padding: 20px 12px; }
.oxy-use-title { text-align: center; font-size: 26px; font-weight: 800; margin-bottom: 15px; color: #222; }
.oxy-use-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.oxy-use-item {
    background: #fff; border-radius: 12px; padding: 12px 10px; font-size: 13px; font-weight: 600;
    color: #333; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06); display: flex; align-items: center; gap: 6px;
}
.oxy-check { color: #16a34a; font-size: 14px; flex-shrink: 0; }


