#main-content{
    font-size: calc(100vw/2560);
}
.mini-hairdryer-banner{
  background: white;
}
.mini-hairdryer-banner .banner-cover {
  height: 100dvh;
  position: relative;
  overflow: hidden;
}
.mini-hairdryer-banner .mini-hairdryer-logo {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.mini-hairdryer-banner .tagline-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.mini-hairdryer-banner .logo-image{
    margin-top: 20%;
    position: relative;
}
.mini-hairdryer-banner .logo-image img {
  height: 390em;
  width: auto;
  max-width: unset;
}
.mini-hairdryer-banner .logo-spacer {
  width: 150em;
}
.mini-hairdryer-banner .banner-hairdryer {
  position: absolute;
  top: 0;
  left: 435em;
  right: 0;
  bottom: 0;
  height: 100dvh;
  z-index: 2;
  text-align: center;
}
.mini-hairdryer-banner .banner-hairdryer img {
  max-height: 100%;
  height: 100%;
  vertical-align: middle;
  width: auto;
  max-width: unset;
}
.mini-hairdryer-banner .tagline-image{
    width: 90%;
    position: absolute;
    top: 100%;
    right: 0;
    transform: translate(-30px, 50%);
}
.mini-hairdryer-banner .tagline-image img{
    width: 100%;
    height: auto;
}

.hide-on-desktop{
  display: none;
}


.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.popup.open {
  display: block;
}
.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
}
.popup-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 10px;
  overflow: hidden;
  max-width: 700px;
  width: 90%;
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}


.popup-content h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.2;
  color: #38383A;
  margin-bottom: 40px;
}
@media (max-width: 1366px) {
  #main-content{
    font-size: calc(100vw/1920);
  }
}
@media (max-width: 1024px) {
  .mini-hairdryer-banner .banner-hairdryer {
    left:calc(52.4vw - 295.52px);
    text-align: left;
  }
  .banner-product .banner-product-info h2{
    font-size: 90px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .mini-hairdryer-banner .logo-image{
    margin-top: 70vw;
  }

  .mini-hairdryer-banner .banner-hairdryer {
    left:calc(64vw - 295.52px);
    text-align: left;
    display: flex;
    justify-content: left;
    align-items: flex-end;
  }
  .mini-hairdryer-banner .banner-hairdryer img{
    height: 90%;
    width: auto;
  }

  .hide-on-mobile{
    display: none;
  }
  .hide-on-desktop{
    display: block;
  }
  .popup-content{
    padding: 60px 20px;
  }
  .popup-content h4{
    font-size: 26px;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 20px;
  }
  .popup-close svg{
    width: 40px;
    height: 40px;
  }
}