/* ================= RESET & БАЗОВЫЕ СТИЛИ ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    color: #2f2f2f;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    
}

a {
    color: #000;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    max-width: 1480px;
}

.d-flex { display: flex; }
.align-items-start { align-items: flex-start; }
.justify-content-between { justify-content: space-between; }
.flex-md-row { flex-direction: row; }
.flex-column-reverse { flex-direction: column-reverse; }
.text-center { text-align: center; }
.d-block { display: block; }
.d-none { display: none; }
.d-inline-flex { display: inline-flex; }
.position-relative { position: relative; }
.position-sticky-md { position: sticky; top: 0; }
.row { display: flex; flex-wrap: wrap; margin-left: -15px; margin-right: -15px; }

/* ================= ПЕРЕМЕННЫЕ (из оригинальных стилей) ================= */
:root {
    --title-font-family: NunitoSans-Regular, sans-serif;
    --subtitle-font-family: NunitoSans-Regular, sans-serif;
    --text-font-family: NunitoSans-Regular, sans-serif;
    --price-color: rgba(240,34,11,1);
    --regular-color: rgba(207,207,207,1);
    --main-btn-bg: rgba(17,16,16,1);
    --main-btn-tx: #FFFFFF;
    --menu-icon-color: rgba(0,0,0,1);
}

/* ================= HEADER ================= */
.section-header {
    background-color: #fff;
}

.site-header {
    background-color: #fff;
    box-shadow: 0 1px 0 0 #e3e3e3;
    position: relative;
    z-index: 1010;
}

/* Header Top Bar */
.header-show-dom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 71px;
    padding: 0 15px;
    position: relative;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    flex: 1;
}

.header-left { justify-content: flex-start; }
.header-right { justify-content: flex-end; gap: 15px; }

.header-logo span {
    font-size: 40px;
    font-family: var(--title-font-family);
    color: var(--menu-icon-color);
    line-height: 1.5;
    white-space: nowrap;
}

.menu_icon_color { color: var(--menu-icon-color); }
.iconfont { font-family: 'iconfont', sans-serif; font-size: 20px; font-weight: 600; }

/* Currency & Language Selectors */
.vogue_secondary_title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.country_icon img {
    width: 24px;
    height: 16px;
    object-fit: cover;
}

/* Cart */
.cart-button {
    position: relative;
    display: inline-block;
}

.cart-button__cart-num {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--main-btn-bg);
    color: var(--main-btn-tx);
    font-size: 12px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 20px;
}

