:root {
  --green: #185c37;
  --green-dark: #144a2c;
  --green-mid: #1a6b3f;
  --red: #d32f2f;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #555555;
  --ph-bg: #e8eee9;
  --ph-border: #b7c9bc;
  --ph-text: #6a8572;
  --max-width: 1180px;
  --bar-height: 22px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.4;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* —— Header —— */
.site-header {
  background: var(--white);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  justify-self: start;
  width: 180px;
  max-width: 100%;
}

.site-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.social-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--green-dark);
  transform: translateY(-2px);
  outline: none;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  border: 1px solid var(--green);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}

.lang-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--green);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 7px 9px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  background: rgba(24, 92, 55, 0.08);
  outline: none;
}

.lang-btn.is-active {
  background: var(--green);
  color: var(--white);
}

.lang-sep {
  width: 1px;
  height: 14px;
  background: var(--green);
  opacity: 0.35;
  flex-shrink: 0;
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 10px;
  text-align: right;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
  max-width: 220px;
}

.partner-logo {
  display: flex;
  align-items: center;
  width: 160px;
  max-width: 100%;
  flex-shrink: 0;
}

.partner-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ph-label {
  opacity: 0.9;
}

/* —— Green bars —— */
.green-bar {
  height: var(--bar-height);
  background: var(--green);
  width: 100%;
}

/* —— Hero —— */
.hero {
  background: var(--white);
  padding: 0;
}

.hero-inner {
  margin: 0;
  padding: 0;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

/* —— CTA —— */
.cta-section {
  background: var(--white);
  padding: 18px 16px 28px;
}

.cta-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  background: var(--green);
  color: var(--white);
  overflow: hidden;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta-texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.03) 12px,
      rgba(255, 255, 255, 0.03) 13px
    );
  pointer-events: none;
}

.cta-label {
  position: relative;
  z-index: 1;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  text-align: center;
  padding: 12px;
}

.cta-card[data-cta="expozanti"] .cta-label,
.cta-card[data-cta="plan"] .cta-label,
.cta-card[data-cta="catalog"] .cta-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: clamp(0.95rem, 1.7vw, 1.25rem);
  line-height: 1.25;
  max-width: 100%;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.cta-pdf-icon,
.cta-catalog-icon {
  flex-shrink: 0;
  width: 1.55em;
  height: 1.55em;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.cta-card:hover,
.cta-card:focus-visible {
  background: var(--green-dark);
  transform: translateY(-3px);
  outline: none;
}

.cta-card[data-cta="expozanti"] .cta-texture {
  background:
    url("assets/img/slider-4-img4-min.png") center / cover no-repeat;
  filter: blur(4px);
  transform: scale(1.08);
}

.cta-card[data-cta="plan"] .cta-texture {
  background:
    url("assets/img/homepage-slider-image-6-min.png") center / cover no-repeat;
  filter: blur(4px);
  transform: scale(1.08);
}

.cta-card[data-cta="catalog"] .cta-texture {
  background:
    url("assets/img/homepage-slider-image-2-min-1.png") center / cover no-repeat;
  filter: blur(4px);
  transform: scale(1.08);
}

.cta-card[data-cta="expozanti"]::after,
.cta-card[data-cta="plan"]::after,
.cta-card[data-cta="catalog"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 92, 55, 0.62);
  z-index: 1;
  pointer-events: none;
  transition: background 0.25s ease;
}

.cta-card[data-cta="expozanti"]:hover,
.cta-card[data-cta="expozanti"]:focus-visible,
.cta-card[data-cta="plan"]:hover,
.cta-card[data-cta="plan"]:focus-visible,
.cta-card[data-cta="catalog"]:hover,
.cta-card[data-cta="catalog"]:focus-visible {
  background: var(--green);
}

.cta-card[data-cta="expozanti"]:hover::after,
.cta-card[data-cta="expozanti"]:focus-visible::after,
.cta-card[data-cta="plan"]:hover::after,
.cta-card[data-cta="plan"]:focus-visible::after,
.cta-card[data-cta="catalog"]:hover::after,
.cta-card[data-cta="catalog"]:focus-visible::after {
  background: rgba(20, 74, 44, 0.72);
}

.cta-card.is-active {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* —— Footer —— */
.site-footer {
  background: #f5f5f5;
  padding: 44px 24px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 36px;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green);
  display: block;
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--green);
  margin-bottom: 18px;
}

.footer-org {
  display: block;
  max-width: 220px;
}

.footer-org img {
  width: 100%;
  height: auto;
}

.footer-socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-social:hover,
.footer-social:focus-visible {
  background: var(--green-dark);
  transform: scale(1.08);
  outline: none;
}

.footer-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  line-height: 1.45;
}

