/* Ensure header is positioning context */
header,
.site-header,
.main-header {
  position: relative;
}

/* Wrapper positioned in header bar */
.custom-header-book-now {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

/* Button styling */
.custom-book-now-btn {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, #000000, #1b1b1b);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  border-radius: 10px; /* CORNER ROUND */
  border: 1px solid #2a2a2a;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.custom-book-now-btn:hover {
  background: linear-gradient(135deg, #111111, #000000);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.8);
  color: #ffffff;
}

/* Mobile safety: hide or reposition if needed */
@media (max-width: 768px) {
  .custom-header-book-now {
    right: 12px;
  }
}