/* Shen For Business — scoped merge from shen/theme.css, for-home.css, for-business.css, shen-faq.css */

.shen-for-business {
  --primary-color: #8f261d;
  --primary-color-hover: rgb(165, 45, 34);
  --accent-color: rgb(123, 33, 25);
  --accent-color-hover: rgb(102, 28, 21);
  --dark-color: #5a2121;

  --inputs-buttons-border-radius: 15px;
  --button-color: var(--primary-color);
  --button-color-hover: var(--primary-color-hover);
  --button-color-dark: var(--dark-color);
  --button-color-alt: var(--accent-color);
  --button-color-alt-hover: var(--accent-color-hover);
  --button-text-color: #fff;

  --ink: #17130f;
  --muted: #6b6560;
  --line: #e7e3dd;
  --bg: #ffffff;
  --ff-display: "Arial", sans-serif;

  font-family: var(--ff-display);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  box-sizing: border-box;
}

.shen-for-business *,
.shen-for-business *::before,
.shen-for-business *::after {
  box-sizing: border-box;
}

/* Embedded MegaShop categories */
.shen-for-business .shen-hh-categories {
  margin-top: 0;
  margin-bottom: 0;
}
.shen-for-business .shen-hh-categories .block__header {
  display: none;
}

.shen-for-business .shen-fb-products .block__header {
  display: none;
}
.shen-for-business .shen-fb-products .block {
  margin: 0;
  padding: 0;
}
.shen-for-business .shen-fb-products .block__content {
  padding: 0;
}
.shen-for-business .shen-fb-products-empty {
  margin: 0;
  padding: 24px 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* for-home.css */
.shen-for-business .fh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shen-for-business .fh-container {
  max-width: calc(1395px + 48px);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.shen-for-business .fh-h2 {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.shen-for-business .fh-h2--sm {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shen-for-business .fh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px 11px;
  border: 1px solid transparent;
  border-radius: var(--inputs-buttons-border-radius);
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out,
    color 0.2s ease-in-out;
}

.shen-for-business .fh-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.shen-for-business .fh-btn--solid {
  background-color: var(--button-color);
  color: var(--button-text-color);
}

.shen-for-business .fh-btn--solid:hover {
  background-color: var(--button-color-hover);
}

.shen-for-business .fh-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.shen-for-business .fh-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.shen-for-business .fh-section {
  padding: 80px 0;
}

.shen-for-business .fh-section--soft {
  
}

.shen-for-business .fh-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 28px;
}

.shen-for-business .fh-section-head--tight {
  margin-bottom: 14px;
}

.shen-for-business .fh-section-head--center {
  justify-content: center;
  text-align: center;
  margin-bottom: 48px;
}

.shen-for-business .fh-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.shen-for-business .fh-see-all svg {
  width: 14px;
  height: 14px;
}

.shen-for-business .fh-see-all:hover {
  color: var(--primary-color);
}

.shen-for-business .fh-hero-wrap {
  padding: 56px 0 0;
}

.shen-for-business .fh-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  height: 28vw;
  max-height: 440px;
  overflow: hidden;
  border-radius: 20px;
  isolation: isolate;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.shen-for-business .fh-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.shen-for-business .fh-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.shen-for-business .fh-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(15, 10, 7, 0.72) 0%,
    rgba(15, 10, 7, 0.28) 46%,
    rgba(15, 10, 7, 0.1) 100%
  );
}

.shen-for-business .fh-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 34px 34px;
}

.shen-for-business .fh-hero-copy {
  max-width: 560px;
  color: #fff;
}

.shen-for-business .fh-hero-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.shen-for-business .fh-hero-copy p {
  margin: 0 0 26px;
  max-width: 28em;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.shen-for-business .fh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shen-for-business .fh-trust {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 0;
  background: transparent;
}

.shen-for-business .fh-trust-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(23, 19, 15, 0.06);
}

.shen-for-business .fh-trust-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 20px 18px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.shen-for-business .fh-trust-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 16px;
  width: 1px;
  background: var(--line);
}

