body{
	max-width:100%;
	margin:0;
}
img{
	max-width:100%;
}
@media (min-width: 1900px) {
	body{
		max-width:1900px;
		margin:0 auto;
	}
}
/* ===== HEADER STYLES ===== */
/* Изолированные стили только для хедера и его компонентов */

/* Базовые переменные для header */
:root {
  --header-primary: #2d3748; /* Замените на ваш цвет */
  --header-secondary: #4a5568;
  --header-bgaccent: #f7fafc;
  --header-background: #ffffff;
  --header-beige: #f5f5dc;
  --header-text-light: #ffffff;
  --header-text-dark: #2d3748;
  --header-border: #e2e8f0;
  --header-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --header-transition: all 0.3s ease;
  --header-text-light: #ffffff;
  --header-text-light-hover: #F5EEE0;
  --header-text-light-active: #D5C6AD;
}

.search-toggle[aria-expanded=true] img {
}

/* Белая иконка как фон */

.header__action-btn:active img{position:relative;opacity:0;}
.header__action-btn:hover .header__action-icon::after,
.header__action-btn:active .header__action-icon::after,
.header__action-btn[aria-expanded=true] .header__action-icon::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
}

.header__action-btn[aria-expanded=false]:hover .header__action-icon::after{
	background-color: #F5EEE0;
}
.header__action-btn:active .header__action-icon::after,
.header__action-btn[aria-expanded=true] .header__action-icon::after{
    background-color: #D5C6AD;
}

.search-toggle:hover .header__action-icon::after,
.search-toggle:active .header__action-icon::after,
.search-toggle[aria-expanded=true] .header__action-icon::after {
    -webkit-mask: url('/wp-content/themes/fireworks/images/search.svg') center/contain no-repeat;
    mask: url('/wp-content/themes/fireworks/images/search.svg') center/contain no-repeat;
}

.js-orders-toggle:hover .header__action-icon:after,
.js-orders-toggle:active .header__action-icon::after,
.js-orders-toggle[aria-expanded=true] .header__action-icon::after {
    -webkit-mask: url('/wp-content/themes/fireworks/images/orders.svg') center/contain no-repeat;
    mask: url('/wp-content/themes/fireworks/images/orders.svg') center/contain no-repeat;
}

.favorites-toggle:hover .header__action-icon:after,
.favorites-toggle:active .header__action-icon::after,
.favorites-toggle[aria-expanded=true] .header__action-icon::after {
    -webkit-mask: url('/wp-content/themes/fireworks/images/favorites.svg') center/contain no-repeat;
    mask: url('/wp-content/themes/fireworks/images/favorites.svg') center/contain no-repeat;
}
.cart-toggle:hover .header__action-icon:after,
.cart-toggle:active .header__action-icon::after,
.cart-toggle[aria-expanded=true] .header__action-icon::after {
    -webkit-mask: url('/wp-content/themes/fireworks/images/cart.svg') center/contain no-repeat;
    mask: url('/wp-content/themes/fireworks/images/cart.svg') center/contain no-repeat;
}
.profile-toggle:hover .header__action-icon:after,
.profile-toggle:active .header__action-icon:after,
.profile-toggle[aria-expanded=true] .header__action-icon::after{
	-webkit-mask: url('/wp-content/themes/fireworks/images/user.svg') center/contain no-repeat;
    mask: url('/wp-content/themes/fireworks/images/user.svg') center/contain no-repeat;
}
/* Основной хедер */
.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  background-color: var(--header-primary);
  box-shadow: var(--header-shadow);
}

.header__container {  
	max-width: 1740px;
    margin: 0 auto;
    padding: 45px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}
.header__logo-image{height:69px;}
/* Левая часть: бургер + лого */
.header__left {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0; /* Для корректного сжатия */
}

/* Кнопка бургер-меню */
.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: var(--header-transition);
}

.header__burger:hover {
  opacity: 0.8;
}

.header__burger-icon {
  display: block;
  width: 24px;
  height: 17px;
}

.header__burger-icon--close {
  width: 24px;
  height: 24px;
}

/* Логотип */
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Центральное меню (десктоп) */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.header__menu-item {
  position: relative;
}

.header__menu-link {
  	color: var(--header-text-light);
	font-family: 'Geologica';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    display: flex;
    align-items: center;
	text-decoration:none;
}

.header__menu-link:hover {
  color:var(--header-text-light-hover);
}

.header__menu-link:active {
  color:var(--header-text-light-active);
}

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

.header__menu-link--location {
  cursor: default;
}

.header__menu-link--location:hover {
  background-color: transparent;
}

.header__menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left:5px;
}

.header__location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right:5px;
}

/* Правая часть: кнопки действий */
.header__right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Кнопки действий */
.header__action-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: var(--header-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__action-btn:hover {
  opacity: 0.8;
}

.header__action-btn--link {
  text-decoration: none;
  color: inherit;
}

.header__action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__badge {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 16px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #D5C6AD;
    border-radius: 40px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 100%;
    text-align: center; 
    color: #2d3748;
}

/* Виджеты в header */
.header__widget {
  position: relative;
}

/* Контакты и соцсети (десктоп) */
.header__contacts {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__phone {
  font-family: 'Geologica';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: var(--header-text-light);
  text-decoration: none;
}

.header__phone:hover {
  color:var(--header-text-light-hover);
}
.header__phone:active {
  color:var(--header-text-light-active);
}

.header__social {
  display: flex;
  gap: 8px;
}

.header__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--header-text-light);
  border-radius: 50%;
  transition: var(--header-transition);
}

.header__social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Блок поиска (стики) */
.header__search {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--header-background);
  padding: 12px 16px;
  box-shadow: var(--header-shadow);
  z-index: 25;
}

.search-block-stycky {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background-color: var(--header-background);
  border-radius: 8px;
}

.header__search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px;
  background: transparent;
  color: var(--header-text-dark);
}

.header__search-input::placeholder {
  color: var(--header-secondary);
  opacity: 0.7;
}

.header__search-btn {
  background-color: var(--header-primary);
  color: var(--header-text-light);
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: var(--header-transition);
  white-space: nowrap;
}

.header__search-btn:hover {
  background-color: var(--header-secondary);
}

/* Полоска с промо-акцией */
.promo-bar {
  background-color: var(--header-bgaccent);
  color: var(--header-primary);
  padding: 2px 0;
  overflow: hidden;
}

.promo-bar__marquee {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
  min-width: 200%;
}

.promo-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 500;
}

.promo-bar__dot {
  width: 6px;
  height: 6px;
  background-color: var(--header-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Оверлей для мобильного меню */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: var(--header-transition);
}

.mobile-menu-overlay--active {
  opacity: 1;
  visibility: visible;
}

/* Отдельное мобильное меню */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--header-background);
  z-index: 50;
  transition: var(--header-transition);
  overflow-y: auto;
}

.mobile-menu__container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Шапка мобильного меню */
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--header-border);
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: var(--header-transition);
}

.mobile-menu__close:hover {
  opacity: 0.8;
}

/* Контент мобильного меню */
.mobile-menu__content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

/* ИИ поиск в мобильном меню */
.mobile-menu__ai-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background-color: var(--header-background);
  border: 2px solid var(--header-border);
  border-radius: 8px;
}

.mobile-menu__ai-help {
  background-color: var(--header-beige);
  color: var(--header-background);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-menu__ai-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: var(--header-text-dark);
}

.mobile-menu__ai-input::placeholder {
  color: var(--header-secondary);
  opacity: 0.7;
}

.mobile-menu__ai-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

/* Навигация в мобильном меню */
.mobile-menu__nav {
  width: 100%;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-menu__item {
  width: 100%;
}

.mobile-menu__link {
  display: block;
  width: 100%;
  color: var(--header-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--header-border);
  transition: var(--header-transition);
}

.mobile-menu__link:hover {
  color: var(--header-secondary);
}

/* Разделители */
.mobile-menu__divider {
  height: 1px;
  background-color: var(--header-bgaccent);
  width: 100%;
  margin: 8px 0;
}

/* Локация в мобильном меню */
.mobile-menu__location {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.mobile-menu__location-text {
  color: var(--header-primary);
  font-size: 16px;
  font-weight: 500;
}

/* Аккаунт в мобильном меню */
.mobile-menu__account {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
  color: var(--header-primary);
  transition: var(--header-transition);
}

.mobile-menu__account:hover {
  color: var(--header-secondary);
}

.mobile-menu__account-text {
  font-size: 16px;
  font-weight: 500;
}

/* Вторичная навигация в мобильном меню */
.mobile-menu__secondary-nav {
  width: 100%;
}

.mobile-menu__secondary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.mobile-menu__secondary-item {
  width: 100%;
}

.mobile-menu__secondary-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: var(--header-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  transition: var(--header-transition);
}

.mobile-menu__secondary-link:hover {
  color: var(--header-secondary);
}

/* Контакты в мобильном меню */
.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.mobile-menu__phone {
  color: var(--header-primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: var(--header-transition);
}

.mobile-menu__phone:hover {
  color: var(--header-secondary);
}

.mobile-menu__email {
  color: var(--header-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--header-transition);
}

.mobile-menu__email:hover {
  color: var(--header-primary);
}

.mobile-menu__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.mobile-menu__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--header-border);
  border-radius: 50%;
  transition: var(--header-transition);
}

.mobile-menu__social-link:hover {
  border-color: var(--header-primary);
  transform: translateY(-2px);
}

/* Состояния */
.mobile-menu--active {
  right: 0;
}

/* Утилитарные классы */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Контейнер в шапке */
.header-orders-widget {
    position: relative;
    display: inline-block;
}

/* Кнопка-триггер */
.orders-widget-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.orders-widget-trigger:hover {
    background: rgba(117, 114, 141, 0.1);
    border-color: rgba(117, 114, 141, 0.3);
}

.orders-widget-trigger__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.orders-widget-trigger__text {
    font-weight: 500;
}
.basket-widget,.favorites-widget{position:relative;}
.orders-widget-trigger__count,
.basket-widget-trigger__count,
.favorites-widget-trigger__count {
  font-family: 'Montserrat';
  color: #75728D;
}
.header__badge:empty{
	display:none !important;
}

/* Выпадающий виджет */
.orders-widget {
	box-sizing: border-box;
	position: absolute;
	width: 557px;
	height: 347px;
	right: 91px;
	top: 116px;
	background: #FFFCF6;
	border: 1px solid #D5C6AD;
	border-radius: 20px;
	padding:40px;
}

.orders-widget[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.orders-widget__title{  
	margin-right: 10px;
    margin-top: 5px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	color: #373449;
	float:left;
}
.orders-widget__order-title a{
	width: 477px;
	height: 24px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	display: flex;
	align-items: center;
	color: #373449;
	text-decoration:none;
}
.orders-widget__order-header{margin-top:30px;}
.orders-widget__detail-row{display: flex;margin-top:10px;}
.orders-widget__detail-label{
	margin: 0 auto;
	width: 238.5px;
	height: 24px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	display: flex;
	align-items: center;
	color: #75728D;
}
.orders-widget__detail-value{
	margin: 0 auto;
	width: 238.5px;
	height: 24px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	text-align: right;
	color: #373449;
}

.orders-widget__close-btn{ 
   cursor: pointer;
    display: flex;
    float: right;
    width: 40px;
    height: 40px;
    color: #75728D;
    text-decoration: none;
    position: absolute;
    right: 40px;
    top: 40px;
}
.orders-widget__view-all {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    width: 477px;
    max-width: 100%;
    height: 43px;
    background: #75728D;
    border-radius: 8px;
    font-family: 'Geologica';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    text-transform: uppercase;
    color: #FFFCF6;
}
.orders-widget__counter{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2px 4px;
	gap: 10px;
	width: 40px;
	height: 40px;
	background: #75728D;
	border-radius: 40px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	display: flex;
	align-items: center;
	text-align: center;
	color: #FFFCF6;
}



/* Стили для бегущей строки */
.sales-widget__container {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  height: 34px;
  margin:0 auto;
  background: #F5EEE0;
}

.sales-widget__container:active {
  cursor: grabbing;
}

.sales-widget__content {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
  padding-right: 50px; /* Для плавного перехода */
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 16px;
  height: 24px;
}

.sales-widget__content.paused {
  animation-play-state: paused;
}

.sales-widget__item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 0 16px;
  font-family: 'Geologica';
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 120%;
display: flex;
align-items: center;
/* font-feature-settings: 'tnum' on, 'lnum' on; */
color: #373449;
}

.sales-widget__item svg {
  flex-shrink: 0;
}

/* Бургер-меню для мобильных */
.burger-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: #fffcf6;
    padding: 20px;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    display: flex;
	flex-direction: column;
}
.burger-mobile-menu a{
	text-decoration:none!important;
}

