
:root {
  --hdm-gold:#cfa258;
  --hdm-black:#1f1f1f;
  --hdm-muted:#6d6d6d;
  --hdm-line:#ebe5da;
  --hdm-bg:#ffffff;
  --hdm-card:#ffffff;
}

.hdm-wrap,
.hdm-wrap * {
  box-sizing: border-box;
}

.hdm-wrap {
  font-family: "Roboto", Arial, sans-serif;
  color: var(--hdm-black);
  background: #ffffff;
  border-radius: 0;
  padding: clamp(18px, 3vw, 34px);
  box-shadow: none;
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
  text-align: center;
}

.hdm-header {
  text-align:center;
  margin-bottom:22px;
}

.hdm-logo {
  max-width: 260px;
  width: min(62%, 260px);
  height: auto;
  margin:0 auto 10px;
  display:block;
}

.hdm-title {
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing:.02em;
  line-height:1.05;
  margin:0;
  font-weight:500;
}

.hdm-subtitle {
  font-family: "Roboto", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing:.12em;
  color:#3a3028;
  font-size: clamp(13px, 1.5vw, 18px);
  margin-top:6px;
}

.hdm-tabs, .hdm-section-tabs {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin:18px auto;
}

.hdm-tab, .hdm-section-tab,
.hdm-popup-trigger {
  font-family: "Roboto", Arial, sans-serif;
  border:1px solid rgba(207,162,88,.55);
  background:#fff;
  color:#302820;
  padding:11px 18px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition: all .2s ease;
  line-height:1;
}

.hdm-tab:hover, .hdm-section-tab:hover,
.hdm-tab.is-active, .hdm-section-tab.is-active,
.hdm-popup-trigger:hover {
  background:var(--hdm-gold);
  color:#fff;
  border-color:var(--hdm-gold);
  box-shadow:0 8px 18px rgba(207,162,88,.24);
}

.hdm-popup-shortcode {
  text-align:center;
}

.hdm-popup-trigger {
  font-size:16px;
  padding:14px 28px;
  min-width:160px;
}

.hdm-note {
  max-width:900px;
  margin:10px auto 24px;
  text-align:center;
  color:var(--hdm-muted);
  font-size:14px;
  line-height:1.55;
}

.hdm-lang-panel { display:none; }
.hdm-lang-panel.is-active { display:block; }

.hdm-block { margin: 34px auto; }
.hdm-block-title {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin:0 auto 18px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight:400;
  text-align:center;
}
.hdm-block-title:before,
.hdm-block-title:after {
  content:"";
  height:1px;
  flex:1 1 80px;
  max-width:420px;
  background:linear-gradient(90deg,rgba(207,162,88,0),var(--hdm-gold));
}
.hdm-block-title:after {
  background:linear-gradient(90deg,var(--hdm-gold),rgba(207,162,88,0));
}

.hdm-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap:22px;
  align-items:start;
  max-width:1100px;
  margin:0 auto;
}

.hdm-card {
  background:var(--hdm-card);
  border:1px solid var(--hdm-line);
  border-radius:18px;
  overflow:hidden;
  display:block;
  width:100%;
  min-height:0;
  box-shadow:0 8px 22px rgba(0,0,0,.05);
}

.hdm-card-img {
  aspect-ratio: 16 / 10;
  height:auto;
  background:#eee center/cover no-repeat;
  position:relative;
}

.hdm-card-img:after { display:none; }

.hdm-card-body {
  padding:16px 17px 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:150px;
  text-align:center;
}

.hdm-card-top {
  display:block;
  text-align:center;
}

.hdm-weight {
  font-weight:700;
  color:var(--hdm-gold);
  white-space:nowrap;
  font-size:13px;
  margin:0 0 6px;
}

.hdm-dish {
  font-size:16px;
  line-height:1.38;
  font-weight:700;
  text-align:center;
}

.hdm-price {
  display:block;
  font-weight:900;
  font-size:17px;
  white-space:nowrap;
  margin-top:12px;
  text-align:center;
}

.hdm-drinks-grid {
  columns: 2 330px;
  column-gap:22px;
  text-align:left;
  max-width:980px;
  margin:0 auto;
}

