:root {
  --color-orange:        #FF4A2F;
  --color-light:  #FAFAFA;

  --color-black:         #1F2430;
  --color-dark:          #2B2B2B;
  --color-gray-700:      #4A4A4A;
  --color-gray-500:      #7A7A7A;
  --color-gray-300:      #BABABA;
  --color-gray-100:      #F2F2F2;
  --color-white:         #FFFFFF;

  --color-bg:            #FFFFFF;
  --color-bg-secondary:  #F7F7F7;
  --color-divider:        #E9EAED;

  --font-display:        'Friendful', 'Inter', sans-serif;
  --font-body:           'Klein', 'Inter', sans-serif;

  --text-big-title:      56px;
  --text-accent-title:   44px;
  --text-h1:             36px;
  --text-h2:             32px;
  --text-h3:             22px;
  --text-h4:             18px;
  --text-h5:             16px;
  --text-h6:             16px;
  --text-product-name:   18px;
  --text-body:           18px;
  --text-body-accent:    15px;
  --text-small:          13px;
  --text-label:          12px;
  --text-caption:        11px;
  --text-btn:            16px;
  --text-link:           14px;

  --lh-110: 1.10;
  --lh-115: 1.15;
  --lh-120: 1.20;
  --lh-125: 1.25;
  --lh-130: 1.30;
  --lh-140: 1.40;

  --spacing-xs:   4px;
  --spacing-sm:   8px;
  --spacing-md:   16px;
  --spacing-lg:   24px;
  --spacing-xl:   32px;
  --spacing-2xl:  48px;
  --spacing-3xl:  64px;

  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --radius-pill:  100px;

  --transition:   0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-black);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  padding-right: var(--spacing-md);
  padding-left: var(--spacing-md);
  margin-right: auto;
  margin-left: auto;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
  font-size: var(--text-body);
  outline: none;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

.title-big,
.big-title {
  font-family: var(--font-display);
  font-size: var(--text-big-title);
  font-weight: 500;
  line-height: var(--lh-110);
}

.title-accent {
  font-family: var(--font-display);
  font-size: var(--text-accent-title);
  font-weight: 600;
  line-height: var(--lh-120);
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 500;
  line-height: var(--lh-140);
}

h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 500;
  line-height: var(--lh-140);
}

h3, .h3 {
  font-size: var(--text-h3);
  font-weight: 500;
  line-height: var(--lh-140);
}

h4, .h4 {
  font-size: var(--text-h4);
  font-weight: 500;
  line-height: var(--lh-140);
}

h5, .h5 {
  font-size: var(--text-h5);
  font-weight: 400;
  line-height: var(--lh-140);
}

h6, .h6 {
  font-size: var(--text-h6);
  font-weight: 500;
  line-height: var(--lh-140);
}

.icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
	transition: transform var(--transition);
}
header{
	padding: 12px 0;
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -16px;
    margin-left: -16px;
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
}

.align-items-center {
    -ms-flex-align: center!important;
    align-items: center !important;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex !important;
}

#top {
	background-image: url(/image/catalog/design/header/bg-top.png);
	height: 40px;
	font-size: var(--text-link);
	background-position: top center;
    background-repeat: repeat-x;
}

#top > .container{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	height: 100%;
}

.top-links,.header-top-links{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    font-weight: 400;
	line-height: var(--lh-140);
    color: var(--color-white);
    height: 100%;
}

.header-top-link-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    position: relative;
}

.header-top-link-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}

.header-action-item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 44px;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.header-action-title {
    text-align: center;
    font-size: var(--text-small);
    font-weight: 500;
	line-height: var(--lh-120);
    width: 100%;
    line-height: normal;
}
.header-action-icon{
	position: relative;
}
.header-action-total span {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
	line-height: 100%;
    border-radius: 500px;
    background: var(--color-light);
    padding: 2px 4px;
}
.header-action-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 0;
    right: -9px;
    z-index: 1;
}
.header-inner{
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
}
.header-actions{
	gap: 24px;
}
.header-search {
    width: 100%;
}
.top-slogan{
    color: var(--color-white);
	font-weight: 500;
	letter-spacing: 0.02em;
}

.header-top-link-item.has-sub {
    position: relative;
}
.search-box #search .search-holder{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.search-holder{
   background: var(--color-light);
   border: 1px solid var(--color-divider);
   padding: 0 0 0 12px;
   border-radius: 14px;
}
.search-holder .btn-search{
	border-radius: 14px;
	height: 44px;
	padding: 12px 17px;
}
.group_voice_search {
    border: 0px;
    position: relative;
}
.btn-simple-small{
  	background: #FF4A2F;
	color: var(--color-white);
	border-radius: 16px;
	font-size: var(--text-btn);
	line-height: var(--lh-120);
	font-weight: 400;
}


.top-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-white);
	border: 1px solid var(--color-divider);
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
	box-shadow:
        0px 7px 15px 0px #1F24301A,
        0px 27px 27px 0px #1F243017,
        0px 60px 36px 0px #1F24300D,
        0px 107px 43px 0px #1F243003,
        0px 168px 47px 0px #1F243000;
}

.header-top-link-item.has-sub:hover .top-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-top-link-item.has-sub:hover .icon {
    transform: rotate(180deg);
    transition: transform 0.25s ease;
}

.top-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--text-h5);
    color: var(--color-black);
	line-height: var(--lh-120);
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
	width: max-content;
}

.top-dropdown li a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.search-voice__dots {
	position: absolute;
	left:50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap:2px;
	bottom:2px;
}
.btn-voice-search{
	padding: 0 12px;
	height: 44px;
}