.burger-mobile-menu.active {
    left: 0;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
}

.burger-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.burger-logo {
    display: flex;
    align-items: center;
    gap: 10px;
	padding-top:30px;
}


.burger-logo-text-bottom {
    font-family: 'Geologica', sans-serif;
    font-weight: Medium;
    font-size: 14px;
    color: #373449;
    margin-top: 2px;
}

.burger-close-button {   
	margin-top: 20px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    padding: 0;
}

.burger-close-line {
    width: 3px;
    height: 30px;
    background: #75728d;
    border-radius: 10px;
    position: absolute;
    top: -3px;
    left: 10px;
}

.burger-close-line-1 {
    transform: rotate(-45deg);
}

.burger-close-line-2 {
    transform: rotate(-133deg);
}

.burger-search {
    position: relative;
    margin-bottom: 30px;
}

.burger-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.burger-search-icon::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #75728d;
    top: 3px;
    left: 3px;
}

.burger-search-input {
    width: -webkit-fill-available;
    height: 40px;
    padding: 6px 12px 6px 44px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background: white;
    font-family: 'Geologica', sans-serif;
    font-weight: Light;
    font-size: 10px;
    color: #373449;
    outline: none;
}

.burger-search-input::placeholder {
    color: #373449;
    opacity: 0.8;
}

.burger-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.burger-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    transition: opacity 0.2s;
	text-decoration:none;
}

.burger-nav-item:hover {
    opacity: 0.7;
}

.burger-nav-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.catalog-icon::before,
.categories-icon::before,
.location-icon::before,
.user-icon::before,
.orders-icon::before,
.favorites-icon::before {
    content: '';
    position: absolute;
    background: #373449;
}

.catalog-icon::before {
    width: 19px;
    height: 22px;
    top: 0;
    left: 2px;
}

.categories-icon::before {
    width: 19px;
    height: 22px;
    top: 0;
    left: 2px;
}

.location-icon::before {
    width: 19px;
    height: 22px;
    top: 0;
    left: 2px;
}

.user-icon::before {
    width: 19px;
    height: 22px;
    top: 0;
    left: 2px;
}

.orders-icon::before {
    width: 19px;
    height: 22px;
    top: 0;
    left: 2px;
}

.favorites-icon::before {
    width: 19px;
    height: 22px;
    top: 0;
    left: 2px;
}

.cart-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.cart-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 17px;
    background: #373449;
    top: 3px;
    left: 1px;
}

.cart-icon::after {
    content: '';
    position: absolute;
    width: 13px;
    height: 6px;
    background: #0e3626;
    border: 1px solid #0e3626;
    top: 7px;
    left: 7px;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #f45d44;
    color: #f8f5ef;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger-nav-text {
    font-family: 'Geologica', sans-serif;
    font-weight: Regular;
    font-size: 16px;
    color: #373449;
	text-decoration:none;
}

.burger-contacts {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.burger-phone,
.burger-email {
    margin-bottom: 15px;
}

.burger-phone span,
.burger-email span {
    font-family: 'Geologica', sans-serif;
    font-weight: Regular;
    font-size: 16px;
    color: #373449;
    display: block;
}

.burger-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
	padding-bottom:100px;
}

.social-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fffcf6;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.social-button:hover {
    background-color: #f5f5f5;
}
.search-widget__content{
	display: none;
	flex-direction: row;
	align-items: center;
	padding: 6px 12px;
	gap: 8px;
	position: absolute;
	width: 381px;
	height: 52px;
	left: 1234px;
	top: 97px;
	background: #FFFCF6;
	border-radius: 8px;
}
.search-widget__content.active{
	display: flex;
}
.categories-widget__content{
	box-sizing: border-box;
	display: none;
	position: absolute;
	top:300px;
	right:300px;
	width: 729px;
	height: 358px;
	padding:40px;
	background: #FFFCF6;
	border: 1px solid #D5C6AD;
	border-radius: 20px;
	z-index: 9999;
}
.categories-widget__header{
	display: flex;
	flex-direction: row;
	align-items: center; 
	justify-content: space-between;	
}
.categories-widget__all-link{
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 8px 12px;
	gap: 8px;
	width: 187px;
	height: 40px;
	background: #F5EEE0;
	border-radius: 8px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	text-align: center;
	color: #75728D;
	text-decoration:none;
}
.categories-widget__close-btn{
	cursor:pointer;
	display: flex;
	float:right;
	width: 40px;
	height: 40px;
	color: #75728D;
	text-decoration:none;
}
.categories-widget__grid{
	margin-top:20px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	align-content: flex-start;
	padding: 0px;
	gap: 8px;
	flex: none;
	order: 1;
	align-self: stretch;
	flex-grow: 0;
}
.categories-widget__item{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
	width: 210px;
	height: 66px;
	background: #F5EEE0;
	border-radius: 8px;
	flex: none;
	order: 0;
	flex-grow: 0;
	flex-wrap: wrap;
	text-decoration:none;
}
.categories-widget__image{
	max-width: 62px;
	max-height: 62px;
	width: 62px;
	height: 62px;
}
.categories-widget__title{
	text-decoration:none;
	width: 122px;
	height: 42px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	display: flex;
	align-items: center;
	color: #373449;
	flex: none;
	order: 1;
	flex-grow: 0;
}
/* ===== ОСНОВНЫЕ СТИЛИ БЛОКА ГЕРОЙ-СЕКЦИИ ===== */
.hero-section {
    --hero-bg-color: #FFFCF6;
    --hero-primary-color: #D4A762;
    --hero-secondary-color: #8B7355;
    --hero-beige-color: #E8D7C0;
    --hero-text-color: #333;
    --hero-description-color: #666;
    --hero-background-color: #FFF;
    --hero-border-color: #D4A762;
    --hero-placeholder-color: #A69275;
    --hero-button-hover: #C19752;
    --hero-shadow-color: rgba(212, 167, 98, 0.3);
    
    max-width: 100%;
    height: 758px;
    background-color: var(--hero-bg-color);
    border-radius: 0 0 60px 60px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}


/* Сброс стилей для всех дочерних элементов */
.hero-section *,
.hero-section *::before,
.hero-section *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

/* ===== ВНУТРЕННИЙ КОНТЕЙНЕР ===== */
.hero-section .hero-section__inner {
	position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    height: 100%;
    width: 100%;
    align-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    height: 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.hero-section::before {
    background-image: url(/wp-content/themes/fireworks/images/hero-bg-first-DyGuGyXM.png);
    background-position: 0% 0%;
    background-size: contain;
}

.hero-section::after {
	right:0;left:auto;
    background-image: url(/wp-content/themes/fireworks/images/hero-bg-second-DuiYyXZK.png);
    background-position: 100% 100%;
    background-size: contain;
}
/* ===== КОНТЕНТНАЯ ОБЛАСТЬ ===== */
.hero-section .hero-section__content {
    margin-bottom: 3rem;
    width: 100%;
}

/* Класс для центрирования текста */
.hero-section .hero-section__text-center {
    text-align: center;
}

/* Заголовок */
.hero-section .hero-section__title {/* Купи фейерверк! */
	width: auto;
	height: 100px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 500;
	font-size: 80px;
	line-height: 100px;
	text-align: center;
	text-transform: uppercase;
	color: #373449;
}

.hero-section .hero-section__index-sale {
    padding-bottom: 0.5rem;
}

/* Описание */
.hero-section .hero-section__description {
	width: auto;
	height: 40px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 32px;
	line-height: 40px;
	text-align: center;
	color: #74728A;
	flex: none;
	order: 0;
	align-self: stretch;
	flex-grow: 0; 
	margin-top: 40px; 
	margin-bottom: 40px;
}

.hero-section .hero-section__index-sale-description {
    margin-top: 0.5rem;
}

/* ===== ОБЛАСТЬ ПОИСКА И КНОПКИ ===== */
.hero-section .hero-section__search-wrapper {
    width: 90%;
    max-width: 480px;
    margin: 0 auto;
}

/* Контейнер поля ввода */
.hero-section .hero-section__search-input {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--hero-background-color);
    padding: 0.75rem;
    border: 2px solid var(--hero-border-color);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    width: 100%;
}

