/*Блок 1*/
/* Banner */
.home-banner {
  width: 100%;
  max-width: 1200px;   /* при необходимости измените под ваш контейнер */
  margin: 24px auto;   /* отступы сверху/снизу и центрирование */
  padding: 0 16px;     /* чтобы не прилипало к краям на мобильных */
  box-sizing: border-box;
}

.home-banner__link {
  display: block;
  border-radius: 12px; /* можно убрать, если не нужно */
  overflow: hidden;    /* чтобы скругление применялось к картинке */
}

.home-banner__img {
  display: block;
  width: 100%;
  height: auto;        /* сохраняет пропорции */
}



/*Блок 2*/

/* Lampa-B-like: light, airy, clean blocks */
.lb-problem-solution{
  --brand: #1f7a69;          /* близко к зелёной кнопке/акцентам */
  --brand-d: #176356;
  --text: #1b1f24;
  --muted: #66707a;
  --line: #e7edf2;
  --soft: #f6f8fa;
  --shadow: 0 10px 28px rgba(16, 24, 40, .10);

  padding: 28px 0 44px;
  background: #fff;
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.lb-container{
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.lb-ps-head{
  margin-bottom: 16px;
}

.lb-ps-title{
  margin: 0 0 8px;
  font-weight: 800;
  font-size: clamp(20px, 2.0vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lb-ps-subtitle{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  max-width: 70ch;
}

/* layout */
.lb-ps-grid{
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px){
  .lb-ps-grid{ grid-template-columns: 1fr; }
}

/* right column cards */
.lb-ps-text{
  display: grid;
  gap: 12px;
}

.lb-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 14px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, .04);
}

.lb-card__title{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}

.lb-card__text{
  margin: 0;
  color: #2f3a43;
  font-size: 14px;
  line-height: 1.55;
}

.lb-ps-cta{
  margin-top: 4px;
}

.lb-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 8px 20px rgba(31, 122, 105, .18);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.lb-btn:hover{
  background: var(--brand-d);
  box-shadow: 0 10px 22px rgba(31, 122, 105, .22);
  transform: translateY(-1px);
}

.lb-btn:active{ transform: translateY(0); }

@media (max-width: 980px){
  .lb-btn{ width: 100%; }
}

.lb-ps-note{
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

/* Compare */
.lb-compare{
  margin: 0;
}

.lb-compare__frame{
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
}

/* placeholders (shown if images not loaded/failed; behind images) */
.lb-compare__ph{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lb-compare__ph--after{
  background: radial-gradient(900px 450px at 70% 40%, rgba(125, 90, 255, .20), transparent 60%),
              linear-gradient(135deg, #f7fbff, #f1f5f9);
}
.lb-compare__ph--before{
  width: var(--pos, 50%);
  background: radial-gradient(900px 450px at 30% 40%, rgba(20, 84, 255, .14), transparent 60%),
              linear-gradient(135deg, #eef5ff, #f3f6fb);
  border-right: 1px solid rgba(0,0,0,.05);
}

/* Images */
.lb-compare__img,
.lb-compare__img img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.lb-compare__img img{ display: block; }

/* clip before */
.lb-compare__clip{
  position: absolute;
  inset: 0;
  width: var(--pos, 50%);
  overflow: hidden;
  z-index: 2;
  will-change: width;
}

.lb-compare__badge{
  position: absolute;
  top: 12px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  color: var(--text);
  user-select: none;
}
.lb-compare__badge--left{ left: 12px; }
.lb-compare__badge--right{ right: 12px; }

.lb-compare__badgeTitle{
  font-weight: 800;
  font-size: 13px;
}
.lb-compare__badgeTag{
  font-size: 12px;
  line-height: 1;
  padding: 5px 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}
.lb-compare__badgeTag--danger{
  color: #b42318;
  background: #fff5f5;
  border-color: #ffd6d6;
}
.lb-compare__badgeTag--safe{
  color: #067647;
  background: #ecfdf3;
  border-color: #abefc6;
}

/* Divider */
.lb-compare__divider{
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}
.lb-compare__line{
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos, 50%);
  width: 2px;
  transform: translateX(-1px);
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.lb-compare__handle{
  position: absolute;
  left: var(--pos, 50%);
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(16,24,40,.12);
  display: grid;
  place-items: center;
  gap: 2px;
}
.lb-compare__arrows{
  width: 22px;
  height: 10px;
  position: relative;
}
.lb-compare__arrows::before,
.lb-compare__arrows::after{
  content:"";
  position:absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid #4b5563;
  border-right: 2px solid #4b5563;
  transform: translateY(-50%) rotate(45deg);
  opacity: .9;
}
.lb-compare__arrows::before{
  left: 1px;
  transform: translateY(-50%) rotate(225deg);
}
.lb-compare__arrows::after{
  right: 1px;
  transform: translateY(-50%) rotate(45deg);
}
.lb-compare__hint{
  font-size: 10px;
  color: #6b7280;
  margin-top: 2px;
  text-transform: lowercase;
}

/* Range */
.lb-compare__rangeWrap{
  margin-top: 10px;
}
.lb-compare__range{
  width: 100%;
  appearance: none;
  height: 36px;
  background: transparent;
  cursor: ew-resize;
  touch-action: pan-y;
}
.lb-compare__range:focus-visible{
  outline: 2px solid rgba(31, 122, 105, .35);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Track */
.lb-compare__range::-webkit-slider-runnable-track{
  height: 8px;
  border-radius: 999px;
  background: #edf2f7;
  border: 1px solid var(--line);
}
.lb-compare__range::-moz-range-track{
  height: 8px;
  border-radius: 999px;
  background: #edf2f7;
  border: 1px solid var(--line);
}

/* Thumb */
.lb-compare__range::-webkit-slider-thumb{
  appearance: none;
  width: 24px;
  height: 24px;
  margin-top: -9px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 18px rgba(16,24,40,.12);
}
.lb-compare__range::-moz-range-thumb{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 18px rgba(16,24,40,.12);
}

/* No-JS fallback (add .no-js to <html>) */
.lb-compare__noj{
  display: none;
  margin-top: 10px;
  gap: 10px;
}
.no-js .lb-compare__rangeWrap,
.no-js .lb-compare__divider,
.no-js .lb-compare__clip,
.no-js .lb-compare__img,
.no-js .lb-compare__badge{
  display: none !important;
}
.no-js .lb-compare__noj{
  display: grid;
}
.lb-compare__nojCard{
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.lb-compare__nojMedia{
  height: 180px;
  background: linear-gradient(135deg, #f7fbff, #f1f5f9);
}
.lb-compare__nojMedia--before{ filter: brightness(.92); }
.lb-compare__nojMedia--after{ filter: brightness(1.03); }
.lb-compare__nojCap{
  padding: 10px 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}


.lb-compare__clip{
  position:absolute;
  inset:0;
  width: var(--pos, 50%);
  overflow:hidden;
  z-index: 2;
  will-change: width;
}
.lb-compare__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Блок 3 */
:root{
  --b3-bg:#ffffff;
  --b3-text:#111827;
  --b3-muted:#6b7280;
  --b3-line:#e5e7eb;
  --b3-card:#ffffff;
  --b3-shadow: 0 10px 30px rgba(17,24,39,.08);
  --b3-radius:14px;
  --b3-primary:#0f766e;
}

.b3{
  background:var(--b3-bg);
  color:var(--b3-text);
  padding:56px 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

.b3__container{
  width:min(1140px, calc(100% - 32px));
  margin:0 auto;
}

.b3__head{
  margin-bottom:18px;
}

.b3__title{
  margin:0 0 6px 0;
  font-size:28px;
  line-height:1.15;
  letter-spacing:-0.02em;
}

.b3__subtitle{
  margin:0;
  color:var(--b3-muted);
  font-size:14px;
  line-height:1.5;
}

.b3__card{
  width:100%;
  background:var(--b3-card);
  border:1px solid var(--b3-line);
  border-radius:var(--b3-radius);
  box-shadow:var(--b3-shadow);
  padding:16px;
}

.b3__tableWrap{
  width:100%;
  overflow:hidden;
  border-radius:12px;
}

.b3__table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  table-layout:fixed;
}

.b3__table thead th{
  text-align:left;
  font-weight:600;
  font-size:13px;
  background:#f9fafb;
  border-bottom:1px solid var(--b3-line);
  padding:12px;
}

.b3__table tbody td{
  padding:12px;
  border-bottom:1px solid var(--b3-line);
  font-size:14px;
  line-height:1.45;
  vertical-align:top;
  word-break:break-word;
}

.b3__table thead th:first-child{ border-top-left-radius:12px; }
.b3__table thead th:last-child{ border-top-right-radius:12px; }
.b3__table tbody tr:last-child td:first-child{ border-bottom-left-radius:12px; }
.b3__table tbody tr:last-child td:last-child{ border-bottom-right-radius:12px; }

.b3__thRight,
.b3__tdRight{
  text-align:right;
  white-space:nowrap;
}

/* === ИСПРАВЛЕНО: второй столбец (статус) по левому краю === */
.b3__table th:nth-child(2),
.b3__table td:nth-child(2){ 
  text-align:left; 
}

.b3__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  line-height:1;
  background:rgba(15,118,110,.10);
  color:var(--b3-primary);
  border:1px solid rgba(15,118,110,.25);
}

.b3__muted{ color:var(--b3-muted); }

.b3__note{
  margin:12px 0 0;
  font-size:12px;
  line-height:1.5;
  color:var(--b3-muted);
}

/* Пропорции колонок */
.b3__table th:nth-child(1),
.b3__table td:nth-child(1){ width:48%; }

.b3__table th:nth-child(2),
.b3__table td:nth-child(2){ width:20%; }

.b3__table th:nth-child(3),
.b3__table td:nth-child(3){ width:32%; }

@media (max-width: 720px){
  .b3{ padding:40px 0; }
  .b3__title{ font-size:22px; }

  .b3__table th:nth-child(1),
  .b3__table td:nth-child(1){ width:44%; }
  
  .b3__table th:nth-child(2),
  .b3__table td:nth-child(2){ width:22%; }
  
  .b3__table th:nth-child(3),
  .b3__table td:nth-child(3){ width:34%; }
}

@media (max-width: 520px){
  .b3__tableWrap{ overflow:auto; }
  .b3__table{ min-width:640px; table-layout:auto; }
}


/* Блок коммерческой*/

.cta-mini{
  margin: 24px 0 40px;
}
.cta-mini__inner{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
  border-radius:14px;
  background: linear-gradient(135deg, #f2f8ff 0%, #f7fff8 100%);
  border:1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.cta-mini__title{
  margin:0 0 6px;
  font-size:18px;
  line-height:1.2;
}
.cta-mini__desc{
  margin:0;
  color: rgba(0,0,0,.7);
  font-size:14px;
}
.cta-mini__actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:8px;
  min-width: 220px;
}
.cta-mini__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  background:#0f6b59;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  transition:.2s ease;
  width: 100%;
}
.cta-mini__btn:hover{ background:#1667db; }
.cta-mini__note{
  font-size:12px;
  color: rgba(0,0,0,.55);
}
@media (max-width: 768px){
  .cta-mini__inner{ flex-direction:column; align-items:stretch; }
  .cta-mini__actions{ align-items:stretch; min-width:auto; }
}





/* Блок 4 */

/* ===== Block 4: Industries ===== */
.industries {
  --container: 1120px;
  --padY: clamp(60px, 6vw, 80px);
  --bg1: #ffffff;
  --bg2: #f6f8fb;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.7);
  --card: #ffffff;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadowHover: 0 14px 44px rgba(15, 23, 42, 0.12);
  --radius: 12px;
  --accent: #2f7bf6; /* замените на акцент вашего сайта */

  padding: var(--padY) 0;
  color: var(--text);
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(47, 123, 246, 0.10), transparent 60%),
    radial-gradient(900px 400px at 90% 20%, rgba(34, 197, 94, 0.07), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg2));
}

.industries__container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.industries__head {
  text-align: center;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.industries__title {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.industries__subtitle {
  margin: 12px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  min-height: 130px;

  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.industry-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(47, 123, 246, 0.10);
  transition: background-color 200ms ease, color 200ms ease;
}

.industry-card__icon svg {
  width: 30px;
  height: 30px;
}

.industry-card__title {
  margin: 14px 0 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadowHover);
  border-color: rgba(47, 123, 246, 0.25);
}

.industry-card:hover .industry-card__icon {
  background: rgba(47, 123, 246, 0.14);
}

/* Tablet */
@media (max-width: 900px) {
  .industries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 560px) {
  .industries__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industry-card {
    padding: 18px 16px;
    min-height: 116px;
  }
}


/*Блок 6-7 */

/* ===== Lampa-B: blocks 6–7 ===== */
:root{
  --lb-text:#0f172a;
  --lb-muted:#64748b;
  --lb-line:#e9eef5;
  --lb-card:#ffffff;
  --lb-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  --lb-radius:14px;
  --lb-brand:#0b5b4b;
  --lb-accent:#0ea5a4;
  --lb-soft:#f6fbfb;
}

/* контейнер секции (можно убрать background/shadow, если на сайте уже есть) */
.lb-section{
  background:#fff;
  border:1px solid var(--lb-line);
  border-radius: calc(var(--lb-radius) + 4px);
  box-shadow: var(--lb-shadow);
  padding: 28px;
}

.lb-section + .lb-section{ margin-top: 18px; }

.lb-section__title{
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--lb-text);
}

.lb-section__lead{
  margin-top: 10px;
  color: var(--lb-muted);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 72ch;
}

/* ===== Block 6 cards ===== */
.lb-cards{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lb-card{
  background: var(--lb-card);
  border: 1px solid var(--lb-line);
  border-radius: var(--lb-radius);
  padding: 16px;
  min-height: 132px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.lb-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
  border-color: #dbe5f3;
}

.lb-card__head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 10px;
}

.lb-ico{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, var(--lb-soft), #fff);
  border: 1px solid #dff2f1;
  color: var(--lb-brand);
  flex: 0 0 36px;
}
.lb-ico svg{ width:18px; height:18px; }

.lb-card__title{
  font-size: 15px;
  font-weight: );
  font-size: 13.5px;
  line-height: 1.5;
}

/* CTA row */
.lb-cta{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--lb-line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.lb-cta__text{
  color: var(--lb-text);
  font-size: 14px;
}

.lb-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 11px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0f6b59, var(--lb-brand));
  border: 1px solid rgba(11, 91, 75, .18);
  color:#fff;
  font-weight: 600;
  text-decoration:none;
  transition: filter .15s ease, transform .15s ease;
  white-space: nowrap;
}
.lb-btn:hover{ filter: brightness(1.03); transform: translateY(-1px); }
.lb-btn:active{ transform: translateY(0); }

/* ===== Block 7 checklist ===== */
.lb-checklist{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.lb-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--lb-line);
  background: #fff;
}

.lb-check__mark{
  width: 22px;
  height: 22px;
  border-radius: 7px;
  display:grid;
  place-items:center;
  background: #eaf7f6;
  border: 1px solid #cfeeed;
  color: var(--lb-accent);
  flex: 0 0 22px;
  margin-top: 1px;
}
.lb-check__mark svg{ width:14px; height:14px; }

.lb-check__text{
  font-size: 14px;
  line-height: 1.45;
  color: var(--lb-text);
}

.lb-note{
  margin-top: 14px;
  color: var(--lb-muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.lb-cta--compact{ margin-top: 14px; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .lb-cards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .lb-section{ padding: 18px; }
  .lb-cards{ grid-template-columns: 1fr; }
  .lb-checklist{ grid-template-columns: 1fr; }
  .lb-btn{ width: 100%; }
  .lb-cta{ align-items: stretch; }
}



/*************************************************/

/* === Правая карточка товара / 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;
}