.search-voice__dots-item {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: moveDots 1s infinite;
}
.search-voice__dots-item_color_blue {
    background-color: #3e77aa;
    animation-delay: .15s;
}
.search-voice__dots-item_color_red {
    background-color: #f84147;
    animation-delay: .3s;
}
.search-voice__dots-item_color_orange {
    background-color: #ff5c00;
    animation-delay: .45s;
}
.search-voice__dots-item_color_green {
    background-color: #00a046;
    animation-delay: .6s;
}
.btn-voice-search.active-speak svg path{
	stroke: var(--color-orange);
}












.product-name,
.product-title {
  font-size: var(--text-product-name);
  font-weight: 500;
  line-height: var(--lh-140);
}

p,
.body-regular {
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-gray-700);
}

.body-accent {
  font-size: var(--text-body-accent);
  font-weight: 500;
  line-height: var(--lh-140);
}

.small-regular,
small {
  font-size: var(--text-small);
  font-weight: 400;
  line-height: var(--lh-120);
}

.small-accent {
  font-size: var(--text-small);
  font-weight: 500;
  line-height: var(--lh-120);
}

.label {
  font-size: var(--text-label);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.caption,
.caption-base {
  font-size: var(--text-caption);
  font-weight: 300;
  line-height: 1;
  color: var(--color-gray-500);
}

.caption-accent {
  font-size: var(--text-caption);
  font-weight: 500;
  line-height: 1;
}

.link,
.text-link {
  font-size: var(--text-link);
  font-weight: 500;
  line-height: var(--lh-120);
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.link:hover,
.text-link:hover {
  color: var(--color-accent-hover);
}


.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.btn:focus,
.btn:active:focus,
.btn-check:focus + .btn {
  box-shadow: none;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-primary,
.btn-danger {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover,
.btn-danger:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
}

.btn-primary:active,
.btn-danger:active {
  background-color: #A82410;
  border-color: #A82410;
}

.btn-danger {
  --bs-btn-bg: var(--color-accent);
  --bs-btn-border-color: var(--color-accent);
  --bs-btn-hover-bg: var(--color-accent-hover);
  --bs-btn-hover-border-color: var(--color-accent-hover);
}

.btn-secondary,
.btn-outline-primary {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-secondary:hover,
.btn-outline-primary:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-dark {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.btn-dark:hover {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}

.btn-outline-dark:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-light {
  background-color: var(--color-gray-100);
  color: var(--color-black);
  border-color: var(--color-gray-100);
}

.btn-light:hover {
  background-color: var(--color-border);
  border-color: var(--color-border);
}

.btn-ghost {
  background-color: transparent;
  color: var(--color-black);
  border-color: transparent;
}

.btn-ghost:hover {
  background-color: var(--color-gray-100);
}

.btn-sm {
  font-size: 13px;
  padding: 6px 14px;
}

.btn-lg {
  font-size: 18px;
  padding: 14px 28px;
}

.btn-block,
.btn-full {
  width: 100%;
  display: flex;
}

.btn-icon {
  padding: 8px;
  width: 40px;
  height: 40px;
}

.btn-icon.btn-sm {
  width: 32px;
  height: 32px;
  padding: 6px;
}

.nav-pills .nav-link,
.pills-tab .nav-link {
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--lh-140);
  color: var(--color-gray-700);
  background: transparent;
  border: none;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}

.nav-pills .nav-link:hover {
  color: var(--color-black);
  background: var(--color-gray-100);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 500;
}

.tab-category .nav-link,
.nav-tabs .nav-link {
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--color-gray-700);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 0;
  transition: color var(--transition), border-color var(--transition);
}

.tab-category .nav-link:hover,
.nav-tabs .nav-link:hover {
  color: var(--color-black);
  border-bottom-color: var(--color-gray-300);
}

.tab-category .nav-link.active,
.nav-tabs .nav-link.active {
  color: var(--color-accent);
  font-weight: 500;
  border-bottom-color: var(--color-accent);
  background: transparent;
}

.nav-tabs {
  border-bottom: 1px solid var(--color-border);
}

.catalog-category,
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
  padding: 0;
  background: transparent;
}

.breadcrumb-item,
.catalog-category-item {
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--color-gray-500);
}

.breadcrumb-item + .breadcrumb-item::before,
.catalog-category-item + .catalog-category-item::before {
  content: '›';
  color: var(--color-gray-300);
  padding: 0 var(--spacing-xs);
}

.breadcrumb-item.active,
.catalog-category-item.active {
  color: var(--color-black);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: var(--color-accent);
}

.badge-new,
.badge-sale {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-caption);
  font-weight: 500;
  line-height: 1;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.badge-new {
  background-color: var(--color-accent-light);
  color: var(--color-accent);
}

.badge-sale {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.form-control,
.form-select {
  font-size: var(--text-body);
  font-weight: 400;
  color: var(--color-black);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  line-height: var(--lh-140);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 57, 30, 0.12);
  outline: none;
}

.form-control::placeholder {
  color: var(--color-gray-300);
}

.form-label {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-gray-700);
  margin-bottom: var(--spacing-xs);
  display: block;
}


.dropdown-menu {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-sm) 0;
  font-size: var(--text-body);
}

.dropdown-item {
  font-size: var(--text-body);
  color: var(--color-black);
  padding: var(--spacing-sm) var(--spacing-md);
  transition: background var(--transition), color var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: var(--color-gray-100);
  color: var(--color-accent);
}

.dropdown-item.active {
  background-color: var(--color-accent);
  color: var(--color-white);
}






@keyframes moveDots {
	50% {
		transform: translateY(-3.12px)
	}
}