:root {
  --b2b-navy: #0d2b45;
  --b2b-blue: #155a8a;
  --b2b-sky: #e9f3f8;
  --b2b-steel: #64748b;
  --b2b-line: #d8e2ea;
  --b2b-ink: #17212b;
  --b2b-accent: #f28c28;
  --accent-color: #155a8a;
  --heading-color: #0d2b45;
  --default-color: #334155;
}

.b2b-page {
  background: #f7fafc;
  color: var(--b2b-ink);
}

.b2b-header .topbar {
  background: var(--b2b-navy);
}

.b2b-header .topbar .contact-info i,
.b2b-header .topbar .contact-info a,
.b2b-header .topbar .contact-info span,
.b2b-header .topbar .social-links a,
.b2b-header .topbar .topbar-note {
  color: #dce8f2;
}

.b2b-header .topbar .language-switcher-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 18px;
}

.b2b-header .topbar .language-switcher-group a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 800;
}

.b2b-header .topbar .language-switcher-group a.active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.b2b-header .branding {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--b2b-line);
}

.b2b-logo {
  gap: 12px;
}

.b2b-logo .logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 6px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #eaf2f8);
  border: 1px solid rgba(13, 43, 69, .08);
  box-shadow: 0 12px 24px rgba(13, 43, 69, .08);
}

.b2b-logo .logo-badge img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.b2b-logo .logo-copy {
  display: flex;
  flex-direction: column;
}

.b2b-logo .sitename {
  margin: 0;
  padding: 0;
  line-height: 1;
  color: var(--b2b-navy);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.b2b-logo small {
  display: block;
  margin-top: 7px;
  color: var(--b2b-steel);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.b2b-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: #fff;
}

.b2b-hero-carousel {
  isolation: isolate;
}

.b2b-hero-carousel::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 35%;
  height: 330px;
  transform: rotate(-5deg);
  background: rgba(255, 255, 255, .09);
}

.b2b-hero .container {
  position: relative;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 0 76px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .6s ease, visibility .6s ease;
  background:
    linear-gradient(90deg, rgba(7, 28, 48, .94) 0%, rgba(13, 43, 69, .84) 43%, rgba(13, 43, 69, .32) 100%),
    var(--hero-image) center/cover no-repeat;
}

.hero-image-only {
  min-height: 640px;
}

.hero-image-only::after {
  display: none;
}

.hero-image-only .hero-slide {
  padding: 0;
  background: var(--hero-image) center center/cover no-repeat;
}

.hero-image-only .hero-slide.is-active {
  position: absolute;
  inset: 0;
}

.hero-slide-hit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hero-slide-hit-prev {
  left: 0;
}

.hero-slide-hit-next {
  right: 0;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-carousel-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-carousel-arrow {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.hero-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(12, 34, 54, .38);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 16px 34px rgba(7, 28, 48, .22);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.hero-carousel-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  padding: 0;
}

.hero-carousel-dots button.is-active {
  width: 34px;
  background: var(--b2b-accent);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--b2b-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.b2b-hero .eyebrow {
  color: #9ed3f3;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--b2b-accent);
}

.b2b-hero h1,
.catalog-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: -.05em;
}

.b2b-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d8e7f0;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .btn,
.inquiry-form button {
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
}

.hero-actions .btn-primary,
.inquiry-form button {
  background: var(--b2b-accent);
  color: #111827;
}

.hero-proof-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 24px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.proof-number {
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}

.hero-slide .col-lg-5 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-proof-card span,
.hero-proof-grid span {
  display: block;
  color: rgba(236, 244, 250, .92);
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.hero-proof-grid div {
  text-align: center;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  color: var(--b2b-navy);
}

.hero-proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1;
}

.hero-proof-grid span {
  color: #4b6477;
  font-weight: 600;
}

.hero-feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 24px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);
}

.hero-feature-head strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
}

.hero-feature-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: #9ed3f3;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-feature-head p {
  margin: 12px 0 0;
  color: rgba(236, 244, 250, .92);
  font-size: 15px;
  line-height: 1.65;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .52);
  box-shadow: 0 14px 30px rgba(7, 28, 48, .12);
}

