@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: #121212;
  /* margin-bottom: 20px; */
}

a {
  text-decoration: none;
}

.heading h2 {
  font-size: 42px;
  font-weight: 700;
  color: #121212;
  margin-bottom: 20px;
}

/* header  */

header{
  position: sticky;
  top: 0;
  z-index: 999;
  left: 0;
  background-color: #fff;
  border-bottom: 1px solid #ececec;
}

.top-head-collumn {
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.top-head-collumn img {
  width: 18px;
}

.top-head-collumn .top-head-link {
  font-size: 10px;
  color: #0466de;
  margin-left: 5px;
  text-transform: uppercase;
  text-decoration: none;
  &:hover {
    text-decoration: underline;
  }
}

.top-header-review {
  padding: 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.top-header-review p {
  font-size: 16px;
  color: #121212;
  margin-bottom: 0;
}

.top-header-review svg {
  color: #fbb03b;
  width: 80px;
  margin-right: 5px;
}

.menu {
  border-top: 1px solid #ececec;
  height: 90px;
  display: flex;
  align-items: center;
}

.open-menu-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}

@media (max-width: 991px) {
  .open-btn-img img {
    margin-left: 10px;
  }
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__toggle-menu,
.nav__toggle-close {
  font-size: 1.25rem;
  color: var(--title-color);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav__toggle-close {
  opacity: 0;
}

.nav__toggle {
  margin-left: 15px;
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
  position: relative;
}

.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__content,
.dropdown__group,
.dropdown__list {
  display: grid;
}

.dropdown__container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}

.dropdown__content {
  row-gap: 1.75rem;
}

.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}

.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.dropdown__list {
  row-gap: 0.25rem;
}

.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}

.dropdown__link:hover {
  color: var(--title-color);
}

.phone-menu-links {
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: #fff;
}

.phone-menu-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phone-menu-links ul li {
  border-bottom: 1px solid #e7e7e7;
  .nav__link {
    display: flex;
    width: 100%;
    padding: 10px 20px 10px 18px;
    font-size: 16px;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
    color: #121212;
    a {
      color: #121212;
    }
    i {
      font-size: 20px;
    }
  }
}

.dropdown__group a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 20px 7px 30px;
  border-top: 1px solid #e7e7e7;
  font-size: 16px;
  font-weight: 600;
  color: #121212;
}

.p-reletive {
  position: relative;
}

.desk-menu-open {
  position: absolute;
  top: 100%;
  left: -1000px;
  background: #fff;
  z-index: 999;
  padding: 30px 0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .desk-menu-open {
    width: 350px;
  }
}

.inner-menu-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desk-submenu {
  display: none;
}

.open-menu-item {
  position: relative;
}

.open-menu-item li {
  border-bottom: 1px solid #f6f6f6;
  padding-right: 10px;

  display: flex;
  align-items: center;
  a {
    width: 100%;
    padding: 6px 20px 6px 30px;
    font-size: 16px;
    font-weight: 600;
    justify-content: space-between;
    display: block;
    align-items: center;
    color: #121212;
  }
  i {
    font-size: 20px;
    cursor: pointer;
    padding: 10px 20px;
  }
}

.desk-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #eee;
  z-index: 999;
  padding: 50px 40px 20px;
  min-width: 70vw;
  max-height: 65.5vh;
  overflow: auto;
  width: 100%;
}

.desk-submenu::-webkit-scrollbar {
  width: 6px;
}

.desk-submenu::-webkit-scrollbar-thumb {
  background: #3f3f3f;
  border-radius: 6px;
}

.desk-submenu::-webkit-scrollbar-thumb:hover {
  background: #3f3f3f;
}

.desk-submenu-products {
  padding-bottom: 50px;
}

.desk-product-box {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
  height: 150px;
  /* background-color: #eaba92; */
}

.menu-product-box-1 {
  background-color: #eaba92;
}

.menu-product-box-2 {
  background-color: #58b1bf;
}

.product-type-head-link h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  /* padding-left: 30px; */
  margin-bottom: 0;
}

.desk-product-box img {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  height: 200px;
}

.desk-product-text {
  display: flex;
  align-items: center;
  padding: 10px 25px 10px 10px;
  i {
    padding: 6px 10px 0 !important;
    color: #fff;
  }
}

.desk-product-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.product-type-head-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
}

.types-of-products {
  display: flex;
  justify-content: start;
  column-gap: 15px;
  align-items: center;
  padding-bottom: 30px;
}

.product-info {
  width: 150px;
}

.product-info a {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.product-info img {
  width: 75px;
}

.product-info a {
  padding: 0 !important;
}

.product-info h4 {
  font-size: 14px;
  white-space: wrap;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  &:hover {
    color: #0466de;
  }
}

.product-info a:hover h4 {
  color: #0466de;
}

.product-compression {
  padding-bottom: 20px;
}

.product-sizes {
  display: flex;
}

.product-size-mm h4 {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
  &:hover {
    color: #0466de;
  }
}

.pro-specification {
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    li {
      border: none;
      a {
        font-size: 14px;
        font-weight: 400;
        color: #121212;
        padding: 5px 0;
        display: block;
        &:hover {
          color: #0466de;
          font-weight: 600;
        }
      }
    }
  }
}

.desk-menu-open.op-menu {
  left: 0;
}

.open-btn-text p {
  font-size: 16px;
  color: #545454;
  text-transform: uppercase;
  font-weight: 400;
  margin: 3px 0 0;
}

.pro-search {
  display: flex;
  align-items: center;
}

.search-form label {
  height: 27px;
  width: 1px;
  position: relative;
}

.search-form label::before {
  content: "";
  background-image: url(../images/search.png);
  height: 27px;
  width: 27px;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}

.header-search-box input {
  border: none;
  outline: none;
  padding-left: 30px;

  &::placeholder {
    text-transform: uppercase;
  }
}

.header-search-box input:focus {
  border-bottom: 1px solid #121212;
}

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

@media (max-width: 991px) {
  .logo {
    max-width: 161px;
  }
}

.my-account-btn {
  position: relative;
}

.my-account-btn button {
  background: none;
  border: none;
  position: relative;
  color: #545454;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 4px 0px 0 30px;
  vertical-align: top;
}


.my-account-btn::before {
  content: "";
  background-image: url(../images/utente.svg);
  height: 20px;
  width: 20px;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.myacc-links {
  position: absolute;
  display: none;
  top: 50px;
  right: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 0 5px #00000052;
  width: 175px;
  transition: all 0.3s ease;
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    li {
      a {
        display: block;
        padding: 0;
        font-size: 14px;
        padding: 8px 15px;
        line-height: 1.4;
        color: #121212;
        &:hover {
          background: #f0faf9;
        }
      }
    }
  }
}

.op-myacc {
  display: block;
}

.shopping-cart a {
  position: relative;
}

.shopping-cart a span {
  font-size: 14px;
  color: #545454;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  margin: 3px 0 0;
  padding-left: 25px;
}

.shopping-cart a::before {
  content: "";
  background-image: url(../images/carrello.svg);
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

/* header end  */
