/* Exhibitors Module Styles for PCCE 2026 theme */

/* 覆盖 ui-style-css 中 .lazy-load opacity:0，确保图片始终可见 */
.product-card-img img,
.thumbnail-item img,
.main-preview-box img {
  opacity: 1 !important;
  transition: none;
}

/* --- PCCE 2026 Banner Blue-Gray Color Scheme --- */
:root {
  --ui-color-primary: #0B3DD2 !important;
  --ui-color-assist-one: #6AA3F5 !important;
  --ui-color-assist-three: #2C7EF7 !important;
  --ui-color-assist-four: #000050 !important;
  --ui-color-assist-nine: #4D8EE8 !important;
  --ui-color-assist-six: #eaf2fa !important;
}

/* --- Exhibitor Container & Layout --- */
.exhibitor-container {
  background-color: #f6faf7;
  padding-bottom: 8rem;
}

/* Two-column layout grid */
.exhibitor-grid {
  display: flex;
  gap: 3.5rem;
  margin-top: 3rem;
}

.exhibitor-sidebar {
  width: 28%;
  flex-shrink: 0;
}

.exhibitor-main {
  width: 72%;
  flex-grow: 1;
}

/* Sidebar Search Card & Filters */
.filter-card {
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 1rem 3rem rgba(11, 61, 210, 0.03);
  border: 1px solid rgba(11, 61, 210, 0.06);
  padding: 3rem 2.5rem;
  position: sticky;
  top: 12rem;
  z-index: 10;
  transition: all 0.3s ease;
}

.filter-section-title {
  font-size: var(--f-s-18);
  font-weight: 600;
  color: var(--ui-color-assist-four);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(11, 61, 210, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-section-title i {
  color: var(--ui-color-primary);
  font-size: var(--f-s-20);
}

.search-input-group {
  position: relative;
  margin-bottom: 3rem;
}

.search-input-group input {
  width: 100%;
  height: 4.8rem;
  padding: 1rem 4.5rem 1rem 1.8rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.6rem;
  font-size: var(--f-s-14);
  color: var(--ui-color-font);
  transition: all 0.3s ease;
  background-color: #fafbfc;
}

.search-input-group input:focus {
  border-color: var(--ui-color-primary);
  box-shadow: 0 0 1.2rem rgba(11, 61, 210, 0.08);
  outline: none;
  background-color: #ffffff;
}

.search-input-group i {
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ui-color-font-assist);
  font-size: var(--f-s-18);
  cursor: pointer;
  transition: color 0.3s ease;
}

.search-input-group input:focus + i {
  color: var(--ui-color-primary);
}

.filter-tag-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.filter-tag-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.8rem;
  border-radius: 0.8rem;
  background: #f8fafc;
  color: var(--ui-color-font);
  font-size: var(--f-s-14);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}
.filter-tag-item span {
  flex: 1;
  min-width: 0;
  white-space: normal;
  word-break: break-word;
}

.filter-tag-item:hover {
  background: rgba(11, 61, 210, 0.04);
  color: var(--ui-color-primary);
  transform: translateX(0.4rem);
}

.filter-tag-item.active {
  background: var(--ui-color-primary);
  color: #ffffff;
  border-color: var(--ui-color-primary);
  box-shadow: 0 0.6rem 1.5rem rgba(11, 61, 210, 0.15);
}

.filter-tag-item.active .tag-count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.tag-count {
  font-size: var(--f-s-12);
  background: rgba(0, 0, 0, 0.04);
  padding: 0.2rem 0.8rem;
  border-radius: 1rem;
  color: var(--ui-color-font-assist);
  font-weight: 500;
  transition: all 0.25s ease;
}

