/* ═══════════════════════════════════════════════════
   The Guilty Bar — Cocktails A-Z
   ═══════════════════════════════════════════════════ */

/* ── Hero ── */
.az-hero {
  background: radial-gradient(ellipse 70% 100% at 50% 100%, rgba(201,168,76,.16) 0%, transparent 70%), linear-gradient(160deg, #100d08 0%, #080604 100%);
  border-bottom: 1px solid rgba(201,168,76,.25);
  padding: 1.6rem 0 1.2rem;
  text-align: center;
}
.az-hero h1 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 2.2rem;
  color: #c9a84c;
  margin-bottom: .3rem;
}
.az-hero p  { color: rgba(242,232,216,.65); font-size: .92rem; max-width: 600px; margin: 0 auto; }
.az-hero-count {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: #c9a84c;
  border-radius: 50px;
  padding: .25rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

/* ── Sticky search + nav ── */
.az-sticky {
  position: relative;
  background: rgba(20,14,8,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .85rem 0;
}
.az-search-wrap {
  position: relative;
  max-width: 340px;
}
.az-search-wrap i {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(242,232,216,.35);
  pointer-events: none;
}
#azSearch {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #f2e8d8;
  border-radius: 50px;
  padding: .5rem 1rem .5rem 2.4rem;
  font-size: .88rem;
  width: 100%;
}
#azSearch:focus {
  outline: none;
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  background: rgba(255,255,255,.09);
}
#azSearch::placeholder { color: rgba(242,232,216,.3); }

/* ── Letter nav ── */
.az-letter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  margin-top: .5rem;
}
.az-letter-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(242,232,216,.55);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .18s;
}
.az-letter-nav a:hover { background: rgba(201,168,76,.2); border-color: #c9a84c; color: #c9a84c; }
.az-letter-nav a.az-empty { opacity: .28; pointer-events: none; }

/* ── Letter section ── */
.az-section { padding-top: 2.5rem; }
.az-letter-head {
  font-size: 2.4rem;
  font-weight: 900;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 1.4rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid rgba(201,168,76,.18);
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.az-letter-head small {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(242,232,216,.35);
}

/* ── Card grid ── */
.az-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
}
@media (max-width: 991px) { .az-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .az-grid { grid-template-columns: 1fr; } }
@media (max-width: 575.98px) { .az-hero { padding: 1.2rem 0 1rem; } .az-hero h1 { font-size: 1.7rem; } }

/* ── Card ── */
.az-card {
  background: #1e1810;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.az-card:hover { border-color: rgba(201,168,76,.35); transform: translateY(-2px); }
.az-card.hidden { display: none; }

/* card image */
.az-card-img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
  background: #1e1810;
}
.az-card-no-img {
  width: 100%;
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #1e1810 0%, #201608 100%);
}

/* card body */
.az-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.az-card-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f2e8d8;
  margin: 0 0 .5rem;
  line-height: 1.25;
}
.az-badges { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: .85rem; }
.az-badge {
  display: inline-block;
  border-radius: 50px;
  padding: .15rem .6rem;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.az-badge-spirit { background: rgba(201,168,76,.15); color: #c9a84c; }
.az-badge-glass  { background: rgba(139,92,246,.12); color: #a78bfa; }

/* recipe toggle */
.az-recipe-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,.3);
  color: #c9a84c;
  border-radius: 8px;
  padding: .4rem .85rem;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s;
  align-self: flex-start;
  margin-top: auto;
}
.az-recipe-btn:hover { background: rgba(201,168,76,.12); }
.az-recipe-btn.open { background: rgba(201,168,76,.12); border-color: #c9a84c; }

/* recipe panel */
.az-recipe {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: none;
  animation: azFadeIn .2s ease;
}
.az-recipe.open { display: block; }
@keyframes azFadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.az-recipe-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #c9a84c;
  margin-bottom: .45rem;
}
.az-recipe ul {
  padding-left: 1.1rem;
  margin: 0 0 .9rem;
}
.az-recipe ul li {
  color: rgba(242,232,216,.8);
  font-size: .82rem;
  margin-bottom: .2rem;
}
.az-recipe p {
  color: rgba(242,232,216,.7);
  font-size: .82rem;
  line-height: 1.65;
  margin: 0;
}

/* ── No results ── */
#azNoResults {
  color: rgba(242,232,216,.4);
  text-align: center;
  padding: 4rem 1rem;
  display: none;
}
#azNoResults i { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

/* ── Jump to top ── */
.az-back-top {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  color: #c9a84c;
  border-radius: 50px;
  padding: .45rem 1.1rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  margin: 2.5rem 0 3rem;
}
.az-back-top:hover { background: rgba(201,168,76,.2); color: #c9a84c; }

/* ── Deep-link to dedicated recipe pages ── */
.az-full-recipe-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .65rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(201,168,76,.75);
  text-decoration: none;
  transition: color .18s;
}
.az-full-recipe-link:hover { color: #c9a84c; }
.az-full-recipe-link i { font-size: .7rem; }

.az-variant-links {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .65rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.az-variant-link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .18rem .6rem;
  border-radius: 50px;
  font-size: .71rem;
  font-weight: 700;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.2);
  color: rgba(201,168,76,.75);
  text-decoration: none;
  transition: all .18s;
}
.az-variant-link:hover { background: rgba(201,168,76,.16); border-color: #c9a84c; color: #c9a84c; }
