html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  padding-top: 72px;
}

/* Делаем фон кнопки оранжевым */
.navbar-toggler {
  background-color: #e8ab4d !important; /* Ваш фирменный оранжевый */
  border: none !important;              /* Убираем рамку, если не нужна */
  padding: 8px 10px !important;         /* Немного увеличим отступы */
}

/* Цвет полосок внутри (делаем их черными для контраста) */
.navbar-toggler-icon {
  filter: invert(1) !important; /* 0 — черные полоски, 1 — белые */
}

/* Эффект при наведении (немного темнее) */
.navbar-toggler:hover {
  background-color: #fbc02d !important;
}

/* Убираем синюю обводку Bootstrap при нажатии */
.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 222, 64, 0.4) !important;
}
		
.content {
  margin-left: 0;
  padding: 0px;
  transition: margin-left 0.3s;
}

.footer_new  {
  background-color: #27232b;
}

.banner {
    position: relative;
    width: 100%;
    height: 270px; /* Увеличили высоту для солидности */
    background-image: url('/static/img/baner1.png');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center; /* Центрируем контент по вертикали */
    overflow: hidden;
}

/* Красивое градиентное затемнение слева направо */
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.banner__content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: white;
}

.banner__title {
    font-size: 3rem; /* Адаптивный размер */
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1; /* Исправили наложение букв */
    margin-top: 10px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* Блок с преимуществами (вместо списка) */
.banner__features {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.banner__badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px); /* Эффект матового стекла */
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Акцентная оранжевая кнопка */
.banner__btn {
    display: inline-block;
    background-color: #e8ab4d;
    color: #000;
    padding: 16px 40px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 222, 64, 0.3);
}

.banner__btn:hover {
    background-color: #d49a41; /* Темнее на 10% */
    border-color: #d49a41;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    color: #000;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .banner { height: 270px; }
    .banner__title { font-size: 2rem; }
    .banner__content { text-align: center; margin: 0 auto; }
    .banner__features { justify-content: center; }
}

/*блок кнопок фильтра*/
.filter-container {
}

.btn-filter span {
}

.btn-group-vertical {
    display: flex;
    flex-direction: column;
    align-items: left;
}

.btn-filter {
	
}

.btn-filter:hover {
    background-color: #efefef;;
}

.filter-container:active {
    background-color: #efefef;
}

.btn-filter img {
    object-fit: contain;
}

/**/
.btn-container {
	background-color: #61576d;
	color: #fff;
}

.button-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 40px;
	padding: 12px 24px;
	margin: 5px;
    border-radius: 0px;
	font-size: 16px;    
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Основная тень */
    transition: all 0.3s ease; /* Плавный переход */
	text-decoration: none;
}

.button-link:hover {
    background-color: #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Усиленная тень при наведении */
    transform: translateY(-1px); /* Легкий подъем при наведении */
    cursor: pointer;
}

.button-link:active {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Уменьшенная тень при нажатии */
    transform: translateY(0); /* Возврат в исходное положение */
}

.call-btn {
    background-color: #e8ab4d;
    border-color: #e8ab4d;
    color: white;
}

.call-btn:hover {
    background-color: #d49a41; /* Темнее на 10% */
    border-color: #d49a41;
}

.write-btn {
    background-color: white;
    border: 2px solid #e8ab4d;
    color: #e8ab4d;    
}

.write-btn:hover {
    background-color: #f8f8f8;
    border-color: #d49a41; /* Темнее на 10% */
    color: #d49a41;
}

/*блок Карточка товара*/
.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	background-color: #efefef;
	min-width: 300px;
}

.pcard {
    width: 250px;
    height: 465px;
	min-width: 250px;
   /* border-radius: 8px;*/
    overflow: hidden;
    margin: 15px;
    box-sizing: border-box;
    display: inline-block;
	border: 2px solid #fff;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Основная тень */
	position: relative; /* Для корректной работы absolute позиционирования */
}

/*.pcard:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px); 
    cursor: pointer;
}*/

.pcard img {
    width: 100%;
    height: 150px;
    object-fit: cover;	
}