/* Header Notice */
.section-header-notice {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.board  {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    background-color: rgba(126,211,33,1);
    color: #fff;
    padding: 0 32px;
    text-align: center;
}

.board-content {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Header Mega Menu */
.header-mega-menu {
    background: transparent;
}

.header-mega-menu ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.first-menu-item {
    display: inline-block;
}

.first-menu-item .menu-content {
    display: inline-block;
    padding: 0 15px;
    height: 71px;
    line-height: 71px;
    font-size: 16px;
    color: var(--menu-icon-color);
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Mobile Menu Overrides */
@media (max-width: 767px) {
    .container { padding-left: 24px; padding-right: 24px; }
    .header-show-dom { min-height: 54px; padding: 0; }
    .header-logo a { font-size: 20px; }
    .d-md-block { display: none !important; }
    .d-md-none { display: block !important; }
    .header-mega-menu ul {
        overflow-x: auto;
        white-space: nowrap;
        height: 38px;
    }
    .first-menu-item .menu-content {
        height: 36px;
        line-height: 36px;
        padding: 0 10px;
        font-size: 14px;
    }
    .header-right .account, .header-right .langs_div_class, .header-left .selectpricewrap { display: none; }
}

@media (min-width: 768px) {
    .d-md-block { display: block !important; }
    .d-md-none { display: none !important; }
    .p-md-0-80 { padding: 0 80px; }
}

/* ================= PRODUCT PAGE ================= */
.v-product {
    padding-top: 40px;
}

.product-template-section {
    padding-bottom: 80px;
}

.product-left {
    width: 50%;
    padding-right: 20px;
}

.product-right {
    width: 50%;
    padding-left: 30px;
}

/* Gallery */
.product-swiper {
    margin-bottom: 60px;
    max-width: 100vw;
}

.media-swiper {
    position: relative;
}

.media-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f2f2f2;
}

.product-swiper__inline-pagination {
    margin-top: 20px;
}

.inline-pagination .swiper-slide {
    width: 64px;
    height: 64px;
    cursor: pointer;
    margin-right: 12px;
}

.inline-pagination .media-swiper__thumb {
    position: relative;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
}

.inline-pagination .swiper-slide-active .media-swiper__thumb {
    border-color: var(--main-btn-bg);
}

.inline-pagination img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-swiper__prev, .media-swiper__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
}

.media-swiper__prev { left: -15px; }
.media-swiper__next { right: -15px; }

/* Product Form */
.product_single_box {
    background-color: #fff;
    border: 1px solid #e4e4e4;
    padding: 24px;
    border-radius: 4px;
}

.product_single_price h1 {
    font-size: 24px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 16px;
    font-family: var(--title-font-family);
}

.product_single_price_text {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.product_price_price .money {
    font-size: 24px;
    font-weight: 700;
    color: var(--price-color);
}

.product_price_cross .money {
    font-size: 17px;
    color: var(--regular-color);
    text-decoration: line-through;
    margin-left: 6px;
}

.discount-label {
    background-color: rgb(74, 144, 226);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

/* Variants */
.variant_select {
    margin-bottom: 20px;
}

.variant_select > label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.labelStyle {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.labelItem input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.labelItem label {
    display: inline-block;
    padding: 9px 15px;
    border: 1px solid #d2d2d2;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.labelItem.active label {
    background-color: var(--main-btn-bg);
    border-color: var(--main-btn-bg);
    color: var(--main-btn-tx);
}

/* Quantity */
.product_qty_box {
    margin-bottom: 20px;
}

.product_qty {
    display: inline-flex;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    overflow: hidden;
}

.product_qty button {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    font-size: 16px;
    color: #555;
}

.product_qty input {
    width: 50px;
    height: 36px;
    border: none;
    border-left: 1px solid #d2d2d2;
    border-right: 1px solid #d2d2d2;
    text-align: center;
    font-size: 14px;
    background: #fff;
}

/* Add to Cart Button */
.product_single_add_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    background-color: var(--main-btn-bg);
    color: var(--main-btn-tx);
    border: 1px solid var(--main-btn-bg);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.transition-main:hover {
    background-color: transparent;
    color: var(--main-btn-bg);
}

/* PayPal / Google Pay */
.quick-pay-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.google-btn {
    background: #000;
    border-radius: 4px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    cursor: pointer;
    width: 100%;
}

.paypal-button-render {
    background: #ffc439;
    border-radius: 4px;
    height: 48px;
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

/* Bulk Coupon */
.bulk-body-list {
    margin-top: 30px;
}

.bulk-body-list h4 {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
}

.couponItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid #e6e6e6;
    border-bottom: none;
}

.couponItem:last-child { border-bottom: 1px solid #e6e6e6; }

.couponButton button {
    padding: 6px 20px;
    border: 1px solid #111;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* Payment Image */
.payment_img {
    margin: 20px 0;
    text-align: center;
}

.payment_img img {
    max-height: 40px;
    width: auto;
}

/* Product Description */
.product-description {
    font-size: 16px;
    line-height: 1.65;
    padding: 30px 0;
    border-top: 1px solid #e3e3e3;
    color: #333;
}

.product-description h3 {
    margin: 20px 0 15px;
    color: #000;
}

.product-description p {
    margin-bottom: 15px;
}

.product-description ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

/* ================= FOOTER ================= */
.section-foot {
    background: #fff;
}

.section-foot-bg {
    background-color: rgba(224,224,224,1);
    padding: 80px 0;
}

.footer-modules {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer_list_item {
    width: 30%;
}

.footer_nav_title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.foot-menu ul li {
    margin-bottom: 12px;
}

.foot-menu ul li a {
    color: #000;
    text-decoration: none;
}

.foot-menu ul li a:hover {
    text-decoration: underline;
}

.subscribe-form__form {
    display: flex;
    margin-top: 15px;
}

.subscribe-form__form input {
    flex: 1;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #e4e4e4;
    background: #fff;
}

.subscribe-form__form input[type="submit"] {
    height: 44px;
    padding: 0 25px;
    background: #111;
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    max-width: 140px;
}

.footer-message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
    margin-top: 20px;
}

.payment_icons {
    display: flex;
    gap: 10px;
}

.payment_icons--item img {
    height: 24px;
    width: auto;
}

/* ================= АДАПТИВНОСТЬ ================= */
@media (max-width: 991px) {
    .product-left, .product-right {
        width: 100%;
        padding: 0;
    }
    .product-right {
        margin-top: 30px;
    }
    .footer_list_item {
        width: 100%;
        margin-bottom: 30px;
    }
    .footer-modules { flex-direction: column; }
    .footer-message { flex-direction: column-reverse; gap: 20px; text-align: center; }
    .section-foot-bg { padding: 40px 0; }
    .d-md-block.d-none { display: none !important; }
    .d-md-none.d-block { display: block !important; }
}

@media (max-width: 767px) {
    .container { padding-left: 24px; padding-right: 24px; }
    .v-product { padding-top: 0; }
    .product_single_box { padding: 16px; }
    .product_single_price h1 { font-size: 20px; }
    .product_price_price .money { font-size: 22px; }
    .media-swiper__prev, .media-swiper__next { display: none; }
}
.product-gallery {
    flex: 1;
    min-width: 300px;
}
.main-image {
    border: 1px solid #f0f0f0;
    margin-bottom: 15px;
}
.main-image img {
    width: 100%;
    object-fit: contain;
}
.thumbnail-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.thumbnail.active {
    border: 2px solid #111;
    opacity: 1;
}
.thumbnail {
    width: 60px;
    height: 60px;
    border: 1px solid #e3e3e3;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
}
.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-text {
    text-align: center;
}

.icon-lang {
    background: url(../index_files/lang.webp);
}
.icon-search {
    background: url(../index_files/search.webp);
}
.icon-user {
    background: url(../index_files/user.webp);
}
.icon-cart {
    background: url(../index_files/cart.webp);
}

.header-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (max-width: 767px) {
    .position-mob {
        flex-direction: column;
        align-items: normal;
    }
    .display-none {
        display: none;
    }
}
.wrapper {
    max-width: 880px;
    margin: 0 auto;
}