.shen-for-business .fh-trust-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(143, 38, 29, 0.07);
  color: var(--primary-color);
}

.shen-for-business .fh-trust-icon svg {
  width: 18px;
  height: 18px;
}

.shen-for-business .fh-categories-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.shen-for-business .fh-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shen-for-business .fh-col-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 200px;
  height: 20vw;
  max-height: 270px;
  overflow: hidden;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}

.shen-for-business .fh-col-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.7s ease;
}

.shen-for-business .fh-col-banner:hover img {
  transform: scale(1.07);
}

.shen-for-business .fh-col-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(12, 8, 6, 0.72) 0%,
    rgba(12, 8, 6, 0.38) 42%,
    rgba(12, 8, 6, 0.08) 100%
  );
  transition: opacity 0.3s ease;
}

.shen-for-business .fh-col-banner:hover .fh-col-overlay {
  opacity: 0.92;
}

.shen-for-business .fh-col-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 18em;
  padding: 20px 22px;
  text-align: left;
}

.shen-for-business .fh-col-title {
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.shen-for-business .fh-col-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  padding: 7px 13px 8px;
  border-radius: var(--inputs-buttons-border-radius);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.shen-for-business .fh-col-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.shen-for-business .fh-col-banner:hover .fh-col-btn {
  background: var(--button-color);
  color: #fff;
}

.shen-for-business .fh-col-banner:hover .fh-col-btn svg {
  transform: translateX(2px);
}

.shen-for-business .fh-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.shen-for-business .fh-tab {
  position: relative;
  padding: 0 0 14px;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.shen-for-business .fh-tab:hover {
  color: var(--ink);
}

.shen-for-business .fh-tab.is-active {
  color: var(--ink);
}

.shen-for-business .fh-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--primary-color);
}

.shen-for-business .fh-panel[hidden] {
  display: none;
}

.shen-for-business .fh-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shen-for-business .fh-product {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.shen-for-business .fh-product:hover {
  border-color: rgba(143, 38, 29, 0.22);
  box-shadow: 0 12px 28px rgba(23, 19, 15, 0.06);
  transform: translateY(-2px);
}

.shen-for-business .fh-product-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f4f1ed;
}

.shen-for-business .fh-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shen-for-business .fh-product:hover .fh-product-media img {
  transform: scale(1.05);
}

.shen-for-business .fh-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--primary-color);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shen-for-business .fh-product-badge--new {
  background: #1f3d2b;
}

.shen-for-business .fh-product-badge--sale {
  background: #c0392b;
}

.shen-for-business .fh-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(23, 19, 15, 0.08);
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.shen-for-business .fh-fav svg {
  width: 16px;
  height: 16px;
}

.shen-for-business .fh-fav:hover, .shen-for-business .fh-fav.is-active {
  color: var(--primary-color);
}

.shen-for-business .fh-fav.is-active svg {
  fill: currentColor;
}

.shen-for-business .fh-product-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 16px;
}

.shen-for-business .fh-product-name {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.shen-for-business .fh-product-name:hover {
  color: var(--primary-color);
}

.shen-for-business .fh-product-meta {
  font-size: 12.5px;
  color: var(--muted);
}

.shen-for-business .fh-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.shen-for-business .fh-product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.shen-for-business .fh-product-cart {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--button-color);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.shen-for-business .fh-product-cart svg {
  width: 16px;
  height: 16px;
}

.shen-for-business .fh-product-cart:hover {
  background: var(--button-color-hover);
}

.shen-for-business .fh-why {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shen-for-business .fh-why li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-align: center;
}

.shen-for-business .fh-why-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(143, 38, 29, 0.07);
  color: var(--primary-color);
}

.shen-for-business .fh-why-icon svg {
  width: 22px;
  height: 22px;
}

.shen-for-business .fh-why strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shen-for-business .fh-why li > span:last-child {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

.shen-for-business .fh-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.shen-for-business .fh-news {
  padding: 0 0 90px;
}

.shen-for-business .fh-news-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) minmax(0, 1.05fr);
  gap: 28px 36px;
  align-items: center;
  padding: 18px;
  overflow: hidden;
  background: #f3eee8;
  border-radius: 20px;
}