.footer-bottom {
  border-top: 2px solid var(--red);
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 0 22px;
  text-align: center;
}

.footer-copy {
  font-size: 0.9rem;
  color: #8a8a8a;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }

  .site-logo,
  .header-right {
    justify-self: center;
  }

  .header-right {
    flex-direction: column;
    gap: 12px;
  }

  .hashtags {
    text-align: center;
    justify-content: center;
    max-width: none;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    padding-right: 56px;
  }
}

/* —— Expozanți 2025 —— */
.exhibitor-page {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(24, 92, 55, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(211, 47, 47, 0.05), transparent 50%),
    linear-gradient(180deg, #f7faf8 0%, var(--white) 40%);
}

.exhibitor-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px 14px;
}

.exhibitor-kicker {
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.exhibitor-kicker a {
  color: var(--green);
  transition: color 0.2s ease;
}

.exhibitor-kicker a:hover,
.exhibitor-kicker a:focus-visible {
  color: var(--green-dark);
  outline: none;
}

.exhibitor-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
  gap: 16px 28px;
  align-items: end;
}

.exhibitor-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  line-height: 1.15;
}

.exhibitor-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 40rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.exhibitor-toolbar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.exhibitor-search-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green);
}

.exhibitor-search-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.exhibitor-search {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--ph-border);
  border-radius: 4px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.exhibitor-search:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 92, 55, 0.15);
}

.exhibitor-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.exhibitor-card[hidden] {
  display: none !important;
}

.exhibitor-list-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8px 24px 56px;
}

.exhibitor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.exhibitor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(24, 92, 55, 0.1);
  border-radius: 16px;
  padding: 14px 14px 14px;
  background: var(--white);
  min-height: 0;
  box-shadow: 0 1px 2px rgba(16, 42, 28, 0.04);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
  overflow: hidden;
}

.exhibitor-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 92, 55, 0.28);
  box-shadow:
    0 12px 28px rgba(24, 92, 55, 0.12),
    0 2px 6px rgba(16, 42, 28, 0.06);
}

.exhibitor-card:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.exhibitor-card[data-featured="1"] {
  border-color: rgba(240, 193, 75, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 248, 230, 0.55) 0%, var(--white) 42%);
}

.exhibitor-card[data-featured="1"]:hover {
  border-color: rgba(212, 160, 40, 0.7);
}

.exhibitor-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a3d00;
  background: #f0c14b;
  line-height: 1.2;
  box-shadow: 0 1px 2px rgba(90, 61, 0, 0.12);
}

.exhibitor-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 120px;
  margin-bottom: 12px;
  padding: 22px 12px 14px;
  border-radius: 12px;
  background: #f4f7f5;
}