/* Иконка помощи */
.hero-section .hero-section__search-icon {
    background-color: var(--hero-beige-color);
    color: var(--hero-background-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    cursor: pointer;
    flex-shrink: 0;
    font-weight: 700;
    user-select: none;
}

.hero-section .hero-section__help-icon {
    padding: 0;
    line-height: 1;
}

/* Поле ввода */
.hero-section .hero-section__input {

    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--hero-secondary-color);
    font-family: inherit;
    min-height: 24px;
}

.hero-section .hero-section__input::placeholder {
    color: var(--hero-placeholder-color);
    opacity: 1;
}

.hero-section .hero-section__input:focus {
    outline: none;
    box-shadow: none;
	outline:none;
}

/* Кнопка перехода в каталог */
.hero-section .hero-section__button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 479px;
	height: 70px;
	background: #373449;
	border-radius: 12px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	text-transform: uppercase;
	color: #FFFCF6;
	text-decoration:none;
}

.hero-section .hero-section__catalog-link {
    text-decoration: none;
}

.hero-section .hero-section__button:hover,
.hero-section .hero-section__button:focus {
    background-color: #75728D;
}

.hero-section .hero-section__button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header__logo img{
		height: 69px;
		max-width: 100%;
	}
/* ===== МОБИЛЬНАЯ ВЕРСИЯ (до 1024px) ===== */
@media screen and (max-width: 994px) {
	.hero-section {
		width: 100%;
		height: 300px;
		background-color: #FFFCF6;
		background-size: 20rem;
		border-radius: 0px 0px 20px 20px;
	}
	
	.hero-section .hero-section__inner{
		padding: 40px 1rem 1rem;
	}
	.hero-section .hero-section__title{
		height: 30px;
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 500;
		font-size: 24px;
		line-height: 30px;
		text-align: center;
		text-transform: uppercase;
		color: #373449;
		flex: none;
		order: 0;
		align-self: stretch;
		flex-grow: 0;
	}
	.hero-section .hero-section__description{
		height: 18px;
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 18px;
		text-align: center;
		color: #75728D;
		flex: none;
		order: 0;
		align-self: stretch;
		flex-grow: 0;
		margin-top:10px;
		margin-bottom:0px;
	}
	.hero-section .hero-section__button{
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		padding: 12px 16px;
		gap: 8px;
		width: 288px;
		height: 43px;
		background: #373449;
		border: 1px solid #373449;
		border-radius: 8px;
		flex: none;
		order: 0;
		align-self: stretch;
		flex-grow: 0;
	}
	.hero-section .hero-section__search-wrapper{
		width: auto;
		max-width: 100%;
		margin: 0 auto;
	}
	
	.header__actions{gap:0px;}
	.header__right{gap:0px;}
	.header__container {
        max-width: 100%;
        padding: 10px 5px;
	}
}

@media screen and (min-width: 995px) and (max-width: 1366px) {
    .hero-section {
        width: 100%;
        max-width: 1366px;
        height: 600px;
        background-size: contain;
    }
    
    .hero-section .hero-section__title {
        font-size: 2.5rem;
    }
    
    .hero-section .hero-section__description {
        font-size: 1.25rem;
	}
}

@media screen and (min-width: 1600px) and (max-width: 1780px) {
	.hero-section {
		background-position: 0% 0%, 130% 130%;
	}
}

@media screen and (min-width: 1300px) and (max-width: 1599px) {
	.hero-section {
		background-position: 0% 0%, 140% 140%;
	}
}

/* ===== УТИЛИТАРНЫЕ КЛАССЫ ДЛЯ ГЕРОЙ-СЕКЦИИ ===== */
.hero-section .hero-section__w-90 {
    width: 90%;
}

.hero-section .hero-section__sm-w-480 {
    width: 480px;
}

.hero-section .hero-section__flex {
    display: flex;
}

.hero-section .hero-section__items-center {
    align-items: center;
}

.hero-section .hero-section__gap-2 {
    gap: 0.5rem;
}

.hero-section .hero-section__justify-between {
    justify-content: space-between;
}

.hero-section .hero-section__bg-background {
    background-color: var(--hero-background-color);
}

.hero-section .hero-section__p-3 {
    padding: 0.75rem;
}

.hero-section .hero-section__border-2 {
    border-width: 2px;
}

.hero-section .hero-section__border-secondary {
    border-color: var(--hero-border-color);
}

.hero-section .hero-section__text-primary {
    color: var(--hero-primary-color);
}

.hero-section .hero-section__rounded-xl {
    border-radius: 12px;
}

.hero-section .hero-section__text-lg {
    font-size: 1.125rem;
}

.hero-section .hero-section__mb-2 {
    margin-bottom: 0.5rem;
}

.hero-section .hero-section__bg-beige {
    background-color: var(--hero-beige-color);
}

.hero-section .hero-section__px-7 {
    padding-left: 0.4375rem;
    padding-right: 0.4375rem;
}

.hero-section .hero-section__rounded-full {
    border-radius: 9999px;
}

.hero-section .hero-section__text-sm {
    font-size: 0.875rem;
}

.hero-section .hero-section__text-background {
    color: var(--hero-background-color);
}

.hero-section .hero-section__cursor-pointer {
    cursor: pointer;
}

.hero-section .hero-section__w-full {
    width: 100%;
}

.hero-section .hero-section__h-full {
    height: 100%;
}

.hero-section .hero-section__focus-outline-none:focus {
    outline: none;
}

.hero-section .hero-section__bg-transparent {
    background-color: transparent;
}

.hero-section .hero-section__text-xs {
    font-size: 0.75rem;
}

.hero-section .hero-section__lg-text-lg {
    font-size: 1.125rem;
}

.hero-section .hero-section__text-secondary {
    color: var(--hero-secondary-color);
}

.hero-section .hero-section__inline-block {
    display: inline-block;
}

.hero-section .hero-section__text-base {
    font-size: 1rem;
}

.hero-section .hero-section__lg-text-3xl {
    font-size: 1.875rem;
}

.hero-section .hero-section__py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.hero-section .hero-section__uppercase {
    text-transform: uppercase;
}

/* ===========================================
   Блок: bestsellers-section
   =========================================== */
.catalog-product,
.bestsellers-section {
    --bestsellers-section-bg: #fff;
    --bestsellers-section-font-family: 'Geologica', -apple-system, BlinkMacSystemFont, sans-serif;
    --bestsellers-section-primary-color: #373449;
    --bestsellers-section-secondary-color: #75728D;
    --bestsellers-section-accent-color: #D5C6AD;
    --bestsellers-section-border-color: #F5EEE0;
    --bestsellers-section-spacing: 2rem;
    
    font-family: var(--bestsellers-section-font-family);
    background: var(--bestsellers-section-bg);
    padding: 3rem 0;
    width: 100%;
    position: relative;
}