.shen-for-business .fh-news-media {
  min-width: 0;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
  border-radius: 14px;
}

.shen-for-business .fh-news-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shen-for-business .fh-news-copy p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.shen-for-business .fh-news-form {
  min-width: 0;
}

.shen-for-business .fh-news-row {
  display: flex;
  gap: 8px;
}

.shen-for-business .fh-news-row input[type="email"] {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--inputs-buttons-border-radius);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}

.shen-for-business .fh-news-row input[type="email"]:focus {
  border-color: var(--primary-color);
}

.shen-for-business .fh-news-row .fh-btn {
  height: 44px;
  flex-shrink: 0;
}

.shen-for-business .fh-news-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  cursor: pointer;
}

.shen-for-business .fh-news-check input {
  margin-top: 2px;
  accent-color: var(--primary-color);
}

.shen-for-business .fh-news-done {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.shen-for-business .fh-news-form.is-done .fh-news-row, .shen-for-business .fh-news-form.is-done .fh-news-check {
  display: none;
}

@media (max-width: 1100px) {.shen-for-business .fh-trust-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.shen-for-business .fh-trust-list li:nth-child(3)::after {
    display: none;
  }
.shen-for-business .fh-trust-list li:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
.shen-for-business .fh-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.shen-for-business .fh-why {
    grid-template-columns: 1fr 1fr;
  }
.shen-for-business .fh-news-card {
    grid-template-columns: 1fr 1.2fr;
  }
.shen-for-business .fh-news-form {
    grid-column: 1 / -1;
  }}

@media (max-width: 900px) {.shen-for-business .fh-hero-wrap {
    padding: 36px 0 0;
  }
.shen-for-business .fh-hero {
    min-height: 280px;
    height: 52vw;
    max-height: 380px;
  }
.shen-for-business .fh-hero-inner {
    padding: 26px 28px 28px;
  }
.shen-for-business .fh-col-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
.shen-for-business .fh-col-banner {
    min-height: 170px;
    height: 42vw;
    max-height: 220px;
  }
.shen-for-business .fh-col-body {
    max-width: none;
    padding: 18px 18px;
  }
.shen-for-business .fh-faq-grid {
    grid-template-columns: 1fr;
  }
.shen-for-business .fh-section {
    padding: 64px 0;
  }}

@media (max-width: 600px) {.shen-for-business .fh-container {
    padding: 0 15px;
  }
.shen-for-business .fh-hero-wrap {
    padding: 24px 0 0;
  }
.shen-for-business .fh-hero {
    min-height: 240px;
    height: 64vw;
    max-height: 320px;
    border-radius: 18px;
  }
.shen-for-business .fh-hero-inner {
    padding: 22px 20px;
  }
.shen-for-business .fh-hero-copy h1 {
    font-size: clamp(32px, 10vw, 44px);
  }
.shen-for-business .fh-hero-copy p {
    margin-bottom: 18px;
    font-size: 14px;
  }
.shen-for-business .fh-trust-list {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
.shen-for-business .fh-trust-list li {
    padding: 16px;
  }
.shen-for-business .fh-trust-list li::after, .shen-for-business .fh-trust-list li:nth-child(3)::after {
    display: none;
  }
.shen-for-business .fh-trust-list li:nth-child(-n + 3) {
    border-bottom: none;
  }
.shen-for-business .fh-trust-list li:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }
.shen-for-business .fh-section {
    padding: 48px 0;
  }
.shen-for-business .fh-section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
.shen-for-business .fh-product-grid, .shen-for-business .fh-why {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
.shen-for-business .fh-news {
    padding-bottom: 48px;
  }
.shen-for-business .fh-news-card {
    grid-template-columns: 1fr;
    padding: 12px;
  }
.shen-for-business .fh-news-media {
    min-height: 160px;
  }
.shen-for-business .fh-news-row {
    flex-direction: column;
  }
.shen-for-business .fh-news-row .fh-btn {
    width: 100%;
  }}

/* for-business.css */
.shen-for-business .fh-hero--biz img {
  object-position: center 45%;
}

.shen-for-business .fh-section--soft {
  /* background: #f9f7f5; */
}

.shen-for-business .fh-trust-list--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shen-for-business .fh-col-btn--red {
  background: var(--button-color);
  color: #fff;
}

.shen-for-business .fh-col-banner:hover .fh-col-btn--red {
  background: var(--button-color-hover);
  color: #fff;
}

.shen-for-business .fh-why--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.shen-for-business .fh-product-grid--6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.shen-for-business .fb-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 28px 40px;
  align-items: center;
  padding: 20px;
  background: #f9f7f5;
  border-radius: 20px;
}

.shen-for-business .fb-lead-media {
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1;
  background: #ddd8d2;
}

.shen-for-business .fb-lead-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shen-for-business .fb-lead-copy p {
  margin: 12px 0 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.shen-for-business .fb-lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.shen-for-business .fb-lead-full {
  grid-column: 1 / -1;
}

.shen-for-business .fb-lead-form input, .shen-for-business .fb-lead-form select, .shen-for-business .fb-lead-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--inputs-buttons-border-radius);
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  appearance: none;
}