.exhibitor-logo {
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.exhibitor-logo-wrap--empty {
  background: var(--ph-bg);
}

.exhibitor-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a2e22;
  line-height: 1.35;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.exhibitor-stand {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 5px 9px;
  width: fit-content;
  max-width: 100%;
  border-radius: 8px;
  background: rgba(24, 92, 55, 0.08);
  font-size: 0.78rem;
  line-height: 1.2;
}

.stand-label {
  color: var(--ph-text);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.stand-value {
  font-weight: 800;
  color: var(--green-dark);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.exhibitor-empty {
  margin-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-weight: 600;
}

/* —— Exhibitor detail modal —— */
body.modal-open {
  overflow: hidden;
}

.exhibitor-modal[hidden] {
  display: none !important;
}

.exhibitor-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
}

.exhibitor-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 20, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.exhibitor-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  background: #fbfcfb;
  border: 1px solid rgba(24, 92, 55, 0.1);
  border-radius: 18px;
  box-shadow:
    0 4px 6px rgba(12, 28, 20, 0.04),
    0 28px 64px rgba(12, 28, 20, 0.18);
  outline: none;
  animation: exhibitor-modal-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(24, 92, 55, 0.28) transparent;
}

.exhibitor-modal-dialog::-webkit-scrollbar {
  width: 8px;
}

.exhibitor-modal-dialog::-webkit-scrollbar-thumb {
  background: rgba(24, 92, 55, 0.28);
  border-radius: 8px;
}

@keyframes exhibitor-modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.exhibitor-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(24, 92, 55, 0.06);
  color: var(--green-dark);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.exhibitor-modal-close:hover,
.exhibitor-modal-close:focus-visible {
  background: rgba(24, 92, 55, 0.12);
  transform: scale(1.04);
  outline: none;
}

.exhibitor-modal-body {
  padding: 0;
}

.exhibitor-modal-loading,
.exhibitor-modal-empty {
  color: var(--text-muted);
  font-weight: 600;
  padding: 36px 32px;
}

.exhibitor-detail {
  display: flex;
  flex-direction: column;
}

.exhibitor-detail-header {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 32px 64px 28px 32px;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(24, 92, 55, 0.1), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.exhibitor-detail-logo {
  flex: 0 0 108px;
  width: 108px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(24, 92, 55, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(24, 92, 55, 0.08);
}

.exhibitor-detail-logo img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.exhibitor-detail-heading {
  min-width: 0;
  flex: 1;
}

.exhibitor-detail-title {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  color: #12241a;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
  text-transform: none;
}

.exhibitor-detail-stand {
  margin: 0;
}

.exhibitor-detail-stand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  background: rgba(24, 92, 55, 0.08);
  color: var(--green-dark);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.exhibitor-detail-stand-badge .stand-label {
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.exhibitor-detail-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 8px 28px 28px;
}

.exhibitor-detail-label {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6d8576;
}

.exhibitor-detail-panel {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid rgba(24, 92, 55, 0.07);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(12, 28, 20, 0.03);
}

.exhibitor-detail-meta {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.exhibitor-detail-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f5f8f6;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.45;
}

.exhibitor-detail-meta-item--place {
  grid-column: 1 / -1;
}

.exhibitor-detail-meta-item--web {
  grid-column: 1 / -1;
  padding: 0;
  background: transparent;
  min-height: 0;
}

.exhibitor-detail-meta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.exhibitor-detail-meta-primary {
  font-weight: 700;
  color: #1a2e22;
}

.exhibitor-detail-meta-secondary {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.exhibitor-detail-meta-item a:not(.exhibitor-detail-web) {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
  align-self: center;
  transition: color 0.2s ease;
}

.exhibitor-detail-meta-item a:not(.exhibitor-detail-web):hover,
.exhibitor-detail-meta-item a:not(.exhibitor-detail-web):focus-visible {
  color: var(--green-dark);
  outline: none;
}

.exhibitor-detail-icon-wrap {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(24, 92, 55, 0.1);
  color: var(--green);
}

.exhibitor-detail-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.exhibitor-detail-web {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--green);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.exhibitor-detail-web:hover,
.exhibitor-detail-web:focus-visible {
  background: var(--green-dark);
  transform: translateY(-1px);
  outline: none;
}

.exhibitor-detail-web .exhibitor-detail-icon {
  fill: currentColor;
}

.exhibitor-detail-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exhibitor-detail-brand-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: rgba(24, 92, 55, 0.08);
  color: #1a3324;
  font-size: 0.86rem;
  font-weight: 600;
}

.exhibitor-detail-descriptions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.exhibitor-detail-section {
  margin: 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f5f8f6;
}

.exhibitor-detail-section + .exhibitor-detail-section {
  margin-top: 0;
}

.exhibitor-detail-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2e22;
  margin-bottom: 8px;
}

.exhibitor-detail-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(24, 92, 55, 0.12);
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.exhibitor-detail-section p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #3c4f44;
}

.exhibitor-detail-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(24, 92, 55, 0.07);
  border-radius: 16px;
}

.exhibitor-detail-footer .exhibitor-detail-label {
  margin: 0;
}

.exhibitor-detail-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exhibitor-detail-social {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(24, 92, 55, 0.08);
  color: var(--green-dark);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.exhibitor-detail-social:hover,
.exhibitor-detail-social:focus-visible {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  outline: none;
}

.exhibitor-detail-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

@media (max-width: 1100px) {
  .exhibitor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .exhibitor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 720px) {
  .exhibitor-hero-row {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: stretch;
  }

  .exhibitor-logo-wrap {
    min-height: 108px;
    padding: 20px 10px 12px;
  }

  .exhibitor-logo {
    max-height: 76px;
  }

  .exhibitor-modal {
    padding: 0;
    align-items: flex-end;
  }

  .exhibitor-modal-dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 20px 20px 0 0;
  }

  .exhibitor-modal-close {
    top: 12px;
    right: 12px;
  }

  .exhibitor-detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 20px 22px;
  }

  .exhibitor-detail-logo {
    flex-basis: 92px;
    width: 92px;
    height: 92px;
  }

  .exhibitor-detail-content {
    padding: 4px 16px 24px;
    gap: 14px;
  }

  .exhibitor-detail-panel,
  .exhibitor-detail-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .exhibitor-detail-meta {
    grid-template-columns: 1fr;
  }

  .exhibitor-detail-title {
    font-size: 1.25rem;
  }

  .exhibitor-detail-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .exhibitor-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .exhibitor-list-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* —— Toast (JS) —— */
.live-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: var(--green);
  color: var(--white);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  max-width: min(90vw, 420px);
  text-align: center;
}

.live-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