.pcard-body {
    padding: 15px;
}

.pcard-cat-badge {
    padding: 8px 12px;
    background-color: #61576d;
    color: #c5bdcf;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	text-align: center;
}

.pcard-title{
	font-weight: bold;
	font-size: 18px;
}

.pcard-text{
	font-size: 16px;
	margin: 0px;
	line-height: 1.2;
}

.pcard-text span{
	font-weight: bold;
	font-size: 18px;
}

.pcard-price {
	font-weight: bold;
	font-size: 18px;
}

.but-pcard-main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
	padding: 12px 24px;
	margin: 3px 0;
    border-radius: 0px;
	font-size: 16px;    
    box-shadow: 0 2px 4px rgba(100, 100, 100, 0.1); /* Основная тень */
    transition: all 0.3s ease; /* Плавный переход */
	text-decoration: none;
}

.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	background-color: #fff; /*#61576d;*/
}

.info-card {
    width: 200px;
    height: 200px;
   /* border-radius: 8px;*/
    overflow: hidden;
    margin: 15px;
    box-sizing: border-box;
    display: inline-block;
	border: 2px solid #3b3443;
	background-color: #efefef;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Основная тень */
	position: relative; /* Для корректной работы absolute позиционирования */
	padding: 8px 12px;
}

/*map page*/
.map-container {
    width: 100%;
    position: relative;
    padding-bottom: 40%; /* Соотношение сторон 1:1 */
    overflow: hidden;
}
  
#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.no-results-row {
    height: 100vh; /* Занимает всю высоту экрана */
    position: relative;
}

.no-results-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    text-align: center;
}

.no-results-text {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}





.main-img { width: 100%; height: 380px; object-fit: cover; cursor: pointer; }
.thumb-img { width: 100%; height: 70px; object-fit: cover; cursor: pointer; opacity: 0.5; transition: 0.3s; }
.swiper-slide-thumb-active .thumb-img { opacity: 1; border: 2px solid #ffde40; }

/* Полноэкранный режим */
#fullscreen-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 9999;
    margin-top: 0;
}
.fullscreen-slider { width: 100%; height: 100%; }
.close-fs {
    position: absolute; top: 20px; right: 30px; z-index: 10000;
    background: none; border: none; color: #fff; font-size: 50px; cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
    display: flex;
    color: #fbc02d !important; /* Цвет стрелок */
}

.swiper-button-next:after, 
.swiper-button-prev:after {
  font-size: 30px; /* Размер иконки-стрелки */
}






/*media*/
@media (max-width: 1199px) {
    
    /* 1. Делаем шрифт крупнее */
    .navbar-nav .nav-link {
        font-size: 1.2rem;      /* Увеличиваем размер текста */
        padding: 15px 10px;    /* Увеличиваем область клика */
        color: #333 !important; /* Делаем текст контрастнее */
        font-weight: 500;       /* Делаем чуть жирнее */
        
        /* 2. Добавляем разделительную линию снизу каждого пункта */
        border-bottom: 1px solid #e0e0e0; 
    }

    /* Убираем линию у последнего пункта, чтобы не дублировать границу меню */
    .navbar-nav .nav-item:last-child .nav-link {
        /*border-bottom: none;*/
        margin-bottom: 30px;
    }

    /* 3. Оформляем сам блок выпадающего меню */
    .navbar-collapse {
        background-color: #ffffff; /* Белый фон выпадающего окна */
        margin-top: 10px;          /* Отступ от шапки */
        border-radius: 8px;        /* Скругляем углы */
        box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* Добавляем тень для объема */
        padding: 10px;             /* Внутренние отступы всего блока */
    }

    /* Цвет активного пункта в выпадающем списке */
    .navbar-nav .nav-link.active {
        color: #fbc02d !important; /* Оранжевый как у логотипа */
        background-color: #fff9e6; /* Легкий фон для активного пункта */
    }

    .main-img { width: 100%; height: 300px; object-fit: cover; cursor: pointer; }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
        color: #fff; /* Цвет стрелок */
    }
}
