:root {
  --bg: #f5f1ec;
  --card: #ffffff;
  --text: #1f1a17;
  --muted: #73685d;
  --line: #e4d8cc;
  --accent: #9d6f4f;
  --accent-dark: #7f563b;
  --shadow: 0 12px 30px rgba(22, 16, 12, 0.08);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #eee5db 0%, var(--bg) 260px);
  color: var(--text);
  padding-bottom: 92px;
}

a { color: inherit; text-decoration: none; }
.app-shell { max-width: 520px; margin: 0 auto; min-height: 100vh; }

.hero { padding: 18px; }
.hero-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}
h1 {
  margin: 0;
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.lead {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.quick-card {
  background: linear-gradient(180deg, #fff, #faf6f1);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}
.quick-label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.quick-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.content { padding: 0 18px 18px; }
.tab-section { display: none; }
.tab-section.active { display: block; }
.section-head { margin: 8px 0 14px; }
.section-head h2 {
  margin: 0 0 6px;
  font-size: 24px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 16px 15px;
  margin-bottom: 12px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.card p {
  margin: 0;
  color: #4b433d;
  line-height: 1.6;
  font-size: 14px;
}
.card.highlight {
  background: linear-gradient(180deg, #fff, #fbf6f0);
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  z-index: 100;
}
.nav-item {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
}
.nav-item .icon { font-size: 18px; }
.nav-item.active {
  color: var(--accent-dark);
  background: #f5ece4;
}
.admin-link {
  text-align: center;
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
}

.admin-body {
  background: #f6f2ed;
  padding: 18px;
}
.admin-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.admin-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 16px;
}
.admin-panel h1, .admin-panel h2 {
  margin-top: 0;
}
.admin-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 860px) {
  .admin-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
}
label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
}
input[type="text"], input[type="url"], input[type="email"], textarea {
  width: 100%;
  border: 1px solid #d7cabe;
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fffdfb;
}
textarea {
  min-height: 96px;
  resize: vertical;
}
button.primary, .btn, input[type="submit"] {
  appearance: none;
  border: 0;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
}
.btn.secondary {
  background: #efe5db;
  color: var(--accent-dark);
}
.notice {
  padding: 12px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: #eef8ef;
  color: #2e6640;
  border: 1px solid #cde5d1;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.topbar a {
  color: var(--accent-dark);
  font-weight: 700;
}
.hr {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}
.small {
  color: var(--muted);
  font-size: 13px;
}
.item-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 12px;
  background: #fffaf6;
}
.login-card {
  max-width: 440px;
  margin: 8vh auto 0;
}
code.inline {
  background: #f2ebe3;
  padding: 2px 6px;
  border-radius: 6px;
}

.guest-booking-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 14px;
  min-height: 210px;
  background: #ddd;
}
.guest-room-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.guest-booking-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.68) 100%);
  color: #fff;
}
.guest-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.9;
}
.guest-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  color: #fff;
}
.guest-subtitle {
  margin: 8px 0 0;
  font-size: 14px;
  opacity: 0.95;
}
.booking-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 10px;
}
.booking-mini-card {
  background: linear-gradient(180deg, #fff, #faf6f1);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}
.booking-mini-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.3;
}
.mini-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.mini-muted {
  display: block;
  margin-top: 8px;
  color: var(--accent-dark);
  font-size: 12px;
}
.location-card {
  overflow: hidden;
}
.location-image-wrap {
  margin: -16px -16px 14px;
}
.location-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}
.map-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-dark);
  font-weight: 700;
}
@media (max-width: 420px) {
  .booking-summary-grid {
    grid-template-columns: 1fr;
  }
}


.top-spaced {
  padding-top: 18px;
}
.home-card {
  overflow: hidden;
  padding: 0;
}
.home-image-wrap {
  margin: 0;
}
.home-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.home-copy {
  padding: 18px;
}
.home-grid {
  margin-top: 0;
}
.bottom-nav-six {
  grid-template-columns: repeat(6, 1fr);
}
.bottom-nav-six .nav-item {
  font-size: 10px;
  padding-left: 2px;
  padding-right: 2px;
}
.bottom-nav-six .nav-item .icon {
  font-size: 16px;
}
@media (max-width: 420px) {
  .bottom-nav-six .nav-item {
    font-size: 9px;
  }
}


.card-editor-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.cards-manager .card-editor + .card-editor {
  margin-top: 12px;
}


.app-main {
  padding-bottom: 18px;
}
.page-section {
  scroll-margin-top: 18px;
  margin-bottom: 28px;
}
.subsection-head {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  margin: 22px 0 12px;
  font-weight: 700;
}
.bottom-nav-five {
  grid-template-columns: repeat(5, 1fr);
}
.bottom-nav-four {
  grid-template-columns: repeat(4, 1fr);
}
.bottom-nav {
  gap: 0;
}
.nav-item {
  text-decoration: none;
}
.nav-item .icon {
  width: 20px;
  height: 20px;
  display: block;
}
.nav-item .icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
@media (max-width: 420px) {
  .bottom-nav-five .nav-item {
    font-size: 9px;
  }
}


.tab-section { display: none; }
.tab-section.active { display: block; }
.page-section { margin-bottom: 0; }
.nav-item {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-item .icon svg {
  stroke: currentColor;
}


.admin-top-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.admin-top-link {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 14px;
  background: #efe5db;
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: none;
}
.admin-top-link.active {
  background: var(--accent);
  color: #fff;
}


.home-feature-card {
  overflow: hidden;
  padding: 0;
  margin-top: 14px;
}
.home-feature-image-wrap {
  margin: 0;
}
.home-feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}
.home-feature-copy {
  padding: 18px;
}
.eyebrow-dark {
  color: #4e4540;
}
.home-feature-headline {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.home-feature-text {
  margin: 0;
  color: #4b433d;
  line-height: 1.65;
  font-size: 15px;
}


.card-editor-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.home-feature-image-wrap {
  position: relative;
}
.home-reservation-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.16) 100%);
  color: #fff;
}
.home-reservation-login {
  font-size: 16px;
  font-weight: 500;
}
.home-reservation-status {
  text-align: right;
  font-size: 14px;
  line-height: 1.35;
}
.home-reservation-status span {
  display: block;
  opacity: 0.95;
}
.home-reservation-status strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.home-reservation-bottom {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.home-reservation-dear {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}
.home-reservation-name {
  display: block;
  font-size: 36px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
}
@media (max-width: 480px) {
  .home-reservation-status {
    font-size: 12px;
  }
  .home-reservation-status strong {
    font-size: 13px;
  }
  .home-reservation-dear {
    font-size: 18px;
  }
  .home-reservation-name {
    font-size: 28px;
  }
}

select { width: 100%; border: 1px solid #d7cabe; border-radius: 14px; padding: 12px 14px; font: inherit; background: #fffdfb; }


:root {
  --bg: #f7f7f7;
  --surface: rgb(255,255,255);
  --muted: #d0d0d0;
  --text: #2a2a2a;
  --accent: #2a2a2a;
  --accent-dark: #2a2a2a;
  --line: #d0d0d0;
}

body {
  background: var(--bg) !important;
  color: var(--text) !important;
}

.app-shell {
  background: var(--bg);
}

.hero-card,
.card,
.quick-card,
.booking-mini-card,
.admin-panel,
.notice,
.login-card,
.topbar,
.bottom-nav {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-card,
.card,
.quick-card,
.booking-mini-card,
.notice,
.bottom-nav,
.topbar {
  border: 1px solid var(--line);
  background: var(--surface);
}

.quick-label,
.small,
.mini-label,
.mini-muted,
.section-head p,
.lead,
.home-feature-text,
p {
  color: var(--text);
}

.eyebrow,
.eyebrow-dark,
.subsection-head {
  color: var(--muted) !important;
}

h1, h2, h3, h4, h5, h6, strong {
  color: var(--text);
}

input,
select,
textarea,
button,
.btn {
  border-radius: 0 !important;
}

input,
select,
textarea {
  border: 1px solid var(--line) !important;
  background: var(--surface) !important;
  color: var(--text) !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: none !important;
}

button.primary,
.btn.primary,
a.primary,
.map-link,
.bottom-nav .nav-item.active {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

.bottom-nav {
  background: var(--surface) !important;
}

.bottom-nav .nav-item {
  border-radius: 0 !important;
  color: var(--text);
}

.bottom-nav .nav-item.active {
  background: var(--accent) !important;
}

.bottom-nav .nav-item .icon svg {
  stroke: currentColor;
}

.home-feature-card,
.home-card,
.guest-booking-card,
.location-card {
  border-radius: 0 !important;
  overflow: hidden;
}

.home-reservation-top,
.guest-booking-overlay {
  background: linear-gradient(180deg, rgba(35,35,35,0.78) 0%, rgba(35,35,35,0.38) 100%);
}

.sidebar-link,
.admin-top-link,
.btn,
.quick-card,
.booking-mini-card,
.card,
.item-box {
  border-radius: 0 !important;
}

button,
.btn {
  background: #f2f2f2 !important;
  color: #232323 !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 0 !important;
}

button:hover,
.btn:hover {
  background: #eaeaea !important;
}


.guest-overlay-white,
.guest-booking-overlay .guest-kicker,
.guest-booking-overlay .guest-title,
.guest-booking-overlay .guest-subtitle {
  color: #fff !important;
}

.logout-wide-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  background: #d9d9d9 !important;
  color: #232323 !important;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #cfcfcf;
  margin-top: 16px;
  border-radius: 0 !important;
}

.logout-wide-btn:hover {
  background: #cfcfcf !important;
  color: #232323 !important;
}

#login .login-card input[type="text"],
#login .login-card input[type="password"],
#login .login-card .form-control {
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
}

#login .login-card .row,
#login .login-card form {
  align-items: stretch;
}

.bottom-nav .nav-item[data-target="login"] .icon,
.bottom-nav .nav-item[data-target="login"] .icon svg {
  stroke: currentColor;
}

.bottom-nav .nav-item[data-target="login"] .label::after {
  content: "";
}


.guest-timer-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(35, 35, 35, 0.72);
  color: #fff;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.18);
  text-align: right;
  z-index: 3;
}