.clear-btn {
  width: 100%;
  height: 4.8rem;
  border-radius: 0.6rem;
  border: 1px dashed var(--ui-color-primary);
  background: transparent;
  color: var(--ui-color-primary);
  font-size: var(--f-s-14);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.clear-btn:hover {
  background: var(--ui-color-primary);
  color: #ffffff;
  border-style: solid;
  box-shadow: 0 0.4rem 1.2rem rgba(11, 61, 210, 0.1);
}

/* Exhibitor Cards List */
.exhibitor-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.exhibitor-card {
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 0.8rem 2.5rem rgba(11, 61, 210, 0.02);
  border: 1px solid rgba(11, 61, 210, 0.04);
  padding: 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.exhibitor-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0.5rem;
  background: var(--ui-color-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.exhibitor-card:hover {
  transform: translateY(-0.6rem);
  box-shadow: 0 1.2rem 3.5rem rgba(11, 61, 210, 0.06);
  border-color: rgba(11, 61, 210, 0.12);
}

.exhibitor-card:hover::before {
  opacity: 1;
}

/* Logo Placeholder styling */
.exhibitor-logo-placeholder {
  width: 21rem;
  height: 13rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: var(--f-s-24);
  font-weight: 700;
  flex-shrink: 0;
  text-align: center;
  box-shadow: inset 0 0 2rem rgba(255, 255, 255, 0.12);
  letter-spacing: 0.1rem;
  padding: 1rem;
  line-height: 1.2;
}
.exhibitor-logo-placeholder img {
  width: fit-content;
  height: auto;
  max-width: 100%;
}

.exhibitor-logo-placeholder span {
  font-size: var(--f-s-12);
  font-weight: 400;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.exhibitor-logo-placeholder.style-2 {
  background: linear-gradient(135deg, var(--ui-color-primary) 0%, var(--ui-color-assist-one) 100%);
}

.exhibitor-logo-placeholder.style-3 {
  background: linear-gradient(135deg, var(--ui-color-assist-three) 0%, var(--ui-color-assist-nine) 100%);
}

.exhibitor-info-panel {
  flex-grow: 1;
  width: calc(100% - 26rem);
}

.exhibitor-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  gap: 2rem;
}

.exhibitor-name {
  font-size: var(--f-s-22);
  font-weight: 600;
  color: var(--ui-color-assist-four);
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}

.exhibitor-card:hover .exhibitor-name {
  color: var(--ui-color-primary);
}

.booth-badge {
  font-size: var(--f-s-13);
  font-weight: 600;
  background: rgba(11, 61, 210, 0.06);
  color: var(--ui-color-primary);
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  border: 1px solid rgba(11, 61, 210, 0.1);
}

.booth-badge i {
  font-size: var(--f-s-14);
}

.exhibitor-description {
  font-size: var(--f-s-14);
  color: var(--ui-color-font-assist);
  line-height: 1.6;
  margin-bottom: 2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.exhibitor-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.exhibitor-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.category-tag {
  font-size: var(--f-s-12);
  background: rgba(135, 193, 57, 0.06);
  color: var(--ui-color-assist-nine);
  border: 1px solid rgba(135, 193, 57, 0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 0.4rem;
  font-weight: 500;
}

.enter-showroom-btn {
  font-size: var(--f-s-14);
  font-weight: 600;
  color: #ffffff;
  background-color: var(--ui-color-primary);
  border-radius: 0.6rem;
  padding: 1.1rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 0.4rem 1.2rem rgba(11, 61, 210, 0.12);
}

.enter-showroom-btn:hover {
  background-color: var(--ui-color-assist-three);
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.8rem rgba(11, 61, 210, 0.22);
}

/* No results state */
.no-results-panel {
  text-align: center;
  padding: 8rem 3rem;
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 0.8rem 3rem rgba(10, 10, 10, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.no-results-panel i {
  font-size: 6rem;
  color: var(--ui-color-font-assist);
  margin-bottom: 2rem;
  opacity: 0.4;
  display: block;
}

.no-results-panel h3 {
  font-size: var(--f-s-20);
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--ui-color-assist-four);
}

.no-results-panel p {
  color: var(--ui-color-font-assist);
  font-size: var(--f-s-14);
}

/* --- Exhibitor Detail Page --- */
.detail-hero-section {
  background: linear-gradient(135deg, var(--ui-color-assist-four) 0%, #062a15 100%);
  padding: 6rem 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.detail-hero-section > .module-width {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}

.detail-hero-section::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -20%;
  width: 45rem;
  height: 45rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135, 193, 57, 0.12) 0%, transparent 70%);
  z-index: 1;
}

.detail-hero-section::before {
  content: '';
  position: absolute;
  left: -10%;
  top: -20%;
  width: 35rem;
  height: 35rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 61, 210, 0.25) 0%, transparent 60%);
  z-index: 1;
}

.detail-hero-info {
  flex: 1;
  min-width: 0;
}

.detail-hero-info h1 {
  font-size: var(--f-s-36);
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  letter-spacing: 0.05rem;
}

.detail-hero-logo {
  flex-shrink: 0;
  width: 14rem;
  height: 14rem;
  border-radius: 1.6rem;
  background: #ffffff;
  padding: 1.2rem;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.detail-hero-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes detailHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes detailHeroFadeIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.detail-hero-animate {
  opacity: 0;
  animation-fill-mode: both;
}

.detail-hero-animate-1 {
  animation: detailHeroFadeUp 0.7s ease-out 0.05s forwards;
}

.detail-hero-animate-2 {
  animation: detailHeroFadeUp 0.7s ease-out 0.2s forwards;
}

.detail-hero-animate-3 {
  animation: detailHeroFadeIn 0.75s ease-out 0.15s forwards;
}

.detail-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.detail-hero-meta .booth-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: var(--f-s-14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-hero-meta .category-tag {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: var(--f-s-13);
}

.detail-main-layout {
  display: flex;
  gap: 3.5rem;
  margin-top: 4rem;
}

.detail-content-col {
  width: 70%;
}

.detail-sidebar-col {
  width: 30%;
  align-self: flex-start;
}

.detail-sidebar-sticky {
  position: sticky;
  top: calc(var(--site-header-height, 12rem) + 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 5;
}

.detail-block {
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 0.8rem 3rem rgba(11, 61, 210, 0.02);
  padding: 4rem;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(11, 61, 210, 0.04);
}

.detail-block-title {
  font-size: var(--f-s-22);
  font-weight: 600;
  color: var(--ui-color-assist-four);
  margin-bottom: 3rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid rgba(11, 61, 210, 0.08);
  position: relative;
}

.detail-block-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 6rem;
  height: 0.3rem;
  background: var(--ui-color-primary);
}

.company-intro-text {
  font-size: var(--f-s-16);
  color: var(--ui-color-font);
  line-height: 1.8;
}

.company-intro-text p {
  margin-bottom: 1.8rem;
}

.company-intro-text p:last-child {
  margin-bottom: 0;
}

/* Sidebar detail card */
.sidebar-info-card {
  background: #ffffff;
  border-radius: 1.2rem;
  box-shadow: 0 0.8rem 3rem rgba(11, 61, 210, 0.03);
  padding: 3.5rem 3rem;
  border: 1px solid rgba(11, 61, 210, 0.05);
  position: static;
}

.sidebar-interaction-card {
  margin-top: 0 !important;
}

.interaction-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 0.5rem 0.5rem;
}

.sidebar-info-title {
  font-size: var(--f-s-18);
  font-weight: 600;
  color: var(--ui-color-assist-four);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.info-list-group {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.info-list-item {
  display: flex;
  gap: 1.2rem;
  font-size: var(--f-s-14);
  min-width: 0;
  align-items: flex-start;
}

.info-list-icon {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 0.8rem;
  background: rgba(11, 61, 210, 0.08);
  border: 1px solid rgba(11, 61, 210, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-list-icon i {
  color: var(--ui-color-primary);
  font-size: var(--f-s-18);
  line-height: 1;
}

.info-list-body {
  flex: 1;
  min-width: 0;
}

.info-list-item i {
  color: var(--ui-color-primary);
  font-size: var(--f-s-18);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.info-label {
  color: var(--ui-color-font-assist);
  margin-bottom: 0.4rem;
  font-size: var(--f-s-13);
}

.info-val {
  color: var(--ui-color-font);
  font-weight: 600;
  word-break: break-all;
  overflow-wrap: break-word;
  flex-grow: 1;
  min-width: 0;
}

.info-val a {
  color: var(--ui-color-primary);
  text-decoration: none;
  display: inline;
}

.info-val a:hover {
  text-decoration: underline;
}

/* Product grid display inside detail page */
.products-carousel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}

.product-showcase-card {
  background: #fafbfc;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-showcase-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 2.5rem rgba(11, 61, 210, 0.07);
  border-color: rgba(11, 61, 210, 0.12);
  background: #ffffff;
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background-color: #f1f5f9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-showcase-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: var(--f-s-15);
  font-weight: 600;
  color: var(--ui-color-assist-four);
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 4.2rem;
  transition: color 0.25s ease;
}

.product-showcase-card:hover .product-card-title {
  color: var(--ui-color-primary);
}

.product-card-cat {
  font-size: var(--f-s-13);
  color: var(--ui-color-font-assist);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

.products-grid-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.product-exhibitor-meta {
  font-size: var(--f-s-13);
  color: var(--ui-color-font-assist);
  margin-top: 0.8rem;
}

.product-exhibitor-meta a {
  color: var(--ui-color-primary);
  text-decoration: none;
}

.product-exhibitor-meta a:hover {
  text-decoration: underline;
}

.search-active-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.4rem;
  padding: 1.6rem 2rem;
  background: #ffffff;
  border-radius: 0.8rem;
  border: 1px solid rgba(11, 61, 210, 0.08);
}

.search-active-label {
  font-size: var(--f-s-14);
  color: var(--ui-color-font-assist);
  font-weight: 500;
}

.search-active-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.2rem;
  background: rgba(11, 61, 210, 0.08);
  color: var(--ui-color-primary);
  border-radius: 2rem;
  font-size: var(--f-s-13);
  text-decoration: none;
  transition: background 0.2s ease;
}

.search-active-tag:hover {
  background: rgba(11, 61, 210, 0.14);
}

.search-view-all {
  margin-left: auto;
  font-size: var(--f-s-14);
  color: var(--ui-color-primary);
  font-weight: 600;
  text-decoration: none;
}

.search-view-all:hover {
  text-decoration: underline;
}

/* Carousel Control Custom styling */
.carousel-nav-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  margin-top: -5rem;
  margin-bottom: 2.5rem;
}

.carousel-nav-btn {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  border: 1px solid rgba(11, 61, 210, 0.2);
  background: #ffffff;
  color: var(--ui-color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
  background: var(--ui-color-primary);
  color: #ffffff;
  border-color: var(--ui-color-primary);
  box-shadow: 0 0.5rem 1.2rem rgba(11, 61, 210, 0.15);
}

.carousel-nav-btn i {
  font-size: var(--f-s-16);
  font-weight: bold;
}

/* --- Product Detail Page --- */
.product-showcase-layout {
  display: flex;
  gap: 4.5rem;
  margin-top: 3.5rem;
  background: #ffffff;
  padding: 4.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 0.8rem 3rem rgba(11, 61, 210, 0.03);
  border: 1px solid rgba(11, 61, 210, 0.05);
}

.product-gallery-col {
  width: 50%;
}

.product-details-col {
  width: 50%;
  display: flex;
  flex-direction: column;
}

/* Gallery image switcher styles */
.main-preview-box {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  background: #f8fafc;
  box-shadow: 0 0.5rem 1.8rem rgba(0, 0, 0, 0.01);
}

.main-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease-in-out;
}

.thumbnail-strip {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.thumbnail-item {
  width: calc(25% - 1.1rem);
  aspect-ratio: 4/3;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: #f8fafc;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.02);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.thumbnail-item:hover img {
  opacity: 1;
}

.thumbnail-item.active {
  border-color: var(--ui-color-primary);
  box-shadow: 0 0 1.2rem rgba(11, 61, 210, 0.2);
}

.thumbnail-item.active img {
  opacity: 1;
}

/* Specifications list and layout */
.product-details-col h1 {
  font-size: var(--f-s-28);
  font-weight: 700;
  color: var(--ui-color-assist-four);
  margin-bottom: 1.8rem;
  line-height: 1.35;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
}

.product-exhibitor-link {
  font-size: var(--f-s-14);
  color: var(--ui-color-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(11, 61, 210, 0.05);
  padding: 0.6rem 1.4rem;
  border-radius: 0.6rem;
  transition: all 0.25s ease;
}

.product-exhibitor-link:hover {
  background: var(--ui-color-primary);
  color: #ffffff;
  box-shadow: 0 0.4rem 1rem rgba(11, 61, 210, 0.1);
}

.product-specs-table {
  width: 100%;
  margin-bottom: 3.5rem;
  border-collapse: collapse;
}

.product-specs-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-specs-table tr:last-child {
  border-bottom: none;
}

.product-specs-table td {
  padding: 1.4rem 1.8rem;
  font-size: var(--f-s-14);
  line-height: 1.2;
}

.product-specs-table td.label-col {
  color: var(--ui-color-font-assist);
  width: 32%;
  font-weight: 500;
  background: #fafbfc;
}

.product-specs-table td.val-col {
  color: var(--ui-color-font);
  width: 68%;
  font-weight: 600;
}

.inquire-btn {
  margin-top: auto;
  width: 100%;
  height: 5.2rem;
  border-radius: 0.8rem;
  font-size: var(--f-s-16);
  font-weight: 600;
  background-color: var(--ui-color-assist-nine);
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 0.6rem 1.8rem rgba(135, 193, 57, 0.25);
}

.inquire-btn:hover {
  background-color: #76a931;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2.2rem rgba(135, 193, 57, 0.35);
}

.inquire-btn i {
  font-size: var(--f-s-18);
}

/* Modal Form Styles */
.inquiry-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 26, 14, 0.65);
  backdrop-filter: blur(0.5rem);
  z-index: 20000;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.inquiry-modal-body {
  background: #ffffff;
  border-radius: 1.2rem;
  width: 100%;
  max-width: 52rem;
  box-shadow: 0 1.5rem 5rem rgba(6, 26, 14, 0.25);
  overflow: hidden;
  position: relative;
  animation: modalSlideIn 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(4rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.inquiry-modal-header {
  background: linear-gradient(135deg, var(--ui-color-assist-four) 0%, var(--ui-color-primary) 100%);
  color: #ffffff;
  padding: 2.5rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inquiry-modal-header h4 {
  font-size: var(--f-s-18);
  font-weight: 600;
  margin: 0;
}

.inquiry-modal-header i.close-btn {
  font-size: var(--f-s-24);
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.inquiry-modal-header i.close-btn:hover {
  opacity: 1;
}

.inquiry-form {
  padding: 3.5rem;
}

.form-group {
  margin-bottom: 2.2rem;
}

.form-group label {
  display: block;
  font-size: var(--f-s-14);
  font-weight: 500;
  color: var(--ui-color-font);
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.6rem;
  font-size: var(--f-s-14);
  transition: all 0.3s ease;
  color: var(--ui-color-font);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ui-color-primary);
  box-shadow: 0 0 1.2rem rgba(11, 61, 210, 0.08);
  outline: none;
}

.submit-inquiry-btn {
  width: 100%;
  height: 5rem;
  background: var(--ui-color-primary);
  color: #ffffff;
  border: none;
  font-size: var(--f-s-16);
  font-weight: 600;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0.4rem 1.2rem rgba(11, 61, 210, 0.15);
}

.submit-inquiry-btn:hover {
  background: var(--ui-color-assist-three);
  box-shadow: 0 0.6rem 1.8rem rgba(11, 61, 210, 0.25);
}

/* --- Mobile Responsiveness Adjustments --- */
@media (max-width: 992px) {
  .exhibitor-grid {
    flex-direction: column;
    gap: 3rem;
  }
  
  .exhibitor-sidebar {
    width: 100%;
  }
  
  .exhibitor-main {
    width: 100%;
  }

  .products-grid-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .filter-card {
    position: static;
    padding: 3rem;
  }
  
  .exhibitor-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem;
    gap: 2rem;
  }
  
  .exhibitor-logo-placeholder {
    width: 11rem;
    height: 11rem;
    font-size: var(--f-s-22);
  }
  
  .exhibitor-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 1rem;
    width: 100%;
  }
  
  .exhibitor-footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }
  
  .enter-showroom-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Detail Page Mobile */
  .detail-hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  
  .detail-main-layout {
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .detail-content-col {
    width: 100%;
  }
  
  .detail-sidebar-col {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    order: -1; /* Display info card first on mobile */
  }

  .detail-sidebar-sticky {
    position: static;
  }
  
  .sidebar-info-card {
    position: static;
  }
  
  .products-carousel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .carousel-nav-buttons {
    margin-top: 1rem;
    margin-bottom: 2rem;
  }
  
  /* Product Detail Page Mobile */
  .product-showcase-layout {
    flex-direction: column;
    padding: 3rem;
    gap: 3.5rem;
  }
  
  .product-gallery-col {
    width: 100%;
  }
  
  .product-details-col {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .products-carousel-grid {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-item {
    width: calc(33.33% - 1rem);
  }
  
  .detail-hero-section {
    padding: 4rem 0;
  }

  .detail-hero-section > .module-width,
  .detail-hero-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .detail-hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .detail-hero-logo {
    width: 10rem;
    height: 10rem;
    align-self: center;
  }
  
  .detail-hero-info h1 {
    font-size: var(--f-s-28);
  }
}

/* --- Product intro full-width section --- */
.product-intro-section {
  margin-top: 2.5rem;
  background: #ffffff;
  padding: 3.5rem 4.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 0.8rem 3rem rgba(11, 61, 210, 0.03);
  border: 1px solid rgba(11, 61, 210, 0.05);
}

.company-intro-text.product-intro-body {
  line-height: 1.8;
  word-break: break-word;
  color: var(--ui-color-font, #333);
}

.company-intro-text.product-intro-body p {
  margin-bottom: 1rem;
  color: var(--ui-color-font, #333);
}

.company-intro-text.product-intro-body p:last-child {
  margin-bottom: 0;
}

.company-intro-text.product-intro-body img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.6rem;
}

/* --- Interaction buttons --- */
.interaction-buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.interaction-buttons-row button,
.interaction-buttons-vertical button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  background: #fff;
  color: #444;
  cursor: pointer;
  font-size: var(--f-s-14);
  font-weight: 500;
  transition: all 0.2s ease;
}

.interaction-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.interaction-buttons-vertical button {
  width: 100%;
  padding: 1rem 1.8rem;
}

.interaction-buttons-row button:hover,
.interaction-buttons-vertical button:hover {
  border-color: var(--ui-color-primary);
  color: var(--ui-color-primary);
  background: rgba(11, 61, 210, 0.04);
}

.interaction-buttons-row button.active,
.interaction-buttons-vertical button.active {
  background: var(--ui-color-primary);
  border-color: var(--ui-color-primary);
  color: #fff;
}

.interaction-buttons-row button.active:hover,
.interaction-buttons-vertical button.active:hover {
  background: #085a3d;
}

/* --- Consult modal --- */
.ec-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.45);
  align-items: center;
  justify-content: center;
}

.ec-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 2.4rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 90%;
  max-width: 48rem;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
}

.ec-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ec-modal-header h4 {
  margin: 0;
  font-weight: 600;
  font-size: var(--f-s-18);
}

.ec-modal-close {
  color: #aaa;
  font-size: 2.4rem;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.ec-modal-close:hover {
  color: #333;
}

.ec-consult-tabs {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.ec-consult-tab {
  flex: 1;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  background: #fafafa;
  color: #666;
  cursor: pointer;
  font-size: var(--f-s-14);
  transition: all 0.2s ease;
}

.ec-consult-tab.active {
  background: rgba(11, 61, 210, 0.08);
  border-color: var(--ui-color-primary);
  color: var(--ui-color-primary);
  font-weight: 600;
}

.ec-consult-hint,
.comment-hint {
  font-size: var(--f-s-13);
  color: #888;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}

.ec-form-group {
  margin-bottom: 1.5rem;
}

.ec-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.ec-form-group textarea,
.comment-form-box textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  padding: 1rem;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.ec-modal-actions,
.comment-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.ec-modal-actions .btn-success,
.comment-form-actions .btn-success {
  background: var(--ui-color-primary);
  color: #fff;
  border-color: var(--ui-color-primary);
  padding: 0.8rem 2rem;
  border-radius: 0.6rem;
  cursor: pointer;
}

.ec-modal-actions .btn-default {
  padding: 0.8rem 2rem;
  border-radius: 0.6rem;
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
}

/* --- Comments / Q&A --- */
.other-exhibits-section {
  margin-top: 4rem;
  border-top: 1px solid #eee;
  padding-top: 2.5rem;
}

.other-exhibits-title {
  font-size: var(--f-s-18);
  font-weight: 600;
  margin-bottom: 2rem;
  color: #333;
}

.other-exhibits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 2rem;
}

.other-exhibits-card {
  border: 1px solid #eee;
  border-radius: 0.6rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.other-exhibits-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.05);
}

.other-exhibits-card img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.other-exhibits-card-body {
  padding: 1.2rem;
}

.other-exhibits-card-title {
  font-weight: 500;
  font-size: var(--f-s-14);
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}

.other-exhibits-card-cat {
  color: #888;
  font-size: var(--f-s-12);
}

.comment-section {
  margin-top: 4rem;
  border-top: 1px solid #eee;
  padding-top: 2.5rem;
}

.comment-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.comment-title {
  font-size: var(--f-s-18);
  font-weight: 600;
  color: #333;
  margin: 0;
}

.btn-link-ec {
  background: none;
  border: none;
  color: var(--ui-color-primary);
  font-size: var(--f-s-14);
  cursor: pointer;
  padding: 0;
  font-weight: 500;
}

.btn-link-ec:hover {
  text-decoration: underline;
}

.comment-list {
  margin-bottom: 2rem;
}

.comment-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f5f5f5;
}

.comment-item-pending {
  opacity: 0.75;
}

.comment-reply-item {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1rem 0 0 1rem;
  border-left: 3px solid #e8f5ee;
}

.comment-avatar-sm img {
  width: 3rem;
  height: 3rem;
}

.comment-reply-item .comment-user {
  color: #1a7a4c;
}

.comment-avatar img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
}

.comment-body {
  flex: 1;
  min-width: 0;
}

.comment-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.comment-user {
  font-weight: 600;
  color: #444;
}

.comment-time {
  color: #999;
  font-size: var(--f-s-12);
}

.comment-text {
  color: #666;
  line-height: 1.6;
  word-break: break-word;
}

.no-comments {
  padding: 2rem 0;
  color: #888;
  text-align: center;
}

.comment-form-box {
  margin-top: 2.5rem;
  background: #fafafa;
  padding: 2rem;
  border-radius: 0.6rem;
}

.comment-form-box h5 {
  margin: 0 0 1.5rem;
  font-weight: 600;
}

.comment-form-box .form-group {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .breadcrumb-list-module {
    padding: 1rem 0;
    overflow: hidden;
  }

  .breadcrumb-list-module .module-width {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .breadcrumb-list-module .path-list {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.2rem;
  }

  .breadcrumb-list-module .path-list::-webkit-scrollbar {
    display: none;
  }

  .exhibitor-container {
    padding-bottom: 4rem;
  }

  .exhibitor-grid {
    gap: 1.6rem;
    margin-top: 1.6rem;
  }

  .filter-card {
    padding: 1.6rem;
    border-radius: 1rem;
  }

  .filter-section-title {
    font-size: var(--f-s-16);
    margin-bottom: 1.2rem;
  }

  .filter-tag-list {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
    padding-bottom: 0.4rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tag-list::-webkit-scrollbar {
    display: none;
  }

  .filter-tag-item {
    flex: 0 0 auto;
    padding: 0.8rem 1.2rem;
    font-size: var(--f-s-13);
    white-space: nowrap;
  }

  .clear-btn {
    height: 4.2rem;
  }

  .search-active-tags {
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .search-view-all {
    margin-left: 0;
    width: 100%;
  }

  .exhibitor-list-wrapper {
    gap: 1.4rem;
  }

  .exhibitor-card {
    padding: 1.5rem;
    gap: 1.2rem;
    align-items: stretch;
  }

  .exhibitor-logo-placeholder {
    width: 100%;
    height: 10rem;
    border-radius: 0.8rem;
    background: #f8fafc;
  }

  .exhibitor-logo-placeholder img {
    max-width: 80%;
    max-height: 8rem;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .exhibitor-info-panel {
    width: 100%;
  }

  .exhibitor-header-row {
    margin-top: 0;
    gap: 0.8rem;
  }

  .exhibitor-name {
    font-size: var(--f-s-18);
    line-height: 1.35;
  }

  .booth-badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
    padding: 0.5rem 1rem;
  }

  .exhibitor-description {
    margin-bottom: 1.4rem;
    -webkit-line-clamp: 3;
  }

  .category-tag {
    line-height: 1.35;
  }

  .product-intro-section {
    padding: 2.5rem 2rem;
    margin-top: 2rem;
  }

  .ec-consult-tabs {
    flex-direction: column;
  }

  .comment-section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-hero-section {
    padding: 3.2rem 0;
  }

  .detail-hero-info {
    width: 100%;
  }

  .detail-hero-info h1 {
    font-size: var(--f-s-24);
    line-height: 1.35;
    word-break: break-word;
  }

  .detail-hero-meta {
    gap: 0.8rem;
  }

  .detail-hero-meta .booth-badge,
  .detail-hero-meta .category-tag {
    max-width: 100%;
    white-space: normal;
  }

  .detail-block {
    padding: 2rem 1.6rem;
    margin-bottom: 1.8rem;
    border-radius: 1rem;
  }

  .detail-block-title {
    font-size: var(--f-s-18);
    margin-bottom: 1.8rem;
  }

  .sidebar-info-card {
    padding: 2rem 1.6rem;
    border-radius: 1rem;
  }

  .info-list-group {
    gap: 1.4rem;
  }

  .info-list-item {
    gap: 1rem;
  }

  .info-val {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .products-carousel-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .comment-item,
  .comment-reply-item {
    gap: 1rem;
  }

  .comment-form-box {
    padding: 1.5rem;
  }
}