.hero-feature-thumb {
  display: inline-flex;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.hero-feature-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-feature-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-feature-copy strong {
  color: var(--b2b-navy);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.hero-feature-copy small {
  margin-top: 6px;
  color: #4b6477;
  font-size: 12px;
  font-weight: 700;
}

.b2b-section {
  padding: 86px 0;
}

.light-panel {
  background: #eef5f9;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.spec-card h2,
.inquiry-card h2 {
  margin: 0;
  color: var(--b2b-navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.035em;
}

.text-link,
.product-link,
.article-card a {
  color: var(--b2b-blue);
  font-weight: 800;
}

.advantage-card,
.product-card,
.category-card,
.article-card,
.spec-card,
.inquiry-card,
.catalog-note {
  height: 100%;
  border: 1px solid var(--b2b-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(13, 43, 69, .08);
}

.advantage-card {
  padding: 28px;
}

.advantage-card i,
.category-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--b2b-sky);
  color: var(--b2b-blue);
  font-size: 24px;
}

.advantage-card h3,
.product-card h3,
.product-card h2,
.article-card h3 {
  color: var(--b2b-navy);
  font-size: 20px;
  font-weight: 800;
}

.advantage-card p,
.product-card p,
.category-card span,
.article-card p,
.catalog-hero p,
.form-note,
.product-model-inline {
  color: var(--b2b-steel);
  line-height: 1.65;
}

.product-card {
  overflow: hidden;
}

.product-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #edf4f8, #dce8f2);
  overflow: hidden;
}

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

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 24px;
}

.product-tag {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 11px;
  background: #edf7ee;
  color: #247044;
  font-size: 12px;
  font-weight: 800;
}

.featured-carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.featured-carousel-track {
  overflow: hidden;
  width: 100%;
}

.featured-carousel-row {
  flex-wrap: nowrap;
  transition: transform .35s ease;
}

.featured-carousel-item {
  flex: 0 0 25%;
  max-width: 25%;
}

.featured-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--b2b-line);
  border-radius: 999px;
  background: #fff;
  color: var(--b2b-navy);
  box-shadow: 0 12px 28px rgba(13, 43, 69, .08);
  flex: 0 0 auto;
}

.featured-carousel-arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  color: var(--b2b-ink);
}

.category-card strong {
  margin-bottom: 8px;
  color: var(--b2b-navy);
  font-size: 18px;
}

.article-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  min-height: 214px;
}

.article-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--b2b-blue);
  font-weight: 800;
}

.article-card h3 {
  min-height: 56px;
  margin-bottom: 12px;
}

.article-summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 78px;
  margin-bottom: 20px;
}

.article-card a {
  margin-top: auto;
}

.news-detail-card {
  border: 1px solid var(--b2b-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(13, 43, 69, .08);
  padding: 34px;
}

.news-detail-content p {
  margin-bottom: 16px;
  color: var(--b2b-steel);
  font-size: 17px;
  line-height: 1.86;
}

.news-detail-content p:last-child {
  margin-bottom: 0;
}

.news-detail-actions {
  margin-top: 28px;
}

.b2b-content-page .page-title {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef5f9 58%, #ffffff 100%);
  border-bottom: 1px solid rgba(13, 43, 69, .08);
}

.b2b-content-page .page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(21, 90, 138, .14), transparent 28%),
    radial-gradient(circle at 16% 0, rgba(242, 140, 40, .08), transparent 22%);
  pointer-events: none;
}

.b2b-content-page .page-title .container {
  position: relative;
  z-index: 1;
  padding-top: 34px;
  padding-bottom: 28px;
}

.b2b-content-page .main {
  background: #f7fafc;
}

