:root {
    /* Style 1 */
    --Style1borderRadius: 8px;
    --Style1Color1: #00ab55;
    --Style1Color2: #0175ca;
    --Style1Color3: #ed4c3c;
    --Style1Color4: #ff0013;
    --Style1Color5: #ffffff;
    --Style1Color6: #333333;
    --Style1Font1: "Roboto";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--Style1Font1), sans-serif;
    background: #f6f6f6;
    max-width: 480px;
    margin: 0 auto;
    color: var(--Style1Color6);
    padding-top: 0;
    padding-bottom: 80px;
}

header,
section {
    background: #fff;
    margin-bottom: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider {
    position: relative;
}

.main-slide {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thumbnails {
    display: flex;
    gap: 8px;
}

.thumbnail {
    width: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: var(--Style1Color1);
}

h1.title {
    text-wrap: balance;
    font-family: 'Muller';
    font-weight: 800;
    font-size: 40px;
    /* color: var(--Style1Color3); */
}

h2 {
    font-family: 'Muller';
    font-weight: 800;
    font-size: 32px;
    color: var(--Style1Color2);
}

.badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background: var(--Style1Color6);
    color: var(--Style1Color5);
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

.badge.discount {
    background: var(--Style1Color4);
}

.badge.bestseller {
    background: #ffd300;
    color: black;
}

.timer-block {
    border: 2px solid var(--Style1Color4);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    color: var(--Style1Color4);
    font-size: 24px;
    font-weight: bold;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 24px;
}

.new-price {
    color: var(--Style1Color3);
    font-size: 30px;
    font-weight: bold;
}

.features {
    background: var(--Style1Color5);
    padding: 26px 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.features:before {
    content: '';
    position: absolute;
    background: var(--Style1Color2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.05;
}

.features h2 {
    color: var(--Style1Color2);
    z-index: 2;
    position: relative;
    font-family: 'Muller';
    font-weight: 800;
}

.features ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 12px 0;
    position: relative;
    z-index: 2;
}

.features li::before {
    content: '✔ ';
    color: var(--Style1Color2);
    font-weight: bold;
    font-size: 20px;
}

.features ul li {
    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    font-size: 24px;
    text-wrap: balance;
}

.details-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.details-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #ccc;
    padding: 6px 0;
    font-size: 19px;
}

.details-row span:first-child {
    text-align: left;
    text-wrap: nowrap;
    width: 40%;
}

.details-row span:last-child {
    color: var(--Style1Color2);
    font-weight: bold;
    text-align: right;
    text-wrap: balance;
    width: 57%;
}

.reviews {
    background: var(--Style1Color5);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.reviews h2 {
    z-index: 1;
    position: relative;
}

.reviews:before {
    content: '';
    position: absolute;
    background: var(--Style1Color1);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.05;
}

.owl-carousel .review {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.owl-carousel .review img {
    width: 100%;
    border-radius: 8px;
}

.owl-carousel .review p {
    margin-top: 8px;
    font-size: 16px;
    color: var(--Style1Color6);
}

.owl-carousel .owl-nav button.owl-next span {
    display: block;
    font-size: 54px;
    height: 48px;
    line-height: 39px;
    width: 48px;
    text-align: center;
    margin: 0 0 0 2px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: var(--Style1Color2);
    color: var(--Style1Color5);
    border: none;
    font-size: 25px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    height: 48px;
    width: 48px;
}

.owl-carousel button.owl-prev {
    display: none !important;
}

.owl-carousel button.owl-next {
    right: 5px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input,
button {
    padding: 14px;
    font-size: 24px;
    border-radius: 6px;
}

input {
    border: 1px solid #ccc;
}

button {
    background: var(--Style1Color1);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
}

button:hover {
    opacity: 0.7;
}

.fixed-order-button {
    border-radius: 6px;
    background: var(--Style1Color1);
    color: var(--Style1Color5);
    font-size: 25px;
    padding: 14px;
    text-align: center;
    z-index: 1000;
    cursor: pointer;
    font-weight: bold;
    
    
    
    
    
    
    
    
    
    
    
    
    
    

    &:hover {
        opacity: 0.7;
    }
}

.description {
    background: #fff;
    margin-bottom: 8px;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.description-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.description-block img {
    width: 100%;
    border-radius: 8px;
}

.description-block p {
    font-size: 24px;
    line-height: 1.5;
}

.order-steps {
    background: #fff;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
}

.order-steps h2 {
    text-align: center;
    color: var(--Style1Color2);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--Style1Color5);
    padding: 12px 22px 12px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.step:before {
    content: '';
    position: absolute;
    background: var(--Style1Color1);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.05;
}

.step-number {
    background: var(--Style1Color2);
    color: var(--Style1Color5);
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
}

.step p {
    font-size: 20px;
    color: var(--Style1Color6);
    text-wrap: balance;
}

.block-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--Style1Color5);
    z-index: 9999;
}

.block-fixed-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
}

.block-fixed-container .timer-block {
    font-size: 16px;
    width: 40%;
    padding: 9px 12px;
}

footer {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    background: #b4b4b4;
    font-size: 14px;
    gap: 10px;
}

footer,
footer a {
    color: #232323;
}

.video_block {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.video_block img {
    margin: 0 0 -5px 0;
}

.video_block iframe {
    width: 100%;
    height: 285px;
    margin: 0 0 -8px 0;
}


body.body-style-2 {
    background: #0c101a;
    color: white;
}

body.body-style-2 header, body.body-style-2 section {
    background: #171C26;
}

body.body-style-2 header li a {
    color: white;
}

body.body-style-2 .step {
    background: #4f4c4c;
}

body.body-style-2 .step p {
    color: white;
}

body.body-style-2 input {
    background: #4b4d55;
    border: 1px solid #272525;
}

body.body-style-2 footer {
    background: #232323;
    color: #b4b4b4;
}

body.body-style-2 footer a {
    color: #b4b4b4;
}

body.body-style-2 .block-fixed {
    background: #272525;
}

body.body-style-2 .tabs li a.active {
    color: var(--Style1Color2);
}

.player {
    border-radius: 6px;
    overflow: hidden;
}

h1.title span {
    /* font-size: 22px; */
    display: block;
    color: var(--Style1Color4);
}

.item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* background: var(--Style1Color5); */
    border-radius: 6px;
    overflow: hidden;
}

.item-img {
    padding: 1rem;
    margin: 0;
    padding-bottom: 0;
}

.item-img img {
    border-radius: 6px;
}

.item-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    padding-top: 0;
    gap: 0.5rem;
}

h5.item-title.mbr-fonts-style.display-5 {
    font-size: 26px;
}

p.mbr-text.mbr-fonts-style.display-7 {
    font-size: 20px;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    padding: 0;
}

.header-bottom {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
    background: #fff;
    width: 100%;
}

.header-logo {
    max-height: 42px;
    width: auto;
    display: block;
}

.burger-menu {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background: #000;
    border-radius: 3px;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.tabs {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    display: none;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #eee;
    z-index: 999;
}

.tabs.active {
    display: flex;
}

.tabs li {
    width: 100%;
}

.tabs li a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    border-bottom: 1px solid #f3f3f3;
}

.tabs li:last-child a {
    border-bottom: none;
}

.tabs li a:hover {
    background: #f7f7f7;
}