.ep-share-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:auto;
  height:auto;
  border-radius:0;
  border:0;
  background:transparent;
  color:#111;
  cursor:pointer;
  padding:0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.ep-share-btn:focus{
  outline: none;
}
.ep-share-btn:focus-visible{
  outline: none;
  box-shadow:none;
}
.ep-share-action:focus{
  outline:none;
}
.ep-share-action:focus-visible{
  outline:none;
  box-shadow:none;
}
.ep-share-action:active{
  transform:none;
}
.ep-share-action:active .ep-share-action__icon,
.ep-share-action:focus .ep-share-action__icon,
.ep-share-action:focus-visible .ep-share-action__icon{
  background:#f3f3f3;
  box-shadow:none;
}
.ep-share-btn:hover,
.ep-share-btn:focus{
  border-color:transparent;
  box-shadow:none;
}
.ep-share-btn__icon{
  width:27px;
  height:27px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.ep-share-btn__icon svg{
  width:27px;
  height:27px;
  display:block;
}

.ep-share-dots-row{
  display:flex;
  align-items:center;
  width:100%;
  gap:10px;
  position:relative;
  justify-content:center;
  padding:0 96px;
  overflow:visible;
}
.ep-share-dots-row .ep-pdp-dots-track{
  flex:0 1 auto;
  justify-content:center;
  margin:0 auto;
  width:auto;
}
.ep-share-mobile-wrap{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  align-items:center;
  gap:10px;
  z-index:2;
}
.ep-share-mobile-like{
  display:flex;
  align-items:center;
}
.ep-share-mobile-like .epf-like{
  margin:0;
  display:inline-flex;
}
.ep-pdp-dots{
  overflow:visible !important;
}

.ep-share-desktop-wrap{
  display:inline-flex;
  align-items:center;
  margin-left:8px;
  z-index:2;
  visibility:visible;
  opacity:1;
}
.ep-share-desktop-wrap.is-end{
  margin-left:auto;
}
.ep-share-like-row .ep-share-desktop-wrap{
  margin-left:0;
}

.single-product .ep-pdp-title-row--desktop{
  overflow:visible;
}

#ep-share-root{
  position:fixed;
  inset:0;
  z-index:999999;
  pointer-events:none;
}
#ep-share-root[hidden]{
  display:none;
}
#ep-share-root.is-open{
  pointer-events:auto;
}

.ep-share-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35);
  opacity:0;
  transition: opacity 0.2s ease;
}
#ep-share-root.is-open .ep-share-backdrop{
  opacity:1;
}

.ep-share-panel{
  position:fixed;
  background:#fff;
  border-radius:14px;
  box-shadow:0 12px 32px rgba(0,0,0,0.18);
  padding:16px;
  max-width:360px;
  width:90%;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.ep-share-panel.is-active{
  opacity:1;
  pointer-events:auto;
}

.ep-share-panel--desktop{
  transform: translateY(6px);
}
.ep-share-panel--desktop.is-active{
  transform: translateY(0);
}

.ep-share-panel--mobile{
  left:0;
  right:0;
  bottom:0;
  border-radius:18px 18px 0 0;
  max-width:none;
  width:100%;
  transform: translateY(100%);
}
.ep-share-panel--mobile.is-active{
  transform: translateY(0);
}

.ep-share-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.ep-share-title{
  font-size:16px;
  margin:0;
}
.ep-share-close{
  cursor:pointer;
}

.ep-share-card{
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid #eee;
  border-radius:12px;
  padding:10px;
  margin-bottom:14px;
}
.ep-share-card__image{
  width:64px;
  height:64px;
  object-fit:cover;
  border-radius:10px;
  background:#f4f4f4;
}
.ep-share-card__title{
  font-size:14px;
  line-height:1.3;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.ep-share-actions{
  display:flex;
  flex-wrap:nowrap;
  gap:8px;
  justify-content:space-between;
  overflow-x:auto;
}
.ep-share-action{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:11px;
  color:#222;
  flex:1 1 0;
  min-width:0;
  max-width:72px;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance:none;
  appearance:none;
}
.ep-share-action:active,
.ep-share-action:focus,
.ep-share-action:focus-visible{
  background:transparent;
  box-shadow:none;
  outline:none;
}
.ep-share-action__icon{
  width:48px;
  height:48px;
  border-radius:999px;
  background:#f3f3f3;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:12px;
}
.ep-share-action[data-action="pinterest"] .ep-share-action__icon{
  background:#e60023;
  color:#fff;
}
.ep-share-action[data-action="facebook"] .ep-share-action__icon{
  background:#1877f2;
  color:#fff;
}
.ep-share-action__icon svg{
  width:36px;
  height:36px;
  display:block;
}
.ep-share-actions{
  -webkit-tap-highlight-color: transparent;
}
.ep-share-action:focus-visible .ep-share-action__icon{
  filter:none;
}
.ep-share-action:focus .ep-share-action__icon,
.ep-share-action:active .ep-share-action__icon{
  background:#f3f3f3;
  box-shadow:none;
}
.ep-share-action__label{
  white-space:nowrap;
}

.ep-share-toast{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  background:#111;
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:12px;
  opacity:0;
  transition: opacity 0.2s ease;
}
.ep-share-toast.is-visible{
  opacity:1;
}

body.ep-share-open{
  overflow:hidden;
}
body.ep-share-open .ep-mvp-bar{
  display:none !important;
}

@media (max-width: 980px){
  .ep-share-panel--mobile{
    padding:18px 18px 24px;
  }
}
.ep-share-like-row{
  display:flex;
  align-items:center;
  gap:8px;
  position:relative;
}
.single-product .ep-pdp-like{
  display:flex;
  align-items:center;
  overflow:visible;
}
.single-product .ep-pdp-like .kt-inside-inner-col{
  overflow:visible;
}
.single-product .ep-pdp-like .kt-inside-inner-col.ep-share-like-row{
  display:flex !important;
  align-items:center;
  gap:8px;
}
.ep-share-desktop-wrap{
  visibility:visible;
  opacity:1;
}
