
.hhb-app {
  --hhb-bg: #ffffff;
  --hhb-paper: #ffffff;
  --hhb-soft: #f6f6f3;
  --hhb-soft-2: #fbfbf9;
  --hhb-border: rgba(0,0,0,.16);
  --hhb-line: rgba(0,0,0,.10);
  --hhb-text: #111111;
  --hhb-muted: rgba(17,17,17,.58);
  --hhb-black: #111111;
  --hhb-white: #ffffff;

  max-width: 860px;
  margin: 0 auto;
  padding: 34px 18px 64px;
  color: var(--hhb-text);
}

.hhb-card {
  background: var(--hhb-paper);
  border: 1px solid var(--hhb-border);
  border-radius: 0;
  padding: 30px 20px;
  box-shadow: none;
}

.hhb-intro {
  text-align: center;
  margin-bottom: 38px;
  padding: 4px 0 32px;
  border-bottom: 1px solid var(--hhb-line);
}

.hhb-kicker {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--hhb-muted);
  margin-bottom: 14px;
  font-weight: 700;
}

.hhb-intro h2 {
  font-size: clamp(42px, 8vw, 72px);
  line-height: .95;
  margin: 0 0 18px;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hhb-intro p {
  font-size: 18px;
  line-height: 1.62;
  max-width: 620px;
  margin: 0 auto;
  color: var(--hhb-muted);
}

.hhb-intro-note {
  display: inline-block;
  margin-top: 22px;
  padding: 9px 18px;
  border: 1px solid var(--hhb-black);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}

.hhb-room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 0 auto 38px;
  max-width: 720px;
}

.hhb-field label,
.hhb-note-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--hhb-muted);
}

.hhb-field input,
.hhb-note-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--hhb-border);
  border-radius: 0;
  padding: 16px 16px;
  font-size: 16px;
  background: var(--hhb-white);
  color: var(--hhb-text);
  outline: none;
}

.hhb-field input:focus,
.hhb-note-field textarea:focus {
  border-color: var(--hhb-black);
  box-shadow: inset 0 0 0 1px var(--hhb-black);
}

.hhb-field input[readonly] {
  background: var(--hhb-soft);
  cursor: not-allowed;
}

.hhb-room-hint {
  font-size: 13px;
  color: var(--hhb-muted);
  margin-top: 7px;
  display: none;
}

.hhb-app.is-room-locked .hhb-room-hint {
  display: block;
}

.hhb-category {
  margin-top: 38px;
}

.hhb-category-title {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--hhb-muted);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hhb-black);
}

.hhb-product {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid var(--hhb-line);
}

.hhb-product-name {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
  color: var(--hhb-text);
  letter-spacing: -.01em;
}

.hhb-product-price {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: var(--hhb-muted);
}

.hhb-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hhb-stepper button {
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid var(--hhb-black);
  background: var(--hhb-white);
  color: var(--hhb-black);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.hhb-stepper button:hover {
  background: var(--hhb-black);
  color: var(--hhb-white);
}

.hhb-qty {
  min-width: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}

.hhb-summary {
  margin-top: 42px;
  padding: 28px 24px;
  border: 1px solid var(--hhb-border);
  border-radius: 0;
  background: var(--hhb-soft);
}

.hhb-summary h3 {
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 400;
  letter-spacing: -.025em;
}

.hhb-summary-list {
  min-height: 30px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hhb-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 0;
}

.hhb-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--hhb-black);
  font-size: 24px;
}

.hhb-total strong {
  white-space: nowrap;
}

.hhb-note-field {
  margin-top: 26px;
}

.hhb-confirm {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 16px 0 2px;
  border-top: 1px solid var(--hhb-line);
  font-weight: 500;
  line-height: 1.38;
}

.hhb-confirm input {
  margin-top: 3px;
  accent-color: var(--hhb-black);
}

.hhb-message {
  display: none;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid var(--hhb-border);
  background: var(--hhb-white);
  text-align: center;
  line-height: 1.45;
}

.hhb-message.is-error {
  color: #7a0000;
  border-color: rgba(122,0,0,.35);
}

.hhb-message.is-success {
  color: #111111;
  border-color: #111111;
}

.hhb-submit,
.hhb-pay-button {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 18px;
  border-radius: 0;
  padding: 17px 28px;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
}

.hhb-submit {
  border: 1px solid var(--hhb-black);
  background: var(--hhb-black);
  color: var(--hhb-white);
  cursor: pointer;
}

.hhb-submit:hover {
  background: var(--hhb-white);
  color: var(--hhb-black);
}

.hhb-submit:disabled {
  opacity: .36;
  cursor: not-allowed;
}

.hhb-submit:disabled:hover {
  background: var(--hhb-black);
  color: var(--hhb-white);
}

.hhb-pay-button {
  display: none;
  border: 1px solid var(--hhb-black);
  background: var(--hhb-white);
  color: var(--hhb-black) !important;
}

.hhb-pay-button:hover {
  background: var(--hhb-black);
  color: var(--hhb-white) !important;
}

.hhb-app.has-pay-url .hhb-pay-button {
  display: block;
}

/* Gast-Zusammenfassung */

.hhb-receipt {
  display: none;
  margin-top: 24px;
  padding: 26px 24px;
  background: var(--hhb-white);
  border: 1px solid var(--hhb-black);
}

.hhb-receipt.is-visible {
  display: block;
}

.hhb-receipt-kicker {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hhb-muted);
  margin-bottom: 10px;
  font-weight: 800;
}

.hhb-receipt h3 {
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1;
  margin: 0 0 10px;
  font-weight: 400;
  letter-spacing: -.03em;
}

.hhb-receipt p {
  margin: 0 0 16px;
  line-height: 1.58;
  color: var(--hhb-muted);
}