.hdm-drink-cat {
  background:#fff;
  border:1px solid var(--hdm-line);
  border-radius:18px;
  padding:16px;
  margin:0 0 16px;
  break-inside: avoid;
  box-shadow:0 6px 16px rgba(0,0,0,.035);
}
.hdm-drink-cat h3 {
  margin:0 0 10px;
  color:#302820;
  font-size:18px;
  font-family: "Roboto", Arial, sans-serif;
  font-weight:700;
  text-align:center;
}
.hdm-drink-row {
  display:grid;
  grid-template-columns: 62px 1fr auto;
  gap:10px;
  padding:7px 0;
  border-top:1px dotted #e1d8ca;
  font-size:14px;
}
.hdm-drink-row:first-of-type { border-top:0; }
.hdm-volume { color:var(--hdm-muted); white-space:nowrap; }
.hdm-drink-price { font-weight:800; white-space:nowrap; }

.hdm-hidden { display:none!important; }

.hdm-popup {
  display:none;
  position:fixed;
  inset:0;
  z-index:999999;
}
.hdm-popup.is-open { display:block; }
.hdm-popup-backdrop {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.hdm-popup-dialog {
  position:relative;
  z-index:2;
  width:min(1180px, calc(100vw - 28px));
  max-height:calc(100vh - 28px);
  margin:14px auto;
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 24px 80px rgba(0,0,0,.28);
}
.hdm-popup-content {
  max-height:calc(100vh - 28px);
  overflow:auto;
  background:#fff;
  padding:0;
}
.hdm-popup-close {
  position:absolute;
  right:14px;
  top:10px;
  z-index:5;
  width:42px;
  height:42px;
  border:0;
  background:#fff;
  color:#333;
  border-radius:50%;
  font-size:28px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  cursor:pointer;
  box-shadow:0 4px 14px rgba(0,0,0,.12);
}
body.hdm-popup-open { overflow:hidden; }

@media (max-width: 680px) {
  .hdm-wrap {
    padding:18px 14px;
  }
  .hdm-logo { width:min(72%, 220px); }
  .hdm-tabs, .hdm-section-tabs {
    justify-content:center;
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:6px;
  }
  .hdm-tab, .hdm-section-tab {
    flex:0 0 auto;
    padding:10px 13px;
    font-size:14px;
  }
  .hdm-grid { grid-template-columns: 1fr; gap:16px; max-width:520px; margin:0 auto; }
  .hdm-card { max-width:none; margin:0; width:100%; }
  .hdm-card-img { aspect-ratio: 16 / 10; }
  .hdm-card-body { min-height: 0; }
  .hdm-drinks-grid { columns: 1; }
  .hdm-drink-row {
    grid-template-columns: 56px 1fr auto;
    font-size:13px;
  }
  .hdm-popup-dialog {
    width:100vw;
    max-height:100vh;
    margin:0;
    border-radius:0;
  }
  .hdm-popup-content { max-height:100vh; }
  .hdm-popup-close { right:10px; top:8px; }
}

@media print {
  .hdm-tabs,.hdm-section-tabs,.hdm-popup-trigger,.hdm-popup-close { display:none; }
  .hdm-lang-panel { display:block!important; page-break-after: always; }
  .hdm-wrap { box-shadow:none; background:#fff; }
  .hdm-grid { grid-template-columns: repeat(3, 1fr); }
}


.hdm-language-buttons-wrap {
  width:100%;
  text-align:center;
  margin:20px auto;
}
.hdm-language-buttons-title {
  font-family:"Roboto", Arial, sans-serif;
  font-weight:700;
  font-size:20px;
  margin:0 0 14px;
  color:var(--hdm-black);
}
.hdm-language-buttons {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:12px;
}
.hdm-language-buttons .hdm-popup-shortcode {
  display:inline-flex;
}
.hdm-language-buttons .hdm-popup-trigger {
  min-width:150px;
  padding:13px 20px;
}
body.hdm-popup-open {
  overflow:hidden;
}
@media (max-width: 560px) {
  .hdm-language-buttons {
    flex-direction:column;
    align-items:stretch;
  }
  .hdm-language-buttons .hdm-popup-shortcode,
  .hdm-language-buttons .hdm-popup-trigger {
    width:100%;
  }
}

.hdm-photo-note {
  max-width: 900px;
  margin: 8px auto 0;
  text-align: center;
  color: var(--hdm-muted);
  font-size: 13px;
  line-height: 1.5;
}
