





/*Радиус на блоке мини каталога гед фото*/
.sub-cat__image img {border-radius: 15%;}


.subcat-wrapper_pic {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* вместо margin-right у элементов */
}

.subcat-wrapper_pic .subcat-item {
    flex: 0 0 calc(25% - 15px); /* фиксированная ширина */
    display: flex;
    flex-direction: column;
}

.subcat-wrapper_pic .subcat-item__image {
    width: 100%;
    height: 200px; /* фиксированная высота */
    object-fit: cover; /* чтобы картинка не искажалась */
}


.subcat-wrapper_pic .subcat-image-wrapper {
    height: 150px; /* одинаковая высота для всех */
    display: flex;
    align-items: center;
    justify-content: center;
}

.subcat-wrapper_pic .subcat-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}










/*Блок1*/

/* ===== HERO ===== */
.hero {
  width: 100%;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: linear-gradient(90deg, #edf2f8 0%, #ffffff 90%);
  /*background: #edf2f8; */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.hero-bg-off {
  background-image: url('http://lampa-b.ru/wa-data/public/site/photo/Bn2.png');
  z-index: 0;
}

.hero-bg-on {
  background-image: url('http://lampa-b.ru/wa-data/public/site/photo/bn2h.png');
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Работает и от JS, и просто от hover */
.hero.is-lit .hero-bg-on,
.hero:hover .hero-bg-on {
  opacity: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    to right,
    #edf2f8 20%,
    rgba(237, 242, 248, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-hover-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  z-index: 5;
  cursor: pointer;
  background: transparent;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  position: relative;
  z-index: 4;
  pointer-events: none;
}

.hero-content {
  max-width: 580px;
  pointer-events: auto;
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 20px 0;
}

.hero-desc {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}

.hero-btn-primary {
  background: #1798e1;
  color: #ffffff;
}

.hero-btn-primary:hover {
  background: #1280c2;
}

.hero-btn-outline {
  color: #1d2939;
  border-color: #1798e1;
  background: transparent;
}

.hero-btn-outline:hover {
  background: #eff6ff;
  color: #1798e1;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1d2939;
  white-space: nowrap;
}

.hero-feature-icon {
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 38px;
  }

  .hero::before {
    width: 60%;
  }

  .hero-hover-area {
    width: 44%;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-bg {
    background-position: right center;
    background-size: cover;
  }

  .hero::before {
    width: 65%;
  }

  .hero-hover-area {
    width: 46%;
  }

  .hero-container {
    padding: 50px 30px;
  }

  .hero-content {
    max-width: 55%;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-title br {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero-bg {
    background-position: center bottom;
    background-size: cover;
  }

  .hero::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      #edf2f8 40%,
      rgba(237, 242, 248, 0.85) 55%,
      rgba(237, 242, 248, 0.3) 80%,
      rgba(237, 242, 248, 0.1) 100%
    );
  }

  .hero-hover-area {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 45%;
  }

  .hero-container {
    padding: 36px 20px 240px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-desc br {
    display: none;
  }

  .hero-buttons {
    margin-bottom: 28px;
  }

  .hero-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-features {
    flex-direction: column;
    gap: 10px;
  }

  .hero-feature {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 28px 16px 220px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }

  .hero-btn {
    max-width: 280px;
    padding: 11px 18px;
    font-size: 13px;
  }

  .hero-feature {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .hero-container {
    padding: 24px 14px 200px;
  }

  .hero-title {
    font-size: 22px;
  }
}

/*Конец блок1*/









.item-c__icon-features{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  margin:10px 0;
  border-top:1px solid #f0f0f0;
  border-bottom:1px solid #f0f0f0;
}

.item-c__icon-feature{
  flex:1 1 0;
  min-width:0;
  text-align:center;
  color:#000;
}

.item-c__icon-feature-icon{
  display:block;
  height:18px;
  margin:0 auto 6px;
}

.item-c__icon-feature-icon svg{
  display:block;
  margin:0 auto;
  color:#000; /* можно менять */
}

.item-c__icon-feature-value{
  font-size:12px;
  line-height:1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Название товара: ровно 3 строки */
.item-c__title{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;     /* 3 строки */
  overflow: hidden;
  line-height: 1.25;         /* подберите под ваш шрифт */
  min-height: calc(1.25em * 3);
}

/* если внутри title у вас span */
.item-c__title > span{
  display: inline;
}



/* 1 блок */





.lamppa-ui{
  --bg:#F8FAFC; --surface:#FFFFFF; --text:#0F1E2E; --text-2:#556575; --border:#E6EDF5;
  --link: var(--primary);
  --primary:#1777B9; --primary-hover:#0F63A3;
  --accent:#1FB6E4; --deep-blue:#0B5AA6;
  --success:#1E9E5A; --warning:#D6A100; --danger:#D64545;
  --radius-card:12px; --radius-input:10px;
  --shadow:0 8px 24px rgba(15,30,46,.08);
  --grad: linear-gradient(135deg, #1FB6E4 0%, #1777B9 55%, #0B5AA6 100%);

  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lamppa-ui[data-lam-theme="dark"]{
  --bg:#0B1220; --surface:#101B2E; --text:#EAF2FF; --text-2:#A9B7C9; --border:#1C2A44; --link:#7CCBFF;
  --shadow:0 10px 30px rgba(0,0,0,.45);
}

.lamppa-ui .lam-shell{
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 18px 18px;
}

.lamppa-ui .lam-hero{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start;
}

.lamppa-ui .lam-kicker{
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 46px;
  margin: 4px 0 10px;
}

.lamppa-ui .lam-sub{
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.45;
  max-width: 540px;
  margin: 0 0 18px;
}

.lamppa-ui .lam-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.lamppa-ui .lam-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  cursor: pointer;
  user-select: none;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.lamppa-ui .lam-btn:active{ transform: translateY(1px); }

.lamppa-ui .lam-btn-primary{
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(23,119,185,.18);
}
.lamppa-ui .lam-btn-primary:hover{ background: var(--primary-hover); }

.lamppa-ui .lam-btn-ghost{
  background: rgba(23,119,185,.06);
  color: var(--primary);
  border-color: rgba(23,119,185,.22);
}
.lamppa-ui[data-lam-theme="dark"] .lam-btn-ghost{
  background: rgba(124,203,255,.08);
  border-color: rgba(124,203,255,.22);
  color: var(--link);
}
.lamppa-ui .lam-btn-ghost:hover{
  background: rgba(23,119,185,.10);
  border-color: rgba(23,119,185,.32);
}

.lamppa-ui .lam-chips{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 8px;
}

.lamppa-ui .lam-chip{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-input);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(15,30,46,.04);
  text-decoration: none;
  color: var(--text);
  transition: transform .08s ease, box-shadow .2s ease, border-color .2s ease;
  min-height: 44px;
}
.lamppa-ui .lam-chip:hover{
  border-color: rgba(23,119,185,.28);
  box-shadow: 0 10px 20px rgba(15,30,46,.08);
}
.lamppa-ui .lam-chip:active{ transform: translateY(1px); }

.lamppa-ui .lam-ico{
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15,30,46,.62);
}
.lamppa-ui[data-lam-theme="dark"] .lam-ico{ color: rgba(234,242,255,.74); }

.lamppa-ui .lam-ico svg{ width: 22px; height: 22px; }

.lamppa-ui .lam-chip-text{
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lamppa-ui .lam-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lamppa-ui .lam-card-media{
  position: relative;
  padding: 14px 14px 0 14px;
}

.lamppa-ui .lam-card-photo{
  height: 190px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(230,237,245,.9);
  background:
    radial-gradient(120px 120px at 70% 60%, rgba(31,182,228,.22), transparent 60%),
    radial-gradient(140px 140px at 40% 40%, rgba(23,119,185,.20), transparent 60%),
    linear-gradient(180deg, rgba(15,30,46,.08), rgba(15,30,46,.02));
  position: relative;
}
.lamppa-ui[data-lam-theme="dark"] .lam-card-photo{
  border-color: rgba(28,42,68,.9);
  background:
    radial-gradient(120px 120px at 70% 60%, rgba(31,182,228,.20), transparent 60%),
    radial-gradient(140px 140px at 40% 40%, rgba(23,119,185,.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.12));
}

.lamppa-ui .lam-photo-grid{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0/18px 18px,
    linear-gradient(0deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0/18px 18px;
  opacity: .55;
}
.lamppa-ui[data-lam-theme="dark"] .lam-photo-grid{
  background:
    linear-gradient(90deg, rgba(234,242,255,.08) 1px, transparent 1px) 0 0/18px 18px,
    linear-gradient(0deg, rgba(234,242,255,.06) 1px, transparent 1px) 0 0/18px 18px;
  opacity: .35;
}

.lamppa-ui .lam-photo-glow{
  position: absolute;
  inset: -20% -10% -10% -10%;
  background: var(--grad);
  opacity: .14;
  filter: blur(20px);
  transform: rotate(-8deg);
}

.lamppa-ui .lam-badge{
  position: absolute;
  left: 26px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(23,119,185,.92);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 18px rgba(15,30,46,.16);
  backdrop-filter: blur(6px);
}

.lamppa-ui .lam-card-body{
  padding: 14px 18px 18px;
}

.lamppa-ui .lam-card-title{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.lamppa-ui .lam-card-link{
  display: inline-block;
  color: var(--link);
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(23,119,185,.25);
  padding-bottom: 1px;
}
.lamppa-ui[data-lam-theme="dark"] .lam-card-link{
  border-bottom-color: rgba(124,203,255,.28);
}
.lamppa-ui .lam-card-link:hover{
  border-bottom-color: rgba(23,119,185,.55);
}

.lamppa-ui .lam-features{
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 14px;
  color: var(--text-2);
}

.lamppa-ui .lam-feature{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 650;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.lamppa-ui .lam-feature-ico{
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15,30,46,.58);
}
.lamppa-ui[data-lam-theme="dark"] .lam-feature-ico{ color: rgba(234,242,255,.65); }
.lamppa-ui .lam-feature-ico svg{ width: 18px; height: 18px; }

.lamppa-ui .lam-theme{
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(15,30,46,.04);
}
.lamppa-ui .lam-theme:hover{ border-color: rgba(23,119,185,.28); }
.lamppa-ui .lam-theme:active{ transform: translateY(1px); }

.lamppa-ui .lam-theme-ico{
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(15,30,46,.62);
}
.lamppa-ui[data-lam-theme="dark"] .lam-theme-ico{ color: rgba(234,242,255,.74); }
.lamppa-ui .lam-theme-ico svg{ width: 18px; height: 18px; }
.lamppa-ui .lam-theme-text{
  font-size: 12px;
  font-weight: 750;
  color: var(--text-2);
}

@media (max-width: 1199px){
  .lamppa-ui .lam-shell{ max-width: 980px; }
  .lamppa-ui .lam-kicker{ font-size: 40px; }
  .lamppa-ui .lam-chips{ grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 560px; }
  .lamppa-ui .lam-card-photo{ height: 180px; }
}

@media (max-width: 767px){
  .lamppa-ui .lam-shell{ padding: 18px 14px 16px; }
  .lamppa-ui .lam-hero{ grid-template-columns: 1fr; gap: 14px; }
  .lamppa-ui .lam-kicker{ font-size: 34px; }
  .lamppa-ui .lam-sub{ max-width: 100%; }
  .lamppa-ui .lam-chips{ grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; }
  .lamppa-ui .lam-features{ justify-content: flex-start; }
  .lamppa-ui .lam-theme{ margin-left: 0; }
}

@media (max-width: 359px){
  .lamppa-ui .lam-kicker{ font-size: 28px; }
  .lamppa-ui .lam-chips{ grid-template-columns: 1fr; }
  .lamppa-ui .lam-actions{ gap: 10px; }
  .lamppa-ui .lam-btn{ width: 100%; }
  
 
}



/*Блок 2*/

.lamppa-ui{
  --bg:#F8FAFC; --surface:#FFFFFF; --text:#0F1E2E; --text-2:#556575; --border:#E6EDF5;
  --primary:#1777B9; --primary-hover:#0F63A3;
  --accent:#1FB6E4; --deep-blue:#0B5AA6;
  --success:#1E9E5A; --warning:#D6A100; --danger:#D64545;
  --radius-card:12px; --radius-input:10px;
  --shadow:0 8px 24px rgba(15,30,46,.08);
  --grad:linear-gradient(135deg,#1FB6E4 0%,#1777B9 55%,#0B5AA6 100%);
  --ring:0 0 0 3px rgba(31,182,228,.22);

  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
}

.lamppa-ui .lam-wrap{
  background:var(--bg);
  border-radius:14px;
  padding:16px;
  border:1px solid var(--border);
}

.lamppa-ui .lam-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.lamppa-ui .lam-title{
  font-size:18px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-0.01em;
}

.lamppa-ui .lam-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  color:var(--primary);
  font-size:13px;
  font-weight:600;
  padding:6px 8px;
  border-radius:10px;
}

.lamppa-ui .lam-link:hover{ color:var(--primary-hover); background:rgba(23,119,185,.06); }
.lamppa-ui .lam-link:focus{ outline:none; box-shadow:var(--ring); }

.lamppa-ui .lam-ico{
  width:20px; height:20px;
  display:flex; align-items:center; justify-content:center;
  color:currentColor;
}
.lamppa-ui .lam-ico svg{ width:100%; height:100%; }

.lamppa-ui .lam-ico--sm{ width:16px; height:16px; }

.lamppa-ui .lam-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.lamppa-ui .lam-card{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:12px 12px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-card);
  box-shadow:0 1px 0 rgba(15,30,46,.02);
  text-decoration:none;
  color:var(--text);
  min-height:56px;
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease, background .18s ease;
}

.lamppa-ui .lam-card:hover{
  box-shadow:var(--shadow);
  transform: translateY(-1px);
  border-color: rgba(23,119,185,.28);
}

.lamppa-ui .lam-btn:hover{
  background: rgba(23,119,185,.06);
  border-color: rgba(23,119,185,.42);
  color: var(--primary-hover);
}

.lamppa-ui .lam-btn:active{ transform: translateY(1px); }
.lamppa-ui .lam-btn:focus{ outline:none; box-shadow: var(--ring); }

/* 360+ baseline already */

/* 768+ */
@media (min-width:768px){
  .lamppa-ui .lam-wrap{ padding:18px; }
  .lamppa-ui .lam-grid{
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:12px;
  }
  .lamppa-ui .lam-title{ font-size:20px; }
  .lamppa-ui .lam-card{ padding:12px 12px; min-height:58px; }
  .lamppa-ui .lam-promo{ padding:10px 12px; }
}

/* 1200+ */
@media (min-width:1200px){
  .lamppa-ui .lam-wrap{ padding:20px; }
  .lamppa-ui .lam-grid{ gap:12px; }
  .lamppa-ui .lam-card{ min-height:60px; }
  .lamppa-ui .lam-card-title{ font-size:13.5px; }
}

/*Блок 6 форма*/


/* ===== B2B REQUEST SECTION ===== */
.b2b-request-section {
  width: 100%;
  background: linear-gradient(135deg, #f0f3f8 0%, #fafafa 40%, #dddddd 100%);
  padding: 70px 0 40px;
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  position: relative;
}

.b2b-request-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ===== LEFT ===== */
.b2b-request-left {
  flex: 1;
  max-width: 480px;
  padding-top: 20px;
}

.b2b-request-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.b2b-request-desc {
  font-size: 17px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 32px 0;
}

/* Badges */
.b2b-request-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.b2b-request-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #1d2939;
  white-space: nowrap;
}

.b2b-request-badge svg {
  flex-shrink: 0;
}



/* Вариант: картинка выходит за пределы колонки */
.b2b-request-image {
  width: 160%;           /* шире чем колонка */
  margin-left: -30%;     /* сдвиг влево чтобы по центру */
  margin-top: 14px;
}

.b2b-request-image img {
  width: 100%;
  max-width: none;       /* без ограничений */
  height: auto;
  display: block;
  border-radius: 12px;
}






/* ===== RIGHT — FORM ===== */
.b2b-request-right {
  flex: 1;
  max-width: 580px;
  min-width: 0;
}

.b2b-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 30px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Form groups */
.b2b-form-group {
  margin-bottom: 16px;
}

.b2b-form-full {
  width: 100%;
}

.b2b-form-row {
  display: flex;
  gap: 14px;
}

.b2b-form-half {
  flex: 1;
  min-width: 0;
}

.b2b-form-row-3 {
  display: flex;
  gap: 14px;
}

.b2b-form-row-3 .b2b-form-group {
  flex: 1;
  min-width: 0;
}

/* Labels */
.b2b-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #344054;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

/* Inputs */
.b2b-input {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #1d2939;
  background: #ffffff;
  border: 1.5px solid #d0d5dd;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.b2b-input::placeholder {
  color: #94a3b8;
}

.b2b-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.b2b-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.b2b-input-hint {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

/* Textarea */
.b2b-textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #1d2939;
  background: #ffffff;
  border: 1.5px solid #d0d5dd;
  border-radius: 12px;
  outline: none;
  resize: vertical;
  min-height: 110px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  line-height: 1.5;
}

.b2b-textarea::placeholder {
  color: #94a3b8;
}

.b2b-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== DROPZONE ===== */
.b2b-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  border: 2px dashed #93c5fd;
  border-radius: 12px;
  background: #f0f7ff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  gap: 4px;
}

.b2b-dropzone:hover {
  border-color: #2563eb;
  background: #e8f1fd;
}

.b2b-dropzone.dragover {
  border-color: #2563eb;
  background: #dbeafe;
  transform: scale(1.01);
}

.b2b-dropzone-icon {
  margin-bottom: 4px;
}

.b2b-dropzone-text {
  font-size: 14px;
}

.b2b-dropzone-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.b2b-dropzone-link:hover {
  color: #1d4ed8;
}

.b2b-dropzone-hint {
  font-size: 12px;
  color: #94a3b8;
}

/* File list */
.b2b-file-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.b2b-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 13px;
  color: #334155;
  animation: fileSlideIn 0.3s ease;
}

@keyframes fileSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.b2b-file-item-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 10px;
}

.b2b-file-item-size {
  color: #94a3b8;
  font-size: 12px;
  margin-right: 10px;
  flex-shrink: 0;
}

.b2b-file-remove {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.b2b-file-remove:hover {
  color: #ef4444;
}

/* ===== CONSENT CHECKBOX ===== */
.b2b-consent-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.b2b-consent-wrap input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  margin: 0;
  padding: 0;
  border: 2px solid #d0d5dd;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
  outline: none;
}

.b2b-consent-wrap input[type="checkbox"]:checked {
  background: #2563eb;
  border-color: #2563eb;
}

.b2b-consent-wrap input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.b2b-consent-wrap input[type="checkbox"].consent-error,
.b2b-consent-wrap input[type="checkbox"].consent-error + label::before {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
  outline: 2px solid #ef4444 !important;
  outline-offset: 1px;
}

.b2b-consent-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}

.b2b-consent-text.consent-error {
  color: #ef4444;
}

.b2b-consent-text a {
  color: #2563eb;
  text-decoration: underline;
}

.b2b-privacy-link {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.b2b-privacy-link:hover {
  color: #1d4ed8;
}

/* ===== SUBMIT BUTTON ===== */
.b2b-submit-btn {
  width: 100%;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #194348 0%, #194348 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

.b2b-submit-btn:hover {
  background: linear-gradient(135deg, #1798e1 0%, #1798e1 100%);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

.b2b-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.b2b-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Loading spinner */
.b2b-submit-btn.loading {
  pointer-events: none;
  color: transparent;
}

.b2b-submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -11px 0 0 -11px;
  animation: btnSpin 0.7s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.b2b-submit-hint {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  margin: 10px 0 0 0;
}

/* ===== PHONE BAR ===== */
.b2b-request-phone {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: #475569;
  padding-bottom: 10px;
}

.b2b-phone-link {
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.25s ease;
}

.b2b-phone-link:hover {
  color: #2563eb;
}

/* ===== TOAST ===== */
.b2b-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #1d2939;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  font-family: inherit;
}

.b2b-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ===== SCROLL ANIMATIONS ===== */
.b2b-request-left,
.b2b-request-right {
  opacity: 1;
  transform: translateY(0);
}

.b2b-request-left.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.b2b-request-right.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .b2b-request-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .b2b-request-left {
    max-width: 100%;
    text-align: center;
    padding-top: 0;
  }

  .b2b-request-title br {
    display: none;
  }

  .b2b-request-badges {
    justify-content: center;
  }

  .b2b-request-right {
    max-width: 580px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .b2b-request-section {
    padding: 50px 0 30px;
  }

  .b2b-request-container {
    padding: 0 16px;
  }

  .b2b-request-title {
    font-size: 28px;
  }

  .b2b-request-desc {
    font-size: 15px;
  }

  .b2b-form {
    padding: 24px 18px 22px;
    border-radius: 14px;
  }

  .b2b-form-row,
  .b2b-form-row-3 {
    flex-direction: column;
    gap: 0;
  }

  .b2b-request-badges {
    flex-direction: column;
    align-items: center;
  }

  .b2b-submit-btn {
    font-size: 15px;
    padding: 15px 20px;
  }

  .b2b-toast {
    left: 16px;
    right: 16px;
    transform: translateX(0) translateY(100px);
    font-size: 14px;
    padding: 14px 18px;
  }

  .b2b-toast.show {
    transform: translateX(0) translateY(0);
  }
}

@media (max-width: 400px) {
  .b2b-request-title {
    font-size: 24px;
  }

  .b2b-request-badge {
    font-size: 13px;
    padding: 8px 14px;
  }
}


/**/
/* ===== B2B CONSENT FINAL FIX ===== */
#b2bConsentWrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

#b2bConsentWrap.error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.04) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.10) !important;
}

#b2bConsent {
  margin: 0;
  flex-shrink: 0;
}

#b2bConsentWrap .b2b-consent-text {
  margin: 0;
  line-height: 1.4;
}

#b2bConsentWrap.error .b2b-consent-text {
  color: #b91c1c;
}



/**/
/* ===== FILE LIST ===== */
.b2b-upload-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.b2b-upload-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

.b2b-upload-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.b2b-upload-name {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.b2b-upload-size {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.b2b-upload-remove {
  border: none;
  background: transparent;
  color: #ef4444;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  flex-shrink: 0;
}

.b2b-upload-remove:hover {
  color: #dc2626;
}


/* ===== FILES UI ===== */
.b2b-file-list-head {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.b2b-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.b2b-file-item-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.b2b-file-item-name {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 360px;
}

.b2b-file-item-size {
  margin-top: 3px;
  font-size: 12px;
  color: #64748b;
}

.b2b-file-remove {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #ef4444;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.b2b-file-remove:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
}

#b2bDropzone.has-files {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.04);
}

/*Конец блок 6 форма*/


/*Блок 7*/


/* ===== B2B SECTION ===== */
.b2b-section {
  width: 100%;
  background: #f8f8f8;
  padding: 70px 0 80px;
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.b2b-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ===== HEADER ===== */
.b2b-header {
  text-align: center;
  margin-bottom: 50px;
}

.b2b-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.03em;
}

.b2b-subtitle {
  font-size: 18px;
  color: #64748b;
  font-weight: 400;
  margin: 0;
}

/* ===== STEPS ===== */
.b2b-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
}

.b2b-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  width: 200px;
}

.b2b-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
  position: relative;
  transition: all 0.4s ease;
  cursor: default;
}

.b2b-step:hover .b2b-step-circle {
  background: #1e3a5f;
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.b2b-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.b2b-step-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.45;
}

/* Dashed line between steps */
.b2b-step-line {
  flex: 1;
  max-width: 100px;
  height: 2px;
  border-top: 2.5px dashed #b0b8c4;
  margin-top: 32px;
  min-width: 40px;
}

/* ===== BOTTOM: BENEFITS + FAQ ===== */
.b2b-bottom {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 50px;
}

/* --- Benefits --- */
.b2b-benefits {
  flex: 1;
  min-width: 0;
}

.b2b-benefits-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.b2b-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.b2b-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #1d2939;
  line-height: 1.45;
}

.b2b-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.b2b-benefits-list li span {
  flex: 1;
}

/* --- FAQ --- */
.b2b-faq {
  flex: 1;
  min-width: 0;
}

.b2b-faq-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.b2b-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* FAQ Item */
.b2b-faq-item {
  background: #ffffff;
  border: 1.5px solid #d0d5dd;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.b2b-faq-item:hover {
  border-color: #93b4d4;
}

.b2b-faq-item.open {
  border-color: #3b82f6;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.1);
}

/* Question */
.b2b-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #194348;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  font-family: inherit;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.b2b-faq-question:hover {
  color: #194348;
}

.b2b-faq-item.open .b2b-faq-question {
  color: #2563eb;
}

.b2b-faq-question span {
  flex: 1;
}

/* Chevron */
.b2b-faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #94a3b8;
  transition: transform 0.35s ease, color 0.25s ease;
}

