.tp-hamburger {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10001;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #0b5ed7;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  cursor: pointer;
}

.tp-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: 0.3s;
}

.tp-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.tp-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.tp-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.tp-menu {
  position: fixed;
  top: 0;
  right: -320px;
  z-index: 10000;
  width: 280px;
  max-width: 86%;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 18px rgba(0,0,0,0.18);
  transition: right 0.3s ease;
}

.tp-menu.is-open {
  right: 0;
}

.tp-menu-inner {
  padding: 78px 22px 24px;
}

.tp-menu-title {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  color: #0b3d75;
}

.tp-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #e5edf5;
  color: #123;
  font-weight: 600;
  text-decoration: none;
}

.tp-menu a:hover {
  color: #0b5ed7;
}

.tp-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.35);
}

.tp-menu-overlay.is-open {
  display: block;
}

@media (max-width: 768px) {
  .tp-hamburger {
    top: 12px;
    right: 12px;
  }
}