/* ===== Hokto Site Custom Overrides ===== */

/* Hide Peraichi editor-only elements */
.only-edit,
.only-edit-notification-icon,
.pera1-ghost {
  display: none !important;
}

/* Password overlay for employee page */
.password-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.password-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.password-box {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.password-box img {
  max-width: 200px;
  margin-bottom: 24px;
}
.password-box h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
  font-weight: bold;
}
.password-box p {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
}
.password-box input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.password-box input:focus {
  border-color: #e58100;
}
.password-box button {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  background: #e58100;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.password-box button:hover {
  background: #cc7200;
}
.password-box .error-msg {
  color: #e8412e;
  font-size: 13px;
  margin-top: 12px;
  display: none;
}

/* Swiper slider */
.hero-swiper {
  width: 100% !important;
  height: 70vh !important;
  min-height: 400px !important;
  max-height: 700px !important;
  overflow: hidden !important;
  position: relative !important;
}
.hero-swiper .swiper-slide {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.hero-swiper .swiper-slide-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: #fff !important;
}
.swiper-pagination-bullet-active {
  background: #e58100 !important;
}

/* Price table overrides (already inline but consolidate) */
.price-table-container {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
