/* =============================================
   HAPPY HOUR PROMO CARD STYLES (DARK EMERALD LUXURY PASS)
   ============================================= */

.tff-happy-hour-promo-card {
  background: linear-gradient(135deg, #052E16 0%, #0F5132 50%, #064E3B 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-left: 5px solid #F4A623 !important; /* Gold Left Accent */
  border-radius: 16px !important;
  padding: 18px 22px !important;
  margin: 28px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  box-shadow: 0 12px 30px rgba(5, 46, 22, 0.25) !important;
  color: #ffffff !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Subtle Ambient Glow */
.tff-happy-hour-promo-card::after {
  content: "" !important;
  position: absolute !important;
  top: -50% !important;
  right: -20% !important;
  width: 220px !important;
  height: 220px !important;
  background: radial-gradient(circle, rgba(244, 166, 35, 0.15) 0%, transparent 70%) !important;
  pointer-events: none !important;
}

/* Glassmorphism Icon Box */
.tff-hh-badge-icon {
  font-size: 26px !important;
  line-height: 1 !important;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  flex-shrink: 0 !important;
}

.tff-hh-promo-content {
  flex: 1 !important;
  position: relative !important;
  z-index: 2 !important;
}

.tff-hh-title-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 6px !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

/* Gold Main Title */
.tff-hh-main-title {
  font-family: var(--font-display, Georgia, serif) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  color: #F4A623 !important; /* Gold Title */
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

/* Gold / Amber Tag */
.tff-hh-live-tag {
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  padding: 4px 12px !important;
  border-radius: 50px !important;
  background: #F4A623 !important; /* Gold Badge */
  color: #052E16 !important; /* Dark Green Text */
  letter-spacing: 0.06em !important;
  box-shadow: 0 2px 8px rgba(244, 166, 35, 0.3) !important;
}

/* Live Ticking Red Badge */
.tff-hh-live-tag.is-live {
  background: #EF4444 !important; /* Live Red */
  color: #ffffff !important;
  font-family: monospace, monospace !important;
  font-size: 11.5px !important;
  letter-spacing: 0 !important;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.6) !important;
  animation: pulseLiveBadge 1.5s infinite !important;
}

.tff-hh-live-tag.is-upcoming {
  background: #F59E0B !important;
  color: #052E16 !important;
}

@keyframes pulseLiveBadge {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

/* Crisp White Offer Text */
.tff-hh-offer-text {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 10px !important;
  line-height: 1.35 !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
}

/* Translucent Glass Schedule Chips */
.tff-hh-schedule-line {
  display: flex !important;
  gap: 10px !important;
  font-size: 12.5px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600 !important;
  flex-wrap: wrap !important;
}

.tff-hh-schedule-line span {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding: 4px 12px !important;
  border-radius: 50px !important;
  backdrop-filter: blur(4px) !important;
}

/* Gutenberg Editor Preview Notice */
.tff-hh-block-editor-placeholder {
  background: #052E16;
  border: 1.5px dashed #F4A623;
  color: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 15px 0;
}
.tff-hh-editor-icon {
  font-size: 28px;
}
.tff-hh-editor-notice {
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #991B1B;
  border-radius: 8px;
  font-size: 13px;
  margin: 15px 0;
}

/* =============================================
   MOBILE RESPONSIVE FIXES (COMPACT & CLEAN)
   ============================================= */

@media (max-width: 600px) {
  .tff-happy-hour-promo-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 16px 14px !important;
    margin: 20px 0 !important;
  }

  .tff-hh-badge-icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 22px !important;
    border-radius: 12px !important;
  }

  .tff-hh-title-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
  }

  .tff-hh-main-title {
    font-size: 13px !important;
    letter-spacing: 0.04em !important;
  }

  .tff-hh-live-tag {
    font-size: 10.5px !important;
    padding: 3px 10px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
  }

  .tff-hh-offer-text {
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
  }

  .tff-hh-schedule-line {
    display: flex !important;
    flex-direction: column !important; /* Stack Chips vertically on tiny screens */
    gap: 6px !important;
    width: 100% !important;
  }

  .tff-hh-schedule-line span {
    font-size: 12px !important;
    padding: 4px 12px !important;
    display: inline-block !important;
    width: fit-content !important;
  }
}