.shen-for-business .fb-lead-form textarea {
  resize: vertical;
  min-height: 88px;
}

.shen-for-business .fb-lead-form input:focus, .shen-for-business .fb-lead-form select:focus, .shen-for-business .fb-lead-form textarea:focus {
  border-color: var(--primary-color);
}

.shen-for-business .fb-lead-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236b6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.shen-for-business .fb-lead-submit {
  width: 100%;
  margin-top: 12px;
  height: 46px;
}

.shen-for-business .fb-lead-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}

.shen-for-business .fb-lead-consent input {
  appearance: none;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  min-width: 15px;
  max-width: 15px;
  margin: 0;
  padding: 0;
  border: 1.5px solid var(--primary-color);
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.shen-for-business .fb-lead-consent input:checked {
  background: var(--primary-color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3.5 8.5 6.5 11.5 12.5 4.5'/%3E%3C/svg%3E") center / 9px 9px no-repeat;
  border-color: var(--primary-color);
}

.shen-for-business .fb-lead-consent input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(143, 38, 29, 0.18);
}

.shen-for-business .fb-lead-consent span {
  padding-top: 1px;
}

.shen-for-business .fb-lead-consent a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px solid rgba(143, 38, 29, 0.35);
  transition: border-color 0.2s ease;
}

.shen-for-business .fb-lead-consent a:hover {
  border-bottom-color: var(--primary-color);
}

.shen-for-business .fb-lead-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.shen-for-business .fb-lead-error {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #b42318;
}

.shen-for-business .fb-lead-done {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.shen-for-business .fb-lead-form.is-done .fb-lead-grid,
.shen-for-business .fb-lead-form.is-done .fb-lead-consent,
.shen-for-business .fb-lead-form.is-done .fb-lead-submit,
.shen-for-business .fb-lead-form.is-done .fb-lead-error {
  display: none;
}

@media (max-width: 1100px) {.shen-for-business .fh-trust-list--4 {
    grid-template-columns: 1fr 1fr;
  }
.shen-for-business .fh-trust-list--4 li:nth-child(3)::after {
    display: block;
  }
.shen-for-business .fh-trust-list--4 li:nth-child(2)::after {
    display: none;
  }
.shen-for-business .fh-trust-list--4 li:nth-child(-n + 3) {
    border-bottom: none;
  }
.shen-for-business .fh-trust-list--4 li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
.shen-for-business .fh-product-grid--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.shen-for-business .fh-why--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}

@media (max-width: 900px) {.shen-for-business .fb-lead {
    grid-template-columns: 1fr;
  }
.shen-for-business .fb-lead-media {
    max-height: 220px;
    aspect-ratio: 16 / 9;
  }}

@media (max-width: 600px) {.shen-for-business .fh-trust-list--4 {
    grid-template-columns: 1fr;
  }
.shen-for-business .fh-trust-list--4 li:nth-child(-n + 2) {
    border-bottom: none;
  }
.shen-for-business .fh-product-grid--6, .shen-for-business .fh-why--5 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
.shen-for-business .fb-lead-grid {
    grid-template-columns: 1fr;
  }}

/* shen-faq.css (accordion) */
.shen-for-business .shen-faq-heading-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-end;
}