/* Элемент: inner */
.catalog-product__inner,
.bestsellers-section__inner {
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Элемент: content */
.catalog-product__content,
.bestsellers-section__content {
    margin-bottom: var(--bestsellers-section-spacing);
}

/* Модификатор: text-center */

.catalog-product__content--text-center,
.bestsellers-section__content--text-center {
    text-align: center;
}

/* Элемент: title */
.catalog__title,
.section__title {
	height: 40px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 40px;
	text-transform: uppercase;
	color: #373449;
	flex: none;
	order: 0;
	align-self: stretch;
	flex-grow: 0;
    display: inline-block;
}

/* Элемент: content-wrapper */

.catalog-product__content-wrapper,
.bestsellers-section__content-wrapper {
	
}

/* Элемент: lists */
.catalog-product__lists, 
.bestsellers-section__lists{
    display: flex;
    flex-wrap: wrap;    
	justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ===== FIREWORKS FAQ COMPONENT - ИЗОЛИРОВАННЫЕ СТИЛИ ===== */
/* Префикс .fireworks-faq- гарантирует изоляцию стилей */

.fireworks-faq-section {
    padding: 2rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.fireworks-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Основная кнопка FAQ */
.fireworks-faq-main-button {
    width: 100%;
    border: 1px solid #D4B996;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    transition: none;
    text-align: left;
    color: #333333;
    font-family: inherit;
	background-color: transparent;
    cursor: pointer;
    transition: all 250ms ease;
    text-align: left;
    color: #333333;
    font-family: inherit;
    /* КРИТИЧНО: Убираем все браузерные стили */
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    /* Сбрасываем браузерные стили */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.fireworks-faq-main-button:hover{
	background-color: F5EEE0 !important;
}
.fireworks-faq-main-button:focus {
	background-color: #D5C6AD !important;
}

.fireworks-faq-main-button[aria-expanded="true"] {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
	background-color: #D5C6AD !important;
}
/* Изолированные стили компонента AI-чата */
	.ai-chat-isolated {
		--ai-chat-primary-color: #373449;
		--ai-chat-primary-2-color: #75728D;
		--ai-chat-bg-color: #FFFCF6;
		--ai-chat-shadow-color: #EDEBFF;
		--ai-chat-error-color: #FF4757;
		--ai-chat-border-radius: 12px;
		--ai-chat-font-family: 'Geologica', sans-serif;
		
		font-family: var(--ai-chat-font-family);
		width: 479px;
		display: block;
		margin-bottom:20px;/* Вопрос */
		border-radius: 12px;

	}
	
	/* Сброс стилей только для внутренних элементов компонента */
	.ai-chat-isolated * {
		box-sizing: border-box;
		margin: 0;
		padding: 0;
		font-family: inherit;
	}
	
	.ai-chat-isolated .ai-chat-container {
		width: 100%;
	}
	
	.ai-chat-isolated .ai-chat-question-link {
		margin-bottom: 12px;
		cursor: pointer;
		display: inline-block;
	}
	
	.ai-chat-isolated .ai-chat-question-text {
		font-family: var(--ai-chat-font-family);
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 18px;
		color: var(--ai-chat-primary-2-color);
		text-decoration: none;
		padding: 4px 8px;
		border-radius: 4px;
		transition: all 0.3s ease;
	}
	
	.ai-chat-isolated .ai-chat-question-text:hover {
		background-color: rgba(117, 114, 141, 0.1);
	}
	
	.ai-chat-isolated .ai-chat-question-box {
		position: absolute;
		display: none;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 16px;
		gap: 8px;
		width: 296px;
		height: 128px;
		background: #F5EEE0;
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 130%;
		color: #75728D;
		border-radius:20px;
	}
	
	.ai-chat-isolated .ai-chat-input-container {
		display: flex;
		flex-direction: row;
		align-items: center;
		padding: 12px 20px;
		gap: 8px;
		width: 100%;
		height: 80px;
		border: 1.5px solid var(--ai-chat-primary-2-color);
		border-radius: var(--ai-chat-border-radius);
	}
	
	.ai-chat-isolated .ai-chat-input-wrapper {
		display: flex;
		flex-direction: row;
		align-items: center;
		padding: 0px;
		gap: 12px;
		width: 375px;
		height: 24px;
		flex: 1;
	}
	
	.ai-chat-isolated .ai-chat-help-icon {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 8px;
		gap: 8px;
		width: 24px;
		height: 24px;
		background: var(--ai-chat-primary-2-color);
		border-radius: 100px;
		cursor: pointer;
		position: relative;
		flex-shrink: 0;
	}
	
	.ai-chat-isolated .ai-chat-help-icon span {
		width: 7px;
		height: 18px;
		font-family: var(--ai-chat-font-family);
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 18px;
		display: flex;
		align-items: center;
		text-align: center;
		color: var(--ai-chat-bg-color);
	}
	
	.ai-chat-isolated .ai-chat-help-icon:hover {
		background: #5A5770;
	}
	
	.ai-chat-isolated .ai-chat-input-field {
		width: 100%;
		height: 23px;
		font-family: var(--ai-chat-font-family);
		font-style: normal;
		font-weight: 400;
		font-size: 18px;
		line-height: 22px;
		color: var(--ai-chat-primary-color);
		border: none;
		outline: none;
		background: transparent;
		flex: 1;
	}
	
	.ai-chat-isolated .ai-chat-input-field::placeholder {
		color: var(--ai-chat-primary-2-color);
		opacity: 0.7;
	}
	
	.ai-chat-isolated .ai-chat-record-btn {
		box-sizing: border-box;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		padding: 6.22222px;
		gap: 4.98px;
		width: 56px;
		height: 56px;
		border: 0.622222px solid var(--ai-chat-primary-2-color);
		border-radius: 28px;
		cursor: pointer;
		background: transparent;
		transition: all 0.3s ease;
		position: relative;
		flex-shrink: 0;
		border: none;
	}
	
	.ai-chat-isolated .ai-chat-record-btn:hover {
		background-color: rgba(117, 114, 141, 0.05);
	}
	
	.ai-chat-isolated .ai-chat-record-btn.recording {
		border-color: var(--ai-chat-error-color);
		animation: ai-chat-pulse 1.5s infinite;
	}
	
	@keyframes ai-chat-pulse {
		0% {
			box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4);
		}
		70% {
			box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
		}
		100% {
			box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
		}
	}
	
	.ai-chat-isolated .ai-chat-record-circle {
		width: 43.56px;
		height: 43.56px;
		background: var(--ai-chat-primary-2-color);
		box-shadow: 1.24444px 1.24444px 5.6px var(--ai-chat-shadow-color);
		border-radius: 50%;
		transition: background-color 0.3s ease;
	}
	
	.ai-chat-isolated .ai-chat-record-btn.recording .ai-chat-record-circle {
		background: var(--ai-chat-error-color);
	}
	
	.ai-chat-isolated .ai-chat-mic-icon {
		position: absolute;
		width: 16.8px;
		height: 24.27px;
		left: calc(50% - 16.8px/2);
		top: calc(50% - 24.27px/2);
		z-index: 1;
	}
	
	.ai-chat-isolated .ai-chat-mic-icon::before,
	.ai-chat-isolated .ai-chat-mic-icon::after {
		content: '';
		position: absolute;
		background: var(--ai-chat-bg-color);
	}
	
	.ai-chat-isolated .ai-chat-mic-icon::before {
		left: 35%;
		right: 35%;
		top: 42.5%;
		bottom: 29.17%;
	}
	
	.ai-chat-isolated .ai-chat-mic-icon::after {
		left: 41.66%;
		right: 41.67%;
		top: 27.5%;
		bottom: 44.17%;
	}
	
	.ai-chat-isolated .ai-chat-record-btn.recording .ai-chat-mic-icon::before,
	.ai-chat-isolated .ai-chat-record-btn.recording .ai-chat-mic-icon::after {
		background: var(--ai-chat-bg-color);
	}
	
	.ai-chat-isolated .ai-chat-relative-container {
		position: relative;
		width: 100%;
	}
	
	/* Адаптивность */
	@media (max-width: 500px) {
		.ai-chat-isolated {
			width: 100%;
		}
		
		.ai-chat-isolated .ai-chat-input-wrapper {
			width: calc(100% - 56px - 20px);
		}
	}
@media (min-width: 1024px) {
    .fireworks-faq-main-button {
        padding: 1.25rem 1.5rem;
        font-size: 1.25rem;
        border-radius: 1rem;
    }
    
    .fireworks-faq-main-button[aria-expanded="true"] {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/* Контейнер контента FAQ */
.fireworks-faq-content-wrapper {
    border: 1px solid #D4B996;
    border-top: none;
    border-radius: 0 0 0.75rem 0.75rem;
    padding: 0.75rem;
    background-color: #FFFFFF;
    font-family: inherit;
}

.fireworks-faq-content-wrapper[aria-hidden="true"] {
    display: none;
}


@media (min-width: 1651px) and (max-width: 1820px) {
	.page-section,
	.hero-section__inner{
		zoom: 0.9;
	}
	.product-card__package-info{
		font-size: 18px !important;
	}
	.product-card__rating{
		font-size: 14px !important;
	}
	.fireworks-faq-main-button,
	.fireworks-faq-cta-content{
		zoom:0.9;
	}
}
@media (min-width: 1499px) and (max-width: 1650px) {
	.page-section{
		zoom: 0.8;
	}
	.hero-section__inner,
	.sales-widget__container{
		zoom: 0.9;
	}
	.product-card__package-info{
		font-size: 19px !important;
	}
	.product-card__rating,
	.product-card__price-old,
	.product-card__price-original{
		font-size: 15px !important;
	}
	.fireworks-faq-main-button,
	.fireworks-faq-cta-content{
		zoom:0.8;
	}
}
@media (min-width: 1301px) and (max-width: 1500px) {
	.page-section{
		zoom: 0.7;
	}
	.hero-section__inner,
	.sales-widget__container{
		zoom: 0.9;
	}
	.product-card__package-info{
		font-size: 20px !important;
	}
	.product-card__rating,
	.product-card__price-old,
	.product-card__price-original{
		font-size: 16px !important;
	}
	.fireworks-faq-main-button,
	.fireworks-faq-cta-content{
		zoom:0.7;
	}
}

@media (min-width: 1101px) and (max-width: 1300px) {
	.page-section{
		zoom: 0.8;
	}
	.hero-section__inner,
	.sales-widget__container{
		zoom: 0.8;
	}
	.product-card__package-info{
		font-size: 20px !important;
	}
	.product-card__rating,
	.product-card__price-old,
	.product-card__price-original{
		font-size: 20px !important;
	}
	.fireworks-faq-main-button,
	.fireworks-faq-cta-content{
		zoom:1;
	}
}


@media (min-width: 1026px) and  (max-width: 1100px) {
	.page-section{
		zoom: 0.6;
	}
	.hero-section__inner,
	.sales-widget__container{
		zoom: 0.8;
	}
	.product-card__package-info{
		font-size: 20px !important;
	}
	.product-card__rating,
	.product-card__price-old,
	.product-card__price-original{
		font-size: 20px !important;
	}
	.fireworks-faq-main-button,
	.fireworks-faq-cta-content{
		zoom:0.7;
	}
}
@media (min-width: 1024px) {
    .fireworks-faq-content-wrapper {
        padding: 1rem;
        border-radius: 0 0 1rem 1rem;
    }
}

/* Колонки FAQ */
.fireworks-faq-columns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: inherit;
}

@media (min-width: 1024px) {
    .fireworks-faq-columns {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.fireworks-faq-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    font-family: inherit;
}

@media (min-width: 1024px) {
    .fireworks-faq-column {
        width: 50%;
    }
}

/* Элемент FAQ */
.fireworks-faq-item {
    border: 1px solid #E8E8E8;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 250ms ease;
    background-color: #FFFFFF;
    font-family: inherit;
}

.fireworks-faq-item:hover {
    border-color: #D4B996;
}

/* Вопрос FAQ */
.fireworks-faq-question {
    width: 100%;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    background-color: rgb(255, 252, 246);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
    transition: background-color 250ms ease;
    border: none;
    color: #333333;
    font-family: inherit;
}

.fireworks-faq-question:hover {background-color: #D5C6AD;
}

.fireworks-faq-question:focus {
    outline: none;background-color: #D5C6AD;
}

.fireworks-faq-question[aria-expanded="true"] {
    background-color: rgba(232, 232, 232, 0.3);
}

.fireworks-faq-question[aria-expanded="true"] .fireworks-faq-icon {
    transform: rotate(180deg);
}

@media (min-width: 1024px) {
    .fireworks-faq-question {
        padding: 1rem 1.25rem;
        font-size: 1.25rem;
    }
}

.fireworks-faq-question-text {
    flex: 1;
    margin-right: 0.75rem;
    line-height: 1.4;
}

.fireworks-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 250ms ease;
    min-width: 20px;
    min-height: 20px;
    color: #333333;
    flex-shrink: 0;
}

.fireworks-faq-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Ответ FAQ */
.fireworks-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease;
    background-color: #FFFFFF;
    font-family: inherit;
}

.fireworks-faq-answer[aria-hidden="false"] {
    max-height: 1000px;
    padding: 0 1rem 1rem;
}

@media (min-width: 1024px) {
    .fireworks-faq-answer[aria-hidden="false"] {
        padding: 0 1.25rem 1.25rem;
    }
}

.fireworks-faq-answer-text {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    font-family: inherit;
}

.fireworks-faq-answer-text br {
    margin-bottom: 0.25rem;
    display: block;
    content: "";
}

@media (min-width: 1024px) {
    .fireworks-faq-answer-text {
        font-size: 1rem;
    }
}

/* Блок CTA */
.fireworks-faq-cta-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #D4B996;
    border-radius: 1.5rem;
    margin: 1.75rem 0;
    overflow: hidden;
    background-color: #FFFFFF;
    font-family: inherit;
}

@media (min-width: 1024px) {
    .fireworks-faq-cta-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin: 3rem 0;
    }
}

.fireworks-faq-cta-content {
    padding: 1.5rem;
    flex: 1;
    font-family: inherit;
}

@media (min-width: 1024px) {
    .fireworks-faq-cta-content {
        padding: 2.5rem;
        max-width: 50%;
    }
}

.fireworks-faq-cta-title {
	height: 40px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 32px;
	line-height: 40px;
	color: #373449;
	flex: none;
	order: 0;
	align-self: stretch;
	flex-grow: 0;
	margin-bottom:15px;
}

@media (min-width: 1024px) {
    .fireworks-faq-cta-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }
}

