
.pvh-front{width:100%;}
.pvh-front__stage{position:relative;width:100%;overflow:hidden;}
.pvh-front__image{display:block;width:100%;height:auto;}
.pvh-front__overlay{position:absolute;inset:0;}

.pvh-front__spot{
  position:absolute;
  transform:translate(-50%,-50%);
  width:26px;
  height:26px;
  min-width:26px;
  min-height:26px;
  max-width:26px;
  max-height:26px;
  margin:0;
  padding:0;
  border:0;
  outline:none;
  background:transparent !important;
  box-shadow:none !important;
  border-radius:0 !important;
  display:block;
  z-index:4;
  cursor:pointer;
  overflow:visible;
  opacity:0;
}

.pvh-front__spot.is-ready{opacity:1;}
.pvh-front__spot.is-dropping{animation:pvhFrontDrop .85s cubic-bezier(.2,.9,.2,1) forwards;}

.pvh-front__spot::before,
.pvh-front__spot::after{content:none !important;display:none !important;}

.pvh-front__pin{
  position:absolute;
  inset:0;
  display:block;
  width:26px;
  height:26px;
  border-radius:50% !important;
  background:#e30613 !important;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
  transform:none;
}

.pvh-front__pin::before{
  content:"";
  position:absolute;
  inset:5px;
  border:2px solid #fff;
  border-radius:50%;
  box-sizing:border-box;
}

.pvh-front__pin::after{
  content:"";
  position:absolute;
  width:6px;
  height:6px;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  background:#fff;
}

.pvh-front__pulse{
  position:absolute;
  inset:-8px;
  border:1px solid rgba(227,6,19,.42);
  border-radius:50%;
  animation:pvhFrontPulse 1.8s infinite ease-out;
  pointer-events:none;
}

.pvh-front__spot:hover .pvh-front__pin,
.pvh-front__spot:focus .pvh-front__pin,
.pvh-front__spot.is-active .pvh-front__pin{
  transform:scale(1.03);
}

@keyframes pvhFrontPulse{
  0%{transform:scale(.7);opacity:.8;}
  70%{transform:scale(1.5);opacity:0;}
  100%{transform:scale(1.5);opacity:0;}
}

@keyframes pvhFrontDrop{
  0%{opacity:0;transform:translate(-50%, calc(-50% - 110px)) scale(.72);}
  55%{opacity:1;transform:translate(-50%, calc(-50% + 8px)) scale(1);}
  75%{transform:translate(-50%, calc(-50% - 4px)) scale(1);}
  100%{opacity:1;transform:translate(-50%,-50%) scale(1);}
}

.pvh-front__card{
  position:absolute;
  left:0;
  top:0;
  z-index:5;
  width:min(252px, calc(100vw - 24px));
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  border-radius:20px;
  box-shadow:0 18px 50px rgba(0,0,0,.14);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events:none;
}
.pvh-front__card.is-visible{opacity:1;visibility:visible;transform:translateY(0);}
.pvh-front__card-inner{padding:18px 20px;position:relative;}
.pvh-front__card-arrow{position:absolute;width:14px;height:14px;background:rgba(255,255,255,.96);transform:rotate(45deg);box-shadow:0 8px 20px rgba(0,0,0,.06);border-radius:2px;}
.pvh-front__card[data-arrow="left"] .pvh-front__card-arrow{left:-7px;top:var(--arrow-top,24px);}
.pvh-front__card[data-arrow="right"] .pvh-front__card-arrow{right:-7px;top:var(--arrow-top,24px);}
.pvh-front__card[data-arrow="top"] .pvh-front__card-arrow{top:-7px;left:var(--arrow-left,24px);}
.pvh-front__card[data-arrow="bottom"] .pvh-front__card-arrow{bottom:-7px;left:var(--arrow-left,24px);}
.pvh-front__title,
.pvh-front__mobile-title{margin:0 0 8px;font-size:clamp(20px,2vw,30px);line-height:1.1;color:#2f2b22;}
.pvh-front__content,
.pvh-front__mobile-content{font-size:15px;line-height:1.6;color:#5d564a;}
.pvh-front__content p:first-child,
.pvh-front__mobile-content p:first-child{margin-top:0;}
.pvh-front__content p:last-child,
.pvh-front__mobile-content p:last-child{margin-bottom:0;}

.pvh-front__mobile-panel{
  display:none;
  margin-top:14px;
}
.pvh-front__mobile-panel.is-visible{display:block;}
.pvh-front__mobile-panel-inner{
  background:rgba(255,255,255,.96);
  border-radius:18px;
  box-shadow:0 18px 50px rgba(0,0,0,.10);
  padding:16px 18px;
}

@media (max-width:767px){
  .pvh-front__spot{width:22px;min-width:22px;max-width:22px;height:22px;min-height:22px;max-height:22px;}
  .pvh-front__pin{width:22px;height:22px;}
  .pvh-front__pin::before{inset:4px;}
  .pvh-front__pin::after{width:5px;height:5px;}
  .pvh-front__card{display:none !important;}
  .pvh-front__mobile-panel{display:none;}
  .pvh-front__mobile-panel.is-visible{display:block;}
  .pvh-front__mobile-panel-inner{border-radius:16px;padding:16px;}
  .pvh-front__mobile-title{font-size:22px;}
  .pvh-front__mobile-content{font-size:14px;}

  @keyframes pvhFrontDrop{
    0%{opacity:0;transform:translate(-50%, calc(-50% - 80px)) scale(.72);}
    55%{opacity:1;transform:translate(-50%, calc(-50% + 6px)) scale(1);}
    75%{transform:translate(-50%, calc(-50% - 3px)) scale(1);}
    100%{opacity:1;transform:translate(-50%,-50%) scale(1);}
  }
}
