/* Navigation Menu Sticky */
.sticky-nav {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: #000; /* nền đen */
  border-bottom: 3px solid #e4ff00; /* viền vàng neon */
  padding: 6px 20px; /* nhỏ hơn, tránh quá cao */
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

/* tránh menu che nội dung */
body {
  padding-top: 68px; /* vừa khớp chiều cao menu */
}

/* style cho link trong menu */
.sticky-nav a {
  color: #e4ff00;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px; /* nhỏ gọn hơn */
  margin: 0 8px;
}

.sticky-nav a:hover {
  color: #fff;
}

/* Nút CTA */
.cta-button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* Danh sách menu chính */
.wp-block-navigation ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px; /* khoảng cách đều */
}

/* Link trong menu */
.wp-block-navigation a {
  padding: 2px 2px;
  display: block;
  border-bottom: none;
  font-size: 14px;
}

/* Nút toàn chiều rộng (mobile, footer, v.v.) */
.full-width-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  background: #e4ff00;
  color: #000;
  font-weight: 700;
  border-radius: 0;
}

/* Cấu trúc header */
.site-header .wp-block-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

/* Logo */
.sticky-nav img {
  max-height: 36px;
  height: auto;
  width: auto;
}

/* ========== Responsive ========== */
/* 💻 Laptop nhỏ (1366px trở xuống) */
@media (max-width: 1440px) {
  .sticky-nav {
    padding: 2px 2px;
  }
  .sticky-nav a {
    font-size: 12px;
  }
  .wp-block-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  body {
    padding-top: 166px;
  }

}
/* Mobile */
@media (max-width: 768px) {
  .sticky-nav {
    flex-direction: column;
    padding: 10px 12px;
  }
  .wp-block-navigation ul {
    flex-direction: column;
    gap: 6px;
  }
  .wp-block-navigation a {
    border-bottom: 1px solid #222;
    text-align: center;
  }
  body {
    padding-top: 80px;
  }
}
/* ===== Crown Action Bar (Crown Auto – 3 nút: Call / Text / Book) ===== */
.crown-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #e4ff00; /* nền vàng neon */
  padding: 6px 0;
  z-index: 99999;
  box-shadow: 0 -3px 10px rgba(0,0,0,.3);
  flex-wrap: nowrap;
}

/* Nút cơ bản */
.action-btn {
  font-weight: 700;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 16px;
  transition: all .3s;
  box-shadow: 0 3px 8px rgba(0,0,0,.3);
  white-space: nowrap;
  background: #fff;
  color: #000;
}

/* Hiệu ứng hover */
.action-btn:hover {
  background: #000;
  color: #e4ff00;
  transform: translateY(-2px);
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .crown-action-bar {
    gap: 6px;
    padding: 8px 0;
  }
  .action-btn {
    flex: 1;
    text-align: center;
    font-size: 15px;
    padding: 10px 0;
  }
}

/* ===== Accessibility & Overflow Fix ===== */
html, body { overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  .cta-button { transition: none; transform: none; }
}

