/* Основные стили для M3 95C MAX */

/* Общие стили */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    font-size: 100px;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    font-family: MiSans-Regular, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Сброс стилей */
dd, dl, fieldset, h1, h2, h3, h4, h5, h6, hr, input, ol, option, p, td, textarea, ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

b, h1, h2, h3, h4, h5, h6, strong {
    font-weight: 400;
}

em, i {
    font-style: normal;
}

li {
    list-style: none;
}

img {
    border: none;
    display: block;
    max-width: 100%;
    height: auto;
}

/* Утилитарные классы */
.max-auto {
    max-width: 1200px;
    margin: auto;
}

.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.align-flex {
    display: flex;
    align-items: center;
}

.just-flex {
    display: flex;
    justify-content: center;
}

/* Секции */
.section {
    position: relative;
    width: 100%;
}

/* Адаптивность */
@media (max-width: 768px) {
    html {
        font-size: 75px;
    }
    
    .pc-F2-wraper {
        display: none;
    }
    
    .m-F2-wraper {
        display: block;
    }
}

@media (min-width: 769px) {
    .pc-F2-wraper {
        display: block;
    }
    
    .m-F2-wraper {
        display: none;
    }
    .pc-F2-wraper img {
      width: 100vw !important;
      max-width: 100vw !important;
      min-width: 100vw !important;
      height: auto !important;
      display: block;
    }
}

/* Swiper стили */
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

/* Навигация */
.pdp-topbar-comp {
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Изображения продукта */
.section-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.sec__footer_content {
    background: #f5f5f5;
    padding: 40px 0;
    margin-top: 60px;
}