.fireworks-faq-cta-description {
	height: 69px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #75728D;
}

@media (min-width: 1024px) {
    .fireworks-faq-cta-description {
        font-size: 1.125rem;
        padding-top: 1.5rem;
        padding-bottom: 3.5rem;
        margin-bottom: 0;
    }
}

.fireworks-faq-cta-button {
	width: 479px;
	max-width:100%;
	height: 70px;
	background: #75728D;
	border-radius: 12px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 70px;
	/* identical to box height */
	text-transform: uppercase;
	color: #FFFCF6;
	outline:none;    border: none;
}

.fireworks-faq-cta-button:hover {
    background-color: #D5C6AD;
    border-color: #D5C6AD;    border: none;
}

.fireworks-faq-cta-button:focus {
    background-color: #373449;
    border-color: #373449;outline:none;    border: none;
}
.ant-modal{/* Форма обратной связи */
	background: #F5EEE0;
	border-radius: 20px !important;
	z-index:99999;	
	width: 730px !important;
	height: 471px;
	max-width:100%;
	max-height:471px;
	padding:45px;
}
.ant-modal-content{
	width: 640px;	
	max-width:100%;
	margin:0 auto;
}
.ant-modal-footer{
	margin:0 auto;
	padding:10px;
    font-family: 'Geologica';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #75728D;
    flex: none;
    order: 0;
    flex-grow: 0;
}
.ant-modal .callback-submit-btn{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 20px;
	gap: 8px;
	width: 640px;
	height: 70px;
	max-width:100%;
	background: #75728D;
	border-radius: 12px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	text-transform: uppercase;
	color: #FFFCF6;
	flex: none;
	order: 0;
	flex-grow: 0;outline:none!important;
	border:0!important;
}
.ant-modal-content{position:relative;}
.ant-modal-close-x svg{fill:#75728D;}
.ant-modal .callback-form > .form-group{
	display:flex;
	margin-bottom:10px
}
/* Скрываем стандартный checkbox */
.ant-custom-checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Кастомный контейнер */
.ant-custom-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  user-select: none;
  margin-top: 10px;
  margin-bottom:10px;
}
.ant-custom-checkbox-label p{display: contents;}
/* Кастомный checkbox визуал */
.ant-custom-checkbox-label::before {
    content: ' ';
    display: block;
    width: 24px;
    height: 24px;
    min-width: 24px;
    line-height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    margin-right: 12px;
    background: white;
    /*transition: all 0.3s ease;*/
    position: relative;
    /* position: absolute; */
    margin-left: 2px;   
	margin-top: -10px;

}
.ant-custom-checkbox-label::after {
	content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #D5C6AD;
    border-radius: 2px;
    min-width: 30px;
    position: absolute;
	margin-top: -10px;
}

/* Состояние checked с иконкой */
.ant-custom-checkbox:checked + .ant-custom-checkbox-label::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNCAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNzIxNDE0IDYuMDUwMDdMNS4xNDE1OSAxMC42NDI3TDEyLjIyODIgMC41NzQ1MDUiIHN0cm9rZT0iIzM3MzQ0OSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center;
  background-color:#D5C6AD;
}

/* Анимация */
.ant-custom-checkbox:checked + .ant-custom-checkbox-label::before {
  animation: checkAnim 0.3s ease;
}

@keyframes checkAnim {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
.ant-modal-title h1{
	height: 40px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 500;
	font-size: 32px;
	line-height: 40px;
	text-transform: uppercase;
	color: #373449;
	margin-top:0!important;
}
.ant-input{
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 18px 16px;
	gap: 12px;
	width: 640px;
	height: 60px;
	border: 1px solid #D5C6AD;
	border-radius: 10px;
	flex: none;
	order: 0;
	align-self: stretch;
	flex-grow: 0;
}
.ant-modal-body p {
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 22px;
	color: #75728D;
	flex: none;
	order: 0;
	flex-grow: 0;
}


.fireworks-faq-cta-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}



/*FOOTER */
/* CustomFooter - полностью изолированный компонент футера */
.custom-footer {
    /* Основные переменные компонента */
    --custom-footer-primary: #667eea;
    --custom-footer-secondary: #764ba2;
    --custom-footer-background: #ffffff;
    --custom-footer-text: #333333;
    --custom-footer-accent: #ff6b6b;
    --custom-footer-light: #f8f9fa;
    --custom-footer-border: #dee2e6;
    --custom-footer-beige: #D5C6AD;
    
    /* Типография */
    --custom-footer-font-xs: 0.75rem;   /* 12px */
    --custom-footer-font-sm: 0.875rem;  /* 14px */
    --custom-footer-font-base: 1rem;    /* 16px */
    --custom-footer-font-lg: 1.125rem;  /* 18px */
    --custom-footer-font-xl: 1.25rem;   /* 20px */
    
    /* Отступы */
    --custom-footer-spacing-xs: 0.25rem;   /* 4px */
    --custom-footer-spacing-sm: 0.5rem;    /* 8px */
    --custom-footer-spacing-md: 1rem;      /* 16px */
    --custom-footer-spacing-lg: 1.5rem;    /* 24px */
    --custom-footer-spacing-xl: 2rem;      /* 32px */
    
    /* Скругления */
    --custom-footer-radius-sm: 4px;
    --custom-footer-radius-md: 8px;
    --custom-footer-radius-lg: 12px;
    
    /* Анимации */
    --custom-footer-transition: 0.3s ease;
    
    /* Стили компонента */
    
    color: var(--custom-footer-background);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    width: 100%;
    box-sizing: border-box;
	padding:60px 80px;
	/* Rectangle 4478 */
	background: #373449;
	min-height: 415px;
}
.custom-footer__container {
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.custom-footer__main {
    display: flex;
	flex-wrap: wrap;
    align-content: center;
    flex-direction: row;
    justify-content: space-between;
}
.custom-footer__section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 0px;
    width: -webkit-fill-available;
    height: 242px;
    flex: none;   
	gap: inherit;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    flex-wrap: wrap;
	align-content: stretch;
}
.custom-footer__subscription{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 16px;
	width: 433px;
	height: 242px;
	flex: none;
	order: 0;
	flex-grow: 0;
}
.custom-footer__navigation{
	display: flex;
    gap: 30px;
}
.custom-footer__contacts-wrapper,
.custom-footer__contact-details{
	display:flex;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: row;
    justify-content: space-evenly;
	gap:15px;
}
.custom-footer__section--right{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0px;
	gap: 16px;
	width: 433px;
	height: 242px;
	flex: none;
	order: 1;
	flex-grow: 0;
}
@media (min-width: 1024px) {
    .custom-footer__main {
        grid-template-columns: 2fr 1fr;
        /*gap: var(--custom-footer-spacing-xl);*/
    }
}


/* Логотип */
.custom-footer__logo--desktop {
    display: none;
}

@media (min-width: 1024px) {
    .custom-footer__logo--desktop {
        display: block;
    }
}

.custom-footer__logo-link {
    display: inline-block;
    transition: opacity var(--custom-footer-transition);
    text-decoration: none;
}

.custom-footer__logo-link:hover {
    opacity: 0.8;
}

.custom-footer__logo-image {
    width: 244px;
    height: auto;
    max-width: 100%;
    display: block;
}

.custom-footer__nav-column {
    display: flex;
    flex-direction: column;
}

.custom-footer__nav-title {
    color: var(--custom-footer-background);
    font-size: var(--custom-footer-font-sm);
    font-weight: 600;
    margin-bottom: var(--custom-footer-spacing-sm);
}

.custom-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--custom-footer-spacing-xs);
}

.custom-footer__nav-item {
    margin-bottom: var(--custom-footer-spacing-xs);
}

.custom-footer__nav-link {
    color: var(--custom-footer-background);
    text-decoration: none;
    font-size: var(--custom-footer-font-xs);
    font-weight: 300;
    line-height: 1.4;
    transition: opacity var(--custom-footer-transition);
    display: inline-block;
}

.custom-footer__nav-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (min-width: 1024px) {
    .custom-footer__nav-link {
        font-size: var(--custom-footer-font-base);
        font-weight: 400;
    }
}

/* Информация о компании (мобильная) */
.custom-footer__company-info--mobile {
    display: block;
    grid-column: 1 / -1;
    margin-top: var(--custom-footer-spacing-md);
}

@media (min-width: 1024px) {
    .custom-footer__company-info--mobile {
        display: none;
    }
}

.custom-footer__company-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--custom-footer-spacing-xs);
}

.custom-footer__company-item {
    color: var(--custom-footer-background);
    font-size: var(--custom-footer-font-xs);
    font-weight: 300;
    line-height: 1.4;
}

/* Контакты (десктоп) */
.custom-footer__contacts--desktop {
    display: none;
}

@media (min-width: 1024px) {
    .custom-footer__contacts--desktop {
        display: block;
    }
}

.custom-footer__contacts-title {
    color: var(--custom-footer-background);
    font-size: var(--custom-footer-font-base);
    font-weight: 400;
    margin-bottom: var(--custom-footer-spacing-md);
}