.b2b-faq-item.open .b2b-faq-chevron {
  transform: rotate(180deg);
  color: #2563eb;
}

/* Answer */
.b2b-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.b2b-faq-item.open .b2b-faq-answer {
  max-height: 200px;
  padding: 0 20px 18px;
}

.b2b-faq-answer p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* ===== FOOTER BUTTONS ===== */
.b2b-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.b2b-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #194348 0%, #194348 100%);
  border: 0px solid #194348;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  font-family: inherit;
}

.b2b-btn-primary:hover {
  background: linear-gradient(135deg, #1798e1 0%, #1798e1 100%);
  box-shadow: 0 8px 28px rgba(59, 157, 224, 0.45);
  transform: translateY(-2px);
}

.b2b-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.b2b-btn-text {
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: pointer;
  font-family: inherit;
}

.b2b-btn-text:hover {
  color: #3b9de0;
}

/* ===== SCROLL ANIMATIONS ===== */
.b2b-step,
.b2b-benefits,
.b2b-faq,
.b2b-footer {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.b2b-step.visible,
.b2b-benefits.visible,
.b2b-faq.visible,
.b2b-footer.visible {
  opacity: 1;
  transform: translateY(0);
}

.b2b-step:nth-child(1) { transition-delay: 0s; }
.b2b-step:nth-child(3) { transition-delay: 0.1s; }
.b2b-step:nth-child(5) { transition-delay: 0.2s; }
.b2b-step:nth-child(7) { transition-delay: 0.3s; }

.b2b-step-line {
  opacity: 0;
  transition: opacity 0.6s ease 0.15s;
}

.b2b-step-line.visible {
  opacity: 1;
}

.b2b-benefits.visible { transition-delay: 0.1s; }
.b2b-faq.visible { transition-delay: 0.2s; }
.b2b-footer.visible { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .b2b-bottom {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .b2b-section {
    padding: 50px 0 60px;
  }

  .b2b-title {
    font-size: 30px;
  }

  .b2b-subtitle {
    font-size: 16px;
  }

  /* Steps vertical */
  .b2b-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
  }

  .b2b-step {
    width: 100%;
    max-width: 280px;
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .b2b-step-circle {
    margin-bottom: 0;
    width: 50px;
    height: 50px;
    font-size: 22px;
    flex-shrink: 0;
  }

  .b2b-step-line {
    width: 2px;
    height: 30px;
    border-top: none;
    border-left: 2.5px dashed #b0b8c4;
    margin-top: 0;
    margin-left: 24px;
    max-width: none;
    min-width: auto;
  }

  .b2b-step-desc br {
    display: none;
  }

  .b2b-benefits-title,
  .b2b-faq-title {
    font-size: 20px;
  }

  .b2b-benefits-list li {
    font-size: 15px;
  }

  .b2b-footer {
    flex-direction: column;
    gap: 16px;
  }

  .b2b-btn-primary {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .b2b-container {
    padding: 0 16px;
  }

  .b2b-title {
    font-size: 26px;
  }

  .b2b-faq-question {
    padding: 14px 16px;
    font-size: 14px;
  }

  .b2b-faq-answer {
    padding: 0 16px;
  }

  .b2b-faq-item.open .b2b-faq-answer {
    padding: 0 16px 16px;
  }
}









/*Конец блок 7*/






/*Блок 8*/


/* ===== TRUST SECTION ===== */
.trust-section {
  width: 100%;
  background: #ffffff;
  padding: 70px 0 80px;
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ===== HEADER ===== */
.trust-header {
  text-align: center;
  margin-bottom: 50px;
}

.trust-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.03em;
}

.trust-subtitle {
  font-size: 19px;
  color: #475569;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ===== STATS ROW ===== */
.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.trust-stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 10px;
  min-width: 180px;
}

.trust-stat-number {
  font-size: 52px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.trust-stat-label {
  font-size: 16px;
  color: #475569;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.trust-stat-divider {
  width: 1px;
  height: 70px;
  background: #c8c5bd;
  flex-shrink: 0;
}

/* ===== BOTTOM: CERTS + DELIVERY ===== */
.trust-bottom {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* --- Certificates --- */
.trust-certs {
  flex: 1;
  min-width: 0;
}

.trust-certs-text {
  margin-bottom: 20px;
}

.trust-certs-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.trust-certs-desc {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Cert thumbnails */
.trust-certs-images {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.trust-cert-thumb {
  width: 100px;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.trust-cert-thumb:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.trust-cert-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Delivery --- */
.trust-delivery {
  flex: 1;
  min-width: 0;
}

.trust-delivery-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.trust-map-wrapper {
  margin-bottom: 16px;
  position: relative;
}

.trust-map-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
}

.trust-delivery-desc {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 10px 0;
  line-height: 1.5;
}

/* --- Links --- */
.trust-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  transition: all 0.25s ease;
  border-bottom: 1px solid transparent;
}

.trust-link:hover {
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
}

/* ===== MODAL ===== */
.cert-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}

.cert-modal-overlay.active {
  display: flex;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cert-modal {
  position: relative;
  max-width: 600px;
  max-height: 90vh;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  cursor: default;
  animation: modalScaleIn 0.3s ease;
}

@keyframes modalScaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.cert-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 2;
}

.cert-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

.cert-modal-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== ANIMATIONS ON SCROLL ===== */
.trust-stat-item,
.trust-certs,
.trust-delivery {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.trust-stat-item.visible,
.trust-certs.visible,
.trust-delivery.visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-stat-item:nth-child(1) { transition-delay: 0s; }
.trust-stat-item:nth-child(3) { transition-delay: 0.1s; }
.trust-stat-item:nth-child(5) { transition-delay: 0.2s; }
.trust-stat-item:nth-child(7) { transition-delay: 0.3s; }

.trust-certs.visible { transition-delay: 0.15s; }
.trust-delivery.visible { transition-delay: 0.25s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .trust-bottom {
    flex-direction: column;
    gap: 50px;
  }

  .trust-map-img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .trust-section {
    padding: 50px 0 60px;
  }

  .trust-title {
    font-size: 32px;
  }

  .trust-subtitle {
    font-size: 17px;
  }

  .trust-stats {
    gap: 0;
    margin-bottom: 40px;
  }

  .trust-stat-item {
    flex: 1 1 45%;
    min-width: 140px;
    padding: 16px 8px;
  }

  .trust-stat-number {
    font-size: 38px;
  }

  .trust-stat-label {
    font-size: 14px;
  }

  .trust-stat-divider {
    display: none;
  }

  .trust-certs-title,
  .trust-delivery-title {
    font-size: 20px;
  }

  .trust-cert-thumb {
    width: 80px;
    height: 112px;
  }
}

@media (max-width: 480px) {
  .trust-container {
    padding: 0 16px;
  }

  .trust-title {
    font-size: 28px;
  }

  .trust-stat-item {
    flex: 1 1 100%;
  }

  .trust-stat-number {
    font-size: 34px;
  }

  .trust-certs-images {
    gap: 8px;
  }

  .trust-cert-thumb {
    width: 64px;
    height: 90px;
  }
}


/*конец блок 8*/










/* ===== FAQ SECTION ===== */
.faq-section {
  width: 100%;
  background: #f8f8f8;
  padding: 60px 0 70px;
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header */
.faq-header {
  margin-bottom: 40px;
}

.faq-title {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.faq-title-line {
  width: 50px;
  height: 4px;
  background: #3b9de0;
  border-radius: 2px;
}

/* Body — flex layout */
.faq-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* ===== LEFT: CATEGORY BUTTONS ===== */
.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  width: 220px;
}

.faq-cat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  background: #2c5c5e;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.faq-cat-btn:hover {
  background: #3b9de0;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59, 157, 224, 0.35);
}

.faq-cat-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 157, 224, 0.25);
}

.faq-cat-btn.active {
  background: #3b9de0;
  box-shadow: 0 4px 16px rgba(59, 157, 224, 0.35);
}

/* ===== RIGHT: QUESTIONS ===== */
.faq-questions {
  flex: 1;
  min-width: 0;
}

/* FAQ Groups */
.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
  animation: faqFadeIn 0.35s ease-out;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-item.open {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #1d2939;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
  font-family: inherit;
  line-height: 1.4;
}

.faq-question:hover {
  color: #3b9de0;
}

.faq-question span {
  flex: 1;
}

/* Chevron */
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #94a3b8;
  transition: transform 0.35s ease, color 0.25s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: #3b9de0;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

/* ===== FOOTER ===== */
.faq-footer {
  margin-top: 36px;
  text-align: center;
  font-size: 16px;
  color: #64748b;
}

.faq-footer span {
  margin-right: 6px;
}

.faq-footer-link {
  color: #1d2939;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #94a3b8;
  transition: all 0.25s ease;
}

.faq-footer-link:hover {
  color: #3b9de0;
  text-decoration-color: #3b9de0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .faq-body {
    flex-direction: column;
    gap: 24px;
  }

  .faq-categories {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .faq-cat-btn {
    flex: 1 1 auto;
    min-width: 140px;
    padding: 12px 18px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .faq-section {
    padding: 40px 0 50px;
  }

  .faq-container {
    padding: 0 16px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 18px;
  }

  .faq-item.open .faq-answer {
    padding: 0 18px 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-cat-btn {
    min-width: 100px;
    padding: 11px 14px;
    font-size: 12px;
    border-radius: 6px;
  }

  .faq-footer {
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .faq-categories {
    flex-direction: column;
  }

  .faq-cat-btn {
    min-width: auto;
  }
}










/* ===== Сетка карточек категорий ===== */
.cat-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ===== Карточка категории ===== */
.cat-card {
    background: #e8f3f9;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.cat-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* === Заголовок === */
.cat-card__header {
    margin-bottom: 16px;
}

.cat-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    line-height: 1.3;
}

.cat-card__title:hover {
    color: #000;
}

/* === Тело: теги + картинка === */
.cat-card__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    gap: 16px;
}

/* Теги подкатегорий */
.cat-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: flex-start;
    flex: 1;
    min-width: 0;
}

.cat-card__tag {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    line-height: 1.3;
}

.cat-card__tag:hover {
    background-color: #f0f0f0;
    border-color: #bbb;
    color: #000;
}

/* Картинка */
.cat-card__image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.cat-card__image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* === Футер: "Смотреть все" === */
.cat-card__footer {
    margin-top: 16px;
    padding-top: 0;
}

.cat-card__view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #1d2939;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cat-card__view-all:hover {
    color: #a88a2e;
}

.cat-card__view-all .icon {
    fill: currentColor;
    transition: transform 0.2s ease;
}

.cat-card__view-all:hover .icon {
    transform: translateX(3px);
}

/* ===== Адаптивность ===== */
@media (max-width: 1024px) {
    .cat-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cat-cards-grid {
        grid-template-columns: 1fr;
    }

    .cat-card__image {
        width: 100px;
        height: 100px;
    }

    .cat-card {
        padding: 16px;
        min-height: 180px;
    }
}




/*Корзина*/

/* ===== CART QTY CLEAN FIX ===== */
.wa-product .wa-column-quantity .wa-quantity-cart-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wa-product .wa-column-quantity .wa-quantity-cart-section .wa-section-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.wa-product .wa-column-quantity .wa-button-wrapper {
  margin: 0;
}

.wa-product .wa-column-quantity .wa-button {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  padding: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-product .wa-column-quantity .wa-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  height: 34px;
}

.wa-product .wa-column-quantity .wa-field {
  width: 52px;
  height: 34px;
  padding: 0 6px;
  text-align: center;
  border-radius: 6px;
  box-sizing: border-box;
  line-height: 34px;
  font-size: 15px;
}

.wa-product .wa-column-quantity .wa-unit {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: #9ca3af;
  white-space: nowrap;
  margin: 0;
}

.wa-product .wa-column-quantity .wa-section-footer {
  margin-top: 6px;
  text-align: center;
}

.wa-product .wa-column-quantity .wa-product-price {
  font-size: 12px;
  color: #9ca3af;
  white-space: nowrap;
}

.wa-product .wa-column-quantity .wa-description,
.wa-product .wa-column-quantity .js-min-description,
.wa-product .wa-column-quantity .js-max-description {
  display: none !important;
}



/*Конец корзины*/





/*Узкий список*/
/* ===== COMPACT CATALOG LINE VIEW ===== */


.callback-info__email {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 6px;
	padding-left: 0;
}

.callback-info__email-link {
	color: #666;
	text-decoration: none;
	font-size: 13px;
	line-height: 1.2;
}

.callback-info__email-link:hover {
	text-decoration: underline;
}

.callback-info__email .icon {
	flex: 0 0 16px;
}


/*************************************************/

/* === Правая карточка товара / view 2 === */
.item-pg_2 .b-row-ip__col-cart .pd-cart {
    background: #fff !important;
    border: 1px solid #d9e0e5 !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    padding: 2px 10px !important;
}

/* убрать лишние фон/рамки внутри */
.item-pg_2 .pd-cart__main,
.item-pg_2 .pd-cart__main_custom,
.item-pg_2 .pd-cart__price-wrapper_custom,
.item-pg_2 .pd-cart__processing-wrapper,
.item-pg_2 .pd-options-list,
.item-pg_2 .aux,
.item-pg_2 form#cart-form {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* ВАЖНО: не делаем form и main flex-контейнерами */
.item-pg_2 #cart-form,
.item-pg_2 .pd-cart__main > form,
.item-pg_2 .pd-cart__main_custom {
    min-height: 0 !important;
    height: auto !important;
}

/* если sku/options визуально пустые - убираем воздух */
.item-pg_2 .pd-options-list {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
}

.item-pg_2 .pd-options-list > div[itemprop="offers"] {
    display: none !important;
}

/* цена */
.item-pg_2 .pd-cart__price-wrapper_custom,
.item-pg_2 .pd-cart__price-wrapper_default,
.item-pg_2 .pd-cart__price {
    margin: 0 !important;
    padding: 0 !important;
}

.item-pg_2 .pd-cart__price-wrapper_custom {
    margin-bottom: 8px !important;
}

.item-pg_2 .pd-price__reg-price {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.item-pg_2 .pd-price__old-price {
    font-size: 18px;
    color: #98a2b3;
    text-decoration: line-through;
}

/* наличие */
.item-pg_2 .pd-cart__stock-wrapper,
.item-pg_2 .pd-cart__stock-wrapper.s-product-stocks {
    display: block !important;
    width: 100% !important;
    margin: 8px 0 12px !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

.item-pg_2 .pd-cart__stock-wrapper.s-product-stocks .pd-stock,
.item-pg_2 .pd-cart__stock-wrapper.s-product-stocks .s-product-stock,
.item-pg_2 .pd-stock,
.item-pg_2 .stock-info {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

.item-pg_2 .pd-stock,
.item-pg_2 .stock-info {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    width: 100%;
    font-size: 15px;
    line-height: 1.3;
}

.item-pg_2 .pd-stock__title,
.item-pg_2 .pd-stock-title,
.item-pg_2 .stock-info .icon {
    display: none !important;
}

/* индикаторы наличия */
.item-pg_2 .stock-info.stock::before,
.item-pg_2 .stock-info.less-stock::before,
.item-pg_2 .stock-info.single-stock::before,
.item-pg_2 .stock-info.no-stock::before {
    content: "";
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
}

.item-pg_2 .stock-info.stock::before,
.item-pg_2 .stock-info.less-stock::before,
.item-pg_2 .stock-info.single-stock::before {
    background: #2bb24c;
}

.item-pg_2 .stock-info.no-stock::before {
    background: #e5484d;
}

/* блок кнопок */
.item-pg_2 .pd-cart__processing-wrapper {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
}

.item-pg_2 .pd-cart__process {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* кнопки */
.item-pg_2 .pd-cart__add-cart,
.item-pg_2 .buy1click-button,
.item-pg_2 .buy1click-open-button {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    border-radius: 4px !important;
}

/* основная кнопка */
.item-pg_2 .pd-cart__add-cart {
    font-size: 16px;
    font-weight: 600;
}

/* кнопка "Выставить счет" */
.item-pg_2 .buy1click-button,
.item-pg_2 .buy1click-open-button {
    background: transparent !important;
    border: 1px solid #0b4f66 !important;
    color: #0b4f66 !important;
    padding: 0 14px !important;
    font-size: 15px;
    font-weight: 600;
    box-shadow: none !important;
}

/* обертки buy1click без лишних отступов */
.item-pg_2 .pd-cart__one-click,
.item-pg_2 .item-list-c__oneclick,
.item-pg_2 .buy1click-widget,
.item-pg_2 .buy1click-wrapper {
    width: 100% !important;
    margin: 0 !important;
}

/* нижние табы внутри карточки */
.item-pg_2 .pd-cart__tabs {
    margin-top: 14px !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

.item-pg_2 .pd-call-order {
    margin-top: 14px;
}


/*стиль кнопки выставить счет*/
.item-pg_2 .buy1click-button,
.item-pg_2 .buy1click-open-button {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: 0 !important;
}

.item-pg_2 .buy1click-button .buy1click-button__text,
.item-pg_2 .buy1click-open-button .buy1click-button__text {
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    text-transform: inherit !important;
    letter-spacing: inherit !important;
}


.item-pg_2 .buy1click-button,
.item-pg_2 .buy1click-open-button {
    transition: all 0.2s ease !important;
}

.item-pg_2 .buy1click-button:hover,
.item-pg_2 .buy1click-open-button:hover {
    background: #1798E1 !important;
    color: #fff !important;
    border-color: #1798E1 !important;
}

.item-pg_2 .buy1click-button:hover span,
.item-pg_2 .buy1click-open-button:hover span,
.item-pg_2 .buy1click-button:hover .buy1click-button__text,
.item-pg_2 .buy1click-open-button:hover .buy1click-button__text {
    color: #fff !important;
}


.item-c__sku, .stock-info__text

 {
    font-size: 1.6rem;
}


/*Иконки под кнопкой*/
.item-pg_2 .pd-cart-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    margin-top: 28px;
    padding-top: 2px;
}

.item-pg_2 .pd-cart-benefits__item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: #344054;
    font-size: 15px;
    line-height: 1.3;
}

.item-pg_2 .pd-cart-benefits__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    min-width: 16px;
    color: #667085;
    flex: 0 0 16px;
}

.item-pg_2 .pd-cart-benefits__icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

@media (max-width: 767px) {
    .item-pg_2 .pd-cart-benefits {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}


.product-icon-features {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
    border-top: 1px solid #d9e0e5;
    border-bottom: 1px solid #d9e0e5;
}

.product-icon-features__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 78px;
    padding: 12px 8px;
    text-align: center;
    border-right: 1px solid #d9e0e5;
}

.product-icon-features__item:last-child {
    border-right: 0;
}

.product-icon-features__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: #111;
}

.product-icon-features__icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.product-icon-features__value {
    font-size: 14px;
    line-height: 1.2;
    color: #111;
    word-break: break-word;
}

@media (max-width: 991px) {
    .product-icon-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-icon-features__item {
        border-right: 1px solid #d9e0e5;
        border-bottom: 1px solid #d9e0e5;
    }

    .product-icon-features__item:nth-child(3n) {
        border-right: 0;
    }

    .product-icon-features__item:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

@media (max-width: 767px) {
    .product-icon-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-icon-features__item:nth-child(3n) {
        border-right: 1px solid #d9e0e5;
    }

    .product-icon-features__item:nth-child(2n) {
        border-right: 0;
    }
}



/* артикул в карточке брнд и серия вывод  */
.pd-descr__artikul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.pd-meta-line__item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.pd-meta-line__label {
    color: #98a2b3;
}

.pd-meta-line__value {
    color: #667085;
}

.pd-meta-line__sep {
    color: #d0d5dd;
}



/*СЕО оформление*/
.seo-text-category {
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.65;
  color: #222;
}

.seo-text-category h2 {
  margin: 28px 0 14px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.seo-text-category h3 {
  margin: 22px 0 12px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
}

.seo-text-category p {
  margin: 0 0 16px;
}

.seo-text-category ul,
.seo-text-category ol {
  margin: 0 0 16px 22px;
  padding: 0;
}

.seo-text-category li {
  margin-bottom: 8px;
}

.seo-text-category a {
  color: #1a73e8;
  text-decoration: none;
}

.seo-text-category a:hover {
  text-decoration: underline;
}

.seo-text-details {
  margin-top: 8px;
}

.seo-text-details summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 15px;
  line-height: 1.2;
  color: #1a73e8;
  background: transparent;
  border: 1px solid #1a73e8;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  list-style: none;
}

.seo-text-details summary::-webkit-details-marker {
  display: none;
}

.seo-text-details summary:hover {
  color: #fff;
  background: #1a73e8;
}

.seo-text-details[open] summary {
  margin-bottom: 20px;
}

.seo-text-details[open] summary::before {
  content: "Скрыть";
}

.seo-text-details[open] summary span {
  display: none;
}

@media (max-width: 767px) {
  .seo-text-category {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  .seo-text-category h2 {
    margin: 22px 0 12px;
    font-size: 20px;
  }

  .seo-text-category h3 {
    margin: 18px 0 10px;
    font-size: 18px;
  }

  .seo-text-details summary {
    width: 100%;
  }
}

/*Конец сео оформление*/