@charset "utf-8";
/* CSS Document */
/** {
	border:1px solid red
}*/
body {
    /*background: url("../img/prev.png") no-repeat;
      min-height: 6000px;*/
    background-size: cover;
    position: relative;
}

a {
    text-decoration: none;
    color: #000;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
}

h1, .h1 {
    margin: 0.5em 0;
}

.pb-65 {
    padding-bottom: 65px;
}

.logo img {
    width: 100%;
    max-width: 243px;
}

.btn-blue {
    border: 1px solid #0f4291;
    padding: 0.20em 1em;
    margin-top: 24px;
    display: inline-block;
    border-radius: 5px;
    color: #0f4291;
    font-size: 14px;
}

.btn-blue i {
    font-size: 16px;
    margin-left: 10px;
    line-height: 23px;
}

.btn-blue:hover {
    background: #0f4291;
    color: #fff;
}

.btn-blue:hover i {
    color: #fff;
}

header .mb-4 {
    margin-bottom: 38px !important;
}

header {
    height: 168px;
    position: relative;
    z-index: 1001;
    background: #fff;
    box-shadow: #0000000d 0 0 27px;
}

.main-menu {
    max-width: 796px;
}

.main-menu a {
    color: #000;
    font-weight: 400;
    font-size: 24px;
}

.right-menu {
    margin-right: 15px;
    margin-top: 22px;
}

.right-menu a {
    font-size: 15px;
    color: #000;
    margin-left: 25px;
}

.right-menu a i {
    color: #808080;
    font-size: 16px;
}

/*.right-menu a i.bi-person {
	font-size: 24px;
}*/
.right-icons {
    margin-right: 10px;
    margin-top: 36px;
}

.right-icons a {
    font-size: 12px;
    boder: 1px solid red;
    text-align: center;
    min-width: 50px;
    margin-left: 20px;
}

.right-icons img {
    display: inline-block;
    height: 25px;
    margin-bottom: 3px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 711px;
    overflow: hidden;
}

.video-container a {
    background: #000;
}

#video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

video {
    background: #000;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay с градиентом */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 450px;
    background: linear-gradient(0deg, #00000087, #00000000);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-sizing: border-box;
    pointer-events: none; /* Отключаем события мыши */
}

#status-icon {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
}

.text-overlay {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    text-align: center;
	    padding-top: 350px;
}

.text-overlay span {
    font-size: 48px;
    letter-spacing: -0.02em;
    font-weight: normal;
    display: block;
    margin-bottom: 26px;
}

.text-overlay p {
    font-weight: 300;
    font-size: 21px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 142px;
    display: inline-block;
    border-bottom: 1px solid #ffffff52;
    padding-bottom: 3px;
}

/*Tabs*/
#home-collections .nav-item button {
    font-family: var(--text-font-family);
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #171717;
    border: 1px solid #d9dada;
    border-radius: 5px;
    padding: 4px 20px;
    margin: 0 10px;
}

#home-collections .nav-link.active {
    background-color: var(--active-color);
    color: var(--white);
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: var(--active-color);
}

/*Product card*/
.product-item {
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    padding-bottom: 20px;
    position: relative;
    height: 100%;
    max-width: 270px;
    width: 100%;
}

.product-item:hover {
    border: 1px solid #cccccc40;
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.10);
}

.product-item .img-product {
    width: 100%;
    height: auto;
    transition: all ease 1.5s;
}

.image-container {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 250 / 250;
    margin-bottom: 25px;
}

.img-product {
    width: 100%;
    height: auto;
    transition: opacity 0.5s ease;
}

.info-product {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    flex: 1;
    padding: 0 15px;
}

.info-product .buttons-block {
    margin-top: auto;
}

.main-image {
    opacity: 1;
}

.hover-image {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.product-item:hover .main-image {
    opacity: 0;
}

.product-item:hover .hover-image {
    opacity: 1;
}


a.product-name span {
    display: inline-block;
    min-height: 72px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    color: #000;
}


.price-box {
    margin-bottom: 25px;
}

.price-box span {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #000;
}

.btn-cart {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.01em;
    color: #000;
    width: 100%;
    border: 1px solid #333;
    border-radius: 3px;
    padding: 6px 0px;
    transition: opacity 0.5s ease;
}

.product-item .old-price {
    text-decoration: line-through;
    display: inline-block;
    margin-right: 15px;
    color: #959595;
    font-weight: normal;
}

.btn-cart img {
    height: 17px;
    margin-left: 15px;
}

.btn-cart:hover {
    background-color: var(--active-color);
    color: #fff;
}

.btn-cart .bi-bag-check-fill {
    opacity: 0;
}

.btn-cart .bi-bag-check {
    opacity: 1;
}

.btn-cart:hover .bi-bag-check {
    opacity: 0;
}

.btn-cart:hover .bi-bag-check-fill {
    opacity: 1;
}

.btn-cart .bi-cart-plus {
    font-size: 16px;
}

section#newproducts {
    background: var(--second-background);
    min-height: 656px;
    position: relative;
}

