.ptk-bookmark-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(196, 154, 61, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #e8e1d2;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: 0.18s ease;
}

.ptk-bookmark-toggle:hover {
  background: rgba(196, 154, 61, 0.15);
  border-color: rgba(196, 154, 61, 0.65);
  color: #f5d061;
}

.ptk-bookmark-toggle.is-active {
  background: #c49a3d;
  border-color: #c49a3d;
  color: #111;
}

.ptk-bookmark-toggle.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

/* =========================================================
   📌 PROFILE FAVORITES - SEGMENT CONTROL PREMIUM FINAL
========================================================= */
.ptk-favorites-subtabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0 22px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(196,154,61,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.ptk-favorites-subtab {
  position: relative;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none !important;
  color: #d9d1c1;
  background: transparent;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1px;
  transition: all 0.2s ease;
}

.ptk-favorites-subtab:hover {
  color: #f5d061;
  background: rgba(255,255,255,0.05);
  border-color: rgba(196,154,61,0.18);
}

.ptk-favorites-subtab.is-active {
  color: #16110a;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.32), rgba(255,255,255,0) 42%),
    linear-gradient(135deg, #f5d061 0%, #c49a3d 100%);
  border-color: rgba(245,208,97,0.75);
  box-shadow:
    0 10px 24px rgba(196,154,61,0.26),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

.ptk-favorites-subtab-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  line-height: 1;
}

.ptk-favorites-subtab-count {
  position: static;
  min-width: 28px;
  height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,208,97,0.13);
  border: 1px solid rgba(245,208,97,0.22);
  color: #f5d061;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.ptk-favorites-subtab.is-active .ptk-favorites-subtab-count {
  background: rgba(0,0,0,0.22);
  border-color: rgba(0,0,0,0.18);
  color: #111;
}

@media (max-width: 420px) {
  .ptk-favorites-subtabs {
    grid-template-columns: 1fr;
  }

  .ptk-favorites-subtab {
    justify-content: space-between;
  }
}

.ptk-bookmark-icon {
  line-height: 1;
}

.ptk-bookmark-text {
  line-height: 1;
}