.guest-timer-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.guest-timer-value {
  display: block;
  font-size: 13px;
  line-height: 1.2;
}

#login .admin-grid > div {
  width: 100%;
}

#login .admin-grid input[type="text"],
#login .admin-grid input[type="password"] {
  min-height: 48px;
  width: 100%;
  box-sizing: border-box;
}


.guest-timer-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(180deg, rgba(25,25,25,0.30) 0%, rgba(25,25,25,0.60) 100%);
  color: #fff;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  text-align: right;
  z-index: 3;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.guest-timer-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 2px;
}

.guest-timer-value {
  display: block;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 800;
}

.home-feature-headline {
  font-size: 28px !important;
  line-height: 1.15;
  font-weight: 800;
}

@media (max-width: 640px) {
  .home-feature-headline {
    font-size: 24px !important;
  }
}


.guest-timer-value {
  color: #39b36b !important;
}

.maps-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: #2d6cdf !important;
  padding: 0 !important;
  border: 0 !important;
  text-decoration: none;
  font-weight: 700;
}

.maps-inline-link:hover {
  color: #1f56b5 !important;
  background: transparent !important;
  text-decoration: underline;
}

.maps-inline-link .pin-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.maps-inline-link .pin-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.restaurant-hero-card {
  margin-bottom: 14px;
}

.restaurant-hero-copy h1 {
  font-size: 30px;
  line-height: 1.1;
}

.restaurant-hours-grid .quick-card {
  min-height: 100px;
}

.restaurant-cards .card {
  background: linear-gradient(180deg, #fff, #fbfbfb);
}


.sidebar-version {
  margin-top: auto;
  padding: 1rem .5rem 0;
  opacity: .65;
  font-size: .72rem;
}


/* v45 frontoffice navigation + restaurant */
.bottom-nav.bottom-nav-five {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  z-index: 9999;
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
}

.bottom-nav.bottom-nav-five .nav-item {
  min-width: 0;
  visibility: visible;
  opacity: 1;
}

.bottom-nav.bottom-nav-five .nav-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.bottom-nav.bottom-nav-five .nav-item .icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.app-shell {
  padding-bottom: 96px;
}

.maps-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: #2d6cdf !important;
  padding: 0 !important;
  border: 0 !important;
  text-decoration: none;
  font-weight: 700;
}

.maps-inline-link:hover {
  color: #1f56b5 !important;
  background: transparent !important;
  text-decoration: underline;
}

.maps-inline-link .pin-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.maps-inline-link .pin-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.restaurant-hours-card {
  margin-bottom: 14px;
}

.restaurant-action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.restaurant-action-form {
  margin: 0;
}

.restaurant-action-btn {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #ffffff, #f7f3ee);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  border-radius: var(--radius);
  text-align: left;
}