.shen-for-business .shen-faq-heading-right > p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

.shen-for-business .shen-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shen-for-business .shen-faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.shen-for-business .shen-faq-item:hover {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.shen-for-business .shen-faq-item.is-open {
  border-color: rgba(143, 38, 29, 0.28);
  box-shadow: 0 6px 22px rgba(143, 38, 29, 0.08);
}

.shen-for-business .shen-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 22px;
  border: none;
  background: transparent;
  font: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  user-select: none;
}

.shen-for-business .shen-faq-question:hover .shen-faq-q-text {
  color: var(--primary-color);
}

.shen-for-business .shen-faq-q-text {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  transition: color 0.2s;
}

.shen-for-business .shen-faq-item.is-open .shen-faq-q-text {
  color: var(--primary-color);
}

.shen-for-business .shen-faq-icon {
  flex-shrink: 0;
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fdecea;
  border: 1px solid rgba(143, 38, 29, 0.14);
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
}

.shen-for-business .shen-faq-icon::before, .shen-for-business .shen-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--primary-color);
  border-radius: 1px;
  transition:
    transform 0.28s ease,
    opacity 0.2s ease;
}

.shen-for-business .shen-faq-icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.shen-for-business .shen-faq-icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.shen-for-business .shen-faq-question:hover .shen-faq-icon {
  background: rgba(143, 38, 29, 0.14);
  border-color: rgba(143, 38, 29, 0.28);
}

.shen-for-business .shen-faq-item.is-open .shen-faq-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.shen-for-business .shen-faq-item.is-open .shen-faq-icon::before, .shen-for-business .shen-faq-item.is-open .shen-faq-icon::after {
  background: #fff;
}

.shen-for-business .shen-faq-item.is-open .shen-faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.shen-for-business .shen-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.shen-for-business .shen-faq-answer-inner {
  margin: 0 22px;
  padding: 14px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 768px) {.shen-for-business .shen-faq-section {
    padding: 64px 0;
  }
.shen-for-business .shen-faq-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 28px;
    margin-bottom: 24px;
    border-bottom: none;
  }
.shen-for-business .shen-faq-eyebrow {
    margin-bottom: 10px;
  }
.shen-for-business .shen-faq-heading h2 {
    font-size: 26px;
  }
.shen-for-business .shen-faq-heading-right {
    gap: 12px;
  }
.shen-for-business .shen-faq-heading-right > p {
    font-size: 13.5px;
    line-height: 1.55;
  }
.shen-for-business .shen-faq-contact-link {
    font-size: 12px;
    align-self: flex-start;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid rgba(143, 38, 29, 0.22);
    border-radius: 100px;
  }
.shen-for-business .shen-faq-list {
    gap: 8px;
  }
.shen-for-business .shen-faq-question {
    padding: 15px 16px;
    gap: 12px;
    align-items: flex-start;
  }
.shen-for-business .shen-faq-q-text {
    font-size: 14.5px;
    line-height: 1.35;
    padding-top: 4px;
  }
.shen-for-business .shen-faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }
.shen-for-business .shen-faq-icon::before {
    width: 11px;
  }
.shen-for-business .shen-faq-icon::after {
    height: 11px;
  }
.shen-for-business .shen-faq-answer-inner {
    margin: 0 16px;
    padding: 12px 0 16px;
    font-size: 13.5px;
    line-height: 1.6;
  }}

@media (max-width: 600px) {.shen-for-business .shen-faq-section {
    padding: 48px 0;
  }
.shen-for-business .shen-faq-container {
    padding: 0 15px;
  }
.shen-for-business .shen-faq-heading h2 {
    font-size: 24px;
  }}