section#newproducts::after {
    width: 222px;
    content: '';
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
    height: 100%;
    right: 0px;
    position: absolute;
    top: 0;
}

section#newproducts h2 {
    text-align: left;
}

section#newproducts .btn-white, section#aboutus .btn-white {
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.10);
    background: #fff;
    min-width: 256px;
    font-weight: 400;
    font-size: 14px;
    line-height: 164%;
    letter-spacing: -0.02em;
    color: #000;
    min-height: 46px;
}

.btn-white-shadow {
    box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.10);
    background: #fff;
    min-width: 256px;
    font-weight: 400;
    font-size: 14px;
    line-height: 164%;
    letter-spacing: -0.02em;
    color: #000;
    text-align: center;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    background-color: #ffffff;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
    min-height: 46px;
}

/* Анимация при наведении на кнопку */
.btn-white-shadow:hover {
    color: var(--active-color) !important;
}

.btn-white-shadow:hover {
    background-color: #f8f9fa;
}

/* Анимация для иконки стрелки */
.btn-white-shadow i {
    transition: transform 0.3s ease;
    margin-left: 5px;
    line-height: 20px;
    font-size: 16px;
}

.btn-white-shadow:hover i {
    transform: translateX(5px); /* Двигаем стрелку немного вправо */
}

.btn-white-shadow > i {
    margin-left: 10px;
}

section#newproducts .btn-white i {
    margin-left: 10px;
}

#newproducts {
}

/* Основной стиль кнопки */
#newproducts .btn-white {
    text-align: center;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    background-color: #ffffff;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

/* Анимация при наведении на кнопку */
#newproducts .btn-white:hover {
    color: var(--active-color);
}

#newproducts .btn-white:hover {
    background-color: #f8f9fa;
}

/* Анимация для иконки стрелки */
#newproducts .btn-white i {
    transition: transform 0.3s ease;
    margin-left: 5px;
    line-height: 20px;
    font-size: 16px;
}

#newproducts .btn-white:hover i {
    transform: translateX(5px); /* Двигаем стрелку немного вправо */
}

.text-overlay span {
    font-family: 'Source Serif 4 48pt';
    font-weight: 300;
    font-style: normal;
}

h2 {
    font-weight: 400;
    font-size: 39px;
    letter-spacing: -0.01em;
}

#collection-main h2, #articles h2 {
    margin: 60px 0;
    text-align: center;
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 500px) {
    .row-cols-5 > * {
        width: 50%;
    }
}

.product-slider {
    overflow: hidden;
    position: relative;
}

.product-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slide {
    /*flex: 0 0 66.66%; !* Ширина одного слайда для показа 1.5 слайда *!*/
    margin-right: 55px;
    position: relative;
    text-decoration: none;
    color: #fff;
}

.product-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Стиль для постоянного текста поверх изображения */
.slide-text {
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    padding: 38px 10px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0px;
}

.slide-text span.head-slide-text {
    font-family: 'Source Serif 4 48pt';
    font-weight: 400;
    font-size: 36px;
    line-height: 64%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    display: inline-block;
    margin-bottom: 20px;
}

.slide-text span.slide-text-link {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 18px;
    line-height: 128%;
    letter-spacing: -0.01em;
    text-decoration-skip-ink: none;
    text-align: center;
    color: #fff;
    padding-bottom: 3px;
    border-bottom: 1px solid #fff;
}

.pagination-controls {
    display: flex;
    align-items: center;
}

.pagination-controls .pagination {
    display: flex;
    gap: 5px;
    margin: 0 15px;
}

.pagination-dot {
    cursor: pointer;
    padding: 5px 5px;
    margin: 0 10px;
    color: #555;
}

.pagination-dot.active {
    color: #000;
    border-bottom: 1px solid #ccc;
}