.restaurant-action-btn.breakfast-btn.active {
  background: linear-gradient(180deg, #eef8ef, #e3f3e4);
  border-color: #b9d8bb;
}

.restaurant-action-title {
  display: block;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.restaurant-action-subtitle {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.restaurant-feature-card .home-feature-image-wrap,
.restaurant-feature-card .home-feature-image {
  border-radius: 18px;
}


/* v46 restaurant button adjustments */
.restaurant-action-title {
  color: #1f1a17 !important;
}

.restaurant-action-subtitle {
  color: #4b433d !important;
}

.restaurant-action-btn.breakfast-btn {
  background: linear-gradient(180deg, #fff3d6, #f4d68a);
  border-color: #e7c466;
}

.restaurant-action-btn.breakfast-btn.active {
  background: linear-gradient(180deg, #fdf6dd, #f7efc6);
  border-color: #e5d8a4;
}

.restaurant-action-btn.menu-btn {
  background: linear-gradient(180deg, #ffffff, #f7f3ee);
}


/* v47 restaurant + me */
.restaurant-hours-strip {
  background: #e6e6e6;
  border: 1px solid #d2d2d2;
  box-shadow: none;
}

.restaurant-hours-strip p {
  color: #232323;
}

.restaurant-action-btn {
  margin-bottom: 12px;
}

.restaurant-action-btn.breakfast-btn {
  background: linear-gradient(180deg, #ffffff, #f7f3ee);
  border-color: var(--line);
}

.restaurant-action-btn.breakfast-btn.active {
  background: linear-gradient(180deg, #eef8ef, #f6fbf6);
  border-color: #cfe3cf;
}

.breakfast-active-text {
  color: #1f6b3a !important;
}

.logout-link-text {
  color: #2d6cdf !important;
  background: transparent !important;
  font-weight: 700;
  text-decoration: none;
}

.logout-link-text:hover {
  color: #1f56b5 !important;
  text-decoration: underline;
}

.restaurant-action-subtitle {
  color: #3d3d3d !important;
}


/* v48 restaurant revisions */
.restaurant-action-grid {
  display: none;
}

.restaurant-order-btn,
.restaurant-order-btn:link,
.restaurant-order-btn:visited {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f7f3ee);
  box-shadow: var(--shadow);
  padding: 18px 16px;
  border-radius: var(--radius);
  text-align: left;
  margin-bottom: 14px;
  color: inherit;
}

.restaurant-order-btn.active {
  background: linear-gradient(180deg, #eef8ef, #f6fbf6);
  border-color: #cfe3cf;
}

.restaurant-order-btn-title {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #1f1a17;
  margin-bottom: 4px;
}

.restaurant-order-btn-date {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1f1a17;
  margin-bottom: 6px;
}

.restaurant-order-btn-subtitle {
  display: block;
  font-size: 13px;
  color: #3d3d3d;
}

.restaurant-hours-strip {
  background: #e6e6e6;
  border: 1px solid #d2d2d2;
  box-shadow: none;
}

.restaurant-hours-strip p {
  color: #232323;
}

.restaurant-action-btn,
.restaurant-action-form {
  margin-bottom: 0;
}

.logout-link-text {
  color: #2d6cdf !important;
  font-weight: 700;
  text-decoration: none;
  background: transparent !important;
}

.logout-link-text:hover {
  color: #1f56b5 !important;
  text-decoration: underline;
}


/* v51 housekeeping + menu */
.menu-item-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.menu-item-price {
  white-space: nowrap;
  font-size: 16px;
}

.housekeeping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.housekeeping-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f7f3ee);
  box-shadow: var(--shadow);
  padding: 14px 12px;
  text-align: left;
  border-radius: 14px;
  font-weight: 700;
  color: #1f1a17;
  cursor: pointer;
}

.housekeeping-btn:hover {
  background: #f5f5f5;
}


.housekeeping-btn {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.housekeeping-btn.active {
  background:#232323;
  color:#fff;
  transform: translateY(1px);
}


/* v53 housekeeping */
.housekeeping-form {
  margin-top: 8px;
}

.housekeeping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.housekeeping-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.housekeeping-btn {
  position: relative;
  appearance: none;
  border: 1px solid #d7d7d7;
  background: linear-gradient(180deg, #ffffff 0%, #f1ede8 100%);
  box-shadow: 0 5px 14px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.75);
  padding: 14px 14px;
  text-align: left;
  border-radius: 16px;
  font-weight: 700;
  color: #1f1a17;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.housekeeping-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 16px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.75);
}

.housekeeping-btn.active {
  background: linear-gradient(180deg, #2b2b2b 0%, #3c3c3c 100%);
  color: #fff;
  border-color: #232323;
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.25);
}

.housekeeping-icon {
  font-size: 18px;
  line-height: 1;
  width: 22px;
  text-align: center;
}

.housekeeping-save-btn {
  margin-top: 14px;
  width: 100%;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 5px 14px rgba(0,0,0,0.12);
}

@media (max-width: 640px) {
  .housekeeping-grid {
    grid-template-columns: 1fr;
  }
}


/* v54 checkbox housekeeping */
.housekeeping-check {
  font-size: 20px;
  line-height: 1;
  width: 22px;
  text-align: center;
  flex: 0 0 22px;
}


/* v55 Bootstrap frontoffice phase 1 */
.content.top-spaced {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px 16px 110px;
}

.bootstrap-hero-card, .bootstrap-info-card, .bootstrap-feature-card, .menu-item-card, .restaurant-hours-card, .restaurant-hours-strip {
  border-radius: 0px !important;
  overflow: hidden;
}

.bootstrap-info-card .card-body,
.restaurant-hours-card .card-body,
.restaurant-hours-strip .card-body {
  padding: 1.1rem 1.1rem;
}

.bootstrap-feature-card .card-body {
  padding: 1rem 1rem 1.15rem;
}

.home-copy,
.restaurant-hero-copy {
  padding: 1.2rem;
}

@media (min-width: 768px) {
  .home-copy,
  .restaurant-hero-copy {
    padding: 1.4rem 1.5rem;
  }
}

.housekeeping-save-btn.btn {
  border-radius: 14px;
}

.form-control {
  border-radius: 12px !important;
  min-height: 46px;
}

.alert {
  border-radius: 14px;
}

.bottom-nav.bottom-nav-five {
  backdrop-filter: blur(8px);
}




.card,
.btn,
.form-control,
.housekeeping-btn,
.restaurant-order-btn {
  border-radius: 0 !important;
}

.card-body,
.home-copy,
.restaurant-hero-copy,
.bootstrap-info-card .card-body,
.bootstrap-feature-card .card-body {
  padding: 5px !important;
}

.btn {
  padding: 5px 8px !important;
}

.housekeeping-btn {
  padding: 5px !important;
  box-shadow: none !important;
}


/* v58 theme switch */
.theme-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.theme-switch {
  position: relative;
  width: 54px;
  height: 30px;
  display: inline-block;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-slider {
  position: absolute;
  inset: 0;
  background: #cfcfcf;
  border: 1px solid #888;
  cursor: pointer;
  transition: .2s;
}

.theme-slider:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  transition: .2s;
}

.theme-switch input:checked + .theme-slider {
  background: #232323;
}

.theme-switch input:checked + .theme-slider:before {
  transform: translateX(24px);
  background: #f5f5f5;
}

body.theme-dark {
  background: #121212 !important;
  color: #f1f1f1 !important;
}

body.theme-dark .card,
body.theme-dark .bootstrap-info-card,
body.theme-dark .bootstrap-feature-card,
body.theme-dark .restaurant-hours-card,
body.theme-dark .restaurant-hours-strip,
body.theme-dark .menu-item-card,
body.theme-dark .home-card {
  background: #1c1c1c !important;
  color: #f1f1f1 !important;
  border-color: #333 !important;
}

body.theme-dark .text-muted,
body.theme-dark .mini-muted,
body.theme-dark .restaurant-order-btn-subtitle,
body.theme-dark .home-feature-text,
body.theme-dark .lead,
body.theme-dark p {
  color: #cfcfcf !important;
}

body.theme-dark .form-control,
body.theme-dark .btn-light,
body.theme-dark .housekeeping-btn {
  background: #232323 !important;
  color: #f1f1f1 !important;
  border-color: #444 !important;
}

body.theme-dark .bottom-nav.bottom-nav-five {
  background: rgba(18,18,18,0.96) !important;
  border-top-color: #333 !important;
}

body.theme-dark .nav-item {
  color: #e7e7e7 !important;
}

body.theme-dark .restaurant-order-btn.btn-info {
  background: #0b5d6b !important;
  border-color: #0b5d6b !important;
  color: #fff !important;
}

body.theme-dark .restaurant-order-btn.btn-success {
  background: #1f6b3a !important;
  border-color: #1f6b3a !important;
  color: #fff !important;
}


/* v59 full frontoffice bootstrap */
.app-shell {
  max-width: 980px;
  margin: 0 auto;
  min-height: 100vh;
}

.content.top-spaced.container {
  padding-top: 10px !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  padding-bottom: 110px !important;
}

.bootstrap-info-card,
.bootstrap-feature-card,
.bootstrap-hero-card,
.menu-item-card,
.restaurant-hours-card,
.restaurant-hours-strip {
  background: #fff !important;
}

.bootstrap-feature-card .card-body,
.bootstrap-info-card .card-body,
.restaurant-hours-card .card-body,
.restaurant-hours-strip .card-body {
  padding: 0.95rem !important;
}

.bootstrap-feature-card h3,
.bootstrap-info-card h3 {
  margin-bottom: .5rem !important;
}

.section-head,
.subsection-head {
  display: none !important;
}

#pravila .card p,
#kam .card p,
#login .card p,
#restavracija .card p,
#home .card p {
  font-size: .95rem;
}

#kam .btn,
#login .btn,
#restavracija .btn {
  border-radius: 0 !important;
}

#kam .home-feature-image-wrap,
#pravila .home-feature-image-wrap,
.bootstrap-feature-card .home-feature-image-wrap {
  margin-bottom: 0;
}


/* v60 bootstrap cleanup layer */
:root {
  --zaplata-bg: #f5f5f5;
  --zaplata-surface: #ffffff;
  --zaplata-text: #232323;
  --zaplata-muted: #666666;
  --zaplata-line: #dddddd;
}

body {
  background: var(--zaplata-bg) !important;
  color: var(--zaplata-text) !important;
  padding-bottom: 92px !important;
}

.app-shell {
  max-width: 1100px !important;
  margin: 0 auto !important;
  min-height: 100vh !important;
}

.content.top-spaced.container {
  max-width: 960px !important;
  padding-top: 8px !important;
  padding-bottom: 108px !important;
}

.card,
.bootstrap-info-card,
.bootstrap-feature-card,
.bootstrap-hero-card,
.menu-item-card,
.restaurant-hours-card,
.restaurant-hours-strip,
.home-card,
.restaurant-feature-card {
  background: var(--zaplata-surface) !important;
  color: var(--zaplata-text) !important;
  border: 1px solid var(--zaplata-line) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.card-body,
.bootstrap-info-card .card-body,
.bootstrap-feature-card .card-body,
.restaurant-hours-card .card-body,
.restaurant-hours-strip .card-body,
.home-copy,
.restaurant-hero-copy {
  padding: 0.75rem !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--zaplata-text) !important;
  letter-spacing: normal !important;
}

.lead,
.text-muted,
.mini-muted,
.restaurant-order-btn-subtitle,
.home-feature-text,
.card p,
.menu-item-card p {
  color: var(--zaplata-muted) !important;
}

.eyebrow,
.eyebrow-dark,
.guest-kicker {
  color: var(--zaplata-text) !important;
  opacity: 0.75;
  letter-spacing: 0.08em !important;
}

.btn,
.form-control,
.form-select,
.housekeeping-btn,
.restaurant-order-btn,
.housekeeping-save-btn {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.form-control,
.form-select {
  min-height: 44px;
  border-color: var(--zaplata-line) !important;
}

.btn-info,
.btn-success,
.btn-dark,
.btn-light,
.btn-outline-dark {
  box-shadow: none !important;
}

.housekeeping-btn {
  background: #ffffff !important;
  border: 1px solid var(--zaplata-line) !important;
  color: var(--zaplata-text) !important;
  min-height: 52px;
}

.housekeeping-btn.active {
  background: #232323 !important;
  color: #ffffff !important;
  border-color: #232323 !important;
}

.housekeeping-check svg,
.housekeeping-icon svg,
.pin-icon svg,
.bottom-nav svg {
  stroke: currentColor !important;
}

.home-image-wrap,
.home-feature-image-wrap,
.guest-room-image {
  border-radius: 0 !important;
  overflow: hidden !important;
}

.guest-booking-overlay {
  padding: 0.9rem !important;
}

.guest-overlay-white,
.guest-booking-overlay .guest-kicker,
.guest-booking-overlay .guest-title,
.guest-booking-overlay .guest-subtitle {
  color: #ffffff !important;
}

.bottom-nav.bottom-nav-five {
  background: rgba(255,255,255,0.98) !important;
  border-top: 1px solid var(--zaplata-line) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.bottom-nav.bottom-nav-five .nav-item {
  color: #444 !important;
  font-weight: 500;
}

.bottom-nav.bottom-nav-five .nav-item.active {
  color: #000 !important;
}

.theme-slider,
.theme-slider:before {
  border-radius: 0 !important;
}

body.theme-dark {
  background: #121212 !important;
  color: #f1f1f1 !important;
}

body.theme-dark .card,
body.theme-dark .bootstrap-info-card,
body.theme-dark .bootstrap-feature-card,
body.theme-dark .bootstrap-hero-card,
body.theme-dark .menu-item-card,
body.theme-dark .restaurant-hours-card,
body.theme-dark .restaurant-hours-strip,
body.theme-dark .home-card,
body.theme-dark .restaurant-feature-card {
  background: #1c1c1c !important;
  color: #f1f1f1 !important;
  border-color: #333 !important;
}

body.theme-dark .lead,
body.theme-dark .text-muted,
body.theme-dark .mini-muted,
body.theme-dark .restaurant-order-btn-subtitle,
body.theme-dark .home-feature-text,
body.theme-dark .card p,
body.theme-dark .menu-item-card p,
body.theme-dark .eyebrow,
body.theme-dark .eyebrow-dark {
  color: #cfcfcf !important;
}

body.theme-dark .form-control,
body.theme-dark .form-select,
body.theme-dark .btn-light,
body.theme-dark .housekeeping-btn,
body.theme-dark .restaurant-order-btn {
  background: #232323 !important;
  color: #f1f1f1 !important;
  border-color: #444 !important;
}

body.theme-dark .bottom-nav.bottom-nav-five {
  background: rgba(18,18,18,0.98) !important;
  border-top-color: #333 !important;
}

body.theme-dark .bottom-nav.bottom-nav-five .nav-item {
  color: #e7e7e7 !important;
}

body.theme-dark .bottom-nav.bottom-nav-five .nav-item.active {
  color: #ffffff !important;
}


/* v61 housekeeping immediate buttons */
.housekeeping-inline-form {
  margin: 0;
}

.housekeeping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.table td,
.table th {
  vertical-align: middle;
}


/* v64 housekeeping refinements */
.equal-btn {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
}

.housekeeping-inline-form {
  display: block;
  width: 100%;
}

.housekeeping-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}


/* v65 DND message */
.housekeeping-dnd-message {
  color: #7a1f1f !important;
  font-weight: 600;
}


/* v67 breakfast toggle like housekeeping */
.breakfast-toggle-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d7d7d7;
  background: linear-gradient(180deg, #ffffff 0%, #f1ede8 100%);
  padding: 12px 14px;
  color: #1f1a17;
  cursor: pointer;
}

.breakfast-toggle-btn.active {
  background: #198754;
  border-color: #198754;
  color: #ffffff;
}

.breakfast-check {
  font-size: 20px;
  line-height: 1;
  width: 22px;
  text-align: center;
  flex: 0 0 22px;
}

.breakfast-toggle-submit {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  color: inherit;
  width: 100%;
  cursor: pointer;
}

.breakfast-toggle-btn.active .restaurant-order-btn-title,
.breakfast-toggle-btn.active .restaurant-order-btn-date,
.breakfast-toggle-btn.active .restaurant-order-btn-subtitle {
  color: #ffffff !important;
}


/* v68 breakfast visual fix */
.breakfast-toggle-btn {
  background: linear-gradient(180deg, #ffffff 0%, #f1ede8 100%);
}

.breakfast-toggle-btn.active {
  background: #198754;
}

.breakfast-toggle-submit {
  background: transparent !important;
  border: none !important;
}

.breakfast-toggle-submit:focus,
.breakfast-toggle-submit:active {
  outline: none;
  box-shadow: none;
  background: transparent !important;
}

.breakfast-toggle-btn.active .breakfast-toggle-submit {
  background: transparent !important;
}


/* v71 housekeeper room status */
.hk-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hk-status-actions form {
  margin: 0;
}


/* v73 housekeeper row colors */
.hk-row-status-clean td {
  background: rgba(25, 135, 84, 0.12) !important;
}

.hk-row-status-dirty td {
  background: rgba(220, 53, 69, 0.12) !important;
}

.hk-row-status-in_progress td {
  background: rgba(255, 193, 7, 0.18) !important;
}


/* v77 housekeeping table icons */
.hk-col-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #232323;
}

.hk-col-icon svg {
  display: block;
}

.hk-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-weight: 800;
  color: #232323;
}

.table td.text-center,
.table th.text-center {
  text-align: center;
  vertical-align: middle;
}


/* v78 housekeeper compact header/stats */
.hk-mini-card .card-body {
  padding: 8px !important;
}

.hk-mini-card .small-label {
  font-size: .68rem !important;
  margin-bottom: .2rem !important;
}

.hk-mini-card .stat-value {
  font-size: 1.15rem !important;
  line-height: 1 !important;
}

.housekeeper-mini-stats .card {
  min-height: 0 !important;
}


/* v80 housekeeping notes */
.hk-room-note {
  padding: 8px 10px;
  background: rgba(35,35,35,0.04);
  color: #232323;
  font-size: .92rem;
}

.hk-note-row td {
  border-top: 0 !important;
}

.hk-note-form {
  min-width: 220px;
}

.hk-note-form textarea::placeholder { color: #bbb; }


/* v82 housekeeper note highlight */
.hk-room-note-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 193, 7, 0.18);
  border-left: 4px solid #d39e00;
  padding: 10px 12px;
}

.hk-room-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  min-width: 18px;
  font-size: 14px;
  color: #9a6700;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

.hk-room-note-text {
  flex: 1 1 auto;
}


.hk-note-form textarea::placeholder {
  color: #b8b8b8 !important;
}

.hk-note-seen-form {
  margin: 0;
}

.hk-note-seen-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 10px;
  white-space: nowrap;
  font-size: .85rem;
}

.hk-note-seen-text {
  color: #6b6b6b;
}


/* v84 housekeeper redesign */
.hk-app-body {
  background: #eef2f5 !important;
}

.hk-shell {
  max-width: 760px;
}

.hk-toast {
  margin-bottom: 8px;
}

.hk-section-card {
  border-radius: 14px !important;
  overflow: hidden;
}

.hk-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hk-room-list {
  display: grid;
  gap: 10px;
}

.hk-room-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

.hk-room-main {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
}

.hk-room-id {
  min-width: 0;
}

.hk-room-number {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.hk-room-code {
  font-size: .82rem;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 700;
}

.hk-room-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.hk-table-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.65);
  color: #5b6573;
}

.hk-table-icon.active {
  background: rgba(255,255,255,0.95);
  color: #232323;
  border-color: rgba(0,0,0,0.2);
}

.hk-room-status-chip {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(255,255,255,0.75);
}

.hk-room-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hk-room-actions form,
.hk-status-actions form {
  margin: 0;
}

.hk-room-actions .btn,
.hk-status-actions .btn {
  min-width: 86px;
}

.hk-mini-table td,
.hk-mini-table th {
  white-space: nowrap;
}

.hk-row-status-clean .hk-room-status-chip,
.hk-row-status-clean td {
  background-color: rgba(25, 135, 84, 0.12) !important;
}

.hk-row-status-dirty .hk-room-status-chip,
.hk-row-status-dirty td {
  background-color: rgba(220, 53, 69, 0.12) !important;
}

.hk-row-status-in_progress .hk-room-status-chip,
.hk-row-status-in_progress td {
  background-color: rgba(255, 193, 7, 0.18) !important;
}

@media (max-width: 640px) {
  .hk-room-main {
    grid-template-columns: 64px 1fr;
  }

  .hk-room-status-chip {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .hk-room-actions .btn,
  .hk-status-actions .btn {
    min-width: 74px;
  }
}


/* v85 housekeeper mockup-inspired redesign */
.hk-mobile-wrap {
  padding-bottom: 10px !important;
}

.hk-phone-shell {
  max-width: 430px;
}

.hk-topbar {
  background: linear-gradient(180deg, #0f4c5c 0%, #0b5969 100%);
  color: #fff;
  border-radius: 18px;
  padding: 14px 14px 16px;
  margin-bottom: 10px;
}

.hk-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hk-icon-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hk-date-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.18);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: .92rem;
  flex: 1 1 auto;
  justify-content: center;
}

.hk-alert-chip {
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  font-weight: 800;
}

.hk-kpi-row .card {
  border-radius: 16px !important;
}

.hk-mini-card .card-body {
  padding: 12px 10px !important;
  text-align: center;
}

.hk-kpi-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin: 0 auto 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hk-kpi-blue { background: rgba(13,110,253,.12); color: #0d6efd; }
.hk-kpi-purple { background: rgba(111,66,193,.12); color: #6f42c1; }
.hk-kpi-red { background: rgba(220,53,69,.12); color: #dc3545; }
.hk-kpi-green { background: rgba(25,135,84,.12); color: #198754; }

.hk-mini-card .small-label {
  font-size: .74rem !important;
  margin-bottom: .3rem !important;
}

.hk-mini-card .stat-value {
  font-size: 1.9rem !important;
  line-height: 1 !important;
}

.hk-section-card {
  border-radius: 18px !important;
  overflow: hidden;
}

.hk-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hk-section-head h2 {
  font-weight: 800;
  letter-spacing: .02em;
}

.hk-filter-btn {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f8f9fa;
  border-radius: 10px;
  color: #4b5563;
}

.hk-room-list {
  display: grid;
  gap: 10px;
}

.hk-room-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.03);
}

.hk-room-main {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
}

.hk-room-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.hk-room-code {
  font-size: .85rem;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 700;
}

.hk-room-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.hk-table-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.78);
  color: #6b7280;
}

.hk-table-icon.active {
  color: #1f2937;
  border-color: rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.96);
}

.hk-room-status-chip {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.08);
}

