/* MSC homepage approved visual and interaction enhancements. */
:root {
  --msc-preview-blue: #1675ad;
  --msc-preview-blue-dark: #0b4f78;
  --msc-preview-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.msc-local-carousel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100vw !important;
  max-width: none !important;
  flex: 0 0 100vw;
  height: min(620px, calc(100vh - 150px));
  min-height: 540px;
  margin-left: calc(50% - 50vw);
  background: #142634;
}

.msc-local-carousel a:focus-visible,
.msc-local-carousel button:focus-visible {
  outline: 3px solid #68b9e8;
  outline-offset: 3px;
}

.msc-slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms var(--msc-preview-ease), visibility 0s linear 900ms;
}

.msc-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.msc-slide.is-leaving {
  z-index: 1;
  visibility: visible;
}

.msc-slide > img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center center;
  backface-visibility: hidden;
}

.msc-slide.is-active > img {
  animation: msc-preview-gentle-zoom 6s linear forwards;
  will-change: transform;
}

.msc-slide.is-leaving > img {
  animation: none;
  will-change: transform;
}

@keyframes msc-preview-gentle-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

.msc-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 17, 27, 0.76) 0%, rgba(5, 17, 27, 0.5) 43%, rgba(5, 17, 27, 0.14) 74%, rgba(5, 17, 27, 0.06) 100%),
    linear-gradient(0deg, rgba(3, 12, 19, 0.23), rgba(3, 12, 19, 0) 45%);
}

.msc-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1220px, calc(100% - 56px));
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  padding-bottom: 8px;
  color: #fff;
}

.msc-slide-content h1 {
  max-width: 790px;
  margin: 0 0 24px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-28px);
  transition: opacity 210ms ease, clip-path 210ms ease, transform 210ms ease;
}

.msc-slide--long-title .msc-slide-content h1 {
  max-width: 780px;
  font-size: clamp(40px, 3.75vw, 50px);
  line-height: 1.08;
}

