.ard-sosmed::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: -1;
}

.ard-sosmed.open::before {
  opacity: 1;
  pointer-events: auto;
}

.ard-sosmed {
  position: fixed;
  z-index: 9999;
}

/* hamburger */
.ard-sosmed .hamburg {
  width: 70px;
  height: 70px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
  border: none !important;
  outline: none !important;
  padding: 0;
  position: relative;
  z-index: 10;
  overflow: visible;
}

.hamburg-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  transition: 0.3s ease;
}

/* X overlay */
.hamburg-x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
  transition: 0.3s ease;
  pointer-events: none;
}

.hamburg-x::before,
.hamburg-x::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
}

.hamburg-x::before {
  transform: rotate(45deg);
}

.hamburg-x::after {
  transform: rotate(-45deg);
}

/* saat open */
.ard-sosmed.open .hamburg-icon {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

.ard-sosmed.open .hamburg-x {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* pusat orbit */
.ard-sosmed ul {
  position: absolute;
  left: 35px;
  top: 60px;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* item menu */
.ard-sosmed ul li {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.35s ease;
}

.ard-sosmed.open ul li {
  opacity: 1;
  pointer-events: auto;
}

/* icon li background hitam + border gold */
.ard-sosmed ul li a {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid transparent;
  border-radius: 20%;

  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(
      135deg,
      #fff3b0 0%,
      #f7c65f 20%,
      #b8860b 45%,
      #ffe08a 70%,
      #8b6508 100%
    ) border-box;

  box-shadow:
    inset 0 0 0 1px rgba(255, 220, 120, 0.12),
    0 0 0 1px rgba(120, 80, 10, 0.35);

  filter: none !important;
  overflow: hidden;
}

.ard-sosmed ul li img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  background: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.ard-sosmed ul li div {
  margin-top: 5px;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  text-shadow: none !important;
}

/* desktop - 5 li sedikit lebih renggang */
.ard-sosmed.open ul li:nth-child(1) {
  transform: translate(-50%, -50%) translate(0px, -112px) scale(0.88);
}

.ard-sosmed.open ul li:nth-child(2) {
  transform: translate(-50%, -50%) translate(65px, -64px) scale(0.88);
}

.ard-sosmed.open ul li:nth-child(3) {
  transform: translate(-50%, -50%) translate(98px, 0px) scale(0.88);
}

.ard-sosmed.open ul li:nth-child(4) {
  transform: translate(-50%, -50%) translate(65px, 64px) scale(0.88);
}

.ard-sosmed.open ul li:nth-child(5) {
  transform: translate(-50%, -50%) translate(0px, 112px) scale(0.88);
}

/* mobile */
@media (max-width: 480px) {
  .ard-sosmed .hamburg {
    width: 82px;
    height: 82px;
    transform: translateY(68px);
  }

  .ard-sosmed .hamburg-icon {
    width: 82px;
    height: 82px;
  }

  .ard-sosmed ul {
    left: 41px;
    top: 130px;
  }

  .ard-sosmed ul li a {
    width: 58px;
    height: 58px;
  }

  .ard-sosmed ul li img {
    width: 48px;
    height: 48px;
  }

  .ard-sosmed.open ul li:nth-child(1) {
    transform: translate(-50%, -50%) translate(0px, -90px) scale(0.78);
  }

  .ard-sosmed.open ul li:nth-child(2) {
    transform: translate(-50%, -50%) translate(60px, -56px) scale(0.78);
  }

  .ard-sosmed.open ul li:nth-child(3) {
    transform: translate(-50%, -50%) translate(88px, 0px) scale(0.78);
  }

  .ard-sosmed.open ul li:nth-child(4) {
    transform: translate(-50%, -50%) translate(60px, 56px) scale(0.78);
  }

  .ard-sosmed.open ul li:nth-child(5) {
    transform: translate(-50%, -50%) translate(0px, 90px) scale(0.78);
  }
}