body {
    font-family: "Gugi", sans-serif;
    color: #ffffff;
    background-color: #000;
    overflow-x: hidden;
}

.input-error {
  border-color: #dc3545 !important;
  background: rgba(220,53,69,0.15) !important;
}

.error-text {
  color: #dc3545;
  font-size: 13px;
  margin-top: 4px;
}


.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-box {
  background: #fff;
  padding: 30px 24px;
  border-radius: 18px;
  text-align: center;
  width: 90%;
  max-width: 360px;
  animation: pop 0.35s ease;
  color: #000;
}

.checkmark {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #198754;
  color: #fff;
  font-size: 34px;
  line-height: 64px;
}

.success-box h3 {
  margin-top: 10px;
  font-weight: 700;
}

.success-box p {
  color: #555;
  font-size: 14px;
  margin: 8px 0 16px;
}

.success-box button {
  border: none;
  padding: 12px 22px;
  border-radius: 12px;
  background: #ffb347;
  font-weight: 700;
  cursor: pointer;
}

@keyframes pop {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ===== GUEST PAGE ONLY ===== */
.guest-page .hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.guest-page .bg-box {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.guest-page .bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== GLASS CARD ===== */
.glass {
  position: relative;
  z-index: 5;
  max-width: 520px;
  width: 100%;
  margin: auto;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.45)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* ===== INPUTS ===== */
.glass input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.glass input::placeholder {
  color: rgba(255,255,255,0.6);
}

.glass input:focus {
  border-color: #ffb347;
  background: rgba(255,255,255,0.12);
}

/* ===== TIME ROW ===== */
.time-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ===== GUEST BUTTONS ===== */
.guest-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guest-row button {
  flex: 1 0 18%;
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.guest-row button:hover {
  background: rgba(255,179,71,0.25);
  border-color: #ffb347;
}

/* ===== CTA BUTTON ===== */
.reserve-btn {
  margin-top: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg,#ff9f43,#ffb347);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s;
}

.reserve-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(255,179,71,0.45);
}

.guest-row button.active {
  background: #ffb347;
  color: #000;
  border-color: #ffb347;
}

.calendar-box {
  color: #111;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.cal-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-bottom: 10px;
}

.cal-header button {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

.cal-week,
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.cal-week span {
  font-weight: 600;
  font-size: 13px;
  color: #555;
}

.cal-days span {
  margin: 4px auto;
  width: 50px;
  height: 42px;
  line-height: 42px;
  border-radius: 20px;
  cursor: pointer;
}

.cal-days span.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.cal-days span.today {
  background: #0f5132;
  color: #fff;
}

.cal-days span.selected {
  background: #b9a55a;
  color: #fff;
}

/* Yakshanba */
.cal-days span.sunday {
  border: 1px dashed rgba(220, 53, 69, 0.6);
  color: #dc3545;
  font-weight: 600;
}

/* Agar yakshanba bugungi kun bo‘lsa */
.cal-days span.sunday.today {
  background: #dc3545;
  color: #fff;
}

/* Agar yakshanba tanlangan bo‘lsa */
.cal-days span.sunday.selected {
  background: #b02a37;
  color: #fff;
}

.time-box {
  margin-top: 18px;
}

.time-title {
  font-weight: 600;
  margin: 12px 0 6px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-slots button {
  padding: 10px 0;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #f7f7f7;
  font-weight: 600;
  cursor: pointer;
}

.time-slots button.active {
  background: #0f5132;
  color: #fff;
}

.time-slots button.disabled {
  background: #eee;
  color: #aaa;
  cursor: not-allowed;
}

.input-error {
  border-color: #dc3545 !important;
  background: rgba(220,53,69,0.12) !important;
}

.error-text {
  color: #dc3545;
  font-size: 13px;
  margin-top: 4px;
}

<input id="age" type="number" placeholder="Yoshingiz" maxlength="2" />

<style>
  /* Mishkalarni yashirish */
  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  /* Firefox uchun */
  input[type="number"] {
    -moz-appearance: textfield;
  }
</style>

  
/* ===== MOBILE ===== */
@media (max-width: 576px) {
  .glass {
    padding: 22px;
    border-radius: 16px;
  }
}