.hk-room-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hk-room-actions .btn,
.hk-status-actions .btn {
  min-width: 88px;
  border-radius: 10px !important;
  font-weight: 700;
}

.hk-row-status-clean {
  background: rgba(25,135,84,.12) !important;
}

.hk-row-status-dirty {
  background: rgba(220,53,69,.12) !important;
}

.hk-row-status-in_progress {
  background: rgba(255,193,7,.18) !important;
}

.hk-row-status-clean.hk-room-card,
.hk-row-status-dirty.hk-room-card,
.hk-row-status-in_progress.hk-room-card {
  border-color: transparent;
}

.hk-row-status-clean td { background: rgba(25,135,84,.12) !important; }
.hk-row-status-dirty td { background: rgba(220,53,69,.12) !important; }
.hk-row-status-in_progress td { background: rgba(255,193,7,.18) !important; }

.hk-mini-table th,
.hk-mini-table td {
  white-space: nowrap;
}

.hk-room-note-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 193, 7, 0.18);
  border-left: 4px solid #d39e00;
  padding: 10px 12px;
  border-radius: 12px;
  margin-top: 10px;
}

.hk-room-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  min-width: 18px;
  font-size: 14px;
  color: #9a6700;
  font-weight: 700;
  line-height: 1;
  margin-top: 1px;
}

