:root {
  --bg-body: #050608;
  --bg-elevated: #101218;
  --bg-elevated-soft: #151927;
  --accent: #d61f26;
  --accent-soft: rgba(214, 31, 38, 0.22);
  --text-main: #ffffff;
  --text-muted: #9ca1b5;
  --border-soft: rgba(255, 255, 255, 0.1);
  --font-main: "Exo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-alt: "Jura", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top left, #191b27 0, #050608 55%);
  color: var(--text-main);
  font-family: var(--font-main);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  padding-top: 110px;
  /* fixed header offset */
}

.site-footer {
  margin-top: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* Layout */
.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 6, 8, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(16px);
}

.header-top {
  background: transparent;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: none;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.4rem;
}

.header-contact {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
}

.header-contact a {
  color: var(--text-muted);
}

.header-contact i {
  margin-right: 0.4rem;
  color: var(--accent);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 32px;
  visibility: visible !important;
}

.header-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8) !important;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 31, 38, 0.3);
}

.header-social a i,
.header-social a i.fab,
.header-social .fab,
.header-social a [class*="fa-"],
.header-social .social-icon i {
  display: inline-block !important;
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1 !important;
  font-size: 1rem !important;
  speak: none;
  visibility: visible !important;
  opacity: 1 !important;
}

.header-main {
  background: transparent;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.7rem;
  gap: 1.5rem;
}

.logo img {
  height: 42px;
  object-fit: contain;
}

/* Nav */
.main-nav {
  display: flex;
  flex: 1;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin: 0;
  padding: 0;
}

.main-nav>ul>li>a,
.main-nav>ul>li>button {
  font-size: 0.93rem;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav>ul>li>a:hover,
.main-nav>ul>li>button:hover {
  color: #fff;
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle i {
  font-size: 0.7rem;
}

.dropdown {
  position: absolute;
  top: 160%;
  left: 0;
  min-width: 200px;
  background: #10121b;
  border-radius: 10px;
  padding: 0.6rem 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  display: none;
  border: 1px solid var(--border-soft);
}

.dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.dropdown li a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.has-dropdown.open .dropdown {
  display: block;
}

/* Mouse follower cursor */
.cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  z-index: 100;
  opacity: 0;
  transition:
    transform 0.08s ease-out,
    opacity 0.15s ease-out,
    background-color 0.15s ease-out,
    border-color 0.15s ease-out;
}

.cursor-active .cursor-follower {
  opacity: 0.9;
}

.cursor-hover .cursor-follower {
  transform: translate(-50%, -50%) scale(0.7);
  background-color: var(--accent-soft);
  border-color: var(--accent);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.05rem;
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.icon-button:hover {
  color: #fff;
  transform: translateY(-1px);
}

.lang-switch {
  font-size: 0.85rem;
  letter-spacing: 0.17em;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 8px 25px rgba(214, 31, 38, 0.4);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  width: 32px;
  height: 26px;
  border: none;
  background: none;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.btn-primary {
  border-radius: 999px;
  border: none;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, var(--accent), #ff6245);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 14px 40px rgba(214, 31, 38, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(214, 31, 38, 0.65);
  filter: brightness(1.05);
}

.btn-secondary {
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

/* Home Banner */
.home-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--banner-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 80px;
  padding-bottom: 4rem;
}

.home-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.7) 0%, rgba(5, 6, 8, 0.85) 100%);
  z-index: 1;
}

.home-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.home-banner-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.home-banner-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.home-banner-cta {
  margin-top: 1.5rem;
}

.home-banner-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  transition: color 0.2s ease;
}

.home-banner-scroll:hover {
  color: var(--accent);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Shared */
section {
  padding-block: 4rem;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 480px;
  margin-inline: auto;
}

/* Products slider */
.products {
  background: radial-gradient(circle at top, #1c1f33 0, #050608 60%);
  padding-top: 120px;
}

.products-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}

.product-slider-wrapper {
  position: relative;
}

.product-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 260px;
}

.product-slide {
  position: absolute;
  opacity: 0;
  transform: translateX(40px) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 420px;
}

.product-slide img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.9));
}

.product-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.product-dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.product-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, width 0.2s ease;
}

.product-dots button.active {
  background: var(--accent);
  width: 20px;
  transform: translateY(-1px);
}

.product-detail {
  background: radial-gradient(circle at top, rgba(214, 31, 38, 0.2), transparent 55%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.7rem 1.8rem;
  position: relative;
  overflow: hidden;
}

.product-detail::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 65%);
  opacity: 0.4;
  pointer-events: none;
}

