.custom-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  object-position: center;
}

#hamburger-menu:hover span {
  width: 100%;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a::after {
  display: inline-block;
  content: "";
  background-image: url("../assets/icons/down-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 6px;
  margin-left: 20px;
  transition: all 150ms linear;
}

.current-menu-item > a {
  color: #ffff00 !important;
}

#primary-menu .current-menu-item > a span::before {
  width: 100% !important;
}

#primary-menu .current-menu-item.menu-item-has-children > a span::before {
  width: 100% !important;
}

#primary-menu .sub-menu {
  min-width: 100px;
  margin: 0px;
  padding: 8px 0px;
  background-color: #1e1e1e;
  display: none;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #535353;
  position: absolute;
  margin-top: 12px;
  opacity: 0;
  transition: all 0.15s linear;
}

#primary-menu .sub-menu li {
  width: 100%;
  height: 100%;
}

#primary-menu .sub-menu li a {
  padding: 10px;
}

#primary-menu .sub-menu li a span::before {
  display: none;
}

#primary-menu .sub-menu .menu-item-has-children a {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding: 10px;
}

#primary-menu .sub-menu .menu-item-has-children .sub-menu {
  top: 0px;
  left: 94%;
  gap: 0px;
}

#primary-menu .sub-menu .menu-item-has-children > a::after {
  margin-left: 4px;
}

#primary-menu .menu-item-has-children:hover > .sub-menu {
  display: flex;
  opacity: 1;
}

#primary-menu > li > a {
  padding: 15px 20px;
}

#primary-menu li a {
  color: #f2f0eb;
}

#primary-menu li a span {
  position: relative;
}

#primary-menu li a span::before {
  content: "";
  width: 0%;
  height: 1px;
  position: absolute;
  background-color: #ffff00;
  bottom: -2px;
  left: 0px;
  transition: all 0.2s ease-in-out;
}

#primary-menu li a:hover {
  color: #ffff00;
}

#primary-menu li a:hover span::before {
  width: 100%;
}

#primary-menu_responsive .sub-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

#primary-menu_responsive .menu-item-has-children:hover .sub-menu {
  display: flex;
}

#search-icon svg {
  width: 100%;
  height: 100%;
}

#search-icon svg circle,
#search-icon svg rect {
  transition: all 0.2s ease-in-out;
}

#search-icon:hover svg rect {
  width: 0;
}

#search-icon:hover svg circle {
  transform: scale(1.2);
}

#cart-icon:hover #cart-count {
  animation: moveUpDown 0.5s ease-in-out;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0); /* Start in original position */
  }
  49% {
    transform: translateY(-100%); /* Move up */
  }
  50% {
    transform: translateY(100%); /* Move up */
  }
  100% {
    transform: translateY(0); /* Return to original position */
  }
}

#parallax-img {
  animation: parallaxImg 0.5s steps(1) infinite;
}

@keyframes parallaxImg {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  20% {
    transform: translate(-15%, 5%);
  }
  30% {
    transform: translate(7%, -25%);
  }
  40% {
    transform: translate(-5%, 25%);
  }
  50% {
    transform: translate(-15%, 10%);
  }
  60% {
    transform: translate(15%, 0%);
  }
  70% {
    transform: translate(0%, 15%);
  }
  80% {
    transform: translate(3%, 35%);
  }
  90% {
    transform: translate(-10%, 10%);
  }
  100% {
    transform: translate(0, 0);
  }
}

.link-button {
  transition: all 150ms linear;
}

.link-button::after {
  display: inline-block;
  content: "";
  background-image: url("../assets/icons/right-arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0px;
  height: 14px;
  opacity: 0;
  transition: all 150ms linear;
}

.link-button:hover::after {
  width: 28px;
  opacity: 1;
}

.link-button_white::after {
  background-image: url("../assets/icons/right-arrow-white.svg");
}

@media (width >= 40rem) {
  .link-button_white_resposnive::after {
    background-image: url("../assets/icons/right-arrow-white.svg");
  }
}

#back-to-top {
  clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
  transform: translateY(40px);
  border: 1px solid rgba(19, 19, 19, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: all 150ms linear;
  z-index: 999;
}

#back-to-top img {
  transform: rotate(30deg);
}

#back-to-top.show {
  opacity: 1;
  transform: rotate(-30deg) translateY(0);
  pointer-events: auto;
}

.faq_answer.open {
  max-height: 500px;
  padding-bottom: 24px;
}

.form-container form {
  max-width: 760px;
}

.form-container form label {
  font-size: 20px !important;
}

.form-container form input,
.form-container form textarea {
  background-color: #f2f0eb;
  font-size: 20px !important;
  border: 2px solid #707070;
  border-radius: 5px !important;
  overflow: hidden !important;
}

.form-container form input::placeholder {
  color: #a8a8a8;
}

.form-container button {
  text-align: center !important;
  font-size: 20px !important;
  transition: all 150ms linear !important;
  color: #f2f0eb;
  border: 1px solid #f2f0eb !important;
  padding: 16px 28px !important;
  border-radius: 1px !important;
  overflow: hidden !important;
}

.form-container button::after {
  display: inline-block;
  content: "";
  background-image: url("../assets/icons/right-arrow-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0px;
  height: 14px;
  opacity: 0;
  transition: all 150ms linear;
}

.form-container button:hover::after {
  width: 28px;
  opacity: 1;
}

.mc4wp-form {
  min-width: 50%;
}

.mc4wp-form .mc4wp-form-fields {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mc4wp-form .mc4wp-form-fields input {
  width: 100%;
  border: 1px solid #707070;
  border-radius: 1px;
  padding: 12px 22px;
  color: #5a5a5a;
  font-size: 20px;
  font-weight: 300;
}

.mc4wp-form .mc4wp-form-fields input[type="submit"] {
  width: auto;
  background-color: #1e1e1e;
  color: #f2f0eb;
  border: 1px solid #1e1e1e;
  border-radius: 1px;
  cursor: pointer;
  transition: all 150ms linear;
}

.mc4wp-form .mc4wp-form-fields input[type="submit"]:hover {
  background-color: transparent;
  color: #1e1e1e;
}

.mc4wp-form .mc4wp-response .mc4wp-alert {
  padding: 16px;
  background-color: #fff;
  color: #1e1e1e;
  margin-top: 4px;
}

.feed:hover .feed_overlay {
  display: flex;
}

.gslide .gslide-media .glightbox-content {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  padding: 0px;
}

@media (width >= 64rem) {
  .gslide .gslide-media {
    width: 100% !important;
    height: auto !important;
    max-width: 84vw !important;
    max-height: 90vh !important;
    border-radius: 15px;
    overflow: hidden;
  }
}

@media (width >= 80rem) {
  .gslide .gslide-media {
    max-width: 66vw !important;
  }
}

/*
*Prallax Image Background Animation
*/
.parallax-container {
  perspective: 1px;
}

.parallax-img {
  will-change: transform;
  transform: translate3d(0px, -5.68665%, 0px) scale3d(1.04549, 1.04549, 1)
    rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  opacity: 0.85;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-width: 100%;
  height: 115%;
  position: absolute;
  inset: 0%;
}
.parallax-img-cover {
  z-index: 2;
  background-color: #1f1f1f;
  opacity: 0.85;
  cursor: default;
  width: 100%;
  height: 100%;
  position: absolute;
}
