/* ===== Show More (futurista / 3D) ===== */

.resellerMore{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top: 16px;
}

.moreBtn{
  position: relative;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(110,168,255,.28);
  background: linear-gradient(180deg, rgba(110,168,255,.14), rgba(255,255,255,.04));
  color: rgba(255,255,255,.95);
  cursor: pointer;
  transform-style: preserve-3d;
  box-shadow:
    0 14px 30px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
}

.moreBtn:hover{
  transform: translateY(-2px) rotateX(6deg);
  border-color: rgba(110,168,255,.55);
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    0 0 0 6px rgba(110,168,255,.10),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.moreBtn:active{
  transform: translateY(0px) rotateX(0deg) scale(.98);
}

.moreBtn__text{
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 13px;
}

.moreBtn__hint{
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10, 14, 22, .45);
  opacity: .9;
}

.moreBtn__shine{
  position:absolute;
  inset:-40% -60%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.20), transparent 40%),
              linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  transform: translateX(-40%) rotate(8deg);
  opacity: 0;
  transition: opacity .25s ease, transform .45s ease;
  pointer-events:none;
}

.moreBtn:hover .moreBtn__shine{
  opacity: 1;
  transform: translateX(10%) rotate(8deg);
}

.lessBtn{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: .18s ease;
}

.lessBtn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