.product-detail h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0 0 0.3rem;
  color: var(--text-muted);
}

.product-detail p {
  font-size: 1.4rem;
  margin: 0 0 0.9rem;
}

.btn-small {
  padding: 0.55rem 1.3rem;
  font-size: 0.8rem;
}

.product-nav {
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  display: flex;
  gap: 0.4rem;
}

.product-arrow {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(5, 6, 8, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.product-arrow:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.product-tagline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-tagline img {
  width: 26px;
  opacity: 0.9;
}

/* Products page (grid) */
.products-page {
  background: radial-gradient(circle at top, #1c1f33 0, #050608 60%);
  padding-top: 70px;
}

/* Catalog page hero */
.catalog-hero {
  background: radial-gradient(circle at top, #1c1f33 0, #050608 60%);
}

@media (max-width: 768px) {
  .catalog-hero {
    display: none;
  }
}

.products-page-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.2rem;
}

.products-filter {
  display: flex;
  align-items: flex-end;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.products-filter-label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.products-filter select {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  min-width: 220px;
}

.products-filter input[type="text"] {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  min-width: 260px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card-media {
  display: block;
  background: rgba(0, 0, 0, 0.35);
}

.product-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* In listing grids (products / category pages), show full image without cropping */
.products-page .product-card-media img {
  object-fit: contain;
}

.product-card-placeholder {
  height: 220px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.product-card-body {
  padding: 1rem 1rem 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.product-card-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-card-title {
  margin: 0;
  font-size: 1.05rem;
}

.product-card-title a {
  color: inherit;
  text-decoration: none;
}

.product-card-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-actions {
  margin-top: 0.2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-page {
  background: radial-gradient(circle at top, #1c1f33 0, #050608 60%);
  padding-top: 70px;
}

.product-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.product-page-visuals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-page-media img,
.product-main-image {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  display: block;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-page-placeholder {
  width: 100%;
  min-height: 360px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.product-model-viewer {
  width: 100%;
  height: 400px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  display: block;
}

.product-3d-hint {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.product-slider-container {
  position: relative;
  width: 100%;
}

.product-slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  z-index: 10;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5, 6, 8, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
}

.product-gallery-strip {
  margin-top: 1rem;
}

.product-gallery-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.product-gallery-scroll::-webkit-scrollbar {
  height: 4px;
}

.product-gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.product-gallery-item {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid transparent;
  flex: 0 0 auto;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.product-gallery-item:hover {
  opacity: 0.9;
}

.product-gallery-item.active {
  opacity: 1;
  border-color: var(--accent);
  transform: scale(1.05);
}

.product-page-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-icon-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: color 0.2s, background 0.2s;
}

.product-icon-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent, #c9a227);
}

.product-page-body {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1.3rem;
}

.product-page-desc {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  overflow-x: hidden;
}

/* Markdown content styles */
.product-page-desc.markdown-content h1,
.product-page-desc.markdown-content h2,
.product-page-desc.markdown-content h3 {
  color: rgba(255, 255, 255, 0.95);
  margin: 1rem 0 0.5rem;
  font-weight: 600;
}

.product-page-desc.markdown-content h1 {
  font-size: 1.4rem;
}

.product-page-desc.markdown-content h2 {
  font-size: 1.2rem;
}

.product-page-desc.markdown-content h3 {
  font-size: 1.1rem;
}

.product-page-desc.markdown-content p {
  margin: 0.5rem 0;
}

.product-page-desc.markdown-content ul,
.product-page-desc.markdown-content ol {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.product-page-desc.markdown-content li {
  margin: 0.25rem 0;
}

.product-page-desc.markdown-content strong {
  font-weight: 600;
}

.product-page-desc.markdown-content em {
  font-style: italic;
}

.product-page-desc.markdown-content code {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

.product-page-desc.markdown-content pre {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 0.5rem 0;
}

.product-page-desc.markdown-content pre code {
  background: none;
  padding: 0;
}

.product-page-desc.markdown-content a {
  color: var(--accent, #c9a227);
  text-decoration: underline;
}

.product-page-desc.markdown-content blockquote {
  border-left: 3px solid rgba(255, 255, 255, 0.3);
  padding-left: 1rem;
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.75);
}

.product-page-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .product-page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .product-page-actions .btn-outline,
  .product-page-actions .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Extra mobile optimizations for product page */
@media (max-width: 600px) {
  .container {
    width: min(100% - 1.5rem, 100%);
  }

  .page-main {
    padding-top: 80px;
  }

  .product-page {
    padding-top: 50px;
  }

  .product-page-grid {
    gap: 1.8rem;
  }

  .product-model-viewer {
    height: 320px;
  }

  .product-gallery-item {
    width: 70px;
    height: 70px;
  }

  .product-page-body {
    padding: 1rem;
  }

  .product-page-icons {
    gap: 0.6rem;
  }

  .product-icon-item {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .product-specs-grid {
    grid-template-columns: 1fr;
  }

  .product-recommended-grid {
    grid-template-columns: 1fr;
  }

  .product-specs-title {
    font-size: 1rem;
  }

  .product-specs-grid dt {
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0.04em;
    word-break: break-word;
  }

  .product-specs-grid dd {
    font-size: 0.9rem;
    text-align: right;
    margin-left: auto;
  }

  .product-specs-grid > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .product-specs-grid > div dt {
    flex: 0 0 50%;
  }

  .product-specs-grid > div dd {
    flex: 1 1 auto;
  }

  .product-page-desc.markdown-content h1 {
    font-size: 1.2rem;
  }

  .product-page-desc.markdown-content h2 {
    font-size: 1.05rem;
  }

  .product-page-desc.markdown-content h3 {
    font-size: 1rem;
  }

  .product-page-desc.markdown-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .product-model-viewer {
    height: 260px;
  }

  .product-gallery-item {
    width: 60px;
    height: 60px;
  }
}

.product-recommended {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.product-recommended-title {
  margin: 0 0 1.2rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.product-recommended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  justify-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.product-recommended-grid .product-card {
  text-align: center;
}

.product-recommended-grid .product-card-body {
  align-items: center;
  text-align: center;
}

.product-recommended-grid .product-card-actions {
  justify-content: center;
}

@media (max-width: 600px) {
  .product-recommended {
    margin-top: 2.2rem;
    padding-top: 1.4rem;
  }

  .product-recommended-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .product-recommended-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    justify-items: center;
  }

  .product-recommended-grid .product-card {
    border-radius: 14px;
    margin: 0.2rem 0;
    transform: scale(0.97);
    max-width: 260px;
    width: 100%;
  }

  .product-recommended-grid .product-card-body {
    padding: 0.8rem 0.9rem 0.9rem;
  }

  .product-recommended-grid .product-card-media img,
  .product-recommended-grid .product-card-placeholder {
    height: 190px;
  }
}

.product-specs {
  margin-top: 1.5rem;
}

.product-specs-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
}

.product-specs-grid dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.product-specs-grid dd {
  margin: 0;
  font-size: 0.95rem;
}

.product-recommended {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-recommended-title {
  margin: 0 0 1.2rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.product-recommended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page-grid {
    grid-template-columns: 1fr;
  }

  .products-page-toolbar {
    justify-content: flex-start;
  }

  .products-filter select {
    min-width: 200px;
  }

  .page-main {
    padding-top: 90px;
    /* smaller header on mobile */
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page */
.contact-page {
  background: radial-gradient(circle at top, #1c1f33 0, #050608 60%);
  padding-top: 70px;
  padding-bottom: 4rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper,
.contact-info-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  margin: 0 0 1.5rem;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Contact Form */
.contact-form {
  display: grid;
  gap: 1.2rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  display: grid;
  gap: 0.5rem;
}

.contact-form label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form .required {
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.5);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

.alert {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(40, 167, 69, 0.15);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #4ade80;
}

.alert-error {
  background: rgba(214, 31, 38, 0.15);
  border: 1px solid rgba(214, 31, 38, 0.3);
  color: #ff6b6b;
}

/* Contact Info */
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.contact-info-item:last-of-type {
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(214, 31, 38, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-icon i {
  display: inline-block !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  line-height: 1 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.contact-info-content h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.contact-info-content p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-info-content a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-content a:hover {
  color: var(--accent);
}

.contact-social-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-section h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-social-links {
  display: grid;
  gap: 0.8rem;
}

.contact-social-links .social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-social-links .social-link:hover {
  background: rgba(214, 31, 38, 0.15);
  border-color: var(--accent);
  transform: translateX(4px);
}

.contact-social-links .social-link i {
  font-size: 1.1rem;
  display: inline-block !important;
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.contact-social-links .social-link span {
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Categories */
.categories {
  padding-top: 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  isolation: isolate;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.category-card .bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.category-card h3 {
  position: relative;
  z-index: 1;
  color: white;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card:hover .bg {
  transform: scale(1.05);
}

.category-card p {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.category-video .play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -40%);
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.category-video .play-button:hover {
  transform: translate(-50%, -40%) scale(1.05);
  background: var(--accent);
  box-shadow: 0 20px 50px rgba(214, 31, 38, 0.6);
}

/* Fairs */
.fairs {
  background: radial-gradient(circle at top, #181a25 0, #050608 65%);
}

.fairs-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.7rem;
}

.fairs-header h2 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.btn-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.btn-link:hover {
  color: #fff;
  border-color: var(--accent);
}

.fairs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.fair-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 190px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 1.1rem;
}

.fair-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent 60%);
}

.fair-card span {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.85rem;
}

/* Global */
.global {
  padding-top: 2.5rem;
}

.global-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
  gap: 2.5rem;
  align-items: center;
}

.country-list {
  list-style: none;
  padding: 1.5rem 1.6rem;
  margin: 0;
  border-radius: 18px;
  background: rgba(10, 12, 18, 0.85);
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: var(--text-muted);
  max-height: 320px;
  overflow: auto;
  columns: 2;
  column-gap: 2rem;
}

.country-list li {
  break-inside: avoid;
  padding-block: 0.25rem;
}

.global-right h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.global-right p {
  color: var(--text-muted);
  margin-bottom: 1.3rem;
  max-width: 380px;
}

.global-right img {
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: #050608;
}

/* About */
.about {
  background: radial-gradient(circle at top, #1d1f30 0, #050608 55%);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
  gap: 2.5rem;
  align-items: center;
}

.about-content {
  position: relative;
}

.about-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.about-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 0.7rem;
}

/* About page long content */
.about-page {
  background: radial-gradient(circle at top, #1d1f30 0, #050608 55%);
  padding-top: 70px;
}

.about-page-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1.2rem;
}

.about-page-prose {
  white-space: pre-line;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 0.98rem;
  max-width: 880px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.4rem;
}

.about-highlights span {
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-media {
  display: flex;
  justify-content: flex-end;
}

.about-video-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: radial-gradient(circle at top, rgba(214, 31, 38, 0.45), #050608);
}

.about-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.about-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 6, 8, 0.85), transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.1rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
}

.about-video-overlay span {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Home About section - mobile tweaks */
@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about {
    text-align: left;
  }

  .about-title {
    font-size: 1.4rem;
  }

  .about-content p {
    font-size: 0.9rem;
  }

  .about-media {
    justify-content: center;
  }

  .about-video-frame {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about {
    padding-block: 3rem;
  }

  .about-inner {
    gap: 1.5rem;
  }

  .about-highlights {
    gap: 0.4rem;
  }

  .about-highlights span {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }

  .about-video-frame {
    border-radius: 16px;
  }
}

/* 3D Modeling */
.modeling {
  background: radial-gradient(circle at top, #191b29 0, #050608 60%);
}

.modeling-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
  gap: 2.5rem;
  align-items: center;
}

.modeling-kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.modeling-title {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.modeling-title span {
  color: var(--accent);
}

.modeling-left p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.modeling-brand {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.modeling-brand span {
  color: #fff;
  font-weight: 600;
}

.modeling-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modeling-tags span {
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.modeling-right {
  position: relative;
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(214, 31, 38, 0.75), #050608);
  border: 1px solid var(--border-soft);
}

.model-viewer-el {
  width: 100%;
  height: 100%;
  display: block;
}

.modeling-float {
  position: absolute;
  right: 1.4rem;
  top: 1.2rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(5, 6, 8, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Home 3D Modeling - mobile tweaks */
@media (max-width: 768px) {
  .modeling-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modeling-title {
    font-size: 1.4rem;
  }

  .modeling-left p {
    font-size: 0.9rem;
  }

  .modeling-right {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .modeling {
    padding-block: 3rem;
  }

  .modeling-inner {
    gap: 1.5rem;
  }

  .modeling-right {
    border-radius: 18px;
  }

  .modeling-float {
    right: 1rem;
    top: 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }
}

/* Featured */
.featured {
  padding-top: 3rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.featured-card {
  border-radius: 16px;
  overflow: hidden;
  background: #0e1017;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.featured-image {
  background-image: var(--bg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 180px;
}

.featured-content {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.featured-content h3 {
  font-size: 1rem;
  margin: 0;
}

.featured-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}

/* News */
.news {
  background: radial-gradient(circle at top, #1a1b25 0, #050608 55%);
}

.news-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 4fr);
  gap: 2rem;
  align-items: start;
}

.news-intro h2 {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  margin-bottom: 0.75rem;
}

.news-intro p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.news-item {
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  background: rgba(10, 12, 18, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.news-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.news-item h3 {
  font-size: 0.95rem;
  margin: 0.25rem 0 0.4rem;
}

.news-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* News Page */
.news-page {
  background: radial-gradient(circle at top, #1c1f33 0, #050608 60%);
  padding-top: 70px;
  padding-bottom: 4rem;
}

.news-page .news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.news-page .news-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-page .news-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.news-page .news-item h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0 0.8rem;
  color: var(--text-main);
}

.news-page .news-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  background: #050608;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.footer-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.9rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-col li+li {
  margin-top: 0.35rem;
}

.footer-center {
  text-align: center;
}

.footer-logo {
  height: 40px;
  margin-inline: auto;
  margin-bottom: 0.9rem;
}

.footer-catalog {
  margin-bottom: 1.2rem;
  display: inline-block;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: rgba(255, 255, 255, 0.08);
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 31, 38, 0.3);
}

.footer-social a i,
.footer-social a i.fab,
.footer-social .fab,
.footer-social a [class*="fa-"] {
  display: inline-block !important;
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1 !important;
  font-size: inherit !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.footer-social a i,
.footer-social a i.fab,
.footer-social .fab,
.footer-social a [class*="fa-"] {
  display: inline-block !important;
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1 !important;
  font-size: inherit !important;
  speak: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 0.8rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
}

.footer-agency {
  font-size: 0.78rem;
  opacity: 0.8;
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.92);
  backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

.search-overlay.active {
  display: flex;
}

.search-popup {
  width: min(640px, 100% - 2.5rem);
  background: #101218;
  border-radius: 20px;
  padding: 1.8rem 1.9rem 1.7rem;
  padding-top: 3.5rem;
  border: 1px solid var(--border-soft);
  position: relative;
}

.search-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-close:hover {
  background: rgba(214, 31, 38, 0.8);
  transform: scale(1.05);
}

.search-close i {
  font-size: 1rem;
  display: inline-block !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.search-form {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}

.search-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 0.7rem 1rem;
  background: #050608;
  color: #fff;
}

.search-form button {
  border-radius: 999px;
  border: none;
  padding: 0.7rem 1.1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-recommended h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.6rem;
}

.search-recommended-grid {
  display: flex;
  gap: 0.8rem;
}

.search-card {
  flex: 1;
  background: #050608;
  border-radius: 14px;
  padding: 0.6rem;
  border: 1px solid var(--border-soft);
  text-align: center;
  font-size: 0.8rem;
}

.search-card img {
  border-radius: 10px;
  margin-bottom: 0.4rem;
  width: 100%;
  height: 80px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-top {
    display: none;
  }

  .products {
    padding-top: 100px;
  }

  .main-nav {
    position: fixed;
    inset-inline: 0;
    top: 70px;
    background: rgba(5, 6, 8, 0.98);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    padding-inline: 1.5rem;
    padding-bottom: 1.2rem;
    display: none;
  }

  .main-nav.open {
    transform: translateY(0);
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .dropdown {
    position: static;
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.35rem;
  }

  .hamburger {
    display: flex;
  }

  .product-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fairs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .global-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  section {
    padding-block: 3rem;
  }

  .products {
    padding-top: 90px;
  }

  .categories-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .fairs-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .product-detail {
    padding: 1.3rem 1.4rem;
  }

  .product-nav {
    right: 1rem;
    top: 1rem;
  }

  .search-form {
    flex-direction: column;
  }

  .search-recommended-grid {
    flex-direction: column;
  }

  .country-list {
    columns: 1;
  }
}

/* About Page Modern Styles */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -110px;
  /* Adjust for fixed header */
}

.about-hero .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.4), rgba(5, 6, 8, 0.8));
  z-index: 2;
}

.about-hero .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.about-intro {
  padding: 6rem 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.intro-text h2.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.intro-quote {
  padding: 3rem;
  background: var(--bg-elevated);
  border-left: 4px solid var(--accent);
  border-radius: 0 20px 20px 0;
}

.intro-quote blockquote {
  font-family: var(--font-alt);
  font-size: 1.5rem;
  line-height: 1.4;
  font-style: italic;
  margin: 0;
  color: #fff;
}

.about-values {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fff;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.about-milestones {
  padding: 6rem 0;
}

.milestones-timeline {
  max-width: 800px;
  margin: 4rem auto 0;
  position: relative;
}

.milestones-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background: var(--border-soft);
}

.milestone-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 4rem;
}

.milestone-item::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--bg-body);
  z-index: 2;
}

.milestone-date {
  font-family: var(--font-alt);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.milestone-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.milestone-content p {
  color: var(--text-muted);
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}