.b2b-about-section,
.b2b-contact-section,
.b2b-stats-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.b2b-about-card,
.b2b-about-media,
.b2b-contact-card,
.b2b-map-card,
.b2b-contact-form,
.b2b-stats-card {
  border: 1px solid var(--b2b-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(13, 43, 69, .08);
}

.b2b-about-card {
  padding: 30px;
}

.b2b-about-card h3 {
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.b2b-about-card h4 {
  margin: 26px 0 14px;
  font-size: 18px;
  font-weight: 800;
}

.b2b-about-card h3,
.b2b-about-card h4,
.b2b-contact-card h3 {
  color: var(--b2b-navy);
}

.b2b-about-card p,
.b2b-about-card li,
.b2b-contact-card p,
.b2b-stats-card p {
  color: var(--b2b-steel);
}

.b2b-about-card ul {
  padding-left: 0;
  list-style: none;
}

.b2b-about-card li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.b2b-about-card li i {
  color: var(--b2b-blue);
}

.b2b-about-media {
  overflow: hidden;
}

.b2b-about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.b2b-stats-card {
  padding: 26px 18px;
  text-align: center;
}

.b2b-stats-card .purecounter {
  color: var(--b2b-navy);
}

.b2b-contact-card {
  height: 100%;
  min-height: 182px;
  padding: 28px 22px;
  text-align: center;
}

.b2b-contact-card i {
  margin-bottom: 14px;
  font-size: 28px;
  color: var(--b2b-accent);
}

.b2b-contact-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 800;
}

.b2b-contact-card p {
  margin-bottom: 0;
  word-break: break-word;
}

.b2b-map-card {
  overflow: hidden;
  min-height: 100%;
}

.b2b-map-card iframe {
  display: block;
  width: 100%;
  min-height: 540px;
}

.b2b-contact-form {
  padding: 30px;
}

.b2b-contact-form .form-control {
  border: 1px solid var(--b2b-line);
  border-radius: 14px;
  min-height: 52px;
  padding: 12px 16px;
}

.b2b-contact-form textarea.form-control {
  min-height: 190px;
}

.b2b-contact-form button[type="submit"] {
  border: 0;
  border-radius: 999px;
  background: var(--b2b-accent);
  color: #111827;
  font-weight: 800;
  padding: 13px 28px;
}

.b2b-content-page .footer-branding {
  align-items: center;
  gap: 14px;
}

.b2b-content-page .footer-branding img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.b2b-content-page .footer-about .sitename {
  font-size: 22px;
  font-weight: 800;
}

.b2b-content-page .footer-about .footer-contact p {
  max-width: 420px;
}

.b2b-content-page .footer-top {
  padding-top: 30px;
  padding-bottom: 12px;
}

.b2b-content-page .footer-main-grid {
  align-items: start;
}

.b2b-content-page .footer-about,
.b2b-content-page .footer-links,
.b2b-content-page .footer-follow {
  margin-bottom: 0;
}

.b2b-content-page .footer-side-grid {
  align-items: start;
}

.b2b-content-page .footer-links ul {
  margin-bottom: 0;
}

.b2b-content-page .footer-about .footer-contact {
  padding-top: 18px !important;
}

.b2b-content-page .footer-follow p {
  max-width: 420px;
  margin-bottom: 12px;
}

.b2b-content-page .footer-follow .social-links {
  margin-top: 0;
  gap: 10px;
}

.b2b-content-page .footer-follow .social-links a {
  min-width: 138px;
  padding: 9px 14px;
}

.b2b-content-page .footer-follow .social-links a span {
  white-space: nowrap;
}

.catalog-hero {
  position: relative;
  padding: 42px 0 38px;
  background:
    linear-gradient(180deg, #f8fbfd 0%, #eef5f9 58%, #ffffff 100%);
  color: var(--b2b-ink);
  border-bottom: 1px solid rgba(13, 43, 69, .08);
}

.catalog-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background:
    radial-gradient(circle at 84% 16%, rgba(21, 90, 138, .12), transparent 28%),
    radial-gradient(circle at 18% 0, rgba(242, 140, 40, .08), transparent 22%);
  pointer-events: none;
}

.catalog-hero .container {
  position: relative;
  z-index: 1;
}

.catalog-hero .breadcrumbs,
.catalog-hero .breadcrumbs a,
.catalog-hero .breadcrumbs li,
.catalog-hero .section-kicker {
  color: #506579;
}

.catalog-hero .breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.catalog-hero .breadcrumbs li {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.catalog-hero .breadcrumbs li+li::before {
  content: "/";
  margin-right: 10px;
  color: #8ca0b3;
}

.catalog-hero .section-kicker {
  margin-bottom: 12px;
  color: var(--b2b-blue);
}

.catalog-hero h1 {
  max-width: 780px;
  color: var(--b2b-navy);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -.04em;
}

.catalog-hero p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #587086;
  font-size: 17px;
  line-height: 1.72;
}

.catalog-note {
  padding: 22px;
  border: 1px solid rgba(21, 90, 138, .12);
  background: rgba(255, 255, 255, .88);
  color: var(--b2b-navy);
  box-shadow: 0 14px 34px rgba(13, 43, 69, .08);
  backdrop-filter: blur(8px);
}

.catalog-note i {
  margin-right: 8px;
  color: var(--b2b-blue);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-bar button,
.spec-toggle {
  border: 1px solid var(--b2b-line);
  border-radius: 999px;
  background: #fff;
  color: var(--b2b-navy);
  padding: 10px 16px;
  font-weight: 800;
}

.filter-bar button.active,
.spec-toggle:hover {
  background: var(--b2b-navy);
  color: #fff;
}

.card-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
  color: var(--b2b-steel);
  font-size: 13px;
}

.product-gallery,
.product-summary {
  position: sticky;
  top: 120px;
}

.main-product-image {
  aspect-ratio: 1 / .78;
  overflow: hidden;
  border: 1px solid var(--b2b-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(13, 43, 69, .09);
}

.main-product-image img,
.thumbnail-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.thumbnail-row button {
  aspect-ratio: 1 / .78;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 18px;
  background: #fff;
}

.thumbnail-row button.active {
  border-color: var(--b2b-accent);
}

.product-summary h1 {
  color: var(--b2b-navy);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 850;
  letter-spacing: -.045em;
}

.product-model-inline {
  margin: 12px 0 0;
  font-weight: 700;
}

.product-summary .lead {
  color: var(--b2b-steel);
  line-height: 1.7;
}

.standard-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.standard-strip span {
  border: 1px solid var(--b2b-line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  color: var(--b2b-navy);
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  display: flex;
  gap: 10px;
  color: var(--b2b-ink);
}

.feature-list i {
  color: #247044;
}

.spec-card,
.inquiry-card {
  padding: 30px;
}

.spec-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--b2b-line);
  vertical-align: top;
}

.spec-table th {
  width: 38%;
  color: var(--b2b-navy);
}

.inquiry-form {
  display: grid;
  gap: 12px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--b2b-line);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--b2b-blue);
  box-shadow: 0 0 0 4px rgba(21, 90, 138, .1);
}

