/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html.js-loading body {
  visibility: hidden;
  opacity: 0;
}

html.js-ready body {
  visibility: visible;
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============ TOP BAR ============ */
.topbar {
  background: #222;
  height: 30px;
  font-size: 11px;
  color: #bbb;
}
.topbar .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-left svg { width: 11px; height: 11px; vertical-align: middle; margin-right: 3px; }
.topbar-right { color: #999; }

/* ============ HEADER ============ */
.header-main {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  height: 65px;
}
.header-main .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-link img { width: 38px; height: 38px; }
.logo-text { line-height: 1; }
.logo-text strong { display: block; font-size: 14px; color: #222; }
.logo-text small { display: block; font-size: 9px; color: #999; letter-spacing: 2px; }

.search-bar {
  flex: 1;
  max-width: 420px;
  margin: 0 24px;
  display: flex;
  border: 1px solid #ccc;
}
.search-bar input {
  flex: 1;
  height: 34px;
  padding: 0 12px;
  font-size: 13px;
  color: #333;
  background: #fff;
  border: none;
  outline: none;
}
.search-bar button {
  width: 38px;
  height: 34px;
  background: #e85d2a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.search-bar button svg { width: 15px; height: 15px; color: #fff; }

.header-nav { display: flex; align-items: center; gap: 2px; }
.header-nav a {
  padding: 4px 12px;
  font-size: 12px;
  color: #555;
  transition: color .15s;
}
.header-nav a:hover { color: #e85d2a; }

.lang-select-wrap { flex-shrink: 0; }
.lang-select {
  height: 30px;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 12px;
  padding: 0 10px;
}

.mobile-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
}
.mobile-toggle svg { width: 22px; height: 22px; }

/* ============ CATEGORY BAR ============ */
.catbar {
  background: #333;
  height: 40px;
  position: relative;
  z-index: 6;
}
.catbar .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  height: 100%;
}
.catbar a {
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #ddd;
  transition: background .15s, color .15s;
}
.catbar a:hover { background: #444; color: #fff; }
.catbar a.active {
  background: #e85d2a;
  color: #fff;
  font-weight: 500;
}
.catbar a.active:hover { background: #d04e1f; }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 12px 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu .mob-search {
  display: flex;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.mobile-menu .mob-search input {
  flex: 1; height: 34px; padding: 0 12px; font-size: 13px;
  border: none; outline: none;
}
.mobile-menu .mob-search button {
  width: 38px; height: 34px; background: #e85d2a;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu .mob-search button svg { width: 15px; height: 15px; color: #fff; }
.mobile-menu a {
  display: block; padding: 6px 0; font-size: 13px; color: #444;
}

/* ============ HERO SLIDER ============ */
.hero {
  position: relative;
  background: #111;
  overflow: hidden;
  height: 380px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .4;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.hero-content .inner { max-width: 520px; }
.hero-content h1 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.hero-content p {
  margin-top: 8px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}
.hero-content .btn-hero {
  display: inline-block;
  margin-top: 18px;
  padding: 9px 20px;
  background: #e85d2a;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition: background .15s;
}
.hero-content .btn-hero:hover { background: #d04e1f; }

.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 32px; height: 32px;
  background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.hero-arrow:hover { color: #fff; }
.hero-arrow.prev { left: 12px; }
.hero-arrow.next { right: 12px; }
.hero-arrow svg { width: 18px; height: 18px; }

.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background .15s;
}
.hero-dots button.active { background: #e85d2a; }

/* ============ FEATURE STRIP ============ */
.features-strip {
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
.features-strip .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-item { display: flex; align-items: flex-start; gap: 10px; }
.feature-icon {
  width: 36px; height: 36px;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg { width: 18px; height: 18px; color: #e85d2a; }
.feature-item strong { display: block; font-size: 12px; color: #333; }
.feature-item span { display: block; font-size: 11px; color: #888; line-height: 1.4; margin-top: 2px; }

/* ============ LAYOUT: SIDEBAR + MAIN ============ */
.page-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 16px;
  display: flex;
  gap: 24px;
  flex: 1 0 auto;
}

/* Sidebar */
.sidebar { width: 240px; flex-shrink: 0; }
.sidebar-group { margin-bottom: 20px; }
.sidebar-group-title {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  background: #f0f0f0;
  padding: 7px 12px;
  border: 1px solid #ddd;
}
.sidebar-group ul {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.sidebar-group li {
  border-bottom: 1px solid #eee;
}
.sidebar-group li:last-child { border-bottom: none; }
.sidebar-group li a {
  display: block;
  padding: 6px 12px;
  font-size: 12px;
  color: #1a6fb5;
  transition: background .1s, color .1s;
}
.sidebar-group li a:hover { background: #f8f8f8; color: #e85d2a; }
.sidebar-group li a.active { background: #f8f8f8; color: #e85d2a; font-weight: 500; }

.sidebar-box {
  border: 1px solid #ddd;
  padding: 14px;
  margin-bottom: 20px;
}
.sidebar-box h4 { font-size: 12px; font-weight: 700; color: #333; margin-bottom: 6px; }
.sidebar-box p { font-size: 11px; color: #888; line-height: 1.55; margin-bottom: 6px; }
.sidebar-box a { font-size: 11px; color: #e85d2a; font-weight: 500; }
.sidebar-box a:hover { text-decoration: underline; }

.sidebar-contact { border: 1px solid #ddd; border-top: none; padding: 12px; }
.sidebar-contact .sc-item { margin-bottom: 10px; }
.sidebar-contact .sc-item:last-child { margin-bottom: 0; }
.sidebar-contact .sc-label { font-size: 12px; font-weight: 600; color: #333; }
.sidebar-contact .sc-value { font-size: 12px; color: #666; }

/* Main content */
.main-content { flex: 1; min-width: 0; }
.main-content h1 {
  font-size: 26px; font-weight: 700; color: #222; margin-bottom: 10px;
}
.main-content h2 {
  font-size: 20px; font-weight: 700; color: #222; margin-bottom: 10px;
}
.main-content h3 {
  font-size: 18px; font-weight: 700; color: #222; margin-bottom: 10px;
}
.text-block {
  font-size: 13px; color: #444; line-height: 1.85;
}
.text-block p + p { margin-top: 12px; }
.text-block em { font-style: italic; }
.text-block strong { font-weight: 600; color: #333; }

.section-divider {
  border-top: 1px solid #e0e0e0;
  margin-top: 30px;
  padding-top: 24px;
}

/* ============ LEGAL PAGES ============ */
.legal-page-body {
  padding-top: 26px;
  padding-bottom: 42px;
}

.legal-content {
  max-width: 860px;
}

.legal-updated {
  font-size: 12px;
  color: #888;
  margin-top: -4px;
  margin-bottom: 22px;
}

.legal-section {
  border-top: 1px solid #ececec;
  padding-top: 18px;
  margin-top: 18px;
}

.legal-section p,
.legal-section li {
  font-size: 13px;
  color: #444;
  line-height: 1.8;
}

.legal-section ul {
  list-style: disc;
  padding-left: 20px;
}

.legal-section a {
  color: #1a6fb5;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* Popular links grid */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px 12px;
  margin-bottom: 30px;
}
.popular-grid a {
  font-size: 12px;
  color: #1a6fb5;
  padding: 2px 0;
  transition: color .1s;
}
.popular-grid a:hover { color: #e85d2a; text-decoration: underline; }

/* ============ CATEGORIES GRID ============ */
.categories-section {
  background: rgba(247, 247, 247, 0.86);
  border-top: 1px solid #e0e0e0;
}
.categories-section .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 16px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  display: block;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ddd;
  overflow: hidden;
  transition: border-color .15s;
}
.cat-card:hover { border-color: #bbb; }
.cat-card-img {
  display: block;
  height: 160px;
  background: #eee;
  overflow: hidden;
}
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card-body { padding: 14px; }
.cat-card-body h3 {
  font-size: 14px; font-weight: 700; color: #222;
  transition: color .15s;
}
.cat-card:hover .cat-card-body h3 { color: #e85d2a; }
.cat-card-body p {
  font-size: 11px; color: #777; line-height: 1.5; margin-top: 4px;
}
.cat-card-body .cat-link {
  display: inline-block; margin-top: 8px;
  font-size: 12px; color: #e85d2a; font-weight: 500;
}
.cat-card-body .cat-actions {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cat-card-body .price-tag {
  background: #e85d2a;
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  font-weight: 600;
  margin-top: 0;
  cursor: pointer;
}
.cat-card-body .contact-tag {
  background: #222;
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.cat-card-body .cat-actions .price-tag:focus-visible,
.cat-card-body .cat-actions .contact-tag:focus-visible {
  outline: 2px solid #1E2558;
  outline-offset: 2px;
}

.home-products-more {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.home-products-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  color: #fff;
  background: #1E2558;
  border-radius: 6px;
}

.home-products-more-btn:hover {
  background: #141b45;
}

/* ============ ABOUT SECTION ============ */
.about-section {
  border-top: 1px solid #e0e0e0;
  background: #fff;
}
.about-section .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 16px;
  display: flex;
  gap: 24px;
}
.about-text { flex: 1; }
.about-text h2 { font-size: 18px; font-weight: 700; color: #222; margin-bottom: 12px; }
.about-text .text-block { margin-bottom: 14px; }
.about-bullets { font-size: 12px; color: #444; }
.about-bullets li {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 4px;
}
.about-bullets .bullet { color: #e85d2a; margin-top: 2px; }
.about-link { display: inline-block; margin-top: 12px; font-size: 12px; color: #1a6fb5; }
.about-link:hover { text-decoration: underline; }
.about-img {
  width: 320px; flex-shrink: 0;
  border: 1px solid #ddd;
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============ NEWSLETTER ============ */
.newsletter {
  border-top: 1px solid #e0e0e0;
  background: #f7f7f7;
}
.newsletter .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.newsletter-left { display: flex; align-items: center; gap: 10px; }
.newsletter-left img { width: 28px; height: 28px; }
.newsletter-left strong { display: block; font-size: 14px; color: #222; }
.newsletter-left span { display: block; font-size: 12px; color: #888; }
.newsletter form { display: flex; flex-shrink: 0; }
.newsletter input {
  height: 36px;
  width: 260px;
  padding: 0 12px;
  font-size: 13px;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-right: none;
  outline: none;
}
.newsletter button {
  height: 36px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 500;
  background: #e85d2a;
  color: #fff;
  white-space: nowrap;
  transition: background .15s;
}
.newsletter button:hover { background: #d04e1f; }

/* ============ FOOTER ============ */
.footer { background: #222; color: #ccc; }
.footer .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 16px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
.footer-brand p {
  font-size: 11px; color: #999; line-height: 1.55;
  max-width: 300px; margin-top: 8px;
}
.footer-brand .brand-link {
  display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
}
.footer-brand .brand-link img { width: 30px; height: 30px; }
.footer-brand .brand-link span { font-size: 13px; font-weight: 700; color: #fff; }
.footer-brand .contact-info {
  margin-top: 12px; font-size: 11px; color: #888; line-height: 1.7;
}
.footer-col h4 {
  font-size: 11px; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul li a {
  font-size: 11px; color: #999; transition: color .15s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-social-handle {
  margin-top: 14px;
  font-size: 11px;
  color: #999;
}

.footer-bottom {
  border-top: 1px solid #333;
}
.footer-bottom .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 10px; color: #777; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  border-bottom: 1px solid #e0e0e0;
  background: #f7f7f7;
}
.breadcrumb .wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
  font-size: 11px;
  color: #999;
}
.breadcrumb a { color: #999; transition: color .1s; }
.breadcrumb a:hover { color: #e85d2a; }
.breadcrumb .sep { margin: 0 4px; }
.breadcrumb .current { color: #666; }

.nav-soon-link {
  position: relative;
  opacity: 0.55;
  cursor: not-allowed;
}

.nav-soon-link::after {
  content: attr(data-soon-text);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  transform: translateX(-50%) translateY(-4px);
  background: #1E2558;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .16s ease, transform .16s ease;
  z-index: 12;
}

.nav-soon-link:hover::after,
.nav-soon-link:focus-visible::after,
.nav-soon-link.is-popover-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ============ PRODUCTS TABLE ============ */
.products-table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
  font-size: 12px;
}
.products-table thead { background: #f0f0f0; }
.products-table th {
  text-align: left;
  padding: 8px 12px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #ddd;
}
.products-table th:last-child { text-align: right; }
.products-table td {
  padding: 7px 12px;
  color: #666;
  border-bottom: 1px solid #eee;
}
.products-table tr:hover { background: #fafafa; }
.products-table .prod-name { font-weight: 500; color: #1a6fb5; }
.products-table .prod-action { text-align: right; }
.products-table .prod-action a {
  font-size: 11px; color: #e85d2a; font-weight: 500;
}
.products-table .prod-action a:hover { text-decoration: underline; }

.disclaimer {
  margin-top: 24px;
  padding: 14px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  font-size: 11px;
  color: #888;
  line-height: 1.55;
}
.disclaimer strong { color: #666; }

.coming-soon {
  margin: 4px 0 30px;
  padding: 18px;
  border: 1px solid #dadde5;
  background: linear-gradient(180deg, rgba(30, 37, 88, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.coming-soon-head h2 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #1E2558;
}

.coming-soon-head p {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.coming-soon-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.coming-soon-card {
  border: 1px solid #d8d8d8;
  background: #fff;
  padding: 12px;
}

.coming-soon-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #1E2558;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 700;
}

.coming-soon-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #222;
}

.coming-soon-card p {
  margin: 0;
  font-size: 12px;
  color: #666;
  line-height: 1.55;
}

.coming-soon-cta {
  margin-top: 14px;
  display: inline-block;
  padding: 8px 12px;
  background: #e85d2a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.coming-soon-cta:hover {
  background: #d04e1f;
}

.products-catalog-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.products-empty-state {
  grid-column: 1 / -1;
  border: 1px dashed #cfcfcf;
  background: #fafafa;
  color: #666;
  padding: 18px;
  font-size: 13px;
  text-align: center;
  border-radius: 8px;
}

.product-item-card {
  border: 1px solid #d8d8d8;
  background: #fff;
  padding: 12px;
}

.product-item-image {
  height: 140px;
  margin-bottom: 10px;
  background: #f2f2f2;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.product-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-item-card h3 {
  margin-bottom: 6px;
  font-size: 14px;
  color: #222;
}

.product-item-card p {
  font-size: 12px;
  color: #666;
  line-height: 1.55;
  margin-bottom: 10px;
}

.product-item-card button {
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #1E2558;
  border-radius: 4px;
}

.products-pagination {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.products-page-btn {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #d1d1d1;
  background: #fff;
  color: #444;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

.products-page-btn:hover {
  border-color: #1E2558;
  color: #1E2558;
}

.products-page-btn.is-active {
  background: #1E2558;
  border-color: #1E2558;
  color: #fff;
}

.products-page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.product-modal-content {
  position: relative;
  width: min(760px, calc(100% - 24px));
  max-height: calc(100vh - 24px);
  margin: 0;
  overflow: auto;
  background: #fff;
  border: 1px solid #d8d8d8;
  padding: 20px;
  z-index: 1;
}

.product-modal-close {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 26px;
  line-height: 1;
  color: #444;
}

.product-modal-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1E2558;
  margin-bottom: 8px;
}

.product-modal-image-wrap {
  width: 100%;
  height: 200px;
  border: 1px solid #e2e2e2;
  background: #f6f6f6;
  margin-bottom: 12px;
  overflow: hidden;
}

.product-modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-content h3 {
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.product-modal-description {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 12px;
}

.product-modal-content h4 {
  margin-bottom: 8px;
  font-size: 14px;
  color: #222;
}

.product-modal-content ul {
  list-style: disc;
  padding-left: 18px;
}

.product-modal-content li {
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.6;
}

.product-modal-quote-btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 6px;
  background: #1E2558;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.product-modal-quote-btn:hover {
  background: #141b45;
}

/* ============ CONTACT FORM ============ */
.contact-form { max-width: 600px; }
.form-row { margin-bottom: 14px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row label {
  display: block; font-size: 11px; font-weight: 600; color: #333; margin-bottom: 4px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0 12px;
  height: 34px;
  font-size: 13px;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color .15s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: #e85d2a; }
.form-row textarea { height: auto; padding: 8px 12px; resize: none; }
.btn-submit {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  background: #e85d2a;
  color: #fff;
  transition: background .15s;
}
.btn-submit:hover { background: #d04e1f; }

.integrity-result {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #ddd;
  border-left-width: 4px;
  background: #fff;
}
.integrity-result h3 {
  margin-bottom: 6px;
  font-size: 16px;
}
.integrity-result p {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}
.integrity-result .integrity-meta {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
}
.integrity-result.is-valid {
  border-left-color: #2e7d32;
  background: #f3fff5;
}
.integrity-result.is-alert {
  border-left-color: #f57c00;
  background: #fff8f0;
}
.integrity-result.is-invalid {
  border-left-color: #c62828;
  background: #fff5f5;
}
.integrity-note {
  margin-top: 14px;
  font-size: 12px;
  color: #666;
}

/* ============ FAQ ============ */
.faq-category { margin-bottom: 24px; }
.faq-category-title {
  font-size: 14px; font-weight: 700; color: #333;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 4px;
}
.faq-item { border-bottom: 1px solid #eee; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  transition: color .15s;
  gap: 10px;
}
.faq-question:hover { color: #e85d2a; }
.faq-question .arrow {
  width: 16px; height: 16px;
  transition: transform .2s;
  flex-shrink: 0;
  color: #999;
}
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding-bottom: 12px;
  font-size: 13px;
  color: #555;
  line-height: 1.85;
}
.faq-item.open .faq-answer { display: block; }

/* ============ TIMELINE TABLE ============ */
.timeline-table { width: 100%; font-size: 13px; }
.timeline-table tr { border-bottom: 1px solid #eee; }
.timeline-table td { padding: 12px 0; }
.timeline-table .year { font-weight: 700; color: #222; width: 60px; padding-right: 24px; vertical-align: top; }
.timeline-table .desc { color: #555; }

.list-disc { list-style: disc; padding-left: 20px; font-size: 13px; color: #444; line-height: 1.85; }
.list-disc li { margin-bottom: 4px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1023px) {
  .topbar { display: none; }
  .catbar { display: none; }
  .header-nav { display: none; }
  .search-bar { display: none; }
  .lang-select-wrap { margin-left: auto; }
  .mobile-toggle { display: flex; }
  .sidebar { display: none; }
  .page-body { flex-direction: column; }
  .about-section .wrap { flex-direction: column; }
  .about-img { width: 100%; height: 220px; }
  .footer .wrap { grid-template-columns: 1fr 1fr; }
  .newsletter .wrap { flex-direction: column; align-items: flex-start; }
  .newsletter input { width: 100%; }
}

@media (max-width: 767px) {
  .hero { height: 280px; }
  .hero-content h1 { font-size: 26px; }
  .features-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .products-catalog-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer .wrap { grid-template-columns: 1fr; }
  .footer-bottom .wrap { flex-direction: column; gap: 4px; text-align: center; }
}

@media (max-width: 480px) {
  .cat-card-body .cat-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cat-card-body .cat-actions .price-tag,
  .cat-card-body .cat-actions .contact-tag {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}

/* ============ BRAND THEME OVERRIDES ============ */
:root {
  --brand-black: #000000;
  --brand-white: #FFFFFF;
  --brand-purple: #6B1F66;
  --brand-purple-dark: #1E2558;
  --brand-gradient: linear-gradient(135deg, #6B1F66 0%, #1E2558 100%);
  --watermark-image: url('../images/bg-boss.png');
  --watermark-opacity: 0.12;
  --watermark-size: cover;
}

body {
  color: #1a1a1a;
  background: var(--brand-white);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--watermark-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: var(--watermark-size);
  opacity: var(--watermark-opacity);
  pointer-events: none;
  z-index: 0;
}

body.home-page::before {
  opacity: 1;
}

body.about-page::before {
  background-image: url('../images/boss-import-export.jpg');
  background-position: center;
  background-size: cover;
  opacity: 0.28;
}

body > * {
  position: relative;
  z-index: 1;
}

.topbar,
.footer,
.hero {
  background: var(--brand-black);
}

.catbar {
  background: var(--brand-black);
}

.catbar a:hover,
.catbar a.active {
  background: var(--brand-gradient);
  color: var(--brand-white);
}

.search-bar button,
.mobile-menu .mob-search button,
.hero-content .btn-hero,
.newsletter button,
.btn-submit,
.cat-card-body .price-tag {
  background: var(--brand-gradient);
  color: var(--brand-white);
}

.hero-content .btn-hero:hover,
.newsletter button:hover,
.btn-submit:hover {
  background: var(--brand-purple-dark);
}

.header-nav a:hover,
.popular-grid a:hover,
.sidebar-group li a:hover,
.sidebar-group li a.active,
.cat-card:hover .cat-card-body h3,
.faq-question:hover,
.breadcrumb a:hover,
.products-table .prod-name,
.about-link,
.sidebar-box a {
  color: var(--brand-purple) !important;
}

.feature-icon svg,
.about-bullets .bullet {
  color: var(--brand-purple);
}

.hero-dots button.active {
  background-color: var(--brand-purple);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--brand-purple);
}

.contact-tag {
  background: var(--brand-black);
  color: var(--brand-white);
}

.footer-col ul li a:hover,
.footer-brand .brand-link span,
.footer h4 {
  color: var(--brand-white);
}