.slider-control-prev, .slider-control-next {
    background-color: transparent;
    border: none;
    font-size: 24px;
    color: #555;
    cursor: pointer;
    padding: 0px;
}

/* Дополнительное позиционирование для десктопа */
@media (min-width: 992px) {
    .slider-control-prev, .slider-control-next {
        font-size: 32px;
        color: #000;
    }
}

.new-product-slider {
    padding-left: 50px;
}

.pagination-controls .slider-control-prev, .pagination-controls .slider-control-next {
    padding: 0;
}

p.desc-text {
    max-width: 400px;
}

.pl-50 {
    padding-left: 50px;
}

section#aboutus {
    background: var(--second-background);
}

.container-fluid {
    /*padding: 0 !important;*/
    /*margin: 0 !important;*/
}

.product-name.active {
    border: 1px solid #0066DE;
}

footer {
    background: var(--gray-color);
}

.social-icons {
    margin-left: 10px;
    display: inline-flex;
}

.social-icons img {
    margin-right: 10px;
}

#mailsubscriber {
    background: var(--active-color);
}

#mailsubscriber * {
    color: #fff;
}

#mailsubscriber button.btn {
    background: var(--color-default-blue);
    border: 1px solid #fff;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.02em;
    /*text-transform: uppercase;*/ 
    padding: 5px 40px;
    height: 47px;
    position: relative;
    top: -2px;
    transition: all 0.3s ease-out;
}

.foot-menu {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}

#mailsubscriber button.btn i {
    margin-left: 10px;
    font-size: 20px;
    font-weight: normal;
    transition: all 0.3s ease-out;
}

#mailsubscriber button.btn:hover {
    background: #fff;
    color: var(--active-color);
    transition: all 0.3s ease-out;
}

#mailsubscriber button.btn:hover i {
    color: var(--active-color);
    transition: all 0.3s ease-out;
}

#mailsubscriber input.email {
    margin: 0 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    height: 47px;
    padding: 0 15px;
    color: #000;
}

#mailsubscriber span.email-text {
    font-size: 18px;
}

#foot-menu {
	background: #efefef40;
    /*background: #F5F7F9;*/
    padding: 70px 0;
}

.foot-menu a,
.foot-menu span {
    line-height: 300%;
}

#complete .left-cont {
    overflow-x: hidden;
}

#complete .left-cont .row {
    padding: 20px;
}

.p40 {
    padding: 30px 0;
}

.article-name {
    font-family: var(--headings-font-family);
    font-weight: 400;
    font-size: 26px;
    letter-spacing: -0.03em;
    color: #000;
    display: inline-block;
}

.p60 {
    padding: 60px 0;
}

.article-link {
    font-size: 14px;
    letter-spacing: -0.02em;
}

.animate-icon-link {
}

/* Анимация для иконки стрелки */
.animate-icon-link i {
    transition: transform 0.3s ease;
    margin-left: 5px;
    line-height: 20px;
}

.animate-icon-link:hover i {
    transform: translateX(5px); /* Двигаем стрелку немного вправо */
    display: inline-block;
}

#podarok {
    background: var(--second-background);
}

#tabs-target .shadow-bot {
    height: 200px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #847976 100%);
    bottom: 0;
    flex-flow: column nowrap;
}

#tabs-target .shadow-bot h2 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 39px;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;
    margin-bottom: 26px;
}

#tabs-target .shadow-bot a {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 21px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-align: center;
    color: #fff;
    display: inline-block;
    border-bottom: 1px solid #ffffff52;
    padding-bottom: 3px;
}

#complete .brand-row {
    /*padding-right: 4rem;*/
}

#complete .brand-row a {
    border: 1px solid #d9dada;
    margin-bottom: 1rem;
    border-radius: 3px;
}

#complete .brand-row a.active {
    border-color: #0066de;
}

.hidden {
    display: none !important;
}

.phone-number {
    opacity: 0; /* Прозрачность для анимации */
    transition: opacity 0.5s ease-in-out; /* Анимация появления */
}

.phone-number.visible {
    opacity: 1; /* Плавное появление */
    font-size: 20px;
    font-family: 'Source Serif 4 48pt', Times New Roman, serif;
    color: #000;
}

#phone-text {
}

.left-cont {
    display: none; /* Скрываем блоки по умолчанию */
}

.left-cont.active {
    display: block; /* Показываем только активный блок */
}