.inquiry-form .sent-message,
.inquiry-form .error-message {
  margin-top: 2px;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.inquiry-form .sent-message {
  background: #edf7ee;
  border: 1px solid #b7dec0;
  color: #1f6a3b;
}

.inquiry-form .error-message {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #b42318;
}

.inquiry-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  min-width: 280px;
  max-width: min(420px, calc(100vw - 32px));
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 0 18px 36px rgba(13, 43, 69, .18);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.inquiry-toast.is-success {
  background: #edf7ee;
  border: 1px solid #b7dec0;
  color: #1f6a3b;
}

.inquiry-toast.is-error {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #b42318;
}

.product-not-found {
  border-radius: 24px;
  background: #fff;
  padding: 50px;
  text-align: center;
}

.footer.b2b-footer {
  background: var(--b2b-navy);
}

.footer-branding {
  gap: 12px;
}

.footer-branding img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
}

.footer.b2b-footer .sitename,
.footer.b2b-footer h4 {
  color: #fff;
}

.footer.b2b-footer a,
.footer.b2b-footer p,
.footer.b2b-footer li,
.footer.b2b-footer span {
  color: #d8e7f0;
}

.footer-main-grid {
  align-items: start;
}

.footer-side-grid {
  align-items: start;
}

.footer-top {
  padding-top: 30px;
  padding-bottom: 12px;
}

.footer-about .footer-contact {
  padding-top: 18px !important;
}

.footer-follow .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.footer-follow .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 148px;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer.b2b-footer .footer-follow .social-links a,
.b2b-content-page .footer-follow .social-links a {
  width: auto !important;
  height: auto !important;
  min-width: 148px;
  min-height: 48px;
  padding: 11px 16px !important;
  border-radius: 999px !important;
  text-indent: 0 !important;
  overflow: visible !important;
  line-height: 1.1;
}

.footer-follow .social-links a i {
  font-size: 18px;
  flex: 0 0 auto;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

.footer-follow .social-links a span {
  display: inline-block !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.footer-follow .social-links a:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .28);
  transform: translateY(-1px);
}

.footer-copyright-inline {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-copyright-inline p {
  margin: 0;
  font-size: 14px;
  color: #d8e7f0;
}

@media (max-width: 1199px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .b2b-hero {
    min-height: auto;
    padding: 76px 0 58px;
  }

  .hero-image-only {
    min-height: 500px;
    padding: 0;
  }

  .hero-slide {
    position: absolute;
    padding: 76px 0 82px;
  }

  .hero-carousel-controls {
    left: 0;
    right: 0;
    bottom: 56px;
  }

  .section-heading,
  .spec-card-header {
    align-items: start;
    flex-direction: column;
  }

  .product-gallery,
  .product-summary {
    position: static;
  }

  .featured-carousel-item {
    flex-basis: 50%;
    max-width: 50%;
  }

  .footer-side-grid {
    row-gap: 28px;
  }
}

@media (max-width: 767px) {
  .hero-proof-grid,
  .category-grid,
  .hero-feature-grid {
    grid-template-columns: 1fr;
  }

  .b2b-section {
    padding: 58px 0;
  }

  .hero-image-only {
    min-height: 320px;
  }

  .thumbnail-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .b2b-hero h1,
  .catalog-hero h1 {
    font-size: 36px;
  }

  .b2b-header .topbar .topbar-note {
    display: none;
  }

  .featured-carousel-shell {
    gap: 10px;
  }

  .featured-carousel-item {
    flex-basis: 100%;
    max-width: 100%;
  }

  .footer-follow .social-links {
    gap: 10px;
  }

  .footer-follow .social-links a {
    min-width: 132px;
    padding: 10px 14px;
  }

  .b2b-content-page .footer-top {
    padding-top: 26px;
  }

  .b2b-content-page .footer-branding img {
    width: 56px;
    height: 56px;
  }

  .featured-carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .hero-carousel-controls {
    bottom: 34px;
  }

  .hero-carousel-dots {
    padding: 8px 12px;
  }

  .hero-proof-card {
    padding: 22px;
  }

  .proof-number {
    font-size: 52px;
  }
}