.custom-footer__social {
    display: flex;
    gap: var(--custom-footer-spacing-sm);
}

.custom-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--custom-footer-background);
    border-radius: 50%;
    color: var(--custom-footer-primary);
    text-decoration: none;
    transition: all var(--custom-footer-transition);
}

.custom-footer__social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-footer__social-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


.custom-footer__contact-link {
    color: var(--custom-footer-background);
    text-decoration: none;
    font-size: var(--custom-footer-font-base);
    font-weight: 400;
    transition: opacity var(--custom-footer-transition);
}

.custom-footer__contact-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Правая секция */
.custom-footer__section--right {
    display: flex;
    flex-direction: column;
    gap: var(--custom-footer-spacing-lg);
}

/* Контакты (мобильные) */
.custom-footer__contacts--mobile {
    display: block;
}

@media (min-width: 1024px) {
    .custom-footer__contacts--mobile {
        display: none;
    }
}

.custom-footer__contact-link--mobile {
    color: var(--custom-footer-background);
    text-decoration: none;
    font-size: var(--custom-footer-font-xs);
    font-weight: 300;
    margin-top: var(--custom-footer-spacing-sm);
    display: inline-block;
}

/* Форма подписки */
.custom-footer__subscription-title {
	height: 72px;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	padding:0;
	margin:0;
	color: #F5EEE0;
	flex: none;
	order: 0;
	align-self: stretch;
	flex-grow: 0;
    margin-bottom: var(--custom-footer-spacing-md);
}

.custom-footer__subscription-title-uppercase {
    text-transform: uppercase;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .custom-footer__subscription-title {
        font-size: var(--custom-footer-font-xl);
        font-weight: 400;
    }
}

/* Форма */
.custom-footer__subscription-form {
    display: flex;
    flex-direction: column;
    gap: var(--custom-footer-spacing-md);
}

.custom-footer__form-group {
    display: flex;
    gap: var(--custom-footer-spacing-sm);
}

@media (min-width: 1024px) {
    .custom-footer__form-group {
        gap: var(--custom-footer-spacing-md);
    }
}

.custom-footer__form-input {
    flex: 1;
    padding: var(--custom-footer-spacing-sm) var(--custom-footer-spacing-md);
    background-color: transparent;
    color: var(--custom-footer-background);
    border: 1px solid var(--custom-footer-background);
    border-radius: var(--custom-footer-radius-sm);
    font-size: var(--custom-footer-font-xs);
    font-family: inherit;
    transition: all var(--custom-footer-transition);
    box-sizing: border-box;
}

.custom-footer__form-input::placeholder {
    color: var(--custom-footer-background);
    opacity: 0.7;
}

.custom-footer__form-input:focus {
    outline: none;
    border-color: var(--custom-footer-background);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.custom-footer__form-button {
	/* Auto layout */
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 153px;
	height: 56px;
	line-height: 56px;
	flex: none;
	flex-grow: 0;
	padding: 6px 12px;
	gap: 8px;
	background: #F5EEE0;
	border-radius: 8px;
	border:none;
	outline:none;
}
.custom-footer__form-input{
	    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
    width: 433px;
    height: 56px;
    border: 0.5px solid #FFFCF6;
    border-radius: 8px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
	font-family: 'Geologica';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 56px;
	color: #FFFCF6;

}
@media (min-width: 1024px) {
    .custom-footer__form-button {
        font-size: var(--custom-footer-font-xl);
        padding: var(--custom-footer-spacing-md) var(--custom-footer-spacing-xl);
    }
}

.custom-footer__form-button:hover {
    background-color: #D5C6AD;
    transform: translateY(-1px);
}

.custom-footer__form-button:active {
    transform: translateY(0);
}

/* Чекбокс */
.custom-footer__form-agreement {
    display: flex;
    align-items: flex-start;
    gap: var(--custom-footer-spacing-sm);
}

.custom-footer__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--custom-footer-spacing-sm);
    cursor: pointer;
    font-size: var(--custom-footer-font-xs);
    font-weight: 300;
    line-height: 1.4;
    color: var(--custom-footer-background);
}

@media (min-width: 1024px) {
    .custom-footer__checkbox-label {
        font-size: var(--custom-footer-font-sm);
    }
}

.custom-footer__checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-footer__checkbox-custom {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid var(--custom-footer-beige);
    border-radius: 2px;
    background-color: transparent;
    transition: all var(--custom-footer-transition);
    flex-shrink: 0;
}

.custom-footer__checkbox-input:checked + .custom-footer__checkbox-custom {
    background-color: var(--custom-footer-beige);
    border-color: #373449;
}

.custom-footer__checkbox-input:checked + .custom-footer__checkbox-custom::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 13px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNCAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuNzIxNDE0IDYuMDUwMDdMNS4xNDE1OSAxMC42NDI3TDEyLjIyODIgMC41NzQ1MDUiIHN0cm9rZT0iIzM3MzQ0OSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.custom-footer__checkbox-input:focus + .custom-footer__checkbox-custom {
    box-shadow: 0 0 0 3px rgba(55, 52, 73, 0.2);
}

.custom-footer__checkbox-text {
    flex: 1;
}