/*Блок с впадающим телефоном*/
/* Стиль для блока телефона */
.phone-header-block, .search-header-block, .cart-header-block {
    position: absolute; /* Блок располагается в потоке документа */
    top: 165.38px; /* Под шапкой */
    right: 15px; /* Справа */
    width: 213px;
    background: #fff;
    transform: translate(-50%, -20px);
    z-index: 15; /* Блок телефона имеет z-index ниже мега-меню, но выше затемняющего блока */
    padding: 10px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-radius: 0 0 3px 3px;
    opacity: 0; /* Начальное состояние прозрачности */
    display: none;
    animation-duration: 0.3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    height: 60px;
    border-top: 1px solid #d9d9d9;
}

#phone-block.visible, #search-block.visible, .cart-block.visible {
    display: block; /* Блок виден */
    animation-name: slideDown; /* Анимация появления */
}

#phone-block.hidden, #search-block.hidden, .cart-block.hidden {
    animation-name: slideUp; /* Анимация скрытия */
}

.phone-header-block.visible, .search-header-block.visible, .cart-header-block.visible {
    display: block; /* Показываем блок */
    opacity: 1;
    z-index: 100;
}

.phone-content {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

.phone-content a {
    font-family: 'Source Serif 4 48pt', Times New Roman, serif;
    font-size: 20px;
    letter-spacing: -0.02em;
    margin-right: 10px;
}

/* Затемнение фона */
.dark-overlay {
    position: fixed;
    top: 168px;
    left: 0;
    width: 100%;
    height: 100%; /* Под шапкой */
    z-index: 999;
    display: none;
    background: #333333;
    opacity: 0.6;
}

.dark-overlay.visible {
    display: block; /* Показываем затемнение */
}

/* Копирование */
.copy-icon {
    cursor: pointer;
    font-size: 14px;
    color: #007bff;
}

.copy-icon:hover {
    text-decoration: underline;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%); /* Начинаем выше шапки */
        opacity: 0;
    }
    to {
        transform: translateY(0); /* Конечное положение под шапкой */
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0); /* Исходное положение */
        opacity: 1;
    }
    to {
        transform: translateY(-100%); /* Уходит вверх */
        opacity: 0;
    }
}

.brand-switch {
    display: flex;
    justify-content: center;
    height: 82px;
    padding: 9px 0;
}

#tabs-target {
    position: relative;
}

.point {
    width: 15px;
    height: 15px;
    background-color: #fff; /* Белый фон */
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
    transform: translate(-50%, -50%);
    /*transition: all 1s ease-out;*/ /* Плавная анимация */
    outline: 5px solid rgba(0, 0, 0, 0.7);
}

/*.point:hover {
	width: 18px;
    height: 18px;
	outline: 9px solid rgba(0, 0, 0, 0.7);
}*/
.point.active {
    width: 12px; /* Уменьшаем размер */
    height: 12px;
    outline: 8px solid rgba(0, 0, 0, 0.7); /* Обводка при активации */
}

.info-box {
    position: absolute;
    width: 300px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
    flex-direction: row;
    border-radius: 4px;
    justify-content: space-between;
}

.info-box.active {
    display: flex;
}

.info-box .content {
    width: 75%;
    padding: 20px 10px 0;
}

.info-box .btn-container {
    width: 25%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 58px;
    border-radius: 0 4px 4px 0;
}

span.new-price {
    margin-left: 30px
}

h4.product-title {
    font-family: var(--headings-font-family);
    font-weight: 300;
    font-size: 20px;
    line-height: 124%;
    color: #000;
    margin-bottom: 20px;
}

.btn-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    width: 100%;
    height: 100%;
}

.info-box::before {
    content: '';
    position: absolute;
    top: -10px; /* Поднимем треугольник выше инфобокса */
    left: 10px; /* Треугольник будет слева */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white; /* Цвет треугольника (под цвет инфобокса) */
}

/*.animated-link, .slide-text-link, .text-overlay p {
  display: inline-block;
  text-decoration: none;
  color: inherit; 
  transition: letter-spacing 0.6s ease-in-out; 
  letter-spacing: 0 !important; 
/*.cart-header-block {
	top:187px;
	right:-90px;
}
.animated-link:hover, .slide-text-link:hover, .text-overlay p:hover {
  letter-spacing: 2px !important;
}*/
.visible {
    display: block;
}

.phone-header-block, .search-header-block, .cart-header-block {
    position: absolute;
    background: #fff;
    z-index: 20;
}

.search-header-block {
    width: 340px !important;
}