.hk-room-note-text {
  flex: 1 1 auto;
}

.hk-note-seen-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 6px;
  white-space: nowrap;
  font-size: .85rem;
}

.hk-note-seen-text {
  color: #6b6b6b;
}

.hk-logout-btn {
  border-radius: 16px !important;
  padding: 14px 16px !important;
  font-weight: 800;
}

@media (max-width: 420px) {
  .hk-room-main {
    grid-template-columns: 64px 1fr;
  }

  .hk-room-status-chip {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .hk-date-pill {
    font-size: .84rem;
    padding: 9px 12px;
  }

  .hk-room-actions .btn,
  .hk-status-actions .btn {
    min-width: 74px;
    font-size: .8rem;
  }
}


/* v86 housekeeper visual polish */
.hk-app-body {
  background: #e9edf1 !important;
}

.hk-phone-shell {
  max-width: 440px;
}

.hk-topbar {
  background: linear-gradient(180deg, #0c5363 0%, #0a4a58 100%);
  border-radius: 22px;
  padding: 16px 16px 18px;
  box-shadow: 0 10px 24px rgba(10, 74, 88, 0.22);
}

.hk-icon-btn,
.hk-alert-chip {
  background: rgba(255,255,255,0.16);
  border-radius: 14px;
}

.hk-date-pill {
  background: rgba(0,0,0,0.22);
  padding: 11px 16px;
  font-size: .95rem;
  font-weight: 800;
}

.hk-kpi-row {
  margin-top: -2px;
}

.hk-kpi-row .card {
  border-radius: 18px !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.05) !important;
}

.hk-mini-card .card-body {
  padding: 13px 10px !important;
}

.hk-kpi-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.hk-mini-card .small-label {
  color: #485260 !important;
  font-size: .72rem !important;
  font-weight: 700;
  letter-spacing: .01em;
}

.hk-mini-card .stat-value {
  font-size: 1.65rem !important;
  font-weight: 900 !important;
}

.hk-section-card {
  border-radius: 20px !important;
  border: 1px solid rgba(0,0,0,0.05) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,.05) !important;
}

.hk-section-head {
  margin-bottom: 14px;
}

.hk-section-head h2 {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: .01em;
  color: #17323a;
}

.hk-filter-btn {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #f4f6f8;
}

.hk-room-list {
  gap: 12px;
}

.hk-room-card {
  border-radius: 18px;
  padding: 14px;
}

.hk-room-main {
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
}

.hk-room-number {
  font-size: 1.95rem;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.hk-room-code {
  font-size: .88rem;
}

.hk-room-icons {
  gap: 10px;
}

.hk-table-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.72);
}

.hk-table-icon.active {
  background: rgba(255,255,255,0.97);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.hk-room-status-chip {
  padding: 9px 14px;
  font-size: .8rem;
  font-weight: 900;
  border-radius: 999px;
  text-transform: uppercase;
}

.hk-row-status-clean .hk-room-status-chip {
  background: #1fa45b !important;
  color: #fff !important;
  border-color: #1fa45b !important;
}
.hk-row-status-dirty .hk-room-status-chip {
  background: #e25656 !important;
  color: #fff !important;
  border-color: #e25656 !important;
}
.hk-row-status-in_progress .hk-room-status-chip {
  background: #e9aa1a !important;
  color: #fff !important;
  border-color: #e9aa1a !important;
}

.hk-room-actions {
  gap: 7px;
}

.hk-room-actions .btn,
.hk-status-actions .btn {
  min-width: 84px;
  border-radius: 12px !important;
  padding: 7px 10px !important;
  font-size: .83rem;
  font-weight: 800;
}

.hk-room-note-alert {
  border-left-width: 5px;
  border-radius: 14px;
  margin-top: 12px;
}

.hk-note-seen-label {
  padding-right: 6px;
}

.hk-mini-table th {
  font-size: .8rem;
  color: #5b6573;
}

.hk-mini-table td {
  font-size: .92rem;
}

.hk-logout-btn {
  border-radius: 18px !important;
  padding: 15px 16px !important;
  font-size: 1.05rem;
  font-weight: 900;
  background: #fff !important;
}

@media (max-width: 420px) {
  .hk-topbar {
    padding: 14px 14px 16px;
  }

  .hk-room-card {
    padding: 12px;
  }

  .hk-room-number {
    font-size: 1.75rem;
  }

  .hk-table-icon {
    width: 36px;
    height: 36px;
  }

  .hk-room-actions .btn,
  .hk-status-actions .btn {
    min-width: 72px;
    font-size: .79rem;
  }
}


/* v87 housekeeper edge-tight tuning */
.hk-mobile-wrap {
  padding-left: 4px !important;
  padding-right: 4px !important;
  padding-top: 4px !important;
  padding-bottom: 6px !important;
}

.hk-phone-shell {
  max-width: 430px;
}

.hk-topbar {
  margin-bottom: 6px !important;
  padding: 12px 12px 14px !important;
  border-radius: 18px !important;
}

.hk-topbar-row {
  gap: 8px !important;
}

.hk-icon-btn,
.hk-alert-chip {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 10px !important;
  padding: 0 !important;
}

.hk-date-pill {
  padding: 8px 12px !important;
  min-height: 34px;
  font-size: .86rem !important;
}

.hk-kpi-row {
  margin-bottom: 8px !important;
}

.hk-kpi-row.row {
  --bs-gutter-x: 0.4rem;
  --bs-gutter-y: 0.4rem;
}

.hk-kpi-row .col-6,
.hk-kpi-row .col-lg-3 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.hk-mini-card {
  margin: 0 !important;
}

.hk-mini-card .card-body {
  padding: 8px 6px !important;
}

.hk-kpi-icon {
  width: 30px !important;
  height: 30px !important;
  margin-bottom: 6px !important;
}

.hk-mini-card .small-label {
  font-size: .64rem !important;
  line-height: 1.1 !important;
  margin-bottom: .15rem !important;
}

.hk-mini-card .stat-value {
  font-size: 1.28rem !important;
}

.hk-section-card {
  margin-bottom: 8px !important;
  border-radius: 16px !important;
}

.hk-section-card .card-body {
  padding: 10px !important;
}

.hk-section-head {
  margin-bottom: 8px !important;
}

.hk-section-head h2 {
  font-size: 1.02rem !important;
}

.hk-filter-btn {
  width: 30px !important;
  height: 30px !important;
  border-radius: 9px !important;
}

.hk-room-list {
  gap: 8px !important;
}

.hk-room-card {
  padding: 10px !important;
  border-radius: 14px !important;
}

.hk-room-main {
  grid-template-columns: 60px 1fr auto !important;
  gap: 8px !important;
}

.hk-room-number {
  font-size: 1.45rem !important;
}

.hk-room-code {
  font-size: .76rem !important;
  margin-top: 2px !important;
}

.hk-room-icons {
  gap: 6px !important;
}

.hk-table-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 9px !important;
}

.hk-room-status-chip {
  padding: 6px 10px !important;
  font-size: .72rem !important;
}

.hk-room-actions {
  margin-top: 8px !important;
  gap: 6px !important;
}

.hk-room-actions .btn,
.hk-status-actions .btn {
  min-width: 68px !important;
  padding: 6px 8px !important;
  font-size: .76rem !important;
  border-radius: 9px !important;
}

.hk-room-note-alert {
  margin-top: 8px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
}

.hk-room-note-text {
  font-size: .84rem !important;
  line-height: 1.25 !important;
}

.hk-note-seen-label {
  gap: 4px !important;
  margin-right: 4px !important;
  font-size: .76rem !important;
}

.hk-mini-table th,
.hk-mini-table td {
  padding: 7px 6px !important;
  font-size: .8rem !important;
}

.hk-logout-btn {
  padding: 11px 12px !important;
  border-radius: 14px !important;
  font-size: .94rem !important;
}

.mt-3.pb-3.text-center {
  margin-top: 8px !important;
  padding-bottom: 2px !important;
}

@media (max-width: 420px) {
  .hk-phone-shell {
    max-width: 100% !important;
  }

  .hk-mobile-wrap {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }

  .hk-room-main {
    grid-template-columns: 56px 1fr !important;
  }

  .hk-room-status-chip {
    grid-column: 1 / -1;
    width: fit-content;
    margin-top: 2px;
  }

  .hk-room-actions .btn,
  .hk-status-actions .btn {
    min-width: 62px !important;
    font-size: .72rem !important;
  }
}

.hk-section-card .card-body { padding:0 !important; }


/* v89 icon color refinement */
.hk-table-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 9px !important;
  color: #ddd !important;
}

.hk-table-icon.active {
  color: #f00 !important;
  border-color: #f00 !important;
  background: rgba(255,255,255,0.96) !important;
}


/* v92 css cleanup on stable v91 */
.hk-mobile-wrap {
  padding-left: 4px !important;
  padding-right: 4px !important;
  padding-top: 4px !important;
  padding-bottom: 6px !important;
}

.hk-phone-shell {
  max-width: 430px !important;
}