.hhb-receipt-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid var(--hhb-line);
  border-bottom: 1px solid var(--hhb-line);
}

.hhb-receipt-meta div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.hhb-receipt-items {
  margin: 16px 0;
}

.hhb-receipt-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--hhb-line);
}

.hhb-receipt-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  margin-top: 10px;
  border-top: 1px solid var(--hhb-black);
  font-size: 22px;
  font-weight: 800;
}

.hhb-copy-receipt {
  margin-top: 18px;
  border-radius: 0;
  border: 1px solid var(--hhb-black);
  background: var(--hhb-white);
  color: var(--hhb-black);
  padding: 13px 20px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
}

.hhb-copy-receipt:hover {
  background: var(--hhb-black);
  color: var(--hhb-white);
}

.hhb-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (min-width:720px) {
  .hhb-card {
    padding: 52px;
  }

  .hhb-room-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hhb-submit,
  .hhb-pay-button {
    width: auto;
    min-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}


.hhb-island-moment {
  margin-top: 20px;
  padding: 18px 0 0;
  border-top: 1px solid var(--hhb-line);
}

.hhb-island-kicker {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hhb-muted);
  margin-bottom: 8px;
  font-weight: 800;
}

.hhb-island-moment p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--hhb-text);
}


.hhb-surprise {
  margin-top: 20px;
  padding: 20px 18px;
  border: 1px solid var(--hhb-black);
  background: var(--hhb-soft-2);
}

.hhb-surprise-kicker {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--hhb-muted);
  margin-bottom: 8px;
  font-weight: 800;
}

.hhb-surprise h4 {
  margin: 0 0 8px;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -.02em;
}

.hhb-surprise p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--hhb-text);
}


.hhb-receipt-discount {
  border-top: 1px solid var(--hhb-black);
}

.hhb-receipt-discount strong {
  color: var(--hhb-text);
}


.hhb-goodie-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hhb-line);
}

.hhb-goodie-note-kicker {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--hhb-muted);
  margin-bottom: 8px;
  font-weight: 800;
}

.hhb-goodie-note p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--hhb-text);
}


/* Mobile Bestandskontrolle */

.hhb-mobile-inventory {
  --hhb-bg: #ffffff;
  --hhb-soft: #f6f6f3;
  --hhb-soft-2: #fbfbf9;
  --hhb-border: rgba(0,0,0,.16);
  --hhb-line: rgba(0,0,0,.10);
  --hhb-text: #111111;
  --hhb-muted: rgba(17,17,17,.58);
  --hhb-black: #111111;
  --hhb-white: #ffffff;

  max-width: 740px;
  margin: 0 auto;
  padding: 24px 14px 54px;
  color: var(--hhb-text);
}

.hhb-mobile-card {
  background: var(--hhb-white);
  border: 1px solid var(--hhb-border);
  padding: 24px 16px;
}

.hhb-mobile-intro {
  text-align: center;
  border-bottom: 1px solid var(--hhb-line);
  margin-bottom: 22px;
  padding-bottom: 22px;
}

.hhb-mobile-intro h2 {
  font-size: clamp(38px, 10vw, 58px);
  line-height: .98;
  margin: 8px 0 14px;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hhb-mobile-intro p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--hhb-muted);
  font-size: 17px;
  line-height: 1.55;
}

.hhb-mobile-small {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hhb-muted);
  font-weight: 800;
}

.hhb-mobile-message {
  margin: 0 0 18px;
  padding: 13px 14px;
  border: 1px solid var(--hhb-black);
  background: var(--hhb-soft-2);
  text-align: center;
  font-weight: 700;
}

.hhb-mobile-message.is-error {
  border-color: rgba(122,0,0,.45);
  color: #7a0000;
}

.hhb-mobile-pin-form label,
.hhb-mobile-count span {
  display: block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--hhb-muted);
  margin-bottom: 8px;
}

.hhb-mobile-pin-form input,
.hhb-mobile-count input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--hhb-border);
  border-radius: 0;
  background: var(--hhb-white);
  color: var(--hhb-text);
  padding: 16px;
  font-size: 24px;
  text-align: center;
}

.hhb-mobile-pin-form button,
.hhb-mobile-actions button {
  display: block;
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--hhb-black);
  background: var(--hhb-black);
  color: var(--hhb-white);
  padding: 16px 18px;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}

.hhb-mobile-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--hhb-line);
}

.hhb-mobile-item-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.hhb-mobile-item-head strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.hhb-mobile-item-head span {
  display: block;
  margin-top: 5px;
  color: var(--hhb-muted);
  font-size: 14px;
}

.hhb-mobile-status {
  min-width: 92px;
  text-align: right;
  font-size: 14px;
}

.hhb-mobile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.hhb-mobile-stats div {
  background: var(--hhb-soft);
  border: 1px solid var(--hhb-line);
  padding: 10px 8px;
  text-align: center;
}

.hhb-mobile-stats span {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hhb-muted);
  font-weight: 800;
}

.hhb-mobile-stats strong {
  display: block;
  margin-top: 5px;
  font-size: 22px;
}

.hhb-mobile-count {
  display: block;
  margin-top: 14px;
}

.hhb-mobile-actions {
  margin-top: 22px;
}

.hhb-mobile-actions .hhb-mobile-secondary {
  background: var(--hhb-white);
  color: var(--hhb-black);
}

.hhb-mobile-help {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--hhb-line);
  color: var(--hhb-muted);
  line-height: 1.5;
  font-size: 14px;
}

@media (min-width: 720px) {
  .hhb-mobile-card {
    padding: 38px;
  }

  .hhb-mobile-inventory {
    padding-top: 44px;
  }
}