/* Сообщения формы */
.custom-footer__form-message {
    font-size: var(--custom-footer-font-xs);
    padding: var(--custom-footer-spacing-sm);
    border-radius: var(--custom-footer-radius-sm);
}
.custom-footer__company-info{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
}
.custom-footer__company-info--mobile{display:none;}
.woocommerce-breadcrumbs{
	margin-top: 50px;
}
.page-section {
    max-width: 1740px;
    margin: 0 auto;
    display: block;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
	flex-wrap: wrap;
}
div.page-section {
	padding-top:40px;
	padding-bottom:40px;
}
.page-title{}
.category-list{}
.category-item{}
.category-item__image{}
.category-item__title{}
@media (min-width: 1024px) and (max-width: 1670px) {
	.custom-footer{
		padding: 60px 30px;
	}
}
@media (min-width: 1300px) and (max-width: 1560px) {
	.custom-footer{
		zoom:0.8;
	}
}
@media (max-width: 1299px) {
	.custom-footer{height:auto;}
	.custom-footer__main {
        flex-direction: column;
    }
    
    .custom-footer__navigation {
        width: 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .custom-footer__main > .custom-footer__section {
        width: 100%;
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .custom-footer__contacts--desktop {
        order: 3;
        margin-top: 20px;
    }
    
    .custom-footer__subscription {
        order: 2;
        margin-top: 20px;
    }
    
	.custom-footer__company-info--mobile {display:block;}
	.custom-footer__contacts--desktop .custom-footer__company-info{display:none;}
}
@media (min-width: 1024px) {
    .custom-footer__form-message {
        font-size: var(--custom-footer-font-sm);
    }
}

.custom-footer__form-message--success {
    display: block;
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.custom-footer__form-message--error {
    display: block;
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* Нижняя часть футера */
.custom-footer__bottom {
    padding-top: var(--custom-footer-spacing-lg);
    text-align: center;
}

.custom-footer__copyright {
    color: var(--custom-footer-background);
    font-size: var(--custom-footer-font-xs);
    font-weight: 300;
    opacity: 0.8;
}

/* Вспомогательные классы */
.custom-footer__visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Состояния фокуса */
.custom-footer__nav-link:focus,
.custom-footer__contact-link:focus,
.custom-footer__social-link:focus,
.custom-footer__form-input:focus,
.custom-footer__form-button:focus,
.custom-footer__checkbox-input:focus + .custom-footer__checkbox-custom {
    outline: 2px solid var(--custom-footer-background);
    outline-offset: 2px;
}

/* Reset для изоляции */
.custom-footer *,
.custom-footer *::before,
.custom-footer *::after {
    box-sizing: border-box;
}

@media (max-width: 1299px) {
    .custom-footer {
        height: auto;
        padding: 40px 20px;
    }
    
    .custom-footer__main {
        flex-direction: column;
        gap: 30px;
    }
    
    .custom-footer__section {
       flex-direction: row;
    }
    
    .custom-footer__navigation {
        width: 49%;
        flex: 1 1 49%;
        max-width: 49%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    /* На мобильных - все элементы в одну колонку */
    .custom-footer__contacts--desktop {
       display:none;
    }
    
    .custom-footer__subscription {
        order: 2;
        width: 48%;
        max-width: 48%;
        margin-top: 0;
        height: auto;
    }
    
    /* Исправляем размер формы на мобильных */
    .custom-footer__form-input {
        width: 100%;
        max-width: 100%;
    }
    /* Информация о компании */
    .custom-footer__company-info--mobile {
        display: block;
        margin-top: 20px;
    }
    
    .custom-footer__contacts--desktop .custom-footer__company-info {
        display: none;
    }
    
    /* Исправляем контакты на мобильных */
    .custom-footer__contacts-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    /* Навигация на мобильных */
    .custom-footer__nav-column {
        width: 100%;
    }
    
    .custom-footer__logo--desktop {
        display: block;
    }
	.custom-footer__navigation{
		width: 48%;
        flex: 1 1 48%;
        max-width: 48%;
	}
	.custom-footer__subscription {
        order: 2;
        width: 47%;
        max-width: 47%;
        margin-top: 0;
        height: auto;
    }
	
	.custom-footer__contact-details > a:last-child{display:none;}
	.custom-footer__company-item{
        font-size: var(--custom-footer-font-base);
        font-weight: 400;
		color: var(--custom-footer-background);
		line-height: 1.4;
		display: inline-block;
		text-decoration: none;
		transition: opacity var(--custom-footer-transition);
	}
	.fireworks-faq-cta-title{
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 500;
		font-size: 15px;
		line-height: 19px;
		color: #373449;
	}
	.fireworks-faq-cta-description{
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 300;
		font-size: 12px;
		line-height: 15px;
		color: #75728D;
		padding-top: 0rem;
        padding-bottom: 1rem;
		height:auto;
		min-height:auto;
	}
	.fireworks-faq-cta-button{/* BTN secondary */
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		padding: 12px 16px;
		gap: 8px;
		width: 100%;
		height: 43px;
		background: #75728D;
		border-radius: 8px;
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 500;
		font-size: 15px;
		line-height: 19px;
		text-transform: uppercase;
		color: #FFFCF6;
	}
}

/* Дополнительные медиа-запросы для лучшей адаптивности */
@media (max-width: 768px) {
	.orders-widget{zoom:0.6;}
	.custom-footer__main > .custom-footer__section{gap: 0;}
    .custom-footer__company-item,
	.custom-footer__nav-link,
	custom-footer__subscription *{
		width: 100%;
		height: 10px;
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 300;
		font-size: 8px;
		line-height: 10px;
		color: #FFFCF6;
		flex: none;
		order: 1;
		flex-grow: 0;

	}
    .custom-footer {
        padding: 30px 15px;
    }
    
    .custom-footer__navigation {
        flex-direction: column;
    }
    
    .custom-footer__form-group {
        flex-direction: column;
    }
    
    .custom-footer__form-button {
        width: 100%;
    }
    
    .custom-footer__contacts-wrapper,
    .custom-footer__contact-details {
        flex-direction: column;
        align-items: flex-start;
    }
}
/*footer CLOSE*/
@media (max-width: 1024px) {
	.page-section {
		padding: 10px;
        max-width: 100%;
	}    
	.auto-price-slider-filter {
		order: 1 !important;
		float:unset !important;
		flex: 100% !important;
		margin-top:0 !important;
	}
	.container-filter-sorf {
		display: flex !important;
		float: unset !important;
		justify-content: flex-end !important;
		margin-bottom: 20px !important;
		flex-wrap: wrap !important;
		flex-direction: row !important;
	}
	.section__title{margin-left:10px;}
	.ai-chat-isolated{
		width: 288px;
        height: 56px;
	}
	.ai-chat-isolated .ai-chat-input-container {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 8px;
		width: 100%;
		height: 56px;
		padding:10px;
		border: 1.5px solid var(--ai-chat-primary-2-color);
		border-radius: var(--ai-chat-border-radius);
	}
	
	.ai-chat-input-field{
		font-family: 'Geologica' !important;
		font-style: normal !important;
		font-weight: 400 !important;
		font-size: 12px !important;
		line-height: 15px !important;
	}
	.custom-footer{min-height:auto;}
	.custom-footer__logo{display:none;}
	.custom-footer__company-info--mobile{
		margin-top:0px;
	}
	.custom-footer__nav-column {
        width: 100%;
        display: block;
        padding: 0;
        margin: 0;
    }
	.custom-footer__nav-link,
	.custom-footer__company-item,
	.custom-footer__contacts-title,
	.custom-footer__contact-link,
	.custom-footer__subscription-title{
		display: block;
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 300;
		font-size: 8px;
		line-height: 10px;
		height:auto;
		color: #FFFCF6;
		margin-bottom:0;
	}
	.custom-footer__social-link{
		width: 24px;
		height: 24px;
	}
	.custom-footer__form-input{
		display: flex;
		flex-direction: row;
		align-items: center;
		padding: 6px 8px;
		gap: 8px;
		height: 22px;
		border: 0.5px solid #FFFCF6;
		border-radius: 4px;
		flex: none;
		order: 0;
		align-self: stretch;
		flex-grow: 0;
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 300;
		font-size: 8px;
		line-height: 10px;
		color: #FFFCF6;
	}
	.custom-footer__form-button{
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		padding: 6px 8px;
		gap: 8px;
		height: 22px;
		background: #F5EEE0;
		border-radius: 4px;
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 300;
		font-size: 8px;
		line-height: 10px;
		color: #373449;
	}
	.custom-footer__checkbox-text{
		font-family: 'Geologica';
		font-style: normal;
		font-weight: 300;
		font-size: 7px;
		line-height: 9px;
		color: #F5EEE0;
	}
	.custom-footer__subscription-title{height:auto;}
	.custom-footer__contacts-title{margin:0;margin-bottom:5px!important;}
	.custom-footer__nav-item{margin:0; padding:0;}
	.custom-footer__nav-list{display:block;}
	.custom-footer__section{
		flex-direction: row;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        align-items: flex-start;
        justify-content: space-between;
	}
	.mf-subscribe-form{gap:5px;}
}
@media (min-width: 1024px) {
    .fireworks-faq-cta-image {
        width: 50%;
        height: auto;
        min-height: 400px;
        border-top: none;
    }
}

/* Стили для анимации при открытии */
.fireworks-faq-answer {
    transition: max-height 0.3s ease-out;
}

/* Базовые стили для SVG внутри компонента */
.fireworks-faq-section svg {
    display: block;
}

/* Стили для состояния focus в рамках компонента */
.fireworks-faq-question:focus-visible,
.fireworks-faq-main-button:focus-visible,
.fireworks-faq-cta-button:focus-visible {
    outline: none;
}

/* Стили для печати только этого компонента */
@media print {
    .fireworks-faq-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .fireworks-faq-main-button[aria-expanded="true"] {
        border-bottom: 1px solid #D4B996;
    }
    
    .fireworks-faq-content-wrapper[aria-hidden="true"] {
        display: block;
    }
    
    .fireworks-faq-answer {
        max-height: none !important;
    }
    
    .fireworks-faq-cta-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}
/* ===== СОСТОЯНИЯ ДЛЯ ДОСТУПНОСТИ ===== */
@media (prefers-reduced-motion: reduce) {
    .hero-section .hero-section__button,
    .hero-section .hero-section__search-icon {
        transition: none;
    }
}

@media (prefers-contrast: high) {
    .hero-section {
        --hero-primary-color: #B08030;
        --hero-border-color: #B08030;
        --hero-text-color: #000;
        --hero-description-color: #222;
    }
}

/* ===== ПОДДЕРЖКА ТЕМНОЙ ТЕМЫ ===== */
@media (prefers-color-scheme: dark) {
    .hero-section {
        /*--hero-bg-color: #1a1a1a;*/
        --hero-background-color: #2d2d2d;
        --hero-text-color: #f0f0f0;
        --hero-description-color: #b0b0b0;
        --hero-secondary-color: #c0a070;
        --hero-placeholder-color: #888;
    }
}
/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
	.header__contacts{display:none;}
    .burger-toggle {
        display: flex;
    }
    
    .main-header {
        display: flex;
    }
    
    .burger-mobile-menu {
        width: 100%;
        max-width: 300px;
    }
    
    /* Затемнение фона при открытом меню */
    .burger-mobile-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 300px;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }
}

@media (max-width: 480px) {
    .burger-mobile-menu {
        width: 100%;
        max-width: 280px;
        padding: 15px;
    }
    
    .burger-nav-text {
        font-size: 15px;
    }
    
    .burger-phone span,
    .burger-email span {
        font-size: 15px;
    }
    
    .burger-mobile-menu.active::before {
        left: 280px;
    }
	.header__action-btn{
		padding:5px;
	}
	.header__container {
        max-width: 100%;
        padding: 5px 5px;
    }
}

@media (min-width: 769px) {
    .burger-mobile-menu {
        display: none;
    }
    
    .main-header {
        display: none;
    }
    
    /* Здесь можно добавить стили для десктопной версии меню */
    .desktop-menu {
        display: block;
        /* Стили для обычного меню на десктопе */
    }
}

@media (max-width: 1500px) {
	.burger-mobile-menu:not(.hidden){
		display: block !important;
        visibility: visible;
        top: 0;
        left: 0;
	}
	.search-block-stycky,
	.btn-search-open,
	.btn-search-block{display:none !important;}
	
}
/* Анимация бегущей строки */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Адаптивность */
@media (max-width: 768px) {
	.fireworks-faq-cta-title {
		font-size: 15px;
	}
	.fireworks-faq-cta-description{
		font-size: 12px;
	}
	.fireworks-faq-cta-button{
		margin-top:20px;
		height:43px;
		line-height:43px;
		font-size: 15px;
	}
	.ant-modal {
		zoom: 0.6;
		width: calc(100% - 20px) !important;
	}
	.modal{max-idth:100%;}
	
  .sales-widget__item {
    font-size: 12px;
    padding: 0 12px;
  }

  
  .sales-widget__content {
    animation-duration: 20s; /* Быстрее на мобильных */
  }
}

@media (max-width: 480px) {
  .sales-widget__item {
    font-size: 11px;
    padding: 0 8px;
  }
}
@media (max-width: 1023px) {
	.orders-widget--dropdown[aria-hidden="false"] {right:10px;}
	.header__logo img{
		height: 32px;
		max-width: 100%;
	}
}
/* Адаптивность триггера */
@media (max-width: 768px) {
    .orders-widget-trigger__text {
        display: none;
    }
}




/* Адаптивность */

@media (max-width: 1660px) {
	.header__container{
		max-width: 100%;
		padding: 45px 23px;
	}
	.header__menu{gap:20px;}
}
@media (max-width: 1500px) {
  .header__burger {
    display: block;
  }
  
  .header__nav,
  .js-search-open{
    display: none;
  }
  
}

@media (min-width: 768px) {
  .mobile-menu {
    width: 50%;
  }
}
@media (max-width: 1680px) {
  /*
	.header__phone {
		font-size: 0px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 32px;
		height: 32px;
		background-color: var(--header-text-light);
		border-radius: 50%;
		background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIyIDE2LjkyVjE5QTIgMiAwIDAgMSAxOS45MSAyMUExOS43OSAxOS43OSAwIDAgMSAxMS4yOCAxNy45MyAxOS41IDE5LjUgMCAwIDEgNS4yOCAxMS45MyAxOS43OSAxOS43OSAwIDAgMSAyLjIxIDMuMjZBMiAyIDAgMCAxIDQuMTEgMkg3QTIgMiAwIDAgMSA5IDMuNzJBMi4xOCAyLjE4IDAgMCAwIDkuMTkgNC41NCAyIDIgMCAwIDEgOC44NCA2LjhMNy4wOSA5LjkxQTE2IDE2IDAgMCAwIDEzLjA5IDE1LjlsMi4yMy0yLjIzQTIgMiAwIDAgMSAxNy41MyAxMy4wNSAyLjE3IDIuMTcgMCAwIDAgMTguMjQgMTNBMiAyIDAgMCAxIDIyIDE2LjkyWiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K");
		transform: rotate(49deg);
		background-size: 16px;
		background-repeat: no-repeat;
		background-position: center;
	}
  */
}

@media (max-width: 1024px) {
	.header__container{
		max-width: 100%;
		padding: 20px 15px;
	}
	.header__logo-image{height:32px;}
}

@media (min-width: 700px) and (max-width: 1024px) {
	.
}

@media (max-width: 1920px) {
  /*.header__container {*/
  /*  padding: 25px 23px;*/
  /*  height: 70px;*/
  /*}*/
}

.header__action-btn{
  padding: 0px;
}

.product-card__quantity{
  padding: 0px 10px;
}

.quantity-control .js-quantity-plus:hover, .quantity-control .js-quantity-minus:hover{
  background: #75728D !important;
  border: #75728D !important;
}

.product-card__cart-control:not(.product-card__cart-control-active) .product-card__add-btn:hover{
  background: #75728D;
  border: #75728D;
}

.header__nav{
  justify-content: left;
  margin-left: 2%;
}

@media (min-width: 1500px) and (max-width: 1550px) {
	.header__menu-link{
     font-size: 14px;
  }
}

.product-card__rating{
  color: #373449 !important;
  font-size: 16px !important;
}

.product-card__rating span{
  color: #75728D;
}

#fireworks-faq-content{
  border: none;
  padding: 0px;
}

#fireworks-faq-title{
  text-align: center;
  background-color: unset !important;
  border: none;
  color: #75728D;
  font-size: 20px;
  padding: 12px 0px 56px 0px;
  font-weight: 400;
}

.fireworks-faq-main-wrapper h3{
  text-align: center;
  padding: 20px 0px;
  font-weight: 500;
  font-size: 20px;
  border: 1px solid #75728D;
  border-radius: 12px;
  margin-bottom: 0px;
  margin-top: 0px;
}

.fireworks-faq-item{
  border-color: #F5EEE0;
}

.fireworks-faq-question:hover {
  background-color: rgb(255, 252, 246);
}

.fireworks-faq-question:focus {
  outline: none;
  background-color: rgb(255, 252, 246);
}

.fireworks-faq-question {
  font-size: 20px;
  font-weight: 400;
}

.fireworks-faq-icon svg {
  width: 12px;
  height: auto;
  fill: #75728D;
}

.fireworks-faq-answer-text {
  font-size: 16px;
  font-weight: 400;
}

.ant-modal-footer{
  padding-bottom: 0px;
}

.ant-modal {
  background: #F5EEE0;
  border-radius: 20px !important;
  z-index: 99999;
  width: 650px !important;
  height: auto;
  max-width: 100%;
  max-height: 471px;
  padding: 40px;
}

.ant-input {
  background: #F5EEE0;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}

.ant-custom-checkbox-label::before {
  background: transparent;
}

.ant-custom-checkbox-label::before {
  height: 26px;
  min-width: 26px;
  border: 1px solid #D5C6AD;
}

.ant-input::placeholder{
  color: #70798E;
  font-weight: 400;
  font-size: 18px;
}

.ant-modal-body p{
  font-size: 16px;
  font-weight: 400;
}

.custom-footer__contacts-wrapper, .custom-footer__contact-details {
  justify-content: flex-start;
}

@media (min-width: 1024px) {
  .fireworks-faq-cta-content {
    padding: 2.5rem;
    max-width: 40%;
  }
}

@media (min-width: 1024px) {
  .fireworks-faq-cta-card {
    background: url(images/card-image-COX4-P2G.png) no-repeat;
    background-size: 75%;
    background-position: 132%;
  }
}

.title-active{
  border: 1px solid #D5C6AD !important;
}


.category-list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: .5rem;
}

.category-item{
  padding: .75rem;
  background-color: rgb(245 238 224 / var(--tw-bg-opacity, 1));
  border-radius: .5rem;
  gap: .5rem;
  align-items: center;
  flex-direction: column;
  display: flex;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: rgb(55 52 73 / var(--tw-text-opacity, 1));
  font-weight: 500;
  font-size: .875rem;
  line-height: 1.25rem;
  font-family: 'Geologica';
  text-decoration: none;
}

.category-item img{
  width: 80%;
}

.category-item span{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.category-item:hover{
  background: #D5C6AD;
}

.fireworks-faq-container {
  max-width: 1740px;
}

.single-product{
  font-family: 'Geologica' !important;
}

.entry-summary-block h1{
  height: auto;
  margin-top: 0px;
  margin-bottom: 25px;
  text-align: left;
}

.product-rating-section > img{
  position: relative;
  top: 5px;
}

.woocommerce .star-rating {
  float: left;
  position: relative;
  top: 6px;
}

div.single-product > div {
  text-align: left;
  border: none;
  display: inline-block !important;
  padding: 20px 20px 0px 20px;
  background: transparent !important;
}

.count_rating{
  font-size: 20px;
  font-weight: 400;
  color: #75728D;
  margin-right: 10px;
}

.product-rating-section,.product-badges{
  display: inline-block;
}

.woocommerce .star-rating span::before {
  content: "SSSSS";
  top: 1px;
  position: absolute;
  left: 0;
  font-size: 12px;
  color: #E6970D;
}

.woocommerce .star-rating::before {
  content: "sssss";
  color: #cfc8d8;
  float: left;
  top: 1px;
  left: 0;
  position: absolute;
  font-size: 12px;
}

.open-reviews-modal{
  font-size: 20px;
  color: #75728D !important;
  text-decoration: none !important;
}

.product-rating-section svg{
  position:relative;
  top: 3px;
}

.tabs-navigation .tab-btn{
  border: 1px solid #D5C6AD;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 400;
  color: #373449;
  padding: 8px 12px;
  margin: 0px 10px 10px 0px;
  font-family: 'Geologica' !important;
  background: #fff;
}

.tabs-navigation .active{
  background: #D5C6AD;
}

.tab-panel{
  color: #75728D;
  font-size: 20px;
  font-weight: 400;
}

div.single-product {
  display: grid;
  grid-template-columns: 380px 1fr 380px;
  grid-template-rows: none;
  gap: 40px;
  width: 100%;
  margin-bottom: 20px;
}

.tab-panel h3{
  font-size: 32px;
  font-weight: 400;
  color: #373449;
  margin-top: 24px;
  margin-bottom: 16px;
}

.tab-panel p{
  margin: 0px;
  padding: 0px;
}


.product-price-block{
  margin-bottom: 60px;
}

.product-card__price-regular{
  font-size: 32px;
  text-transform: uppercase;
  color: #373449;
}

.product-card__add-btn {
  border: none;
}

.cart-extra-info{
  margin-top: 30px;
}

.entry-summary-cart-info{
  background: #F5EEE0 !important;
  border-radius: 20px;
}

.single-product .product-card__badge {
  position: relative;
}

.single-product .product-card__badge.product-hit{
  background: #D5C6AD;
  color: #373449;
  border-radius: 8px;
  padding: 8px;
  font-weight: 400;
  font-size: 20px;
  width: auto;
  height: auto;
  margin-right: 10px;
  margin-bottom: 5px;
}

.single-product .product-card__badge.badge-week-new{
  background: #FFF;
  border: 1px solid #D5C6AD;
  color: #373449;
  border-radius: 8px;
  padding: 8px;
  font-weight: 400;
  font-size: 20px;
  width: auto;
  height: auto;
  margin-right: 10px;
  margin-bottom: 5px;
}

.entry-summary-cart-info{
  padding: 30px !important;
}

.summary .product-add-to-cart-block{
  display: flex;
}

.summary .product-card__add-btn{
  width: 300px;
  height: 64px;
  line-height: 64px;
  background: #373449;
  color: #FFFCF6;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  order: 1;
}

.summary .one_click-btn{
  width: 300px;
  height: 64px;
  line-height: 64px;
  border: 1px solid #373449;
  color: #373449;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  order: 2;
  font-family: 'Geologica' !important;
  margin-left: 8px;
}

.summary .product-card__favorite{
  position: relative !important;
  top: auto;
  right: auto;
  order: 3;
  margin-left: 8px;
  width: 64px;
  height: 64px;
}

.summary .product-card__add-btn img {
  width: 24px;
  height: 24px;
}

.summary .product-card__price-section {
  display: block;
  width: 100%;
}

.summary .product-card__price-container {
  display: inline-block;
}

.summary .product-card__price span:first-child {
  font-size: 32px;
  color: #373449;
  margin-right: 40px;
}

.summary .product-card__price-original{
  color: #75728D;
  font-size: 24px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  top: 3px;
}

.summary .product-item-procent{
  color: #FF0000;
  text-decoration: line-through;
  font-size: 24px;
  font-weight: 400;
  display: inline-block;
  margin-left: 40px;
}

.summary .in_stock{
  display: inline-block;
  float: right;
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  color: #373449;
}

.product-specs-list{
  margin: 0px;
  padding: 0px;
}

.product-specs-list li{
  list-style: none;
  list-style-position: inside;
  margin: 0px 0px 12px 0px;
}


@media (max-width: 768px) {

  .woocommerce .woocommerce-breadcrumb {
    height: auto;
    margin: 0 0 12px;
  }

  .woocommerce-breadcrumbs {
    margin-top: 16px;
  }

  div.single-product {
    grid-template-columns: 1fr;
  }

  div.single-product > div {
    padding: 0px 0px 0px 0px;
  }

  div.single-product > div:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    order: 2;
  }

  div.single-product > div:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    order: 1;
  }

  div.single-product > div:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    order: 3;
  }

  div.single-product > div:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    order: 4;
  }

  .summary .product-add-to-cart-block {
    display: grid;
    grid-template-columns: 1fr 1fr 40px;
    column-gap: 4px;
  }

  .summary .product-card__add-btn {
    width: 100%;
    height: 40px;
    line-height: 40px;
  }

  .summary .one_click-btn {
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin-left: 0px;
    font-size: 11px;
  }

  .summary .product-card__favorite {
    width: 40px;
    height: 40px;
    margin-left: 0px;/
    order: 3;
    position: relative;
    top: 0px;
    right: 0px;
    left:0px;
  }

  .entry-summary-block h1 {
    font-size: 20px;
    line-height: 100%;
    margin-bottom: 10px;
  }



  .count_rating {
    font-size: 12px;
    font-weight: 300;
    margin-right: 6px;
  }

  .open-reviews-modal {
    font-size: 12px;
    color: #75728D !important;
    text-decoration: none !important;
  }

  .woocommerce img, .woocommerce-page img {
    /*height: 20px;*/
    /*max-width: 100%;*/
  }
}
