/* Shen For Home — scoped from shen/for-home.css + shen-faq */

.shen-for-home {
  --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-home *,
.shen-for-home *::before,
.shen-for-home *::after {
  box-sizing: border-box;
}

  box-sizing: border-box;
  overflow-x: hidden;
}

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

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

.shen-for-home .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-home .fh-container {
  max-width: calc(1395px + 48px);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.shen-for-home .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-home .fh-h2--sm {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.shen-for-home .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-home .fh-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.shen-for-home .fh-btn--solid {
  background-color: var(--button-color);
  color: var(--button-text-color);
}
.shen-for-home .fh-btn--solid:hover {
  background-color: var(--button-color-hover);
}
.shen-for-home .fh-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}
.shen-for-home .fh-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

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

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

.shen-for-home .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-home .fh-see-all svg {
  width: 14px;
  height: 14px;
}
.shen-for-home .fh-see-all:hover {
  color: var(--primary-color);
}

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

.shen-for-home .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-home .fh-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.shen-for-home .fh-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.shen-for-home .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-home .fh-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 34px 34px;
}
.shen-for-home .fh-hero-copy {
  max-width: 560px;
  color: #fff;
}
.shen-for-home .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-home .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-home .fh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shen-for-home .fh-trust {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding: 0;
  background: transparent;
}
.shen-for-home .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-home .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-home .fh-trust-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 16px;
  width: 1px;
  background: var(--line);
}
.shen-for-home .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-home .fh-trust-icon svg {
  width: 18px;
  height: 18px;
}

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

.shen-for-home .fh-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.shen-for-home .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-home .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-home .fh-col-banner:hover img {
  transform: scale(1.07);
}
.shen-for-home .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-home .fh-col-banner:hover .fh-col-overlay {
  opacity: 0.92;
}
.shen-for-home .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-home .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-home .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-home .fh-col-btn svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.shen-for-home .fh-col-banner:hover .fh-col-btn {
  background: var(--button-color);
  color: #fff;
}
.shen-for-home .fh-col-banner:hover .fh-col-btn svg {
  transform: translateX(2px);
}

.shen-for-home .fh-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.shen-for-home .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-home .fh-tab:hover {
  color: var(--ink);
}
.shen-for-home .fh-tab.is-active {
  color: var(--ink);
}
.shen-for-home .fh-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--primary-color);
}

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

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

.shen-for-home .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-home .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-home .fh-product-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f4f1ed;
}
.shen-for-home .fh-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.shen-for-home .fh-product:hover .fh-product-media img {
  transform: scale(1.05);
}

.shen-for-home .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-home .fh-product-badge--new {
  background: #1f3d2b;
}
.shen-for-home .fh-product-badge--sale {
  background: #c0392b;
}

.shen-for-home .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-home .fh-fav svg {
  width: 16px;
  height: 16px;
}
.shen-for-home .fh-fav:hover,
.shen-for-home .fh-fav.is-active {
  color: var(--primary-color);
}
.shen-for-home .fh-fav.is-active svg {
  fill: currentColor;
}

.shen-for-home .fh-product-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 14px 16px;
}
.shen-for-home .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-home .fh-product-name:hover {
  color: var(--primary-color);
}
.shen-for-home .fh-product-meta {
  font-size: 12.5px;
  color: var(--muted);
}
.shen-for-home .fh-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}
.shen-for-home .fh-product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.shen-for-home .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-home .fh-product-cart svg {
  width: 16px;
  height: 16px;
}
.shen-for-home .fh-product-cart:hover {
  background: var(--button-color-hover);
}

.shen-for-home .fh-why {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.shen-for-home .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-home .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-home .fh-why-icon svg {
  width: 22px;
  height: 22px;
}
.shen-for-home .fh-why strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.shen-for-home .fh-why li > span:last-child {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

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

.shen-for-home .fh-news {
  padding: 0 0 90px;
}
.shen-for-home .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-home .fh-news-media {
  min-width: 0;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
  border-radius: 14px;
}
.shen-for-home .fh-news-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shen-for-home .fh-news-copy p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.shen-for-home .fh-news-form {
  min-width: 0;
}
.shen-for-home .fh-news-row {
  display: flex;
  gap: 8px;
}
.shen-for-home .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-home .fh-news-row input[type="email"]:focus {
  border-color: var(--primary-color);
}
.shen-for-home .fh-news-row .fh-btn {
  height: 44px;
  flex-shrink: 0;
}
.shen-for-home .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-home .fh-news-check input {
  margin-top: 2px;
  accent-color: var(--primary-color);
}
.shen-for-home .fh-news-done {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}
.shen-for-home .fh-news-form.is-done .fh-news-row,
.shen-for-home .fh-news-form.is-done .fh-news-check {
  display: none;
}

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

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

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

.shen-for-home .shen-fh-products-empty {
  margin: 0;
  padding: 24px 0;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.shen-for-home .shen-faq-list {
  display: grid;
  gap: 12px;
}
.shen-for-home .shen-faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.shen-for-home .shen-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.shen-for-home .shen-faq-q-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.shen-for-home .shen-faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.shen-for-home .shen-faq-icon::before,
.shen-for-home .shen-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}
.shen-for-home .shen-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.shen-for-home .shen-faq-item.is-open .shen-faq-icon::after {
  opacity: 0;
}
.shen-for-home .shen-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.shen-for-home .shen-faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