.msc-slide-content ul {
  display: grid;
  max-width: 680px;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
  list-style: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.msc-slide--long-title .msc-slide-content ul {
  gap: 6px;
}

.msc-slide-content li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.msc-slide-content li::before {
  position: absolute;
  top: 0.58em;
  left: 1px;
  width: 6px;
  height: 6px;
  content: "";
  background: #72c3f0;
}

.msc-cta {
  display: inline-flex;
  min-width: 142px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff !important;
  background: var(--msc-preview-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 220ms var(--msc-preview-ease);
}

.msc-cta:hover {
  color: #fff;
  background: var(--msc-preview-blue-dark);
  transform: translateY(-2px);
}

.msc-slide.is-active .msc-slide-content h1 {
  opacity: 1;
  clip-path: inset(0);
  transform: translateX(0);
  transition-duration: 780ms;
  transition-delay: 130ms;
  transition-timing-function: linear, var(--msc-preview-ease), var(--msc-preview-ease);
}

.msc-slide.is-active .msc-slide-content ul {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 680ms;
  transition-delay: 310ms;
  transition-timing-function: linear, var(--msc-preview-ease);
}

.msc-slide.is-active .msc-slide-content li {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 560ms;
  transition-timing-function: linear, var(--msc-preview-ease);
}

.msc-slide.is-active .msc-slide-content li:nth-child(1) { transition-delay: 370ms; }
.msc-slide.is-active .msc-slide-content li:nth-child(2) { transition-delay: 440ms; }
.msc-slide.is-active .msc-slide-content li:nth-child(3) { transition-delay: 510ms; }
.msc-slide.is-active .msc-slide-content li:nth-child(4) { transition-delay: 580ms; }
.msc-slide.is-active .msc-slide-content li:nth-child(5) { transition-delay: 650ms; }

.msc-slide.is-active .msc-slide-content .msc-cta {
  opacity: 1;
  transform: translateX(0);
  transition-duration: 680ms, 680ms, 220ms;
  transition-delay: 740ms, 740ms, 0ms;
  transition-timing-function: linear, var(--msc-preview-ease), var(--msc-preview-ease);
}

.msc-carousel-controls {
  position: absolute;
  z-index: 5;
  right: max(28px, calc((100vw - 1220px) / 2));
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.msc-pagination {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.msc-pagination button,
.msc-pause {
  border: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  cursor: pointer;
}

.msc-pagination button {
  position: relative;
  min-width: 46px;
  min-height: 44px;
  padding: 6px 7px 13px;
  font-size: 12px;
}

.msc-pagination button::after {
  position: absolute;
  right: 7px;
  bottom: 6px;
  left: 7px;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.35);
}

.msc-pagination button.is-active { color: #fff; }
.msc-pagination button.is-active::after { background: #fff; }

.msc-pause {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-size: 13px;
}

.msc-pause:hover {
  color: #fff;
  border-color: #fff;
}

/* 桌面二级菜单：与主导航连成一个克制的工业目录面板。 */
@media (min-width: 1025px) {
  header .msc-unified-menu {
    z-index: 40;
  }

  header .msc-unified-menu > .woodmart-nav-link {
    position: relative;
    z-index: 2;
    padding-right: 19px;
    padding-left: 19px;
    transition: color 240ms ease, background-color 240ms ease, box-shadow 320ms var(--msc-preview-ease);
  }

  header .msc-unified-menu > .woodmart-nav-link::before {
    position: absolute;
    right: 19px;
    bottom: 0;
    left: 19px;
    height: 3px;
    content: "";
    background: var(--msc-preview-blue);
    opacity: 0;
    transform: scaleX(0.25);
    transform-origin: left center;
    transition: opacity 220ms ease, transform 360ms var(--msc-preview-ease);
  }

  header .msc-unified-menu > .woodmart-nav-link::after {
    margin-left: 7px;
    color: #7e9099;
    transition: color 220ms ease, transform 340ms var(--msc-preview-ease);
  }

  header .msc-unified-menu > .wd-dropdown {
    top: calc(100% - 1px) !important;
    left: 0 !important;
    width: 304px !important;
    min-width: 304px !important;
    max-width: 304px !important;
    margin: 0 !important;
    padding: 0 14px 14px !important;
    overflow: hidden;
    border: 1px solid rgba(15, 51, 70, 0.14);
    border-top: 0;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
    box-shadow: 0 24px 54px rgba(8, 32, 46, 0.2), 0 6px 14px rgba(8, 32, 46, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-9px) scale(0.995) !important;
    transform-origin: 50% 0;
    backface-visibility: hidden;
    will-change: opacity, transform;
    transition:
      opacity 440ms ease 40ms,
      visibility 0s linear 500ms,
      transform 480ms var(--msc-preview-ease) !important;
  }

  header .msc-unified-menu > .wd-dropdown > .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  header .msc-menu-panel-head {
    position: relative;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 4px 0;
    border-bottom: 1px solid rgba(15, 51, 70, 0.13);
  }

  header .msc-menu-panel-head::before {
    position: absolute;
    top: 0;
    right: -14px;
    left: -14px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--msc-preview-blue) 0 38%, #8bc8e7 38% 52%, #dbe9f0 52% 100%);
  }

  header .msc-menu-panel-head span {
    color: #15384a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  header .msc-menu-panel-head a {
    position: relative;
    padding-right: 13px;
    color: #64808e;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color 220ms ease, transform 280ms var(--msc-preview-ease);
  }

  header .msc-menu-panel-head a::after {
    position: absolute;
    top: 50%;
    right: 1px;
    width: 5px;
    height: 5px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
    transform: translateY(-50%) rotate(45deg);
  }

  header .msc-menu-panel-head a:hover,
  header .msc-menu-panel-head a:focus-visible {
    color: var(--msc-preview-blue-dark);
    transform: translateX(2px);
  }

  header .msc-unified-menu .wd-sub-menu {
    margin: 0;
    padding: 6px 0 0 !important;
    counter-reset: msc-submenu-item;
  }

  header .msc-unified-menu .wd-sub-menu > li {
    position: relative;
    counter-increment: msc-submenu-item;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 240ms ease, transform 340ms var(--msc-preview-ease);
  }

  header .msc-unified-menu .wd-sub-menu > li::before {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 14px;
    color: #94a5ad;
    content: "0" counter(msc-submenu-item);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color 220ms ease;
  }

  header .msc-unified-menu .wd-sub-menu > li > a {
    position: relative;
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0 40px 0 52px !important;
    border-bottom: 1px solid rgba(15, 51, 70, 0.09);
    color: #344b57;
    background: transparent;
    box-shadow: inset 0 0 var(--msc-preview-blue);
    font-size: 13.5px;
    font-weight: 650;
    letter-spacing: 0.005em;
    transition:
      color 220ms ease,
      background-color 220ms ease,
      box-shadow 300ms var(--msc-preview-ease),
      padding-left 300ms var(--msc-preview-ease);
  }

  header .msc-unified-menu .wd-sub-menu > li:last-child > a {
    border-bottom: 0;
  }

  header .msc-unified-menu .wd-sub-menu > li > a::after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 6px;
    height: 6px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
    opacity: 0;
    transform: translate(-4px, -50%) rotate(45deg);
    transition: opacity 220ms ease, transform 300ms var(--msc-preview-ease);
  }

  header .msc-unified-menu .wd-sub-menu > li > a:hover,
  header .msc-unified-menu .wd-sub-menu > li > a:focus-visible {
    padding-left: 57px !important;
    color: var(--msc-preview-blue-dark);
    background: #eff6f9;
    box-shadow: inset 3px 0 var(--msc-preview-blue);
  }

  header .msc-unified-menu .wd-sub-menu > li:hover::before,
  header .msc-unified-menu .wd-sub-menu > li:focus-within::before {
    color: var(--msc-preview-blue);
  }

  header .msc-unified-menu .wd-sub-menu > li > a:hover::after,
  header .msc-unified-menu .wd-sub-menu > li > a:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%) rotate(45deg);
  }

  header .msc-unified-menu:hover > .woodmart-nav-link::before,
  header .msc-unified-menu:focus-within > .woodmart-nav-link::before,
  header .msc-unified-menu.is-open > .woodmart-nav-link::before {
    opacity: 1;
    transform: scaleX(1);
  }

  header .msc-unified-menu:hover > .woodmart-nav-link,
  header .msc-unified-menu:focus-within > .woodmart-nav-link,
  header .msc-unified-menu.is-open > .woodmart-nav-link {
    color: var(--msc-preview-blue-dark);
    background: linear-gradient(180deg, rgba(239, 247, 250, 0) 0%, rgba(239, 247, 250, 0.76) 100%);
  }

  header .msc-unified-menu:hover > .woodmart-nav-link::after,
  header .msc-unified-menu:focus-within > .woodmart-nav-link::after,
  header .msc-unified-menu.is-open > .woodmart-nav-link::after {
    transform: rotate(180deg);
  }

  header .msc-unified-menu:hover > .wd-dropdown,
  header .msc-unified-menu:focus-within > .wd-dropdown,
  header .msc-unified-menu.is-open > .wd-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1) !important;
    transition-delay: 0s !important;
  }

  header .msc-unified-menu:hover .wd-sub-menu > li,
  header .msc-unified-menu:focus-within .wd-sub-menu > li,
  header .msc-unified-menu.is-open .wd-sub-menu > li {
    opacity: 1;
    transform: translateY(0);
  }

  header .msc-unified-menu .wd-sub-menu > li:nth-child(1) { transition-delay: 80ms; }
  header .msc-unified-menu .wd-sub-menu > li:nth-child(2) { transition-delay: 120ms; }
  header .msc-unified-menu .wd-sub-menu > li:nth-child(3) { transition-delay: 160ms; }

  /* 保证本地新版覆盖线上仍在加载的旧版翻转动画。 */
  body.msc-home-professional header .msc-unified-menu > .wd-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-9px) scale(0.995) !important;
    transition:
      opacity 440ms ease 40ms,
      visibility 0s linear 520ms,
      transform 480ms var(--msc-preview-ease) !important;
  }

  body.msc-home-professional header .msc-unified-menu:hover > .wd-dropdown,
  body.msc-home-professional header .msc-unified-menu:focus-within > .wd-dropdown,
  body.msc-home-professional header .msc-unified-menu.is-open > .wd-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) !important;
    transition-delay: 0s !important;
  }

  body.msc-home-professional header .msc-unified-menu .wd-sub-menu > li {
    opacity: 0;
    transform: translateY(-3px);
    transition: opacity 420ms ease, transform 440ms var(--msc-preview-ease);
  }

  body.msc-home-professional header .msc-unified-menu:hover .wd-sub-menu > li,
  body.msc-home-professional header .msc-unified-menu:focus-within .wd-sub-menu > li,
  body.msc-home-professional header .msc-unified-menu.is-open .wd-sub-menu > li {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chaty Email：复制邮箱后的明确反馈，并保留联系页面入口。 */
.msc-email-feedback {
  position: fixed;
  z-index: 100002;
  left: 29px;
  bottom: 94px;
  display: grid;
  width: min(390px, calc(100vw - 58px));
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 12px 12px 14px;
  border: 1px solid rgba(116, 190, 230, 0.25);
  border-radius: 4px;
  color: #fff;
  background: #102c3c;
  box-shadow: 0 16px 38px rgba(5, 27, 39, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transform-origin: left bottom;
  transition: opacity 220ms ease, transform 360ms var(--msc-preview-ease);
}

.msc-email-feedback.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.msc-email-feedback__mark {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0b3e58;
  background: #75c8ed;
  font-size: 15px;
  font-weight: 800;
}

.msc-email-feedback__copy {
  min-width: 0;
}

.msc-email-feedback__copy span,
.msc-email-feedback__copy strong {
  display: block;
}

.msc-email-feedback__copy span {
  margin-bottom: 2px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.msc-email-feedback__copy strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.msc-email-feedback__link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(117, 200, 237, 0.55);
  color: #fff !important;
  background: rgba(22, 117, 173, 0.35);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.msc-email-feedback__link:hover,
.msc-email-feedback__link:focus-visible {
  border-color: #75c8ed;
  background: var(--msc-preview-blue);
}

.msc-email-feedback__close {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.msc-email-feedback__close:hover,
.msc-email-feedback__close:focus-visible {
  color: #fff;
}

/* Main products：保留真实分类图，把方形图库整理为清晰的产品目录入口。 */
.msc-main-products-heading {
  margin-bottom: 22px !important;
  padding: 24px 20px 10px !important;
}

.msc-main-products-heading .woodmart-title-container,
.msc-main-products-heading .title {
  color: #173746;
  font-size: clamp(30px, 2.5vw, 38px) !important;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.msc-main-products {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 15px 42px !important;
}

.msc-featured-heading-orphan {
  display: none !important;
}

.msc-main-products .promo-banner {
  position: relative;
  height: 330px !important;
  overflow: hidden;
  border: 1px solid rgba(16, 52, 71, 0.13);
  background: #dce3e7;
  box-shadow: 0 5px 16px rgba(12, 43, 61, 0.08);
  cursor: pointer;
  isolation: isolate;
  transition:
    border-color 320ms ease,
    box-shadow 460ms var(--msc-preview-ease),
    transform 460ms var(--msc-preview-ease);
}

.msc-main-products .promo-banner:focus-visible {
  outline: 3px solid rgba(22, 117, 173, 0.55);
  outline-offset: 3px;
}

.msc-main-products .main-wrapp-img,
.msc-main-products .banner-image,
.msc-main-products .banner-image picture,
.msc-main-products .banner-image img {
  width: 100%;
  height: 100% !important;
}

.msc-main-products .main-wrapp-img {
  position: absolute;
  inset: 0;
}

.msc-main-products .banner-image img {
  object-fit: cover;
  transform: scale(1);
  transition: transform 900ms var(--msc-preview-ease);
}

.msc-main-products .wrapper-content-banner {
  position: absolute !important;
  z-index: 2;
  inset: 0;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 28px !important;
  background: linear-gradient(180deg, rgba(5, 22, 31, 0.02) 28%, rgba(5, 27, 39, 0.84) 100%);
}

.msc-main-products .content-banner {
  width: 100%;
  text-align: left !important;
  transform: translateY(0);
  transition: transform 460ms var(--msc-preview-ease);
}

.msc-main-products .banner-title {
  max-width: 12ch;
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(24px, 2.05vw, 29px) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  line-height: 1.12 !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28) !important;
}

.msc-main-products .banner-btn-wrapper,
.msc-main-products .wd-button-wrapper {
  position: static !important;
  display: block !important;
  height: auto !important;
  margin-top: 11px !important;
  opacity: 1 !important;
  text-align: left !important;
  visibility: visible !important;
  transform: none !important;
}

.msc-main-products .banner-btn-wrapper .btn {
  position: relative;
  min-height: 0 !important;
  padding: 0 21px 4px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62) !important;
  color: #fff !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  line-height: 1.4 !important;
  text-transform: uppercase;
}

.msc-main-products .banner-btn-wrapper .btn::after {
  position: absolute;
  top: 46%;
  right: 2px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: transform 300ms var(--msc-preview-ease);
}

@media (hover: hover) and (pointer: fine) {
  .msc-main-products .promo-banner:hover,
  .msc-main-products .promo-banner:focus-within {
    border-color: rgba(22, 117, 173, 0.32);
    box-shadow: 0 18px 34px rgba(10, 43, 62, 0.17);
    transform: translateY(-5px);
  }

  .msc-main-products .promo-banner:hover .banner-image img,
  .msc-main-products .promo-banner:focus-within .banner-image img {
    transform: scale(1.045);
  }

  .msc-main-products .promo-banner:hover .content-banner,
  .msc-main-products .promo-banner:focus-within .content-banner {
    transform: translateY(-3px);
  }

  .msc-main-products .promo-banner:hover .banner-btn-wrapper .btn::after,
  .msc-main-products .promo-banner:focus-within .banner-btn-wrapper .btn::after {
    transform: translate(4px, -50%) rotate(45deg);
  }
}

@media (min-width: 901px) {
  .msc-main-products .owl-stage-outer {
    overflow: visible !important;
  }

  .msc-main-products .owl-stage {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 1fr));
    gap: 24px;
    transform: none !important;
  }

  .msc-main-products .owl-stage::after {
    display: none !important;
  }

  .msc-main-products .owl-item {
    width: auto !important;
    margin: 0 !important;
  }

  .msc-main-products .owl-nav,
  .msc-main-products .owl-dots {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .msc-home-professional .msc-local-carousel {
    height: 560px;
    min-height: 560px;
  }

  .msc-home-professional .msc-slide-content h1 {
    max-width: 340px;
    font-size: clamp(31px, 8.7vw, 35px);
    line-height: 1.13;
    letter-spacing: -0.025em;
  }

  .msc-home-professional .msc-slide--long-title .msc-slide-content h1 {
    max-width: 342px;
    font-size: clamp(28px, 7.8vw, 32px);
    line-height: 1.12;
  }

  .msc-main-products-heading {
    margin-bottom: 12px !important;
    padding: 20px 18px 6px !important;
  }

  .msc-main-products-heading .woodmart-title-container,
  .msc-main-products-heading .title {
    font-size: 28px !important;
  }

  .msc-main-products {
    padding: 0 20px 34px !important;
  }

  .msc-main-products .promo-banner {
    height: 286px !important;
  }

  .msc-main-products .wrapper-content-banner {
    padding: 22px !important;
  }

  .msc-main-products .banner-title {
    font-size: 24px !important;
  }

  .msc-main-products .owl-carousel {
    position: relative;
  }

  .msc-main-products .owl-nav {
    position: absolute;
    z-index: 5;
    inset: 0;
    height: 286px;
    pointer-events: none;
  }

  .msc-main-products .owl-nav > div {
    position: absolute !important;
    top: 50% !important;
    display: grid !important;
    width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    border-radius: 50% !important;
    color: #fff !important;
    background: rgba(6, 34, 48, 0.7) !important;
    box-shadow: 0 4px 14px rgba(5, 25, 36, 0.18);
    opacity: 0.92 !important;
    pointer-events: auto;
    transform: translateY(-50%) !important;
  }

  .msc-main-products .owl-nav > div::before {
    display: block !important;
    width: 9px;
    height: 9px;
    border: 0 !important;
    border-top: 2px solid currentColor !important;
    border-right: 2px solid currentColor !important;
    content: "" !important;
    font-family: inherit !important;
  }

  .msc-main-products .owl-nav > div::after {
    display: none !important;
    content: none !important;
  }

  .msc-main-products .owl-prev::before {
    transform: translateX(2px) rotate(-135deg);
  }

  .msc-main-products .owl-next::before {
    transform: translateX(-2px) rotate(45deg);
  }

  .msc-main-products .owl-prev {
    left: 10px !important;
  }

  .msc-main-products .owl-next {
    right: 10px !important;
  }

  .msc-main-products .owl-dots {
    margin-top: 13px !important;
  }

  .msc-main-products .owl-dot span {
    width: 7px !important;
    height: 7px !important;
    margin: 0 5px !important;
  }
}

/* About Us 下方四张产品卡：收回主题原本突兀的详情上推层，改为克制的目录卡悬停。 */
.elementor-element-7952c407 .product-grid-item {
  padding-right: 7px;
  padding-left: 7px;
}

.elementor-element-7952c407 .product-grid-item .product-wrapper {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(19, 49, 69, 0.1);
  background: #fff;
  box-shadow: 0 2px 8px rgba(16, 42, 59, 0.05);
  transform: translateY(0);
  transition:
    transform 420ms var(--msc-preview-ease),
    border-color 320ms ease,
    box-shadow 420ms var(--msc-preview-ease);
}

.elementor-element-7952c407 .product-grid-item .content-product-imagin,
.elementor-element-7952c407 .product-grid-item .fade-in-block,
.elementor-element-7952c407 .product-grid-item .product-rating-price {
  display: none !important;
}

.elementor-element-7952c407 .product-grid-item .product-element-top {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f3f5;
  transform: none !important;
}

.elementor-element-7952c407 .product-grid-item .product-element-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 780ms var(--msc-preview-ease);
}

.elementor-element-7952c407 .product-grid-item .hover-img {
  opacity: 0;
  transform: none !important;
  transition: opacity 480ms ease !important;
}

.elementor-element-7952c407 .product-grid-item .product-element-bottom {
  min-height: 112px;
  padding: 14px 12px 16px;
  background: #fff;
  transform: none !important;
}

.elementor-element-7952c407 .product-grid-item .wd-entities-title {
  min-height: 42px;
  margin-bottom: 5px;
  color: #233844;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-wrap: balance;
  transition: color 240ms ease;
}

.elementor-element-7952c407 .product-grid-item .wd-product-cats {
  min-height: 40px;
  color: #687680;
  font-size: 13px;
  line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {
  .elementor-element-7952c407 .product-grid-item:hover .product-wrapper,
  .elementor-element-7952c407 .product-grid-item:focus-within .product-wrapper {
    border-color: rgba(22, 117, 173, 0.24);
    box-shadow: 0 14px 30px rgba(13, 47, 69, 0.14);
    transform: translateY(-6px);
  }

  .elementor-element-7952c407 .product-grid-item:hover .product-element-top img,
  .elementor-element-7952c407 .product-grid-item:focus-within .product-element-top img {
    transform: scale(1.035);
  }

  .elementor-element-7952c407 .product-grid-item:hover .hover-img,
  .elementor-element-7952c407 .product-grid-item:focus-within .hover-img {
    opacity: 1;
  }

  .elementor-element-7952c407 .product-grid-item:hover .wd-entities-title,
  .elementor-element-7952c407 .product-grid-item:focus-within .wd-entities-title {
    color: var(--msc-preview-blue-dark);
  }
}

.elementor-element-7952c407 .product-grid-item a:focus-visible {
  outline: 3px solid rgba(22, 117, 173, 0.55);
  outline-offset: -3px;
}

/* About Us 完整模块：左侧办公环境与精选产品，右侧公司信息等高对齐。 */
.elementor-element-7952c407.msc-about-showcase {
  padding-top: 36px;
  padding-bottom: 72px;
}

.elementor-element-7952c407.msc-about-showcase > .elementor-container {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(360px, 0.95fr);
  align-items: stretch;
  gap: 28px;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-7881e4a8,
.elementor-element-7952c407.msc-about-showcase .elementor-element-bdb3222 {
  width: auto !important;
  min-width: 0;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-7881e4a8 > .elementor-widget-wrap {
  display: grid;
  grid-template-rows: 400px auto;
  align-content: start !important;
  align-items: start !important;
  gap: 18px;
  padding: 0;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-73ecdaf {
  height: 400px;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 73, 0.1);
  background: #e9edf0;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-73ecdaf .elementor-widget-container,
.elementor-element-7952c407.msc-about-showcase .elementor-element-73ecdaf .wd-image,
.elementor-element-7952c407.msc-about-showcase .elementor-element-73ecdaf picture,
.elementor-element-7952c407.msc-about-showcase .elementor-element-73ecdaf img {
  width: 100%;
  height: 100%;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-73ecdaf img {
  object-fit: cover;
  object-position: center 52%;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-e73db31 {
  margin: 0;
}

.msc-product-strip-head {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  padding: 0 8px 0 2px;
  border-bottom: 1px solid rgba(18, 53, 73, 0.12);
}

.msc-product-strip-head strong {
  color: #263d4a;
  font-size: 18px;
  font-weight: 600;
}

.msc-product-strip-head a {
  position: relative;
  padding-right: 17px;
  color: var(--msc-preview-blue-dark);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
}

.msc-product-strip-head a::after {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: transform 260ms var(--msc-preview-ease);
}

.msc-product-strip-head a:hover::after,
.msc-product-strip-head a:focus-visible::after {
  transform: translate(3px, -50%) rotate(45deg);
}

.elementor-element-7952c407.msc-about-showcase .product-grid-item .product-wrapper {
  box-shadow: 0 3px 10px rgba(16, 42, 59, 0.06);
}

.elementor-element-7952c407.msc-about-showcase .product-grid-item .product-element-bottom {
  min-height: 104px;
  padding-top: 13px;
  padding-bottom: 14px;
}

.elementor-element-7952c407.msc-about-showcase .product-grid-item .wd-entities-title {
  min-height: 40px;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-bdb3222 > .elementor-widget-wrap {
  width: 100%;
  padding: 0;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-ce608ce {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 !important;
  border-top: 3px solid #3c9ccc;
  color: #fff;
  background: #113548 !important;
  background-image: none !important;
  box-shadow: 0 16px 34px rgba(12, 40, 55, 0.14);
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-ce608ce > .elementor-container,
.elementor-element-7952c407.msc-about-showcase .elementor-element-a12fb3d,
.elementor-element-7952c407.msc-about-showcase .elementor-element-a12fb3d > .elementor-widget-wrap {
  width: 100%;
  height: 100%;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-a12fb3d > .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  padding: 38px 34px 34px;
  background: transparent !important;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-5d32f2c8 {
  margin: 0;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-5d32f2c8 .woodmart-title-container {
  max-width: none;
  margin-bottom: 20px;
  color: #fff !important;
  font-size: clamp(27px, 2.05vw, 31px) !important;
  font-weight: 600;
  line-height: 1.16 !important;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-5d32f2c8 .woodmart-title-container::after {
  width: 54px;
  height: 2px;
  margin-top: 20px;
  background: #64b7df;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-5d32f2c8 .title-after_title {
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 15px;
  line-height: 1.62;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-5d32f2c8 .title-after_title p {
  margin: 0;
}

.msc-about-focus {
  display: grid;
  gap: 0;
  margin: 24px 0 26px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
}

.msc-about-focus li {
  position: relative;
  padding: 10px 10px 10px 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.35;
}

.msc-about-focus li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.msc-about-focus li::before {
  position: absolute;
  top: 16px;
  left: 2px;
  width: 6px;
  height: 6px;
  content: "";
  background: #64b7df;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-db65e33 {
  margin-top: auto;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-db65e33 .wd-button-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.elementor-element-7952c407.msc-about-showcase .elementor-element-db65e33 .btn {
  min-height: 46px;
  padding: 0 19px;
  background: var(--msc-preview-blue);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.msc-about-contact-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.msc-about-contact-link:hover,
.msc-about-contact-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .msc-local-carousel {
    height: 560px;
    min-height: 560px;
  }

  .msc-shade {
    background: linear-gradient(180deg, rgba(5, 17, 27, 0.12) 0%, rgba(5, 17, 27, 0.36) 43%, rgba(5, 17, 27, 0.74) 100%);
  }

  .msc-slide > img { object-position: center; }

  .msc-slide-content {
    width: 100%;
    justify-content: flex-end;
    padding: 0 24px 94px;
  }

  .msc-slide-content h1 {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: clamp(31px, 8.5vw, 38px);
    line-height: 1.13;
  }

  .msc-slide--long-title .msc-slide-content h1 {
    max-width: 342px;
    font-size: clamp(28px, 7.8vw, 34px);
    line-height: 1.12;
  }

  .msc-slide-content ul {
    gap: 5px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .msc-slide--long-title .msc-slide-content ul { gap: 3px; }
  .msc-cta { min-height: 46px; }

  .msc-carousel-controls {
    right: 16px;
    bottom: 16px;
  }

  .elementor-element-7952c407 .product-grid-item {
    padding-right: 5px;
    padding-left: 5px;
  }

  .elementor-element-7952c407 .product-grid-item .product-element-bottom {
    min-height: 106px;
    padding: 12px 10px 14px;
  }

  .elementor-element-7952c407 .product-grid-item .wd-entities-title {
    min-height: 38px;
    font-size: 14px;
  }

  .elementor-element-7952c407 .product-grid-item .wd-product-cats {
    min-height: 38px;
    font-size: 12.5px;
  }

  .elementor-element-7952c407.msc-about-showcase {
    padding-top: 24px;
    padding-bottom: 54px;
  }

  .elementor-element-7952c407.msc-about-showcase > .elementor-container {
    display: block;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-7881e4a8 > .elementor-widget-wrap {
    grid-template-rows: 230px auto;
    gap: 16px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-73ecdaf {
    height: 230px;
  }

  .msc-product-strip-head {
    min-height: 44px;
    margin-bottom: 10px;
    padding-right: 4px;
  }

  .msc-product-strip-head strong {
    font-size: 17px;
  }

  .elementor-element-7952c407.msc-about-showcase .product-grid-item .product-element-bottom {
    min-height: 100px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-bdb3222 {
    margin-top: 26px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-ce608ce {
    height: auto;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-a12fb3d > .elementor-widget-wrap {
    padding: 30px 22px 26px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-5d32f2c8 .woodmart-title-container {
    max-width: none;
    font-size: 25px !important;
    line-height: 1.14 !important;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-5d32f2c8 .title-after_title {
    font-size: 14.5px !important;
    line-height: 1.58 !important;
  }

  .msc-about-focus {
    margin-top: 20px;
    margin-bottom: 22px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-db65e33 .wd-button-wrapper {
    align-items: stretch;
    flex-direction: row;
    gap: 10px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-db65e33 .btn,
  .msc-about-contact-link {
    flex: 1 1 0;
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
  }

  .msc-email-feedback {
    right: 16px;
    bottom: 82px;
    left: 16px;
    width: auto;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .msc-email-feedback__link {
    grid-column: 2 / 4;
    justify-content: center;
  }

  .msc-email-feedback__close {
    grid-row: 1;
    grid-column: 3;
  }
}

/* Whole homepage professional system: unify the existing supplier site without replacing its content. */
.msc-home-professional {
  color: #243844;
  background: #fff;
}

.msc-site-header .whb-top-bar {
  min-height: 42px;
  border: 0 !important;
  background: #0c293a !important;
}

.msc-site-header .whb-top-bar-inner {
  min-height: 42px;
  gap: 20px;
}

.msc-site-header .whb-top-bar .whb-col-left,
.msc-site-header .whb-top-bar .whb-col-center,
.msc-site-header .whb-top-bar .whb-col-right {
  min-width: 0;
  align-items: center;
}

.msc-site-header .whb-top-bar .whb-col-left {
  flex: 1 1 390px;
  gap: 18px;
}

.msc-site-header .whb-top-bar .whb-col-center {
  display: flex !important;
  flex: 0 1 350px;
  justify-content: center;
}

.msc-site-header .whb-top-bar .whb-col-right {
  flex: 1 1 390px;
  justify-content: flex-end;
  gap: 12px;
}

.msc-site-header .whb-top-bar .wd-header-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 12px;
  line-height: 1;
}

.msc-topbar-contact {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88) !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 220ms ease;
}

.msc-topbar-contact + .msc-topbar-contact,
.msc-site-header .whb-top-bar .whb-col-left .wd-header-text + .wd-header-text {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.msc-topbar-contact span {
  color: #75c8ed;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.msc-topbar-contact strong {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.msc-topbar-contact:hover,
.msc-topbar-contact:focus-visible {
  color: #fff !important;
}

.msc-topbar-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9.5px;
  letter-spacing: 0.055em;
  white-space: nowrap;
  text-transform: uppercase;
}

.msc-topbar-note > span {
  width: 5px;
  height: 5px;
  background: #66b9e2;
  box-shadow: 0 0 0 3px rgba(102, 185, 226, 0.14);
}

.msc-topbar-note strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: inherit;
  font-weight: 800;
}

.msc-topbar-note em {
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  font-weight: 500;
}

.msc-site-header .whb-top-bar .container,
.msc-site-header .whb-general-header .container {
  width: min(1220px, calc(100% - 40px));
  max-width: 1220px;
}

.msc-site-header .wd-header-search-form {
  width: 218px !important;
  flex: 0 0 218px;
  margin: 0;
}

.msc-site-header .wd-header-search-form .searchform {
  display: grid;
  width: 218px !important;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  grid-template-columns: minmax(0, 1fr) 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07) !important;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.msc-site-header .wd-header-search-form .searchform:focus-within {
  border-color: rgba(117, 200, 237, 0.72) !important;
  background: rgba(255, 255, 255, 0.11) !important;
}

.msc-site-header .wd-header-search-form input {
  width: 100%;
  height: 30px !important;
  min-height: 0 !important;
  padding: 0 11px !important;
  border: 0 !important;
  color: #fff;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 11.5px;
}

.msc-site-header .wd-header-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.msc-site-header .wd-header-search-form .searchsubmit {
  position: relative;
  width: 38px;
  height: 30px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-left: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.msc-site-header .wd-header-search-form .searchsubmit span {
  display: none;
}

.msc-site-header .wd-header-search-form .searchsubmit::before {
  position: absolute;
  top: 9px;
  left: 13px;
  width: 9px;
  height: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  content: "";
}

.msc-site-header .wd-header-search-form .searchsubmit::after {
  position: absolute;
  top: 19px;
  left: 23px;
  width: 5px;
  height: 1.5px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  transform: rotate(45deg);
  transform-origin: left center;
}

.msc-site-header .whb-top-bar .gt_switcher-popup {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.82) !important;
  background: rgba(255, 255, 255, 0.045);
  font-size: 11.5px;
  text-decoration: none !important;
}

.msc-site-header .whb-top-bar .gt_switcher-popup img {
  width: 17px;
  height: 17px;
}

.msc-site-header .whb-top-bar .gt_switcher-popup > span:last-child {
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 7px !important;
}

.msc-site-header .whb-top-bar .whb-space-element {
  display: none;
}

@media (max-width: 1199px) and (min-width: 1025px) {
  .msc-site-header .whb-top-bar .whb-col-center {
    display: none !important;
  }
}

.msc-site-header .whb-general-header {
  border: 0 !important;
  background: #fff !important;
  box-shadow: 0 1px 0 rgba(14, 49, 68, 0.1);
}

.msc-site-header .whb-general-header-inner {
  min-height: 92px;
}

.msc-site-header .wd-main-logo img {
  width: auto;
  max-width: 230px !important;
  max-height: 62px;
  object-fit: contain;
}

.msc-site-header .wd-nav-main > li > .woodmart-nav-link {
  min-height: 92px;
  color: #1d303b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.005em;
}

.msc-site-header .wd-nav-main > li.current-menu-item > .woodmart-nav-link,
.msc-site-header .wd-nav-main > li > .woodmart-nav-link:hover,
.msc-site-header .wd-nav-main > li > .woodmart-nav-link:focus-visible {
  color: var(--msc-preview-blue-dark);
}

.msc-site-header .wd-nav-main > li.current-menu-item > .woodmart-nav-link {
  box-shadow: inset 0 -2px var(--msc-preview-blue);
}

.msc-home-professional .msc-local-carousel {
  height: min(600px, calc(100vh - 128px));
  min-height: 540px;
}

.msc-home-professional .msc-slide-content h1 {
  max-width: 820px;
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(42px, 4vw, 54px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.msc-home-professional .msc-slide--long-title .msc-slide-content h1 {
  font-size: clamp(39px, 3.55vw, 49px);
}

.msc-company-intro {
  min-height: 0 !important;
  padding: 56px 24px !important;
  border-top: 1px solid rgba(18, 54, 73, 0.08);
  border-bottom: 1px solid rgba(18, 54, 73, 0.09);
  background: #eef3f6 !important;
}

.msc-company-intro > .elementor-container {
  max-width: 1220px !important;
}

.msc-company-intro .title-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
  text-align: left !important;
}

.msc-company-intro .liner-continer,
.msc-company-intro .title-after_title {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  text-align: left !important;
}

.msc-company-intro .woodmart-title-container {
  max-width: 17ch !important;
  margin: 0 !important;
  color: #16394b !important;
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(31px, 2.8vw, 40px) !important;
  font-weight: 700;
  line-height: 1.12 !important;
  letter-spacing: -0.025em;
  text-align: left !important;
  text-wrap: balance;
}

.msc-company-intro .woodmart-title-container::after {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 22px;
  content: "";
  background: var(--msc-preview-blue);
}

.msc-company-intro .title-after_title {
  max-width: 68ch !important;
  color: #4d626e !important;
  font-size: 15px;
  line-height: 1.7 !important;
}

.msc-company-intro .title-after_title p {
  margin-bottom: 12px;
}

.msc-company-intro .title-after_title p:last-child {
  margin-bottom: 0;
}

.msc-main-products-heading,
.msc-about-heading {
  min-height: 0 !important;
  padding: 46px 20px 18px !important;
}

.msc-main-products-heading {
  margin-bottom: 18px !important;
  background: #fff;
}

.msc-about-heading {
  margin: 0 !important;
  background: #f3f5f6 !important;
}

.msc-main-products-heading .woodmart-title-container,
.msc-about-heading .woodmart-title-container,
.msc-why-section .woodmart-title-container,
.msc-news-section .woodmart-title-container {
  color: #173847 !important;
  font-family: "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(31px, 2.6vw, 38px) !important;
  font-weight: 600;
  line-height: 1.15 !important;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.msc-main-products {
  padding-bottom: 64px !important;
}

.elementor-element-7952c407.msc-about-showcase {
  padding-top: 24px;
  background: #f3f5f6;
}

.msc-why-section {
  min-height: 0 !important;
  padding: 70px 20px 74px !important;
  background: #eef3f6;
}

.msc-why-section > .elementor-container {
  max-width: 1220px;
}

.msc-why-section .elementor-element-ff86359 {
  margin-bottom: 30px;
}

.msc-why-section .wd-nav-tabs-wrapper {
  margin: 0;
}

.msc-why-section .wd-nav-tabs {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 !important;
}

.msc-why-section .wd-nav-tabs > li {
  width: auto !important;
  margin: 0 !important;
}

.msc-why-section .wd-nav-tabs .wd-nav-link {
  position: relative;
  display: block !important;
  height: 205px;
  overflow: hidden;
  border: 1px solid rgba(14, 52, 72, 0.13);
  background: #d9e1e5;
  box-shadow: 0 4px 14px rgba(12, 42, 58, 0.07);
}

.msc-why-section .wd-nav-tabs .img-wrapper,
.msc-why-section .wd-nav-tabs .img-wrapper img {
  width: 100%;
  height: 100%;
}

.msc-why-section .wd-nav-tabs .img-wrapper img {
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms var(--msc-preview-ease), filter 320ms ease;
}

.msc-why-section .wd-tabs-title {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 62px;
  display: flex;
  align-items: flex-end;
  padding: 26px 18px 15px;
  color: #fff;
  background: linear-gradient(180deg, rgba(6, 28, 40, 0) 0%, rgba(6, 28, 40, 0.88) 80%);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.msc-why-section .wd-nav-tabs > li.wd-active .wd-nav-link {
  border-color: var(--msc-preview-blue);
  box-shadow: 0 0 0 2px var(--msc-preview-blue), 0 14px 28px rgba(12, 47, 67, 0.15);
}

.msc-why-section .wd-nav-tabs > li.wd-active .img-wrapper img,
.msc-why-section .wd-nav-tabs .wd-nav-link:hover .img-wrapper img,
.msc-why-section .wd-nav-tabs .wd-nav-link:focus-visible .img-wrapper img {
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.035);
}

.msc-why-section .wd-tab-content-wrapper {
  margin-top: 18px;
  background: #12394d !important;
  box-shadow: 0 14px 28px rgba(12, 45, 62, 0.12);
}

.msc-why-section .wd-tab-content {
  min-height: 118px;
  padding: 30px 34px !important;
  color: rgba(255, 255, 255, 0.88);
  background: #12394d !important;
}

.msc-why-section .wd-tab-content img,
.msc-why-section .wd-tab-content p:has(> img) {
  display: none !important;
}

.msc-why-section .wd-tab-content p {
  max-width: 76ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.msc-redundant-quick-links {
  display: none !important;
}

.msc-news-section {
  width: 100% !important;
  max-width: none !important;
  padding: 70px 20px 78px !important;
  background: #fff;
}

.msc-news-section > .elementor-container {
  max-width: 1220px;
}

.msc-news-section .elementor-element-67be334 {
  margin-bottom: 30px;
}

.msc-news-section .wd-blog-holder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0;
}

.msc-news-section .blog-post-loop {
  position: relative;
  width: auto !important;
  max-width: none !important;
  min-height: 184px;
  flex: none !important;
  padding: 22px 6px 20px !important;
  border-top: 2px solid #9ab8c8;
  transition: border-color 260ms ease, transform 380ms var(--msc-preview-ease);
}

.msc-news-section .wd-post-thumb,
.msc-news-section .wd-post-header,
.msc-news-section .wd-post-actions,
.msc-news-section .wd-meta-author,
.msc-news-section .wd-meta-reply,
.msc-news-section .wd-entry-content,
.msc-news-section .wd-modified-date {
  display: none !important;
}

.msc-news-section .wd-post-content {
  padding: 0 !important;
}

.msc-news-section .wd-post-entry-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: #637681;
  font-size: 12px;
  line-height: 1.4;
}

.msc-news-section .wd-post-cat,
.msc-news-section .wd-meta-date {
  padding: 0 !important;
  color: #637681 !important;
  font-size: 12px;
}

.msc-news-section .wd-post-cat::after {
  margin-left: 10px;
  color: #9aaab3;
  content: "/";
}

.msc-news-section .wd-entities-title {
  max-width: 28ch;
  margin: 0;
  padding-right: 30px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.34;
  text-wrap: pretty;
}

.msc-news-section .wd-entities-title a {
  color: #203641;
}

.msc-news-section .blog-post-loop::after {
  position: absolute;
  right: 8px;
  bottom: 24px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #55727f;
  border-right: 1px solid #55727f;
  content: "";
  transform: rotate(45deg);
  transition: transform 300ms var(--msc-preview-ease);
}

@media (hover: hover) and (pointer: fine) {
  .msc-news-section .blog-post-loop:hover,
  .msc-news-section .blog-post-loop:focus-within {
    border-color: var(--msc-preview-blue);
    transform: translateY(-4px);
  }

  .msc-news-section .blog-post-loop:hover::after,
  .msc-news-section .blog-post-loop:focus-within::after {
    transform: translateX(4px) rotate(45deg);
  }

  .msc-news-section .blog-post-loop:hover .wd-entities-title a,
  .msc-news-section .blog-post-loop:focus-within .wd-entities-title a {
    color: var(--msc-preview-blue-dark);
  }
}

.msc-site-footer {
  min-height: 0 !important;
  padding: 48px 24px 50px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d2940 !important;
}

.msc-site-footer > .elementor-container {
  display: grid;
  max-width: 1220px;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(180px, 0.72fr));
  gap: clamp(40px, 7vw, 100px);
}

.msc-site-footer > .elementor-container > .elementor-column {
  width: auto !important;
}

.msc-site-footer .elementor-widget-wrap {
  padding: 0 !important;
}

.msc-site-footer .elementor-heading-title,
.msc-site-footer .widget-title {
  margin: 0 0 20px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
  text-transform: uppercase;
}

.msc-site-footer .elementor-icon-list-items,
.msc-site-footer .menu {
  display: grid !important;
  gap: 10px;
  margin: 0;
}

.msc-site-footer .elementor-icon-list-item,
.msc-site-footer .menu li {
  margin: 0 !important;
  padding: 0 !important;
}

.msc-site-footer .elementor-icon-list-icon {
  width: 22px;
  color: #69b6dc;
}

.msc-site-footer .elementor-icon-list-text,
.msc-site-footer a {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 14px;
  line-height: 1.55;
  text-decoration: none !important;
}

.msc-site-footer a:hover,
.msc-site-footer a:focus-visible {
  color: #fff !important;
}

@media (max-width: 900px) {
  .msc-home-professional .msc-local-carousel {
    height: 560px;
    min-height: 560px;
  }

  .msc-home-professional .msc-slide-content {
    width: 100%;
    padding: 0 20px 94px;
  }

  .msc-home-professional .msc-slide-content h1 {
    max-width: 340px;
    font-size: clamp(31px, 8.7vw, 35px);
    line-height: 1.13;
    letter-spacing: -0.025em;
  }

  .msc-home-professional .msc-slide--long-title .msc-slide-content h1 {
    max-width: 342px;
    font-size: clamp(28px, 7.8vw, 32px);
    line-height: 1.12;
  }

  .msc-home-professional .whb-general-header-inner {
    min-height: 64px;
  }

  .msc-home-professional .whb-general-header .container {
    width: calc(100% - 28px);
  }

  .msc-home-professional .wd-main-logo img {
    max-width: 184px !important;
    max-height: 48px;
  }

  .msc-home-professional .wd-tools-text {
    display: none !important;
  }

  .msc-home-professional .wd-header-mobile-nav .wd-tools-icon,
  .msc-home-professional .wd-header-search-mobile .wd-tools-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 22px;
    color: #173847;
  }

  .msc-home-professional .wd-header-mobile-nav .wd-tools-icon::before {
    position: absolute;
    top: 3px;
    left: 1px;
    width: 22px;
    height: 16px;
    border: 0 !important;
    border-top: 2px solid currentColor !important;
    border-bottom: 2px solid currentColor !important;
    content: "" !important;
    font-family: inherit !important;
  }

  .msc-home-professional .wd-header-mobile-nav .wd-tools-icon::after {
    position: absolute;
    top: 10px;
    left: 1px;
    width: 16px;
    height: 2px;
    content: "" !important;
    background: currentColor;
  }

  .msc-home-professional .wd-header-search-mobile .wd-tools-icon::before {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor !important;
    border-radius: 50%;
    content: "" !important;
    font-family: inherit !important;
  }

  .msc-home-professional .wd-header-search-mobile .wd-tools-icon::after {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 8px;
    height: 2px;
    content: "" !important;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
  }

  .msc-company-intro {
    padding: 30px 20px 32px !important;
  }

  .msc-company-intro .title-wrapper {
    display: block !important;
  }

  .msc-company-intro .woodmart-title-container {
    max-width: 19ch !important;
    font-size: 27px !important;
    line-height: 1.13 !important;
  }

  .msc-company-intro .woodmart-title-container::after {
    margin-top: 15px;
    margin-bottom: 17px;
  }

  .msc-company-intro .title-after_title {
    font-size: 14px !important;
    line-height: 1.52 !important;
  }

  .msc-company-intro .title-after_title p {
    margin-bottom: 8px;
  }

  .msc-main-products-heading,
  .msc-about-heading {
    padding: 34px 18px 14px !important;
  }

  .msc-main-products-heading {
    margin-bottom: 10px !important;
  }

  .msc-main-products-heading .woodmart-title-container,
  .msc-about-heading .woodmart-title-container,
  .msc-why-section .woodmart-title-container,
  .msc-news-section .woodmart-title-container {
    font-size: 28px !important;
  }

  .msc-main-products {
    padding-bottom: 42px !important;
  }

  .elementor-element-7952c407.msc-about-showcase {
    padding: 12px 14px 40px !important;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-7881e4a8 > .elementor-widget-wrap {
    grid-template-rows: 205px auto;
    gap: 13px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-73ecdaf {
    height: 205px;
  }

  .elementor-element-7952c407.msc-about-showcase .product-grid-item .product-element-bottom {
    min-height: 88px;
    padding-top: 10px;
    padding-bottom: 11px;
  }

  .elementor-element-7952c407.msc-about-showcase .product-grid-item .wd-entities-title {
    min-height: 34px;
  }

  .elementor-element-7952c407.msc-about-showcase .product-grid-item .wd-product-cats {
    min-height: 32px;
    line-height: 1.35;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-bdb3222 {
    margin-top: 20px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-a12fb3d > .elementor-widget-wrap {
    padding: 25px 20px 22px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-5d32f2c8 .woodmart-title-container {
    margin-bottom: 15px;
    font-size: 23px !important;
    line-height: 1.15 !important;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-5d32f2c8 .woodmart-title-container::after {
    margin-top: 15px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-5d32f2c8 .title-after_title {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .msc-about-focus {
    margin-top: 16px;
    margin-bottom: 18px;
  }

  .msc-about-focus li {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .elementor-element-7952c407.msc-about-showcase .elementor-element-db65e33 .btn,
  .msc-about-contact-link {
    min-height: 44px;
  }

  .msc-why-section {
    padding: 42px 20px 44px !important;
  }

  .msc-why-section .elementor-element-ff86359 {
    margin-bottom: 20px;
  }

  .msc-why-section .wd-nav-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .msc-why-section .wd-nav-tabs .wd-nav-link {
    height: 108px;
  }

  .msc-why-section .wd-tabs-title {
    min-height: 50px;
    padding: 20px 10px 9px;
    font-size: 11.5px;
    line-height: 1.16;
    text-transform: none;
    white-space: normal !important;
  }

  .msc-why-section .wd-tab-content-wrapper {
    width: 100% !important;
    max-width: none !important;
    margin: 11px 0 0 !important;
  }

  .msc-why-section .wd-tab-content {
    min-height: 0;
    padding: 20px 18px !important;
  }

  .msc-why-section .wd-tab-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .msc-news-section {
    padding: 40px 20px 44px !important;
  }

  .msc-news-section .elementor-element-67be334 {
    margin-bottom: 16px;
  }

  .msc-news-section .wd-blog-holder {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .msc-news-section .blog-post-loop {
    min-height: 0;
    padding: 15px 2px 17px !important;
  }

  .msc-news-section .wd-post-entry-meta {
    margin-bottom: 8px;
  }

  .msc-news-section .wd-entities-title {
    max-width: 30ch;
    font-size: 19px;
  }

  .msc-site-footer {
    padding: 36px 22px 38px !important;
  }

  .msc-site-footer > .elementor-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .msc-site-footer .elementor-element-5a04c5c {
    grid-column: 1 / -1;
  }

  .msc-site-footer .footer-widget-collapse .widget-title {
    position: relative;
    display: flex;
    min-height: 44px;
    align-items: center;
    margin: -10px 0 4px;
    padding-right: 28px;
    cursor: pointer;
  }

  .msc-home-professional .msc-site-footer .footer-widget-collapse .widget-title::after {
    position: absolute;
    top: 50%;
    right: 4px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    content: "" !important;
    border: 0 !important;
    border-right: 1.5px solid rgba(255, 255, 255, 0.72) !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.72) !important;
    transform: rotate(45deg);
    transition: transform 220ms var(--msc-preview-ease), margin-top 220ms var(--msc-preview-ease);
  }

  .msc-home-professional .msc-site-footer .footer-widget-opened .widget-title::after {
    margin-top: -2px;
    transform: rotate(225deg);
  }

  .msc-site-footer .footer-widget-collapse .menu {
    display: grid !important;
  }
}

/* Desktop-only refinement: reduce About Us and Why Choose Us to one clear visual hierarchy. */
.msc-why-desktop-stage {
  display: none;
}

@media (min-width: 901px) {
  .msc-about-heading {
    padding: 72px 20px 24px !important;
    background: #f3f5f6;
  }

  .msc-about-heading > .elementor-container,
  .msc-about-refined > .elementor-container,
  .msc-why-section > .elementor-container {
    width: 100%;
    max-width: 1220px;
  }

  .msc-about-heading .title-wrapper,
  .msc-about-heading .woodmart-title-container,
  .msc-why-section .title-wrapper,
  .msc-why-section .woodmart-title-container {
    text-align: left !important;
  }

  .msc-about-heading .woodmart-title-container::after,
  .msc-why-section .woodmart-title-container::after {
    margin-right: 0;
    margin-left: 0;
  }

  .elementor-element-7952c407.msc-about-refined {
    padding: 22px 20px 74px !important;
    background: #f3f5f6;
  }

  .elementor-element-7952c407.msc-about-refined > .elementor-container {
    display: grid;
    grid-template-areas:
      "about-image about-copy"
      "about-products about-products";
    grid-template-columns: minmax(0, 1.38fr) minmax(390px, 0.72fr);
    gap: 30px 50px;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-7881e4a8,
  .elementor-element-7952c407.msc-about-refined .elementor-element-bdb3222,
  .elementor-element-7952c407.msc-about-refined .elementor-element-7881e4a8 > .elementor-widget-wrap,
  .elementor-element-7952c407.msc-about-refined .elementor-element-bdb3222 > .elementor-widget-wrap {
    display: contents !important;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-73ecdaf {
    grid-area: about-image;
    height: 440px;
    border: 0;
    background: #e8edef;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-73ecdaf img {
    object-position: center 50%;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-ce608ce {
    grid-area: about-copy;
    min-height: 440px;
    height: 440px;
    border: 0;
    color: #263d4a;
    background: transparent !important;
    box-shadow: none;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-a12fb3d > .elementor-widget-wrap {
    padding: 16px 0 8px;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-5d32f2c8 .woodmart-title-container {
    max-width: 16ch;
    margin-bottom: 18px;
    color: #173847 !important;
    font-size: clamp(32px, 2.6vw, 40px) !important;
    font-weight: 600;
    line-height: 1.12 !important;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-5d32f2c8 .woodmart-title-container::after {
    width: 42px;
    margin-top: 20px;
    background: #2787ba;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-5d32f2c8 .title-after_title {
    max-width: 46ch;
    color: #526570 !important;
    font-size: 15px;
    line-height: 1.68;
  }

  .msc-about-refined .msc-about-focus {
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 24px 0 28px;
    border: 0;
  }

  .msc-about-refined .msc-about-focus li,
  .msc-about-refined .msc-about-focus li + li {
    padding: 2px 0 2px 20px;
    border: 0;
    color: #304955;
  }

  .msc-about-refined .msc-about-focus li::before {
    top: 9px;
    left: 1px;
    width: 5px;
    height: 5px;
    background: #2787ba;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-db65e33 {
    margin-top: auto;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-db65e33 .btn {
    min-height: 44px;
    padding: 0 20px;
    background: #1675ad;
  }

  .msc-about-refined .msc-about-contact-link {
    min-height: 44px;
    padding: 0 19px 0 4px;
    border: 0;
    color: #173847 !important;
  }

  .msc-about-refined .msc-about-contact-link::after {
    width: 7px;
    height: 7px;
    border-color: currentColor;
  }

  .elementor-element-7952c407.msc-about-refined .elementor-element-e73db31 {
    grid-area: about-products;
    margin: 4px 0 0;
  }

  .msc-about-refined .msc-product-strip-head {
    min-height: 50px;
    margin-bottom: 16px;
    padding: 0;
    border-top: 1px solid rgba(18, 53, 73, 0.13);
    border-bottom: 1px solid rgba(18, 53, 73, 0.13);
  }

  .msc-about-refined .msc-product-strip-head strong {
    font-size: 17px;
  }

  .elementor-element-7952c407.msc-about-refined .product-grid-item {
    padding-right: 10px;
    padding-left: 10px;
  }

  .elementor-element-7952c407.msc-about-refined .product-grid-item .product-wrapper {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .elementor-element-7952c407.msc-about-refined .product-grid-item .product-element-top {
    aspect-ratio: 16 / 9;
    background: #e8edef;
  }

  .elementor-element-7952c407.msc-about-refined .product-grid-item .product-element-bottom {
    min-height: 82px;
    padding: 12px 0 0;
    background: transparent;
  }

  .elementor-element-7952c407.msc-about-refined .product-grid-item .wd-entities-title {
    min-height: 22px;
    margin-bottom: 4px;
    font-size: 15px;
  }

  .elementor-element-7952c407.msc-about-refined .product-grid-item .wd-product-cats {
    min-height: 0;
    font-size: 12px;
  }

  .elementor-element-7952c407.msc-about-refined .product-grid-item:hover .product-wrapper,
  .elementor-element-7952c407.msc-about-refined .product-grid-item:focus-within .product-wrapper {
    border-color: transparent;
    box-shadow: none;
    transform: none;
  }

  .msc-why-section {
    padding: 72px 20px 80px !important;
    background: #eef3f6;
  }

  .msc-why-section .elementor-element-ff86359 {
    margin-bottom: 28px;
  }

  .msc-why-section .wd-tabs {
    display: grid !important;
    min-height: 430px;
    grid-template-columns: minmax(0, 1.48fr) minmax(390px, 0.72fr);
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(18, 53, 73, 0.1);
    background: #fff;
  }

  .msc-why-desktop-stage {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 430px;
    grid-column: 1;
    grid-row: 1 / 3;
    overflow: hidden;
    background: #dce4e8;
  }

  .msc-why-desktop-stage::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(6, 31, 44, 0.08), transparent 34%);
    pointer-events: none;
  }

  .msc-why-desktop-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.002);
    transition: opacity 360ms ease, transform 720ms var(--msc-preview-ease);
  }

  .msc-why-desktop-stage.is-updating img {
    opacity: 0.42;
    transform: scale(1.015);
  }

  .msc-why-section .wd-nav-tabs-wrapper {
    min-width: 0;
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    padding: 26px 38px 0;
    text-align: left !important;
  }

  .msc-why-section .wd-nav-tabs {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0;
    counter-reset: msc-capability;
  }

  .msc-why-section .wd-nav-tabs > li {
    counter-increment: msc-capability;
  }

  .msc-why-section .wd-nav-tabs .wd-nav-link {
    display: flex !important;
    min-height: 54px;
    height: auto;
    align-items: center;
    gap: 14px;
    overflow: visible;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(18, 53, 73, 0.12);
    background: transparent;
    box-shadow: none;
  }

  .msc-why-section .wd-nav-tabs .wd-nav-link::before {
    flex: 0 0 26px;
    color: #8a9aa3;
    content: "0" counter(msc-capability);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
  }

  .msc-why-section .wd-nav-tabs .img-wrapper {
    display: none !important;
  }

  .msc-why-section .wd-tabs-title {
    position: static;
    min-height: 0;
    display: block;
    padding: 0;
    color: #5e717c;
    background: none;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    transition: color 240ms ease, transform 300ms var(--msc-preview-ease);
  }

  .msc-why-section .wd-nav-tabs > li.wd-active .wd-nav-link,
  .msc-why-section .wd-nav-tabs .wd-nav-link:hover,
  .msc-why-section .wd-nav-tabs .wd-nav-link:focus-visible {
    border-color: #2787ba;
    box-shadow: none;
  }

  .msc-why-section .wd-nav-tabs > li.wd-active .wd-nav-link::before,
  .msc-why-section .wd-nav-tabs > li.wd-active .wd-tabs-title,
  .msc-why-section .wd-nav-tabs .wd-nav-link:hover .wd-tabs-title,
  .msc-why-section .wd-nav-tabs .wd-nav-link:focus-visible .wd-tabs-title {
    color: #1675ad;
  }

  .msc-why-section .wd-nav-tabs > li.wd-active .wd-tabs-title {
    transform: translateX(4px);
  }

  .msc-why-section .wd-tab-content-wrapper {
    min-width: 0;
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    padding: 22px 38px 34px;
    background: #fff !important;
    box-shadow: none;
  }

  .msc-why-section .wd-tab-content {
    min-height: 0;
    padding: 0 !important;
    color: #425762;
    background: transparent !important;
  }

  .msc-why-section .wd-tab-content p {
    max-width: 46ch;
    font-size: 15px;
    line-height: 1.68;
  }
}

@media (min-width: 901px) {
  .msc-home-professional .msc-about-heading .liner-continer {
    display: block !important;
    text-align: left !important;
  }

  .msc-home-professional .msc-about-heading .liner-continer::after {
    display: none !important;
    content: none !important;
  }

  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .elementor-element-73ecdaf,
  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .elementor-element-ce608ce {
    align-self: stretch !important;
    height: auto !important;
    min-height: 500px !important;
  }

  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .elementor-element-ce608ce {
    border: 0 !important;
    color: #263d4a !important;
    background: #f3f5f6 !important;
    background-image: none !important;
    box-shadow: none !important;
  }

  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .elementor-element-a12fb3d > .elementor-widget-wrap {
    flex-wrap: nowrap !important;
    padding: 20px 0 10px !important;
  }

  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .elementor-element-5d32f2c8 .woodmart-title-container {
    color: #173847 !important;
  }

  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .elementor-element-5d32f2c8 .title-after_title {
    color: #526570 !important;
  }

  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .product-grid-item .product-wrapper {
    border: 0 !important;
    box-shadow: none !important;
  }

  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .product-grid-item .product-element-top {
    height: 132px !important;
    aspect-ratio: auto !important;
  }

  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .product-grid-item .product-element-bottom {
    min-height: 72px !important;
    padding: 11px 0 0 !important;
  }

  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .product-grid-item .wd-entities-title {
    min-height: 20px !important;
  }

  body.msc-home-professional .elementor-element-7952c407.msc-about-showcase.msc-about-refined .product-grid-item .wd-product-cats {
    min-height: 0 !important;
  }

  .msc-home-professional .msc-why-section .elementor-widget-container,
  .msc-home-professional .msc-why-section .wd-tabs {
    width: 100% !important;
    max-width: none !important;
  }

  .msc-home-professional .msc-why-section .elementor-element-ff86359,
  .msc-home-professional .msc-why-section .elementor-element-e7142d6 {
    width: 100% !important;
    max-width: 1220px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .msc-home-professional .msc-why-desktop-stage img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
  }

  .msc-home-professional .msc-why-section .wd-nav-tabs .wd-nav-link {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .msc-home-professional .msc-why-section .wd-tabs-title {
    width: auto !important;
    text-align: left !important;
    text-transform: none !important;
    white-space: normal !important;
  }

  .msc-home-professional .msc-why-section .wd-nav-tabs .wd-nav-link:focus {
    outline: none !important;
  }

  .msc-home-professional .msc-why-section .wd-nav-tabs .wd-nav-link:focus-visible {
    outline: 2px solid rgba(22, 117, 173, 0.55) !important;
    outline-offset: -2px;
    background: #f4f9fb;
  }
}

@media (prefers-reduced-motion: reduce) {
  .msc-local-carousel *,
  .msc-local-carousel *::before,
  .msc-local-carousel *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .msc-slide-content h1 {
    clip-path: none !important;
    transform: none !important;
  }

  .msc-slide-content ul,
  .msc-slide-content li,
  .msc-slide-content .msc-cta {
    transform: none !important;
  }

  .msc-slide.is-active > img,
  .msc-slide.is-leaving > img {
    animation: none !important;
    transform: scale(1) !important;
    will-change: auto;
  }

  .elementor-element-7952c407 .product-grid-item .product-wrapper,
  .elementor-element-7952c407 .product-grid-item .product-element-top img,
  .elementor-element-7952c407 .product-grid-item .hover-img,
  .elementor-element-7952c407 .product-grid-item .wd-entities-title {
    transition-duration: 0.01ms !important;
  }

  header .msc-unified-menu > .wd-dropdown,
  header .msc-unified-menu > .woodmart-nav-link::before,
  header .msc-unified-menu > .woodmart-nav-link::after,
  header .msc-unified-menu .wd-sub-menu > li,
  header .msc-unified-menu .wd-sub-menu > li > a,
  header .msc-unified-menu .wd-sub-menu > li > a::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .msc-email-feedback {
    transition-duration: 0.01ms !important;
  }

  .msc-product-strip-head a::after,
  .msc-about-contact-link,
  .msc-main-products .promo-banner,
  .msc-main-products .banner-image img,
  .msc-main-products .content-banner,
  .msc-main-products .banner-btn-wrapper .btn::after {
    transition-duration: 0.01ms !important;
  }

  .msc-why-section .wd-nav-tabs .img-wrapper img,
  .msc-why-desktop-stage img,
  .msc-news-section .blog-post-loop,
  .msc-news-section .blog-post-loop::after {
    transition-duration: 0.01ms !important;
  }
}
