/* Home Page Styles */

.product-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  font-size: 0.82rem;
}

/* Promo Banner */
.gs-promo-banner {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--primary-dark);
}

.gs-promo-register {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  border-radius: 4px;
  padding: 5px 16px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.gs-promo-register:hover {
  background: #e8f0fe;
  color: var(--primary-dark);
}

/* Hero Section */
.hero-section {
  background: none;
  padding: 16px 0 0;
  position: relative;
  overflow: visible;
  z-index: 100;
}

.hero-section::before { display: none; }

.hero-section > .container {
  background: #fff;
  overflow: hidden;
}

.hero-section > .container > .row { align-items: stretch; }
.hero-section .col-lg-3 { padding: 0; display: flex; }
.hero-section .vertical-category-nav { flex: 1; display: flex; flex-direction: column; }
.hero-section .vertical-category-nav .category-list { flex: 1; }
.hero-section .hero-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero-section .col-lg-9 { display: flex; }
.hero-section h1 { color: var(--gray-900); font-size: 2.4rem; font-weight: 700; margin-bottom: 16px; }
.hero-section p { color: var(--gray-600); font-size: 1rem; margin-bottom: 28px; }

.hero-search {
  max-width: 600px;
  background: var(--white);
  border-radius: 50px;
  padding: 8px;
  display: flex;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.hero-search input { flex: 1; border: none; padding: 12px 24px; font-size: 1rem; border-radius: 50px; }
.hero-search input:focus { outline: none; }
.hero-search .btn { border-radius: 50px; padding: 12px 32px; font-weight: 600; }

/* Trade Show Panel */
.gs-show-panel {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.gs-show-tabs {
  display: flex;
  border-bottom: 1px solid var(--gray-200);
  background: #f8f9fa;
  overflow-x: auto;
  flex-shrink: 0;
}

.gs-show-tab {
  flex: 1;
  min-width: 140px;
  border: none;
  background: none;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  border-right: 1px solid var(--gray-200);
  transition: background 0.15s, color 0.15s;
  text-align: left;
  line-height: 1.3;
}

.gs-show-tab span {
  display: block;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.gs-show-tab:last-child { border-right: none; }

.gs-show-tab:hover { background: #eef2fa; color: var(--primary); }

.gs-show-tab.active {
  background: var(--primary);
  color: #fff;
}

.gs-show-tab.active span { color: rgba(255,255,255,0.8); }

.gs-show-banners { flex: 1; position: relative; min-height: 260px; }

.gs-show-banner {
  display: none;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.gs-show-banner.active { display: block; }

.gs-show-overlay {
  position: absolute;
  inset: 0;
}

.gs-show-content {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
  max-width: 60%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.gs-show-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gs-show-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.gs-show-meta, .gs-show-dates {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
}

.gs-show-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.gs-show-btn-primary {
  background: rgba(255,255,255,0.15);
  border: 2px solid #fff;
  color: #fff;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.gs-show-btn-primary:hover { background: rgba(255,255,255,0.3); color: #fff; }

.gs-show-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: rgba(255,255,255,0.9);
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  text-decoration: none;
  transition: border-color 0.15s;
}

.gs-show-btn-ghost:hover { border-color: #fff; color: #fff; }

/* Exhibitor Showcase Section */
.exhibitor-section {
  margin-bottom: 24px;
}
.exhibitor-section > .container {
  overflow: hidden;
  background: #fff;
}

.exhibitor-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff;
}

.exhibitor-banner-inner {
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.exhibitor-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
  width: fit-content;
}

.exhibitor-title {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #fff;
}

.exhibitor-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  line-height: 1.5;
}

.exhibitor-btn {
  background: #fff;
  color: #6b21a8;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 6px;
  padding: 8px 22px;
  width: fit-content;
  transition: background 0.2s;
}

.exhibitor-btn:hover {
  background: #f3e8ff;
  color: #6b21a8;
}

.exhibitor-card-col {
  border-left: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.exhibitor-card {
  padding: 20px 18px;
  background: #fff;
}

.exhibitor-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  flex-shrink: 0;
}

.exhibitor-logo-placeholder {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  flex-shrink: 0;
}

.exhibitor-company {
  font-size: 0.88rem;
  color: var(--gray-900);
  line-height: 1.3;
}

.exhibitor-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.exhibitor-cert-tag {
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
}

.exhibitor-cert-tag:hover {
  text-decoration: underline;
}

.exhibitor-location {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.exhibitor-prod-img {
  width: calc(33.33% - 4px);
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}

/* Category Section */
.category-section {
  padding: 60px 0;
  background: var(--white);
}

.category-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: var(--gray-100);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--gray-900);
  display: block;
}

.category-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

.category-card .category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.category-card:hover .category-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.category-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.category-card p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background: var(--gray-100);
}

.feature-item {
  text-align: center;
  padding: 30px;
}

.feature-item .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--white);
}

.feature-item h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section h1 {
    font-size: 2rem;
  }
}
