@font-face {
  font-family: "Nunito";
  src: url("fonts/nunito/Nunito-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Nunito";
  src: url("fonts/nunito/Nunito-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Nunito";
  src: url("fonts/nunito/Nunito-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Nunito";
  src: url("fonts/nunito/Nunito-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Nunito";
  src: url("fonts/nunito/Nunito-Light.ttf") format("truetype"); /* Легкий стиль */
  font-weight: 300; /* Легкий ваги */
  font-style: normal;
}

@font-face {
  font-family: "Nunito";
  src: url("fonts/nunito/Nunito-SemiBold.ttf") format("truetype"); /* Напівжирний стиль */
  font-weight: 600; /* Напівжирний ваги */
  font-style: normal;
}

@font-face {
  font-family: "Nunito";
  src: url("fonts/nunito/Nunito-ExtraBold.ttf") format("truetype"); /* Дуже жирний стиль */
  font-weight: 800; /* Дуже жирний ваги */
  font-style: normal;
}

/* Ubuntu Fonts */
@font-face {
  font-family: "Ubuntu";
  src: url("fonts/ubuntu/Ubuntu-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Ubuntu";
  src: url("fonts/ubuntu/Ubuntu-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Ubuntu";
  src: url("fonts/ubuntu/Ubuntu-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "Ubuntu";
  src: url("fonts/ubuntu/Ubuntu-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: "Ubuntu";
  src: url("fonts/Ubuntu/Ubuntu-Light.ttf") format("truetype"); /* Легкий стиль */
  font-weight: 300; /* Легкий ваги */
  font-style: normal;
}

@font-face {
  font-family: "Ubuntu";
  src: url("fonts/Ubuntu/Ubuntu-Medium.ttf") format("truetype"); /* Середній стиль */
  font-weight: 500; /* Середній ваги */
  font-style: normal;
}

@font-face {
  font-family: "Ubuntu";
  src: url("fonts/Ubuntu/Ubuntu-ExtraBold.ttf") format("truetype"); /* Дуже жирний стиль */
  font-weight: 800; /* Дуже жирний ваги */
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-size: 100%;
  line-height: 1.5;
  font-family: sans-serif;
}
/* Скидання для заголовків */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 300;
  font-size: 23px;
}
/* Скидання для списків */
ul,
ol {
  list-style: none;
}
/* Скидання для посилань */
a {
  text-decoration: none;
  color: inherit;
}
/* Скидання для зображень */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
/* Скидання для таблиць */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
th,
td {
  padding: 0;
  text-align: left;
}
/* Скидання для кнопок та форм */
button,
input,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
}
/* Скидання для форм */
form {
  margin: 0;
}
/* Скидання для полів вводу */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  /* border-radius: 0; */
}
/* Скидання для полів checkbox та radio */
input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}
/* Скидання для основних блокових елементів */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
/* Скидання для iframe */
iframe {
  border: none;
}

/* ============Скидання стилів============ */

/* ============ЗМІННІ============ */
:root {
  --font-family-main: "Ubuntu", sans-serif;
  --font-family-minor: "Nunito", sans-serif;
  --color-hover: rgba(238, 113, 3, 1);
  --color-text-header-contact-link: rgba(247, 247, 247, 1);
  --color-text-header-main: rgba(254, 251, 250, 1);
  --color-text-inputs: rgba(18, 17, 17, 1);
  --color-text-hover: rgba(238, 113, 3, 1);
  --color-text-title: rgba(18, 17, 17, 1);
  --background-color-header-footer: rgba(18, 17, 17, 1);
  --background-color-inputs: rgba(254, 251, 250, 1);
  --background-color-button-primary: rgba(238, 113, 3, 1);
  --background-color-menu-category: rgba(243, 243, 242, 1);
  --background-color-mobile-menu: rgba(254, 251, 250, 1);
  --background-color-banner: rgba(243, 243, 242, 1);
  --backdrop-dark: rgba(67, 18, 0, 0.3);
  --backdrop-dark-category: rgba(18, 17, 17, 0.2);
  --border-search-inputs: 1px solid rgba(18, 17, 17, 0.15);
  --border-header-main-link-mobile: 1px solid rgba(18, 17, 17, 0.2);
  --border-menu-category: 1px solid rgba(18, 17, 17, 0.2);
  --border-tabs: 1px solid rgba(18, 17, 17, 0.2);
  --transition-all-time: 300ms ease-out 0s;
}

/* ============ЗАГАЛЬНІ============ */
.container {
  max-width: 1440px;
  padding-left: 100px;
  padding-right: 100px;
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family: var(--font-family-main);
  font-style: normal;
  color: var(--color-text-title);
}

/* ============ЗАГАЛЬНІ============ */

.container {
  max-width: 380px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ЗАГАЛЬНІ============ */

.header {
  display: block;
  background-color: var(--background-color-header-footer);
  width: 100%;
  position: sticky;
  top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 1000;
}

.header_container_logo_nav_link {
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.header_box_menu_burger {
  display: block;
}

.header_icon_menu_burger {
  display: block;
  width: 32px;
  height: 32px;
}

.header_box_cart_mobile {
  display: block;
}

.header_icon_cart {
  display: block;
  width: 32px;
  height: 32px;
  fill: var(--color-text-header-main);
  transition: fill var(--transition-all-time);
}

.header_icon_cart:hover {
  fill: var(--color-text-hover);
  cursor: pointer;
}

.dropdown-togg {
  position: relative;
}

.total_cart {
  position: absolute;
  top: -6px;
  right: -5px;
  background-color: rgba(69, 160, 46, 1);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-minor);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

  color: rgba(254, 251, 250, 1);
}

.header_box_logo {
  display: block;
  width: 93px;
  height: 60px;
}

.header_contact_nav,
.header_main_nav {
  display: none;
}

.header_container_category_search_cart {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.header_box_category {
  display: none;
}

.header_container_search_cart {
  width: 100%;

  display: flex;
  align-items: center;
}

.header_search_input {
  width: 255px;
  height: 50px;
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.36;
  color: var(--color-text-inputs);
  padding: 14px 52px;
  background-color: var(--background-color-inputs);
  border: var(--border-search-inputs);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.header_search_icon_close {
  display: none;
  position: absolute;
  top: 50%;
  right: 115px;
  transform: translateY(-50%);
  opacity: 40%;
  transition: opacity;
}

.header_search_icon_close:hover {
  opacity: 100%;
  cursor: pointer;
}

.header_search_input:not(:placeholder-shown)
  + .header_icon_search
  + .header_search_icon_close {
  display: block;
}

.header_box_search,
.header_search_label {
  position: relative;
  display: flex;
  align-items: center;
}

.header_icon_search {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.header_search_btn {
  position: relative;
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: var(--background-color-button-primary);
  transition: background-image var(--transition-all-time);
}

.header_search_btn_text {
  position: relative;
  z-index: 10;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.14;
  color: var(--color-text-header-main);
}

.header_search_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--backdrop-dark);
  opacity: 0;
  transition: opacity var(--transition-all-time);
}

.header_search_btn:hover::after {
  opacity: 1;
}

.header_box_cart_desktop {
  display: none;
}

/*==========Menu Category========== */

.header_container_menu_category {
  display: none;
}
.backdrop {
  display: none;
  position: absolute;
  top: 160px;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  bottom: 0;
  background-color: var(--backdrop-dark-category);
  opacity: 0;
  transition: opacity var(--transition-all-time);
  z-index: 999;
}

.header_list_category_mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header_link_category_mobile {
  display: block;
  width: 100%;
  height: 42px;
}

.header_link_category_box_mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_box_icon_title_mobile {
  display: flex;
  align-items: center;
}

.header_icon_category_mobile {
  display: block;
  width: 32px;
  height: 32px;
}

.header_title_category_mobile {
  font-family: var(--font-family-minor);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.36;
  text-align: left;
}

.header_container_category_mobile {
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--transition-all-time);
}

.header_icon_arrow_category_mobile.category_mobile_open {
  transform: rotate(180deg);
}

.header_container_category_mobile.category_mobile_open {
  max-height: 100%;
}

.header_container_subcategories_mobile {
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  transition: all var(--transition-all-time);
}

.header_container_subcategories_mobile.subcategories_open {
  max-height: 100%;
  opacity: 1;
  transition: all var(--transition-all-time);
}

.header_subcategories_mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 42px;
}

.header_item_subcategory_mobile a{
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.36;
  color: rgba(18, 17, 17, 1);
  opacity: 0.7;
}

.hide {
  display: none;
}

/* ============= result_search ===============*/

.header_result_search_container {
  position: absolute;
  top: 130%;
  width: 355px;
  background-color: var(--background-color-inputs);
  padding: 10px;
  border: var(--border-search-inputs);
  display: flex;
  border-radius: 8px;
  z-index: 1000;
}

.header_result_search_item {
  display: flex;
  width: 100%;
  height: 75px;
  padding: 5px 10px;
  gap: 10px;
}

.header_result_item_box_title_price {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header_result_item_photo {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.header_result_title {
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.36;
  text-align: left;
  opacity: 0.5;
  padding: 10px;
}

.header_result_title_category {
  position: relative;
  margin-top: 10px;
}

.header_result_category_line::before {
  position: absolute;
  top: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-text-title);
  opacity: 0.5;
}

.header_result_item_wrapper {
  max-height: 225px;
  overflow-y: auto;
}

.header_result_item_title {
  font-family: var(--font-family-minor);
  font-size: 14px;
  font-weight: 400;
  height: 38px;
  overflow: hidden;
  line-height: 1.36;
  transition: color var(--transition-all-time);
}

.header_result_item_price {
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.36;
  margin: 0;
  transition: color var(--transition-all-time);
}

.header_result_search_item:hover .header_result_item_title,
.header_result_search_item:hover .header_result_item_price {
  color: var(--color-text-hover);
}

.header_result_category_link {
  display: flex;
  width: 100%;
  padding: 10px;
  align-items: center;
  justify-content: space-between;
}

.header_result_category_name {
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.36;
  transition: color var(--transition-all-time);
}

.header_result_category_name:hover {
  color: var(--color-text-hover);
}

.header_result_search_container + .backdrop {
  display: block;
  opacity: 1;
}

.backdrop.active {
  display: block;
  opacity: 1;
}

/* ==================MOBILE_MENU=================== */
.header_mobile_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  height: 100vh;
  background-color: var(--background-color-mobile-menu);
  z-index: 1001;
  overflow-y: auto;
  padding: 20px 34px;
  transform: translateX(-100%);
  opacity: 0;
  transition: all var(--transition-all-time);
}

.header_mobile_menu.active {
  transform: translateX(0);
  opacity: 1;
}

.header_box_logo_btn_close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.header_box_btn_close {
  width: 32px;
  height: 32px;
}

.header_btn_close {
  width: 100%;
  height: 100%;
}

.header_box_catalog_mobile {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.header_icon_category_mobile {
  margin-right: 10px;
}

.header_text_category_mobile {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.14;
  text-align: left;
}

.header_icon_arrow_category_mobile {
  display: block;
  width: 16px;
  height: 16px;
  margin-left: auto;
}

.header_main_nav_mobile {
  margin-bottom: 20px;
}

.header_main_item_mobile {
  position: relative;
  height: 63px;
  display: flex;
  border-top: var(--border-header-main-link-mobile);
}

.header_list_link_mobile:last-child {
  border-bottom: var(--border-header-main-link-mobile);
}

.header_main_link_mobile {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.14;
  text-align: left;
  opacity: 0.8;
}

.header_main_link_mobile.active_link {
  color: var(--color-text-hover);
}

.header_list_contact_link_mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
}

.header_contact_item_mobile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header_icon_contact_link_mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}

.header_contact_link_mobile {
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.36;
  text-align: left;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.backdrop_mobile {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  bottom: 0;
  background-color: var(--backdrop-dark-category);
  opacity: 0;
  transition: opacity var(--transition-all-time);
  z-index: 999;
}

.backdrop_mobile.active {
  display: block;
  opacity: 1;
}

.header_category_icon_mobile{
  width: 16px;
  height: 16px;
  opacity: 0.4;
  transition: all var(--transition-all-time);
}

.header_link_category{
  width: 100%;
}


.header_category_icon_mobile.subcategories_open {
  transform: rotate(-180deg);
  transition: all var(--transition-all-time);
}

.header_link_category_icon_category{
  display: flex;
  width: 100%;
  gap: 25px;
  align-items: center;
}

/* ==================/MOBILE_MENU=================== */

/* ==================TABLET=================== */

@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
    width: 768px;
    padding-left: 34px;
    padding-right: 34px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ============ЗАГАЛЬНІ============ */

  .header_search_input {
    width: 600px;
  }

  /* ============= result_search ===============*/

  .header_result_search_container {
    width: 700px;
  }

  .header_result_search_item {
    height: 75px;
    padding: 5px 54px 5px 10px;
  }

  .header_result_item_title {
    font-size: 16px;
    height: auto;
  }

  .header_mobile_menu {
    width: 550px;
  }
}

/* ==================/TABLET=================== */

/* ==================DESKTOP=================== */

@media screen and (min-width: 1440px) {
  .container {
    max-width: 1440px;
    width: 1440px;
    padding-left: 100px;
    padding-right: 100px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ============ЗАГАЛЬНІ============ */

  .header {
    padding-bottom: 0;
  }

  .header_box_cart_mobile,
  .header_box_menu_burger {
    display: none;
  }

  .header_contact_nav,
  .header_main_nav,
  .header_box_cart_desktop {
    display: block;
  }

  .header_list_link {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 0;
    height: 60px;
    
  }

  .header_contact_item {
    display: flex;
    gap: 5px;
    align-items: center;
  }

    .box_header_contact_link{
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

  .header_contact_link {
    font-family: var(--font-family-minor);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.36;
    color: var(--color-text-header-contact-link);
    transition: color var(--transition-all-time);
  }

  .header_contact_link:hover {
    color: var(--color-text-hover);
  }

  .header_main_link {
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.14;
    color: var(--color-text-header-main);
    transition: color var(--transition-all-time);
  }

  .header_main_link:hover {
    color: var(--color-text-hover);
    cursor: pointer;
  }


  .header_main_link.active_link {
    color: var(--color-text-hover);
  }

  .header_box_category {
    display: flex;
    padding-top: 9px;
    align-items: flex-start;
    gap: 10px;
    height: 65px;
  }

  .header_text_category {
    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.14;
    color: var(--color-text-header-main);
    transition: color var(--transition-all-time);
  }

  .header_box_category:hover {
    cursor: pointer;
  }

  .header_box_category:hover .header_text_category {
    color: var(--color-text-hover);
    cursor: pointer;
  }

  .header_container_search_cart {
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    width: auto;
  }

  .header_search_input {
    width: 630px;
  }



  /*==========Menu Category========== */

  .header_container_menu_category {
    display: none;
    position: absolute;
    top: 160px;
    background-color: var(--background-color-menu-category);
    border: var(--border-menu-category);
    z-index: 1000;
  }
  .backdrop {
    display: none;
    position: absolute;
    top: 160px;
    left: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    bottom: 0;
    background-color: var(--backdrop-dark-category);
    opacity: 0;
    transition: opacity var(--transition-all-time);
    z-index: 999;
  }

  .header_box_category:hover + .backdrop {
    display: block;
    opacity: 1;
  }

  .header_box_category:hover .header_container_menu_category {
    display: flex;
  }

  .header_container_category {
    border-right: var(--border-menu-category);
    width: 350px;
  }

  .header_container_subcategory {
    padding: 20px;
    width: 300px;
  }

  .header_list_category {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header_link_category {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }

  .header_link_category_box {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    transition: background-color var(--transition-all-time);
  }

  .header_icon_category {
    display: block;
    width: 32px;
    height: 32px;
  }

  .header_box_icon_title {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header_link_category:hover .header_link_category_box {
    background-color: rgba(238, 113, 3, 0.22);
  }

  .header_category_icon {
    transform: rotate(0deg);
    transition: rotate var(--transition-all-time);
  }



  .header_link_category:hover .header_category_icon {
    transform: rotate(-90deg);
  }

  .heager_category_icon {
    display: block;
    width: 32px;
    height: 32px;
  }

  .header_title_category {
    font-family: var(--font-family-minor);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.36;
    text-align: left;
  }

  .header_subcategory_link {
    font-family: var(--font-family-minor);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.36;
    text-align: left;
    transition: color var(--transition-all-time);
  }

  .header_subcategory_link:hover {
    color: var(--color-text-hover);
  }

  .header_subcategories {
    display: none;
    position: absolute;
    left: 100%;
    top: -1px;
    bottom: -1px;
    width: 300px;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    z-index: 1001;
    background-color: var(--background-color-menu-category);
    border: var(--border-menu-category);
  }

  .header_item_category:hover .header_subcategories {
    display: flex;
  }

  /*==========/Menu Category========== */

  /* ============= result_search ===============*/

  .header_result_search_container {
    width: 730px;
  }

  .header_result_search_item {
    padding: 5px 84px 5px 10px;
  }
}

/* ==================/DESKTOP=================== */

/* ==============FOOTER============== */

.footer {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: var(--background-color-header-footer);
}

.footer_logo {
  width: 93px;
  height: 60px;
}

.footer_box_logo_help_contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer_title_list {
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  color: rgba(247, 247, 247, 0.8);
}

.footer_box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_list_link {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_link {
  font-family: var(--font-family-minor);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.36;
  text-align: left;
  color: rgba(247, 247, 247, 0.6);
  transition: color var(--transition-all-time);
}

.footer_link:hover {
  color: var(--color-text-hover);
}

.footer_item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer_text {
  font-family: var(--font-family-minor);
  font-size: 14px;
  font-weight: 400;
  line-height: 19.1px;
  text-align: left;
  color: rgba(247, 247, 247, 1);
  opacity: 60%;
}

.footer_container_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}


/*==================== product_page ====================*/

.tabs_section_category_product_page {
  padding-top: 20px;
  margin-top: 40px;
}

.tabs_title {
  font-family: var(--font-family-main);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 0;
}

.container_top_product {
  display: flex;
  /* flex-direction: column; */
}

.box_photo_product {
  width: 100%;

   /*height: 260px;*/
}



.breadcrumb_product li a {
  transform: none; /* Запобігає будь-яким трансформаціям */
  transition: none;
}

.gallery {
    display: none;
}

.box_title_product_product_page {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.title_product_product_page{
    font-family: var(--font-family-main);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.14;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.box_rating_product_page{
    display: flex;
    align-items: center;
    gap: 20px;
}


.tabs_icon_rating_product_page{
    width: 24px;
    height: 24px;
}


.tabs_rating_value_product_page{
    font-family: var(--font-family-minor);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.36;
    text-align: left;
    opacity: 0.55;
    color:rgba(18, 17, 17, 1);
}

.review_link_product_page{
    font-family: var(--font-family-minor);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.36;
    text-align: left;
    color: rgba(238, 113, 3, 1);
}

.box_price_plus_minus_product{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.price_product_page{

    font-family: var(--font-family-main);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.14;
    color: rgba(18, 17, 17, 1);

}

.box_btn_plus_minus_add_cart{
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 20px;
}


.btn_add_cart_product_page{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    outline: none;
    background-color: var(--background-color-button-primary);
    transition: background-image var(--transition-all-time);
}

.tabs_btn_span_product_page{
    font-family: var(--font-family-main);
    position: relative;
    z-index: 10;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.14;
    color: var(--color-text-header-main);
}

.btn_add_cart_product_page::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--backdrop-dark);
    opacity: 0;
    transition: opacity var(--transition-all-time);
}

.btn_add_cart_product_page:hover::after {
    opacity: 1; /* Показати затемнення при наведенні */
}


.box_plus_minus_product_page{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 140px;
  padding: 10px;
  border: 1.6px solid rgba(18, 17, 17, 0.2);
  border-radius: 4px;
  height: 44px;

}

.result_text_product_page{
  text-align: center;
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.36;
  color: rgba(18, 17, 17, 1);
  opacity: 0.8;
}

.icon_plus_product_page{
  width: 24px;
  height: 24px;
  display: block;
  opacity: 0.4;
}

.btn_plus_product_page{
  padding: 0;
  border: none;
  width: 24px;
  height: 24px;
  display: block;
}

.btn_plus_product_page:hover, .btn_plus_product_page:active, .btn_plus_product_page:focus{
  background-color: initial;
  outline: none;
  border: none;
}

.btn_plus_product_page:hover .icon_plus_product_page,  .btn_plus_product_page:active .icon_plus_product_page, .btn_plus_product_page:focus .icon_plus_product_page {
  opacity: 1;
}


.breadcrumb {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.breadcrumb li a {
  white-space: nowrap;
}


.nav-tabs_product_page.active {
  border-bottom: 2px solid rgba(238, 113, 3, 1)
}


.main_photo_update{
  width: 100%;
  border-radius: 4px;
}

.box_text_title_description_product{
  display: none;
}

.container_top_product{
  flex-direction: column;
}
.text_title_description_product{
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.36;
  color: rgba(18, 17, 17, 1);
}






@media screen and (min-width: 768px) {
  .title_product_product_page {
    font-size: 24px;
  }

  .box_btn_plus_minus_add_cart{
    gap: 40px;
  }

  .box_plus_minus_product_page{
    width: 140px;
  }


}

@media screen and (min-width: 1440px) {
  .box_text_title_description_product{
      display: block;
  }

  .container_top_product{
    gap: 40px;
  }
  .container_top_product{
    flex-direction: row;
  }
  .box_photo_product {
    min-width: 560px;
  }

  .btn_add_cart_product_page{
    width: 280px;
    margin: 0;
  }

  .gallery{
    display: block;

  }

  .box_gallery_product{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 10px;
  }

  .photo_minor_product{
      min-width: 130px;
  }

  .box_gallery_product::-webkit-scrollbar {
    width: 4px;
    height: 8px;
  }

  .box_gallery_product::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  .box_gallery_product::-webkit-scrollbar-thumb:hover {
    background: rgba(238, 113, 3, 1);
  }

  .box_gallery_product::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
  }



}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover{
  color: var(--color-text-title);
  background-color: #fff;
  border: none;

}

.nav-tabs>li>a {
  color: var(--color-text-title);
 border:  none;
}

.nav>li>a:focus, .nav>li>a:hover {
  color: var(--color-text-title);
  background-color: #fff;
}



















/*==================== /product_page ====================*/

/* ==============TABLET============== */
@media screen and (min-width: 768px) {
  .footer_box_logo_help_contact {
    gap: 0;
  }

  .footer_logo {
    margin-bottom: 40px;
  }

  .tabs_title {
    font-size: 24px;
  }

  .footer_container_list {
    flex-direction: row;
    gap: 100px;
  }
}
/* ==============/TABLET============== */

/* ==============DESKTOP============== */
@media screen and (min-width: 1440px) {
  .footer_box_logo_help_contact {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 60px;
  }

  .tabs_title {
    font-size: 32px;
  }

  .footer_logo {
    width: 209px;
    height: 135px;
    margin-bottom: 0;
  }

  .footer_container_list {
    flex-direction: row;
    /*gap: 305px;*/
  }
}


.stock-status{
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.36;
    color: green;   
}

.stock-status-out-of-stock{
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.36;
    color: red;   
}

.sku_product {
     font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.36;
    color: rgba(18, 17, 17, 1);
}


.product-stock{
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==============/DESKTOP============== */

/* ==============/FOOTER============== */

/*============/PRODUCT/===========*/

/*.rating p a {*/
/*    color: #EE7103;*/
/*}*/
/*.form-group {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*}*/
/*.form-control {*/

/*}*/


.store_hours_desc{
  max-width: 255px;
}

.store_hours_text {
  font-family: var(--font-family-minor);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.36;
  text-align: left;
  color: rgba(247, 247, 247, 0.6);
  transition: color var(--transition-all-time);
}

.store_hours_tablet {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .store_hours_desc{
    display: none;
  }
  .store_hours_tablet {
    display: block;
  }
}


.box_store_hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
}

.title_store_hours {
  font-family: var(--font-family-minor);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.36;
  color: rgba(18, 17, 17, 1);
}

.text_store_hours {
  max-width: 290px;
  font-family: var(--font-family-minor);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.36;
  color: rgba(18, 17, 17, 1);
  margin: 0 !important;
}

.info-box_update{
  margin-top: 40px;
}


.box_photo_product{
  position: relative;
}

.box_compensation_product {
  position: absolute;
  z-index: 990;
  top: 25px;
  left: 25px;
  padding: 4px 12px;
  border-radius: 43px;
  color: #FEFBFA;
  font-family: var(--font-family-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.21;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  background-color: #45A02E;
}


.container_language_mobile {
    margin-bottom: 20px;
}

.language-selector .custom-select {
  display: flex;
  gap: 10px;
  align-items: center;
}
.language-selector .lang-btn {
  font-family: var(--font-family-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.36;
  color: rgba(18, 17, 17, 1);
  cursor: pointer;
}

.container_language_desktop .language-selector .lang-btn {
  color: #fff;
}

.language-selector .lang-btn.active {
  color: var(--color-hover);
  text-decoration: underline;
  transition: color var(--transition-all-time);
}

.language-selector .lang-btn:hover {
  color: var(--color-hover);
}

.container_language_desktop {
  display: none;
}

@media screen and (min-width: 1440px) {
  .container_language_desktop {
    display: flex;
  }
}



.modal_overlay_preview {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal_overlay_preview.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.btn_close_modal_preview {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  opacity: 0.4;
}


.btn_close_modal_preview:hover {
  opacity: 1;
}

.container_modal_preview {
  position: relative;
  max-width: 1024px;
  width: 95%;
  display: grid;
  grid-template-columns: 1fr;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(243, 243, 242, 1);
  gap: 20px;
}

.box_image_modal_preview img{
  border-radius: 4px;
  overflow: hidden;
}

.modal_content_preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto;
  height: 100%;
}

.modal_title_content_preview {
  font-family: var(--font-family-main);
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
}

.modal_text_content_preview {
  font-family: var(--font-family-minor);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
}

.box_text_modal_content_preview {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: center;
}

.icon_phone_modal_preview {
  width: 20px;
  height: 20px;
  fill: rgba(254, 251, 250, 1);
}

.box_text_icon_link_modal_preview {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  position: relative;
  z-index: 100;
  color: rgba(254, 251, 250, 1);
}

.modal_link_content_preview:hover .box_text_icon_link_modal_preview {
  color: rgba(254, 251, 250, 1);
}

.modal_link_content_preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(67, 18, 0, 0.3);
  transition: all 0.3s ease;
}

.modal_link_content_preview:hover::before {
  opacity: 1;
}

.modal_link_content_preview {
  font-family: var(--font-family-minor);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  padding: 11px;
  border-radius: 8px;
  position: relative;
  color: rgba(254, 251, 250, 1);
  background-color: rgba(238, 113, 3, 1);
}


@media screen and (min-width: 768px) {
  .container_modal_preview {
    grid-template-columns: 1fr 1fr;
  }
}