/* ============= GLOBAL RESET & BASE ============= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul { list-style: none; }

img { max-width: 100%; height: auto; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.mt-20 { margin-top: 20px; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-red {
  background: #c8161d;
  color: #fff;
}
.btn-red:hover {
  background: #a51218;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,22,29,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

.btn-outline-white {
  background: #fff;
  color: #333;
  border: 2px solid #ddd;
}
.btn-outline-white:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

.full-width { width: 100%; }

.see-all {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.see-all:hover { color: #c8161d; }

/* ============= COOKIE BANNER ============= */
.cookie-banner {
  background: #3d1d8e;
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  position: relative;
  z-index: 1000;
}
.cookie-banner p { flex: 1; text-align: center; }
.cookie-banner a { color: #ff6b6b; text-decoration: underline; }
.cookie-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  margin-left: 20px;
  padding: 0 4px;
}

/* ============= HEADER ============= */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 8px;
}

.logo-svg {
  width: 220px;
  height: 40px;
}

.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 40px;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
}
.main-nav a:hover { color: #c8161d; }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #666;
  cursor: pointer;
}
.divider { color: #ddd; font-size: 14px; }
.lang-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}
.signin-btn {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.signin-btn:hover { color: #c8161d; }

/* Header Tabs */
.header-tabs {
  border-bottom: 1px solid #eee;
}
.tabs {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.tab {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  padding: 10px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.tab.active {
  color: #c8161d;
  border-bottom-color: #c8161d;
}
.tab:hover { color: #c8161d; }

/* Search Bar */
.search-bar-wrap {
  padding: 14px 0;
}
.search-bar {
  display: flex;
  border: 2px solid #c8161d;
  border-radius: 6px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.search-select {
  background: #f8f8f8;
  border-right: 1px solid #ddd;
}
.search-select select {
  height: 100%;
  padding: 12px 16px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  min-width: 130px;
}
.search-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-size: 14px;
  outline: none;
}
.search-btn {
  background: #c8161d;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.search-btn:hover { background: #a51218; }

/* ============= LIVE BANNER ============= */
.live-banner {
  background: linear-gradient(135deg, #1a1a4e 0%, #2d1b69 50%, #3d1d8e 100%);
  padding: 16px 0;
}
.live-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 16px;
  flex-shrink: 0;
}
.play-icon {
  width: 40px;
  height: 40px;
  background: #c8161d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.live-dot { color: #ff3b3b; font-size: 10px; animation: pulse 1.5s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.live-text { color: #fff; font-weight: 800; font-size: 22px; }
.streaming-text { color: #fff; font-size: 12px; font-weight: 600; }
.live-info { flex: 1; }
.live-info h2 { color: #fff; font-size: 22px; font-weight: 700; }
.live-info p { color: rgba(255,255,255,0.8); font-size: 14px; }

/* ============= MAIN CONTENT (sidebar + show) ============= */
.main-content {
  background: #f5f5f5;
  padding: 24px 0;
}
.main-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
}

/* Sidebar */
.sidebar {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.category-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
}
.category-list li a:hover {
  color: #c8161d;
  padding-left: 4px;
}
.category-list li a i {
  font-size: 10px;
  color: #ccc;
  transition: color 0.2s;
}
.category-list li a:hover i { color: #c8161d; }

/* Show Tabs */
.show-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.show-tab {
  text-align: center;
  padding: 12px 8px;
  border-radius: 8px;
  background: #fff;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.show-tab strong { display: block; font-size: 14px; color: #333; }
.show-tab span { font-size: 12px; color: #888; }
.show-tab.active {
  background: #c8161d;
}
.show-tab.active strong,
.show-tab.active span { color: #fff; }
.show-tab:hover:not(.active) {
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

/* Exhibition Hero */
.exhibition-hero {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: 340px;
  background: linear-gradient(135deg, #1a237e 0%, #0d47a1 40%, #01579b 100%);
}
.exhibition-overlay {
  padding: 28px 32px;
  position: relative;
  z-index: 1;
}
.show-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.exhibition-logo {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
}
.exhibition-logo .red { color: #c8161d; }
.exh-label {
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin-left: 6px;
}
.exhibition-date {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.exhibition-title {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.exhibition-desc {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin-bottom: 20px;
}
.exhibition-btns {
  display: flex;
  gap: 16px;
}

/* ============= PRODUCT SCROLL ============= */
.product-section {
  background: #f5f5f5;
  padding: 0 0 24px;
}
.product-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.product-scroll::-webkit-scrollbar { height: 4px; }
.product-scroll::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.product-card {
  min-width: 155px;
  max-width: 155px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  scroll-snap-align: start;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.product-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-info {
  padding: 10px;
}
.product-price {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #c8161d;
}
.product-moq {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}
.product-name {
  display: block;
  font-size: 13px;
  color: #555;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============= FEATURE CARDS (Analyst / Low MOQ / OEM) ============= */
.feature-cards-section {
  background: #f5f5f5;
  padding: 0 0 24px;
}
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.feature-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.feature-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}
.feature-card-desc {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}
.feature-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feature-product {
  text-align: center;
}
.feature-product-img {
  width: 100%;
  aspect-ratio: 1;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.2s;
}
.feature-product:hover .feature-product-img { transform: scale(1.05); }
.feature-price {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #c8161d;
}
.feature-moq {
  display: block;
  font-size: 11px;
  color: #888;
}
.feature-label {
  display: block;
  font-size: 11px;
  color: #555;
  margin-top: 2px;
}

/* ============= SUPPLIERS ============= */
.suppliers-section {
  background: #f5f5f5;
  padding: 0 0 32px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #333;
}
.section-subtitle {
  font-size: 14px;
  color: #888;
  margin-left: 12px;
}
.suppliers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.supplier-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.supplier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.supplier-logo {
  font-size: 22px;
  margin-bottom: 8px;
}
.supplier-name {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}
.supplier-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
}

/* ============= RFQ SECTION ============= */
.rfq-section {
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
  padding: 48px 0;
}
.rfq-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
}
.rfq-info h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}
.rfq-info ul { margin-bottom: 20px; }
.rfq-info li {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.rfq-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #fff;
}

.rfq-form {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.rfq-form h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}
.rfq-form input,
.rfq-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border-color 0.2s;
}
.rfq-form input:focus,
.rfq-form select:focus { border-color: #c8161d; }
.rfq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* ============= SOURCE BY REGION ============= */
.region-section {
  padding: 48px 0;
  background: #fff;
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.region-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #f8f0f0;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.region-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.region-flag { font-size: 36px; }
.region-name { font-size: 18px; font-weight: 700; color: #333; }

/* ============= FEATURED CATEGORIES ============= */
.featured-categories {
  padding: 48px 0;
  background: #f5f5f5;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.category-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px 12px;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fce4ec, #ffcdd2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
  color: #c8161d;
  transition: transform 0.3s;
}
.category-card:hover .category-icon { transform: scale(1.1); }
.category-card span { font-size: 13px; font-weight: 600; color: #555; }

/* ============= KNOWLEDGE CENTER ============= */
.knowledge-section {
  padding: 48px 0;
  background: #fff;
}
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.knowledge-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.knowledge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.knowledge-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.knowledge-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  padding: 16px 16px 8px;
}
.knowledge-card p {
  font-size: 13px;
  color: #777;
  padding: 0 16px;
  line-height: 1.5;
}
.knowledge-date {
  display: block;
  padding: 8px 16px 16px;
  font-size: 12px;
  color: #aaa;
}

/* ============= SOURCING SERVICES ============= */
.services-section {
  padding: 48px 0;
  background: #f5f5f5;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.25s;
}
.service-card:hover { transform: translateY(-4px); }
.service-img {
  height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.service-label {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.service-card p {
  padding: 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* ============= BOTTOM BANNER ============= */
.bottom-banner {
  background: linear-gradient(135deg, #1a237e 0%, #3d1d8e 100%);
  padding: 32px 0;
}
.bottom-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom-banner-text h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}
.date-badge,
.venue-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 3px;
  margin-right: 8px;
}
.bottom-desc {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  margin-top: 8px;
}

/* ============= RECOMMENDED PRODUCT LIST ============= */
.product-list-section {
  padding: 40px 0;
  background: #fff;
}
.product-list-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 0;
  margin-top: 16px;
}
.product-list-grid a {
  font-size: 14px;
  color: #555;
  padding: 6px 0;
  transition: color 0.2s;
}
.product-list-grid a:hover { color: #c8161d; }

/* ============= SUBSCRIBE ============= */
.subscribe-section {
  padding: 48px 0;
  background: #f5f5f5;
  text-align: center;
}
.subscribe-inner h2 {
  font-size: 24px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
}
.subscribe-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid #ddd;
  background: #fff;
}
.subscribe-form input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-size: 14px;
  outline: none;
}
.subscribe-form .btn {
  border-radius: 0;
  padding: 14px 28px;
}

/* ============= FOOTER ============= */
.footer {
  background: #fff;
  padding: 40px 0 0;
  border-top: 1px solid #eee;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding-bottom: 32px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.footer-col ul li {
  margin-bottom: 6px;
}
.footer-col ul li a {
  font-size: 13px;
  color: #666;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #c8161d; }

.footer-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #eee;
}
.social-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-left span {
  font-size: 13px;
  color: #666;
}
.social-left a {
  width: 32px;
  height: 32px;
  background: #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}
.social-left a:hover { background: #c8161d; }

.social-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-right span {
  font-size: 13px;
  color: #666;
}
.qr-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #333;
  border-radius: 4px;
  background: none;
  font-size: 13px;
  cursor: pointer;
  color: #333;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #eee;
  text-align: center;
}
.footer-langs,
.footer-legal {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}
.footer-langs a,
.footer-legal a {
  color: #888;
  margin: 0 4px;
}
.footer-langs a:hover,
.footer-legal a:hover { color: #c8161d; }
.copyright {
  font-size: 12px;
  color: #aaa;
  margin-top: 8px;
}

/* ============= BACK TO TOP ============= */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 99;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .main-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .feature-cards-grid { grid-template-columns: 1fr; }
  .suppliers-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .knowledge-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .rfq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .bottom-banner-inner { flex-direction: column; text-align: center; gap: 16px; }
  .product-list-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header-top-inner { flex-wrap: wrap; gap: 8px; }
  .main-nav { gap: 12px; margin-left: 0; }
  .main-nav a { font-size: 12px; }
  .tabs { gap: 20px; }
  .tab { font-size: 16px; }
  .show-tabs { grid-template-columns: repeat(2, 1fr); }
  .suppliers-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .product-list-grid { grid-template-columns: repeat(2, 1fr); }
  .live-banner-inner { flex-direction: column; text-align: center; }
  .footer-social { flex-direction: column; gap: 12px; }
}
