.header {
  width: 100%;
  position: fixed;
  overflow: hidden;
  top: 0;
  height: 70px;
  z-index: 1060;
  display: grid;
  align-items: center;
  border-bottom: 1px solid #181818;
  background-color: #d9cfbc;
}
.header .container {
  width: 100%;
  height: 100%;
  max-width: 100%;
  padding: 0;
}
.header-grid {
  height: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 3fr repeat(5, 1fr);
}
.logo-main {
  padding-left: 25px;
}
.logo-main a {
  display: block;
}
.logo-main img {
  height: 52px;
}
.column-header {
  display: flex;
  align-items: center;
  text-align: center;
  height: 100%;
  cursor: pointer;
  justify-content: center;
  border-right: 1px solid #181818;
}
.box-logo-welcome {
  display: grid;
  align-items: center;
  height: 100%;
  border-right: 1px solid #181818;
}
.navmenu a {
  display: block;
  position: relative;
  font-size: 18px;
}
.navmenu a:after {
  content: "";
  width: 0;
  height: 1px;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #191919;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navmenu:hover a:after {
  width: 100%;
  opacity: 1;
}
.nav-right {
  text-align: center;
}
.nav-right a {
  display: grid;
  align-items: center;
  margin: 0 10px;
  text-align: center;
}
.navsearch {
  font-size: 23px;
}
.navlang,
.navlogin {
  font-size: 24px;
}
.shoppingcart {
  white-space: nowrap;
  border-right: 0;
  text-align: center;
  background-color: #181818;
}
.shoppingcart a {
  position: relative;
  color: #d9cfbc;
  padding-left: 0;
}
.shoppingcart a:before {
  content: "\e911";
  font-family: "icon-homeland";
  color: #d9cfbc;
  margin-right: 5px;
  left: 0;
  top: 1px;
}
.shoppingcart a:hover {
  color: #fff;
}
.shoppingcart a:before:hover {
  color: #fff;
}
.navsub ul li {
  position: relative;
  margin-bottom: 10px;
}
.navsub ul li:last-of-type {
  margin-bottom: 0;
}
.navsub ul li a {
  position: relative;
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
}
.navsub ul li a:after {
  content: "";
  width: 0;
  height: 1px;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #191919;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navsub ul li a:hover:after {
  width: 100%;
  opacity: 1;
}
.navlogin-lang {
  display: none;
}

li.lang-item {
  border: solid 1px #000;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
li.lang-item a {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  color: #000;
}

.panel-inner li.lang-item {
  opacity: 0.3;
}

.panel-inner li.current-lang {
  opacity: 1;
}

/* panel */
.panel {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0 !important;
  z-index: 99999999999;
  pointer-events: none;
  border-left: 1px solid #181818;
  background-color: #d9cfbc;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) !important;
}
.panel-shop {
  transform-origin: right center;
  -webkit-transform: translate3d(100%, 0, 0) !important;
  transform: translate3d(100%, 0, 0) !important;
}
.panel-right {
  transform-origin: right center;
  -webkit-transform: translate3d(100%, 0, 0) !important;
  transform: translate3d(100%, 0, 0) !important;
}
.panel-open {
  height: 100%;
  overflow: hidden !important;
}
.panel-open-shop .panel-shop,
.panel-open-search .panel-search,
.panel-open-login .panel-login,
.panel-open-basket .panel-basket {
  z-index: 999999999;
  pointer-events: all;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}
.bg-overlay {
  display: none;
  transition: opacity 0.3s ease 0s;
}
.panel-open-shop .bg-overlay,
.panel-open-search .bg-overlay,
.panel-open-login .bg-overlay,
.panel-open-basket .bg-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4000;
  background-color: rgb(0 0 0 / 50%);
  -webkit-animation: fade 500ms;
  animation: fade 500ms;
  overflow: hidden;
  transition: opacity 0.3s ease 0s;
}
.panel-header {
  position: relative;
  display: grid;
  align-items: center;
  height: 70px;
  padding: 0 50px;
  border-bottom: 1px solid #181818;
}
.panel-header h3 {
  font-size: 24px;
  font-weight: bold !important;
}
.panel-header.noline {
  border: 0;
}
.panel h2 {
  font-size: 40px;
  margin-bottom: 60px;
}
.panel-inner {
  padding: 35px 50px;
  transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}
