#eps-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#eps-modal.active {
    display: flex;
}

.eps-modal-content {
    background: #fff;
    padding: 15px;
    max-width: 520px;
    border-radius: 12px;
    position: relative;
}

.eps-modal-content img {
    width: 100%;
    border-radius: 8px;
}

.eps-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
}

.eps-sizeguide-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#f2f2f2;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    cursor:pointer;
    white-space:nowrap;
}
.eps-sizeguide-wrapper {
    margin-bottom: 12px;
    display: block;
}

.eps-sizeguide-btn {
    display: inline-flex;
    margin-bottom: 8px;
}


@media(max-width:768px){
  .eps-sizeguide-wrapper {
      margin-bottom: 14px!important;
  }
}