.hk-topbar {
  margin-bottom: 6px !important;
  padding: 12px 12px 14px !important;
  border-radius: 18px !important;
}

.hk-topbar-row {
  gap: 8px !important;
}

.hk-icon-btn,
.hk-alert-chip {
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  padding: 0 !important;
}

.hk-date-pill {
  padding: 8px 12px !important;
  min-height: 34px !important;
  font-size: .86rem !important;
}

.housekeeper-mini-stats {
  margin-bottom: 8px !important;
}

.housekeeper-mini-stats.row {
  --bs-gutter-x: 0.4rem;
  --bs-gutter-y: 0.4rem;
}

.hk-mini-card,
.housekeeper-mini-stats .card {
  margin: 0 !important;
  border-radius: 14px !important;
}

.hk-mini-card .card-body {
  padding: 8px 6px !important;
}

.hk-kpi-icon {
  width: 30px !important;
  height: 30px !important;
  margin-bottom: 6px !important;
}

.hk-mini-card .small-label {
  font-size: .64rem !important;
  line-height: 1.1 !important;
  margin-bottom: .15rem !important;
}

.hk-mini-card .stat-value {
  font-size: 1.28rem !important;
  line-height: 1 !important;
}

.hk-section-card {
  margin-bottom: 8px !important;
  border-radius: 16px !important;
}

.hk-section-card .card-body {
  padding: 0 !important;
}

.hk-section-head {
  margin-bottom: 0 !important;
  padding: 10px 10px 0 !important;
}

.hk-section-head h2 {
  font-size: 1.02rem !important;
  letter-spacing: 0 !important;
}

.hk-filter-btn {
  width: 30px !important;
  height: 30px !important;
  border-radius: 9px !important;
}

.hk-room-list {
  gap: 8px !important;
  padding: 8px !important;
}

.hk-room-card {
  padding: 10px !important;
  border-radius: 14px !important;
  margin: 0 !important;
}

.hk-room-main {
  grid-template-columns: 60px 1fr auto !important;
  gap: 8px !important;
}

.hk-room-number {
  font-size: 1.45rem !important;
}

.hk-room-code {
  font-size: .76rem !important;
  margin-top: 2px !important;
}

.hk-room-icons {
  gap: 6px !important;
}

.hk-table-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 9px !important;
  color: #ddd !important;
}

.hk-table-icon.active {
  color: #f00 !important;
  border-color: #f00 !important;
  background: rgba(255,255,255,0.96) !important;
}