.panel-inner.align-center {
  height: calc(100% - 70px);
  display: grid;
  align-items: center;
}
.panel-header .close {
  position: fixed;
  top: 24px;
  right: 50px;
  cursor: pointer;
}
.panel-header .close::after {
  content: "\e906";
  font-family: "icon-homeland";
  font-size: 22px;
  color: #181818;
}
.panel-login .linktext {
  margin-top: 100px;
}
.form-login .field-button {
  margin-top: 60px;
}

/* Shop */
.panel-shop {
  border-left: 0;
  border-right: 1px solid #000;
}

/* Search */
.popular-products h3 {
  font-family: "YoungSerif", "Trirong", serif;
  font-size: 18px;
  color: #181818;
  margin-bottom: 20px;
}
.popular-products ul li {
  position: relative;
  margin-bottom: 10px;
}
.popular-products ul li .ic {
  margin-left: 6px;
}
.popular-products ul li a {
  font-size: 17px;
  display: inline-block;
  position: relative;
}
.popular-products ul li a:after {
  content: "";
  width: 0;
  height: 1px;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #191919;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.popular-products ul li:hover a:after {
  width: 100%;
  opacity: 1;
}

/* basket */
.panel-basket .panel-inner {
  height: 100%;
  padding: 0 30px 35px 50px;
}
.container-shoppingcart {
  padding-right: 20px;
}
.grid-basket {
  display: grid;
  align-items: start;
  grid-column-gap: 28px;
  margin-bottom: 28px;
  grid-template-columns: 85px auto 40px;
}
.grid-basket h3 {
  font-size: 18px;
  font-weight: bold;
}
.grid-basket .entry-qty {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 5px;
}
.grid-basket .entry-price {
  font-size: 18px;
  font-weight: bold;
}
.item-basket:last-of-type {
  text-align: right;
  padding-top: 5px;
}
.shopping-checkout {
  display: grid;
  font-size: 16px;
  margin-bottom: 20px;
  grid-column-gap: 10px;
  grid-template-columns: auto 1fr;
}
.shopping-checkout h3 {
  font-size: 20px;
  color: #181818;
  font-weight: bold;
}
.shopping-checkout .total-price {
  font-size: 24px;
  color: #181818;
  text-align: right;
  font-weight: bold;
  white-space: nowrap;
}
.container-shoppingcart {
  width: 100%;
  height: 70%;
  overflow: scroll;
}
.container-shoppingcart-bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 400;
  padding: 20px 50px 25px;
  border-top: 1px solid #181818;
  background-color: #d9cfbc;
}
.panel-group {
  margin: 30px -50px;
  padding: 30px 50px 0;
  border-top: 1px solid #181818;
}
.panel-group h3 {
  font-size: 20px;
  font-family: "YoungSerif";
  font-weight: normal;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  position: relative;
  display: grid;
  align-items: center;
  border-top: 1px solid #181818;
}
.footer h3 {
  font-family: "YoungSerif";
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.grid-footer {
  position: relative;
  display: grid;
  align-items: center;
  border-bottom: 1px solid #181818;
  grid-template-columns: repeat(4, 1fr);
}
.footer-box {
  height: 100%;
  padding: 25px 40px 25px 45px;
  border-right: 1px solid #181818;
}
.footer-box.last-box {
  border-right: 0;
}

.navfooter {
  margin-bottom: 40px;
}
.navfooter ul li {
  position: relative;
  margin-bottom: 4px;
}
.navfooter ul li:last-of-type {
  margin-bottom: 0;
}
.navfooter ul li a {
  font-size: 16px;
  color: #191919;
  position: relative;
  display: inline-block;
}
.navfooter ul li a:hover {
  color: #191919;
}
.navfooter ul li a:after {
  content: "";
  width: 0;
  height: 1px;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #191919;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navfooter ul li:hover a:after {
  width: 100%;
  opacity: 1;
}
.copyright {
  font-size: 14px;
  padding: 20px 45px;
}
.footer-logo {
  height: 10vw;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.footer-logo img {
  margin: 0 auto;
  width: calc(100% - 80px);
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
.circle-logo {
  width: 127px;
  position: absolute;
  overflow: hidden;
  right: 35px;
  bottom: -63px;
}
.circle-logo .img-healthy {
  display: block;
  -webkit-animation: rotate 9s normal linear infinite;
  animation: rotate 9s normal linear infinite;
}
.nav-mobile {
  display: none;
}
.is-mobile {
  display: none;
}
.navsearch {
  display: block;
  line-height: 0.8;
}
.navsub-main {
  position: relative;
}
.nav-transition li,
.navsub h3 {
  opacity: 0;
  transform: translateY(-2em);
  transition:
    opacity 0.6s cubic-bezier(0.65, 0.025, 0.67, 0.36),
    transform 0.6s cubic-bezier(0.65, 0.025, 0.67, 0.36);
  transition-duration: 0.3s;
}
.panel-open-shop .nav-transition li:nth-child(1) {
  transition-delay: 0.175s;
}
.panel-open-shop .nav-transition li:nth-child(2) {
  transition-delay: 0.25s;
}
.panel-open-shop .nav-transition li:nth-child(3) {
  transition-delay: 0.325s;
}
.panel-open-shop .nav-transition li:nth-child(4) {
  transition-delay: 0.4s;
}
.panel-open-shop .nav-transition li:nth-child(5) {
  transition-delay: 0.525s;
}
.panel-open-shop .nav-transition li:nth-child(6) {
  transition-delay: 0.575s;
}
.panel-open-shop .nav-transition li:nth-child(7) {
  transition-delay: 0.655s;
}
.panel-open-shop .nav-transition li:nth-child(8) {
  transition-delay: 0.775s;
}
.panel-open-shop .nav-transition li:nth-child(9) {
  transition-delay: 0.875s;
}
.panel-open-shop .nav-transition li:nth-child(10) {
  transition-delay: 0.975s;
}
.panel-open-shop .nav-transition li:nth-child(11) {
  transition-delay: 0.1075s;
}
.panel-open-shop .nav-transition li:nth-child(12) {
  transition-delay: 0.1175s;
}
.navsub h3 {
  transition-delay: 0.25s;
}
.panel-open-shop .nav-transition li,
.panel-open-shop .navsub h3 {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 0.3s;
  transition:
    opacity 0.6s cubic-bezier(0.34, 0.615, 0.4, 0.985),
    transform 0.8s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.welcome-box {
  display: none;
  line-height: 1.5;
}
.navfooter-social li {
  position: relative;
  padding-right: 15px;
}
.navfooter-social li a {
  position: relative;
  display: inline-block;
}
.navfooter-social li:after {
  margin-left: 6px;
  display: inline-block;
  content: "\e909" !important;
  font-family: "icon-homeland" !important;
  font-size: 10px;
}
.navfooter-social li.social-mail:after {
  display: none;
}

@media (min-width: 992px) {
  .panel-shop {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0) !important;
    transform: translate3d(-100%, 0px, 0px) !important;
  }
  .panel {
    width: 37.55% !important;
  }
}

@media (min-width: 1400px) {
  .box-logo-welcome {
    height: 100%;
    display: grid;
    grid-column-gap: 40px;
    align-items: center;
    grid-template-columns: auto 2fr;
  }
  .welcome-box {
    display: block;
    position: relative;
    font-size: 15px;
  }
  .welcome-box:before {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    top: 5px;
    width: 1px;
    height: 34px;
    background-color: #181818;
  }
  .welcome-hover {
    position: absolute;
    overflow: hidden;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 800;
    display: block;
    font-size: 15px;
    text-align: left;
    background-color: #d9cfbc;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .welcome-text.active {
    display: block;
    opacity: 1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .welcome-text {
    height: 40px;
    display: flex;
    align-items: center;
  }
  .welcome-hover {
    opacity: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .hover-shop .welcome-hover.shop,
  .hover-about .welcome-hover.about,
  .hover-partner .welcome-hover.partner {
    opacity: 1;
  }
}

@media (max-width: 1199.98px) {
  .panel {
    width: 50.1%;
  }
  .panel-shop .panel-inner {
    overflow-y: scroll;
    height: 100%;
    padding: 35px 50px 100px 50px;
  }
  .nav-right a {
    margin: 0 5px;
  }
  .logo-main {
    padding-right: 0;
  }
  .logo-main img {
    height: 52px;
  }
}

@media (max-width: 991.98px) {
  /* Header */
  .header .is-mobile {
    display: grid !important;
  }
  .header-grid {
    grid-template-columns: 4fr 2fr repeat(2, 1fr);
  }
  .nav-right {
    display: none;
  }
  .nav-right a {
    margin: 0;
  }
  .navsearch {
    font-size: 23px;
  }
  .column-header {
    border-right: 1px solid #181818;
  }
  .column-header:last-of-type {
    border-right: 0;
  }
  .shoppingcart {
    font-size: 16px;
    color: #181818;
    background-color: transparent;
  }
  .shoppingcart a {
    padding-left: 0;
  }
  .shoppingcart a,
  .shoppingcart a:hover,
  .shoppingcart a:before {
    color: #181818;
  }
  .shoppingcart a:before {
    font-size: 16px;
    top: 2px;
  }
  .welcome-box {
    display: none;
  }
  .navmenu {
    display: none;
  }
  .nav-mobile {
    position: relative;
    width: 32px;
    height: 22px;
    top: 0;
    right: 0;
    z-index: 1000;
    display: block;
    cursor: pointer;
  }
  .nav-mobile .menuicon {
    position: absolute;
    top: 10px;
    left: 0;
    margin: 0 auto;
    width: 32px;
    height: 1px;
    background: #181818;
    transition: all 0.4s ease-out;
  }
  .nav-mobile .menuicon:before,
  .nav-mobile .menuicon:after {
    content: "";
    position: absolute;
    width: 32px;
    height: 1px;
    background: #181818;
    transition: all 0.25s ease-out;
  }
  .nav-mobile .menuicon:before {
    top: -11px;
    left: 0;
  }
  .nav-mobile .menuicon:after {
    top: 11px;
    left: 0;
  }
  .panel {
    width: 100% !important;
  }
  .panel-right {
    right: 0;
    transform-origin: right center;
    -webkit-transform: translate3d(100%, 0, 0) !important;
    transform: translate3d(100%, 0, 0) !important;
  }
  .panel-inner {
    padding: 25px 50px;
  }
  .panel-group {
    margin: 30px -25px;
    padding: 30px 25px 0;
  }
  .navsub.sm ul li a {
    font-size: 18px;
  }
  .panel-group h3 {
    font-size: 16px;
  }
  .nav-social {
    margin-top: 30px;
  }
  .nav-social ul li {
    display: inline-block;
    margin-right: 25px;
  }
  .nav-social ul li a {
    font-size: 16px;
  }
  .nav-social ul li .ic {
    font-size: 10px;
    margin-left: 5px;
  }
  .panel-shop .panel-inner {
    padding: 0 50px;
  }
  .navlogin-lang {
    height: 63px;
    display: grid;
    align-items: center;
    text-align: center;
    margin: 0 -50px 25px;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #000;
  }
  .navlogin-lang .ic {
    font-size: 30px;
    margin-right: 5px;
  }
  .lang-mobile {
    height: 63px;
    border-left: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lang-mobile a {
    color: rgb(0 0 0 / 20%);
    font-size: 24px;
    margin: 0 8px;
  }
  .navlang.active {
    color: #181818;
  }
  .navlogin {
    font-size: 18px;
  }
  .navlogin .ic {
    font-size: 24px;
  }
  .panel-left {
    border-left: 0;
  }
  .form-login .field-button {
    margin-top: 40px;
  }
  .panel-login .linktext {
    margin-top: 50px;
  }
  /* Footer */
  .grid-footer {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .navfooter {
    margin-bottom: 0;
  }
  .footer-box {
    padding: 20px;
    height: 35.14vw;
    border-bottom: 1px solid #181818;
  }
  .footer-box:nth-child(2) {
    border-right: 0;
  }
  .footer-box:nth-child(3),
  .footer-box:nth-child(4) {
    border-bottom: 0;
  }
  .footer-box:nth-child(2),
  .footer-box:nth-child(4) {
    text-align: right;
  }
  .footer-box:nth-child(3),
  .footer-box:nth-child(4) {
    display: grid;
    align-items: end;
    align-content: end;
  }
  .footer-box:nth-child(3) h3,
  .footer-box:nth-child(4) h3 {
    grid-row: 2;
    margin-top: 10px;
    margin-bottom: 0;
  }
  .circle-logo {
    position: absolute;
    right: inherit;
    left: 50%;
    top: 50%;
    bottom: inherit;
    transform: translate(-50%, -50%);
  }
  .copyright {
    padding: 20px;
  }
  .footer-logo img {
    width: calc(100% - 40px);
  }
  .panel-shop .panel-inner {
    padding: 0 50px 80px;
  }
  .panel {
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .navfooter-social li:after {
    position: absolute;
    right: 0 !important;
    left: inherit;
    top: 3px;
    display: inline-block;
    content: "\e909" !important;
    font-family: "icon-homeland" !important;
    font-size: 10px;
  }
}

@media (max-width: 767.98px) {
  .header {
    height: 55px;
  }
  /* .logo-main {
    padding-left: 15px;
    padding-right: 15px;
  } */
  .panel-inner {
    padding: 25px;
  }
  .navlogin-lang {
    margin: 0 -25px 25px;
  }
  .panel-header .close {
    top: 15px;
    right: 20px;
  }
  .panel-header {
    height: 55px;
    padding: 0 25px;
  }
  .panel-header h3 {
    font-size: 18px;
  }
  .panel-shop .panel-inner {
    padding: 0 25px 120px;
  }
  .panel-basket .panel-inner {
    padding: 25px 0 25px 25px;
  }
  .panel-group h3 {
    margin-bottom: 10px;
  }
  /* Footer */
  .footer-box {
    height: 288px !important;
  }
  .copyright {
    font-size: 14px;
  }
  .container-shoppingcart-bottom {
    bottom: 70px;
    padding: 15px 25px 0;
    background-color: #d9cfbc;
  }
  .container-shoppingcart {
    overflow-y: scroll;
    height: 55%;
  }
  .shopping-checkout {
    margin-bottom: 20px;
  }
  .shopping-checkout .total-price {
    font-size: 20px;
  }
  .shopping-checkout h3 {
    font-size: 18px;
  }
  .grid-basket {
    margin-bottom: 20px;
    grid-column-gap: 20px;
    grid-template-columns: 70px auto 40px;
  }
  .grid-basket h3 {
    font-size: 16px;
  }
  .grid-basket .entry-price {
    font-size: 16px;
  }
  .popular-products h3 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .logo-main img {
    height: 40px;
  }
}