.hk-room-status-chip {
  white-space: nowrap !important;
  font-size: 11px !important;
  padding: 4px 8px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.hk-room-card-tools {
  padding-right: 0 !important;
}

.hk-room-actions {
  margin-top: 8px !important;
  gap: 6px !important;
  padding: 0 !important;
}

.hk-room-actions .btn,
.hk-status-actions .btn {
  min-width: 68px !important;
  padding: 6px 8px !important;
  font-size: .76rem !important;
  border-radius: 9px !important;
}

.hk-room-note-alert {
  margin-top: 8px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
}

.hk-room-note-text {
  font-size: .84rem !important;
  line-height: 1.25 !important;
}

.hk-note-seen-label {
  gap: 4px !important;
  margin-right: 4px !important;
  font-size: .76rem !important;
}

.hk-mini-table,
.hk-section-card .table {
  margin-bottom: 0 !important;
}

.hk-mini-table th,
.hk-mini-table td,
.hk-section-card .table th,
.hk-section-card .table td {
  padding: 7px 6px !important;
  font-size: .8rem !important;
}

.hk-section-card .table-responsive {
  padding: 8px !important;
}

.hk-logout-btn {
  padding: 11px 12px !important;
  border-radius: 14px !important;
  font-size: .94rem !important;
}

.mt-3.pb-3.text-center {
  margin-top: 8px !important;
  padding-bottom: 2px !important;
}

@media (max-width: 420px) {
  .hk-phone-shell {
    max-width: 100% !important;
  }

  .hk-mobile-wrap {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }

  .hk-room-main {
    grid-template-columns: 56px 1fr !important;
  }

  .hk-room-status-chip {
    grid-column: 1 / -1;
    width: fit-content;
    margin-top: 2px;
  }

  .hk-room-actions .btn,
  .hk-status-actions .btn {
    min-width: 62px !important;
    font-size: .72rem !important;
  }
}


/* v94 split arrivals departures */
.hk-action-mini {
  display: flex;
  gap: 4px;
  align-items: center;
}
.hk-action-mini form { margin: 0; }
.hk-mini-btn {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 0;
  padding: 0;
  display: inline-block;
}
.hk-mini-btn.clean { background: #198754; }
.hk-mini-btn.dirty { background: #dc3545; }
.hk-mini-btn.progress { background: #ffc107; }

.hk-status-squares {
  display: flex;
  gap: 4px;
  align-items: center;
}
.hk-status-square {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
  opacity: .35;
}
.hk-status-square.active {
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.hk-status-square.clean { background: #198754; }
.hk-status-square.dirty { background: #dc3545; }
.hk-status-square.progress { background: #ffc107; }


/* v98 arrivals/departures action cleanup */
.hk-action-mini {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hk-mini-btn {
  width: 28px !important;
  height: 28px !important;
  border-radius: 6px !important;
  border: none !important;
  margin-right: 0 !important;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hk-mini-btn.clean {
  background-color: #198754 !important;
}

.hk-mini-btn.dirty {
  background-color: #dc3545 !important;
}

.hk-mini-btn.progress {
  background-color: #ffc107 !important;
}


/* v99 align actions right */
.hk-action-mini.justify-content-end {
  justify-content: flex-end;
  width: 100%;
}


/* v100 refresh UX */
.hk-loading-bar {
  position: sticky;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0d6efd;
  z-index: 1200;
  transition: width 0.2s ease;
}

.hk-loading-bar.is-loading {
  width: 100%;
}

.hk-pull-indicator {
  position: sticky;
  top: 0;
  left: 50%;
  transform: translate(-50%, -16px);
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  color: #5b6573;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  padding: 4px 10px;
  z-index: 1199;
  opacity: 0;
  transition: transform 0.15s ease, opacity 0.15s ease;
  pointer-events: none;
}

.hk-pull-indicator.is-visible {
  opacity: 1;
}

.hk-pull-indicator.is-ready {
  color: #0d6efd;
}


/* v101 loading bar fix */
.hk-loading-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 0;
  height: 2px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: #0d6efd;
  z-index: 9999;
}

.hk-loading-bar.is-loading {
  width: 100% !important;
}


/* v102 UX refinements */

/* hide pull indicator completely */
.hk-pull-indicator {
  display: none !important;
}

/* loading bar improvements */
.hk-loading-bar {
  background: #198754 !important; /* green */
  transition: width 1s linear !important;
}

.hk-loading-bar.is-loading {
  width: 100% !important;
}


/* v103 note wrapping fix for arrivals/departures tables */
.hk-mini-table .hk-room-note,
.hk-mini-table .hk-room-note-alert,
.hk-mini-table .hk-room-note-text,
.hk-mini-table .hk-note-row td {
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}

.hk-mini-table .hk-room-note-alert {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hk-mini-table .hk-room-note-text {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.hk-mini-table .table-responsive,
.hk-section-card .table-responsive {
  overflow-x: visible !important;
}


/* v106 admin housekeeping redesign */
.admin-hk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
}

.admin-hk-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.03);
}

.admin-hk-main {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
}

.admin-hk-room-number {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.admin-hk-room-code {
  font-size: .82rem;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 700;
}

.admin-hk-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-hk-status-chip {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.08);
}

.admin-hk-meta {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  font-size: .9rem;
}

.admin-hk-note-wrap {
  margin-top: 10px;
}

.admin-hk-card .hk-status-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-hk-card .hk-status-actions form {
  margin: 0;
}

.admin-hk-card .hk-status-actions .btn {
  min-width: 86px;
  border-radius: 10px !important;
  font-weight: 700;
}

@media (max-width: 768px) {
  .admin-hk-grid {
    grid-template-columns: 1fr;
  }
  .admin-hk-main {
    grid-template-columns: 64px 1fr;
  }
  .admin-hk-status {
    grid-column: 1 / -1;
  }
  .admin-hk-meta {
    grid-template-columns: 1fr;
  }
}


/* v107 admin housekeeping redesign with top tables */
.admin-hk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 12px;
}
.admin-hk-grid.admin-hk-grid-table {
  grid-template-columns: 1fr;
}
.admin-hk-card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.03);
}
.admin-hk-main {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
}
.admin-hk-room-number {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.admin-hk-room-code {
  font-size: .82rem;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 700;
}
.admin-hk-icons {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.admin-hk-status-chip {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,0,0,0.08);
}
.admin-hk-meta {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  font-size: .9rem;
}
.admin-hk-note-wrap {
  margin-top: 10px;
}
.admin-hk-card .hk-status-actions,
.admin-hk-mini-table .hk-status-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-hk-card .hk-status-actions form,
.admin-hk-mini-table .hk-status-actions form {
  margin: 0;
}
.admin-hk-card .hk-status-actions .btn,
.admin-hk-mini-table .hk-status-actions .btn {
  min-width: 86px;
  border-radius: 10px !important;
  font-weight: 700;
}
.admin-hk-mini-table td,
.admin-hk-mini-table th {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .admin-hk-grid {
    grid-template-columns: 1fr;
  }
  .admin-hk-main {
    grid-template-columns: 64px 1fr;
  }
  .admin-hk-status {
    grid-column: 1 / -1;
  }
  .admin-hk-meta {
    grid-template-columns: 1fr;
  }
}


/* v108 admin housekeeping compact table view */
.admin-hk-grid-table .admin-hk-card {
  display: grid;
  grid-template-columns: 78px minmax(0,1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px !important;
  border-radius: 10px !important;
}

.admin-hk-grid-table .admin-hk-main {
  display: contents;
}

.admin-hk-grid-table .admin-hk-id {
  grid-column: 1;
}

.admin-hk-grid-table .admin-hk-room-number {
  font-size: 1.1rem !important;
}

.admin-hk-grid-table .admin-hk-room-code {
  font-size: .72rem !important;
  margin-top: 2px !important;
}

.admin-hk-grid-table .admin-hk-icons {
  display: none;
}

.admin-hk-grid-table .admin-hk-status {
  display: none;
}

.admin-hk-grid-table .admin-hk-meta {
  grid-column: 2;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 !important;
  font-size: .8rem !important;
  align-items: center;
}

.admin-hk-grid-table .admin-hk-meta > div {
  margin: 0;
}

.admin-hk-grid-table .admin-hk-note-wrap {
  display: none;
}

.admin-hk-grid-table .hk-status-actions {
  grid-column: 3;
  margin: 0 !important;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.admin-hk-grid-table .hk-status-actions .btn {
  min-width: 72px !important;
  padding: 5px 8px !important;
  font-size: .75rem !important;
}

.admin-hk-grid-table .admin-hk-card {
  background: #fff !important;
}

/* Admin housekeeping should not tint whole rows/cards by status */
.admin-hk-card.hk-row-status-clean,
.admin-hk-card.hk-row-status-dirty,
.admin-hk-card.hk-row-status-in_progress {
  background: #fff !important;
}

.admin-hk-card.hk-row-status-clean td,
.admin-hk-card.hk-row-status-dirty td,
.admin-hk-card.hk-row-status-in_progress td,
.admin-hk-mini-table .hk-row-status-clean td,
.admin-hk-mini-table .hk-row-status-dirty td,
.admin-hk-mini-table .hk-row-status-in_progress td {
  background: transparent !important;
}

/* Keep only active button colored */
.admin-hk-mini-table .hk-status-actions .btn-success,
.admin-hk-card .hk-status-actions .btn-success {
  background: #198754 !important;
  border-color: #198754 !important;
  color: #fff !important;
}
.admin-hk-mini-table .hk-status-actions .btn-danger,
.admin-hk-card .hk-status-actions .btn-danger {
  background: #dc3545 !important;
  border-color: #dc3545 !important;
  color: #fff !important;
}
.admin-hk-mini-table .hk-status-actions .btn-warning,
.admin-hk-card .hk-status-actions .btn-warning {
  background: #ffc107 !important;
  border-color: #ffc107 !important;
  color: #212529 !important;
}

@media (max-width: 1100px) {
  .admin-hk-grid-table .admin-hk-card {
    grid-template-columns: 70px minmax(0,1fr);
  }
  .admin-hk-grid-table .hk-status-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .admin-hk-grid-table .admin-hk-meta {
    gap: 6px 10px;
    font-size: .76rem !important;
  }
  .admin-hk-grid-table .hk-status-actions .btn {
    min-width: 66px !important;
    font-size: .72rem !important;
  }
}


/* v110 housekeeping comment bubbles */
.admin-hk-comment-list {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}
.admin-hk-comment-bubble {
  background: #f1f3f5;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 12px;
}
.admin-hk-comment-text {
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.admin-hk-comment-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
  font-size: 11px;
  color: #6b7280;
}
.admin-hk-add-comment-form textarea::placeholder {
  color: #b8b8b8 !important;
}


/* v111 admin delete + house seen */
.admin-hk-comment-delete-form {
  margin-left: auto;
}
.admin-hk-comment-delete-form .btn {
  padding: 2px 8px !important;
  font-size: .72rem !important;
}
.admin-hk-seen-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.admin-hk-seen-badge.is-seen {
  background: rgba(25,135,84,.12);
  color: #198754;
}
.admin-hk-seen-badge.is-unseen {
  background: rgba(220,53,69,.10);
  color: #dc3545;
}
.hk-comment-alert {
  margin-top: 6px !important;
}


/* v0.10.6.7 sidebar behavior */
.admin-layout {
  align-items: flex-start;
}
.admin-main {
  min-width: 0;
}


/* v0.10.6.8 fixed full-height BackApp sidebar */
@media (min-width: 992px) {
  .admin-body {
    overflow-x: hidden;
  }
  .admin-layout {
    display: block !important;
  }
  .sidebar-admin {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 300px !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    overflow-y: auto !important;
    z-index: 1000 !important;
  
  padding-bottom: 20px;
}
  .admin-main {
    margin-left: 300px !important;
    width: calc(100% - 300px) !important;
    min-width: 0 !important;
  }
}


.sidebar-link {
    display: block;
    color: #c7d0e6;
    text-decoration: none;
    padding: .2rem 1rem;
    border-radius: 12px;
    font-weight: 100;
    margin-bottom: .1rem;
    transition: all .18s ease;
    font-size: 0.9rem;
}


/* v0.10.7.2 BackApp top menu */
.top-menu-bar {
position: fixed;
top: 0;
left: 0px;
right: 0;
height: 21px;
background: linear-gradient(180deg, #111428 0%, #171b34 100%);
border-bottom: 1px solid rgba(0,0,0,0.06);
z-index: 1100;
overflow: visible;
}
.top-menu-datetime {
  position: absolute;
  right: 12px;
}
.top-menuut:hover {
  color: #ffffff;
}
.top-menu-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d6d9e6;
}
.top-menu-icon-btn:hover {
  color: #ffffff;
}


/* v0.10.7.2.4 MainMenu + TopMenu adjustments */
.top-menu-bar {
  color: #9ca3af !important;
}
.top-menu-actions,
.top-menu-datetime,
.top-menu-logout,
.top-menu-icon-btn {
  color: #9ca3af !important;
}



/* v0.10.7.2.5 TopMenu date/clock rendering */
.top-menu-datetime {
  gap: 4px;
  color: #9ca3af !important;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}
#topMenuDate,
#topMenuClock {
  display:ions {
  position: absolute;
  right: 10px;
  font-size: 12px;
}
}

.top-menu-datetime {
  display: row !important;
  align-items: center !important;
  gap: 4px;
  white-space: nowrap;
}

.top-menu-icon-btn {
  display: inline-flex !important;
  align-items: center !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.top-menu-icon-btn:hover,
.top-menu-icon-btn:focus,
.top-menu-icon-btn:active {
  background: transparent !important;
  color: #9ca3af !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.top-menu-r {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 21px;
  background: linear-gradient(180deg, #111428 0%, #171b34 100%);
  overflow: hidden;
}

.top-menu-table {
  position: absolute;
  right: 10px;
  top: 0;
  height: 21px;
  display: table;
  border-collapse: collapse;

}

.top-menu-cell-icon {
  width: 22px;
  text-align: center;
  padding-left: 0;
  padding-right: 4px;
}

.top-menu-cell-logout {
  padding-left: 4px;
  padding-right: 8px;
}

.top-menu-cell-datetimetant {
  -webkit-appearance: none !important;
  appearance: none !important;
  vertical-align: middle !important;
}

.top-menu-icon-btn:hover,
.top-menu-icon-btn:focus,
.top-menu-icon-btn:active {
  background: transparent !important;
  color: #9ca3af !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.top-menu-icon-btn svg {
  display: block;
  width: 14px;
  height: 14px;
}

.top-menu-logout,
.top-menu-datetime,
#topMenuDate,
#topMenuClock {
  color: #9ca3af !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 21px !important;
  font-family: Inter, Arial, Helvetica, sans-serif !important;
  text-decoration: none;
  vertical-align: middle;
}

.top-menu-logout:hover {
  color: #9ca3af !important;
}

#topMenuDate {
  margin-right: 8px;
}

/* consolidated selector */
.sidebar-admin {
  position: sticky;
  top: 0;
  align-self: flex-start;
  min-height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  padding-top: 35px;
  background: linear-gradient(180deg, #111428 0%, #171b34 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 21px;
  background: linear-gradient(180deg, #111428 0%, #171b34 100%);
  border-bottom: 1px solid rgba(0,0,0,0.06)
  }
/* consolidated selector */
.top-menu-icon-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 14px !important;
  height: 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #9ca3af !important;
  margin: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  vertical-align: middle !important;
}

/* consolidated selector */
.top-menu-logout {
  color: #d6d9e6;
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
}

/* consolidated selector */
.top-menu-logout:hover {
  color: #9ca3af !important;
}


/* v0.10.7.2.8 Guests page layout fix */
.admin-guests-page .admin-main,
.admin-guests-page .admin-header-card,
.admin-guests-page .admin-card {
  min-width: 0;
}
.admin-guests-page .admin-card {
  overflow: hidden;
}
.admin-guests-page .card.admin-card.mb-3 {
  max-width: 100%;
}


/* v0.10.7.3.1 Guests compact list */
.guests-compact-table {
  margin-bottom: 0;
  table-layout: auto;
}
.guests-compact-table th,
.guests-compact-table td {
  vertical-align: middle;
  white-space: nowrap;
}
.guests-compact-table td:nth-child(5),
.guests-compact-table td:nth-child(7) {
  white-space: normal;
}
.guests-compact-table .btn {
  min-width: 64px;
}


/* v0.10.7.3.2 Guests notes tooltip */
.guest-note-label {
  display: inline-block;
  cursor: help;
  white-space: nowrap;
}
.guests-compact-table td {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}


/* v0.10.7.3.3 Guests search + sort */
.guests-search-input {
  max-width: 280px;
}
.guests-compact-table th.sortable {
  user-select: none;
}
.guests-compact-table th.sortable::after {
  content: " ↕";
  font-size: 11px;
  color: #9ca3af;
}


/* v1067 guest options */
.guest-option-box {
  background: linear-gradient(180deg, #fff, #faf6f1);
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}
.guest-option-check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
}
.guest-option-check .form-check-input {
  position: relative;
  float: none;
  margin: 0;
  cursor: pointer;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  pointer-events: auto;
}
.guest-option-check .form-check-label {
  cursor: pointer;
  color: #1f2937;
  user-select: none;
  pointer-events: auto;
}


/* v1068 guest options toggle fix */
.guest-option-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  cursor: pointer;
  user-select: none;
}
.guest-option-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.guest-option-indicator {
  width: 20px;
  height: 20px;
  border: 2px solid #b9c0c7;
  background: #fff;
  flex: 0 0 20px;
  display: inline-block;
}
.guest-option-text {
  color: #1f2937;
  font-weight: 600;
}
.guest-option-toggle input[type="checkbox"]:checked + .guest-option-indicator {
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: inset 0 0 0 4px #fff;
}
.guest-option-toggle:hover .guest-option-indicator {
  border-color: #2563eb;
}


/* v1069 reservation pills + guest option buttons */
.reservation-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .42rem .72rem;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1;
  border-radius: .375rem !important;
}
.reservation-option-pill { background: #e5e7eb !important; color: #374151 !important; }
.reservation-status-confirmed { background: #dcfce7 !important; color: #166534 !important; }
.reservation-status-waiting { background: #fef3c7 !important; color: #92400e !important; }
.reservation-status-canceled { background: #fee2e2 !important; color: #991b1b !important; }

.guest-option-list { display: flex; flex-direction: column; gap: 10px; }
.guest-option-hidden-input { position: absolute !important; opacity: 0 !important; pointer-events: none !important; }
.guest-option-btn {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d1d5db !important;
  background: #fff !important;
  color: #1f2937 !important;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  cursor: pointer;
}
.guest-option-btn.active { background: #eff6ff !important; border-color: #3b82f6 !important; color: #1d4ed8 !important; }
.guest-option-checkmark {
  width: 20px; height: 20px; border: 2px solid #b9c0c7; background: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff; flex: 0 0 20px;
}
.guest-option-btn.active .guest-option-checkmark { background: #2563eb; border-color: #2563eb; }

/* ==========================================================
   NEW HOME DESIGN (nh-* prefix)
   ========================================================== */

/* Hero: break out of main's 16px horizontal + 8px top padding */
.nh-hero {
  position: relative;
  margin: -8px -16px 0;
  height: 430px;
  overflow: hidden;
  background: #2a1f18;
}
.nh-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nh-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.04) 38%, rgba(0,0,0,0.65) 100%);
}
.nh-hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 22px 28px;
}
.nh-hero-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.nh-hotel-brand {
  text-align: center;
  color: white;
  filter: drop-shadow(0 1px 5px rgba(0,0,0,0.45));
}
.nh-hotel-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin: 0 auto 5px;
  filter: brightness(0) invert(1);
}
.nh-hotel-name {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nh-hero-stars {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  margin-top: 4px;
  opacity: 0.72;
}
.nh-hero-body {
  color: white;
  text-shadow: 0 1px 8px rgba(0,0,0,0.28);
}
.nh-hero-kicker {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.88;
}
.nh-hero-h1 {
  margin: 0 0 8px;
  font-size: 33px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: white !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.nh-hero-tagline {
  margin: 0 0 20px;
  font-size: 14px;
  opacity: 0.84;
  line-height: 1.5;
}
.nh-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: white;
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: 50px;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.nh-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.16);
  color: white !important;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.52);
  text-decoration: none !important;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

/* White content card area */
.nh-card-area {
  background: var(--bg, #f5f1ec);
  margin: 0 -16px;
  padding-bottom: 12px;
}

/* Services grid – white rounded card overlapping hero bottom */
.nh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px 14px 14px;
  background: white;
  border-radius: 22px 22px 0 0;
  margin-top: -22px;
  position: relative;
  z-index: 2;
}
.nh-svc-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: #f7f4f0;
  border: none;
  border-radius: 16px;
  padding: 13px 6px 11px;
  cursor: pointer;
  text-align: center;
  color: var(--text, #1f1a17);
  transition: background 0.15s;
}
.nh-svc-btn:active { background: #ece5dd; }
.nh-svc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  margin-bottom: 2px;
}
.nh-svc-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent-dark, #7f563b);
}
.nh-svc-btn strong {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text, #1f1a17);
  line-height: 1.3;
  display: block;
}
.nh-svc-btn span {
  font-size: 10px;
  color: var(--muted, #73685d);
  line-height: 1.3;
  display: block;
}

/* Reservation strip */
.nh-res-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  margin: 10px 14px 0;
  border-radius: 16px;
  padding: 13px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nh-res-col { flex: 1; min-width: 0; }
.nh-res-lbl {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted, #73685d);
  margin-bottom: 3px;
}
.nh-res-strip strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text, #1f1a17);
  display: block;
}
.nh-res-divider {
  width: 1px;
  height: 34px;
  background: var(--line, #e4d8cc);
  flex-shrink: 0;
}
.nh-res-badge {
  background: var(--accent, #9d6f4f);
  color: white;
  border-radius: 12px;
  padding: 8px 11px;
  text-align: center;
  flex-shrink: 0;
}
.nh-res-badge span {
  display: block;
  font-size: 9.5px;
  opacity: 0.84;
  margin-bottom: 2px;
}
.nh-res-badge strong {
  display: block;
  font-size: 13px;
  color: white;
  font-weight: 700;
}

/* Section wrapper */
.nh-section {
  padding: 16px 14px 0;
  background: white;
  margin-top: 10px;
}
.nh-section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.nh-section-h {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: var(--text, #1f1a17);
}
.nh-see-all {
  font-size: 13px;
  color: var(--accent-dark, #7f563b);
  font-weight: 600;
  cursor: pointer;
}

/* Offers horizontal scroll */
.nh-offers-scroll {
  display: flex;
  gap: 11px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -14px;
  padding-left: 14px;
  padding-right: 14px;
}
.nh-offers-scroll::-webkit-scrollbar { display: none; }
.nh-offer-card {
  flex: 0 0 165px;
  border-radius: 17px;
  overflow: hidden;
  background: #2a1f18;
  position: relative;
  height: 182px;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.nh-offer-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nh-offer-img-ph {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3a2f26, #5a4338);
}
.nh-offer-body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 55%, transparent 100%);
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}
.nh-offer-title {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: white !important;
}
.nh-offer-sub {
  margin: 0;
  font-size: 10.5px;
  opacity: 0.82;
  line-height: 1.3;
}
.nh-offer-arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  backdrop-filter: blur(4px);
}

/* Reviews card */
.nh-reviews-card {
  background: white;
  margin: 10px 14px 0;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line, #e4d8cc);
}
.nh-reviews-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.nh-reviews-score {
  font-size: 15px;
  font-weight: 700;
  color: #d4891a;
}
.nh-review-q {
  margin: 0 0 8px;
  font-size: 14px;
  font-style: italic;
  color: var(--accent-dark, #7f563b);
  line-height: 1.55;
  border-left: 3px solid var(--line, #e4d8cc);
  padding-left: 12px;
}
.nh-review-cit {
  font-size: 12px;
  color: var(--muted, #73685d);
  font-style: normal;
  display: block;
}

/* Dark mode */
body.theme-dark .nh-services-grid,
body.theme-dark .nh-section,
body.theme-dark .nh-res-strip,
body.theme-dark .nh-reviews-card {
  background: var(--zaplata-surface, #1c1c1e) !important;
  border-color: var(--zaplata-line, #2c2c2e) !important;
}
body.theme-dark .nh-card-area { background: var(--zaplata-bg, #000) !important; }
body.theme-dark .nh-svc-btn { background: #2a2a2c !important; }
body.theme-dark .nh-svc-btn strong,
body.theme-dark .nh-section-h,
body.theme-dark .nh-res-strip strong { color: var(--zaplata-text, #f5f5f7) !important; }
body.theme-dark .nh-svc-icon { background: #1c1c1e !important; }
body.theme-dark .nh-review-q { color: #c4a882 !important; border-color: #3a3a3c !important; }
body.theme-dark .nh-review-cit,
body.theme-dark .nh-svc-btn span,
body.theme-dark .nh-res-lbl { color: #8e8e93 !important; }
