.alpha-wrap * {
    box-sizing: border-box;
  }

  .alpha-wrap {
    width: 100%;
    max-width: 576px;
    margin: 0 auto;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    overflow: hidden;
  }

  .alpha-header {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
    border-bottom: 1px solid #e8e8e8;
    background: #f8f8f8;
  }

  .alpha-menu {
    width: 26px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .alpha-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: #2c2f39;
    border-radius: 2px;
  }

  .alpha-logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #3a3947;
    line-height: 1;
  }

  .alpha-logo sup {
    font-size: 12px;
    top: -0.8em;
    position: relative;
  }

  .alpha-icons {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .alpha-search,
  .alpha-bag {
    position: relative;
    display: inline-block;
  }

  .alpha-search {
    width: 21px;
    height: 21px;
    border: 2px solid #222;
    border-radius: 50%;
  }

  .alpha-search::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 2px;
    background: #222;
    right: -6px;
    bottom: -2px;
    transform: rotate(45deg);
    border-radius: 2px;
  }

  .alpha-bag {
    width: 20px;
    height: 22px;
    border: 2px solid #222;
    border-radius: 2px;
  }

  .alpha-bag::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 7px;
    border: 2px solid #222;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    left: 50%;
    transform: translateX(-50%);
    top: -7px;
    background: transparent;
  }

  .alpha-promo {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    padding: 22px 10px 16px;
    background: #f3f3f3;
    line-height: 1.15;
  }

  .alpha-promo .blue {
    color: #10bdd1;
  }

  .alpha-promo .black {
    color: #111;
  }

  .alpha-slider {
    position: relative;
    background: linear-gradient(180deg, #dfe7c7 0%, #d6ddbf 100%);
    overflow: hidden;
  }

  .alpha-track {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .alpha-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease;
  }

  .alpha-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .alpha-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .alpha-next {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(40, 52, 30, 0.45);
    color: #fff;
    font-size: 34px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    z-index: 5;
  }

  .alpha-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
  }

  .alpha-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.28);
    display: block;
    border: 0;
    padding: 0;
    cursor: pointer;
  }

  .alpha-dots button.active {
    background: #111;
  }

  .alpha-info {
    background: #f3f3f3;
    padding: 24px 24px 22px;
  }

  .alpha-title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .alpha-check {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 6px;
    background: #72d89b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
    margin-top: 3px;
  }

  .alpha-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.6px;
    color: #0c0c0c;
  }

  .alpha-title .anchor {
    color: #3f8fff;
  }

  .alpha-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
  }

  .alpha-stars {
    display: flex;
    gap: 1px;
    font-size: 21px;
    line-height: 1;
  }

  .alpha-stars span {
    color: #ffc51a;
  }

  .alpha-stars .half {
    position: relative;
    color: #ddd;
  }

  .alpha-stars .half::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #ffc51a;
  }

  .alpha-reviews,
  .alpha-happy {
    font-size: 17px;
    color: #223;
    line-height: 1;
  }

  .alpha-happy {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .mini-check {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    background: #72d89b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
  }

  .alpha-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
  }

  .alpha-new-price {
    color: #19c8a3;
    font-size: 29px;
    font-weight: 800;
    line-height: 1;
  }

  .alpha-old-price {
    color: #111;
    font-size: 20px;
    font-weight: 700;
    text-decoration: line-through;
    line-height: 1;
  }

  .alpha-save {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1fd1a9;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-radius: 8px;
    padding: 7px 12px;
    line-height: 1;
  }

  @media (max-width: 480px) {
    .alpha-header {
      height: 78px;
      padding: 0 18px;
    }

    .alpha-logo {
      font-size: 28px;
    }

    .alpha-promo {
      font-size: 24px;
      padding: 18px 10px 14px;
    }

    .alpha-info {
      padding: 22px 22px 20px;
    }

    .alpha-title {
      font-size: 31px;
    }

    .alpha-new-price {
      font-size: 27px;
    }

    .alpha-old-price {
      font-size: 18px;
    }
  }
  .alpha-prev{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:rgba(40,52,30,0.45);
  color:#fff;
  font-size:34px;
  cursor:pointer;
  line-height:1;
  z-index:5;
}
 .am-offer-box{
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(180deg,#fbfbfd 0%,#fff5f5 100%);
    border: 1px solid #ececff;
    border-radius: 22px;
    padding: 18px 16px 16px;
    box-shadow: 0 8px 24px rgba(16,24,40,.06);
    font-family: Arial, Helvetica, sans-serif;
  }

  .am-top h2{
    margin: 0 0 14px;
    text-align: center;
    color: #0b1d46;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
  }

  .am-benefits{
    display: grid;
    gap: 10px;
    color: #0b1d46;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
  }

  .am-divider{
    height: 1px;
    background: #dfe4f3;
    margin: 14px 0 18px;
  }

  .am-title{
    text-align: center;
    color: #0b1d46;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .am-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .am-card{
    position: relative;
    background: #fff;
    border: 1.5px solid #e3e7f4;
    border-radius: 18px;
    padding: 18px 12px 16px;
    text-align: center;
  }

  .am-card-best{
    border: 2px solid #ff5757;
    background: #fff8f8;
  }

  .am-badge{
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff5757;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .am-pack{
    color: #0b1d46;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .am-old{
    color: #9aa3b2;
    font-size: 15px;
    text-decoration: line-through;
    margin-bottom: 4px;
  }

  .am-price{
    color: #000;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 10px;
  }

  .am-sub{
    color: #6d7f9d;
    font-size: 14px;
    line-height: 1.25;
  }

  .am-save{
    color: #10a63a;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800;
  }

  .am-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 62px;
    margin-top: 16px;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(180deg, #c80000 0%, #920f0f 100%);
    color: #fff;
    font-size: 19px;
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(229,31,31,.22);
  }

  @media (max-width: 520px){
    .am-offer-box{
      padding: 16px 14px 14px;
      border-radius: 18px;
    }

    .am-top h2{
      font-size: 20px;
    }

    .am-benefits{
      font-size: 14px;
    }

    .am-title{
      font-size: 16px;
    }

    .am-grid{
      gap: 10px;
    }

    .am-card{
      border-radius: 16px;
      padding: 16px 10px 14px;
    }

    .am-pack{
      font-size: 15px;
    }

    .am-price{
      font-size: 25px;
    }

    .am-btn{
      min-height: 58px;
      font-size: 17px;
    }
  }
  .order-timeline{
  width:100%;
  background:#f5f5f5;
  padding:25px 10px;
  text-align:center;
  font-family:Arial, Helvetica, sans-serif;
}

.timeline{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:20px;
}

.step{
  text-align:center;
  width:120px;
}

.icon{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  margin:auto;
}

.date{
  font-weight:700;
  margin-top:10px;
}

.status{
  color:#666;
  font-size:14px;
}

.line{
  height:2px;
  width:80px;
  background:#333;
}

.promo{
  font-size:34px;
  font-weight:800;
}

.promo .blue{
  color:#1e36ff;
}

@media(max-width:600px){

.timeline{
  gap:6px;
}

.line{
  width:40px;
}

.step{
  width:90px;
}

.promo{
  font-size:28px;
}

}
.bp-order-box{
    max-width:560px;
    margin:0 auto;
    background:#fefefe;
    border:1px solid #dfe5f2;
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
    font-family:Arial,Helvetica,sans-serif;
  }

  .bp-order-head{
    background:#325409;
    color:#fff;
    text-align:center;
    padding:22px 18px 16px;
    border-radius:0 0 0 0;
  }

  .bp-order-title{
    font-size:22px;
    line-height:1.12;
    font-weight:900;
    margin-bottom:8px;
  }

  .bp-order-sub{
    font-size:15px;
    line-height:1.2;
    font-weight:700;
    opacity:.98;
  }

  .bp-order-form{
    padding:18px 18px 20px;
    background:#fff;
  }

  .bp-label{
    display:block;
    margin:0 0 8px;
    color:#071a4a;
    font-size:17px;
    font-weight:900;
  }

  .bp-input{
    width:100%;
    height:62px;
    border:1.5px solid #dfe5f2;
    border-radius:18px;
    background:#fff;
    padding:0 18px;
    font-size:17px;
    color:#101828;
    margin-bottom:14px;
    outline:none;
    box-sizing:border-box;
  }

  .bp-input::placeholder{
    color:#a3acba;
  }

  .bp-input:focus{
    border-color:#26439d;
    box-shadow:0 0 0 3px rgba(38,67,157,.08);
  }

  .bp-select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'><path d='M5 7.5L10 12.5L15 7.5' stroke='%23071A4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat:no-repeat;
    background-position:right 18px center;
    padding-right:48px;
  }

  .bp-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    margin:2px 0 16px;
    padding:14px 12px 12px;
    border:1px dashed #d9e0ee;
    border-radius:18px;
    background:#fbfcff;
  }

  .bp-feature{
    text-align:center;
    color:#071a4a;
    font-size:14px;
    line-height:1.25;
    font-weight:900;
  }

  .bp-btn{
    width:100%;
    border:0;
    border-radius:999px;
    background: linear-gradient(180deg, #c80000 0%, #920f0f 100%);
    color:#fff;
    min-height:74px;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    box-shadow:0 12px 24px rgba(235,31,37,.25);
    cursor:pointer;
  }

  .bp-btn-main{
    font-size:22px;
    line-height:1.05;
    font-weight:900;
    text-align:center;
  }

  .bp-btn-side{
    font-size:14px;
    line-height:1.1;
    font-weight:800;
    text-align:center;
  }

  .bp-note{
    margin-top:14px;
    text-align:center;
    color:#6f7c92;
    font-size:13px;
    line-height:1.35;
  }

  @media (max-width: 560px){
    .bp-order-box{
      border-radius:26px;
    }

    .bp-order-head{
      padding:18px 14px 14px;
    }

    .bp-order-title{
      font-size:18px;
    }

    .bp-order-sub{
      font-size:13px;
    }

    .bp-order-form{
      padding:16px 14px 18px;
    }

    .bp-label{
      font-size:15px;
    }

    .bp-input{
      height:56px;
      border-radius:16px;
      font-size:16px;
      margin-bottom:12px;
    }

    .bp-features{
      grid-template-columns:1fr 1fr 1fr;
      gap:6px;
      padding:12px 8px 10px;
    }

    .bp-feature{
      font-size:12px;
    }

    .bp-btn{
      min-height:70px;
      grid-template-columns:1fr 1fr;
      padding:10px 14px;
    }

    .bp-btn-main{
      font-size:17px;
    }

    .bp-btn-side{
      font-size:12px;
    }
  }
  .bp-healing-block *{
    box-sizing:border-box;
  }

  .bp-healing-block{
    width:100%;
    padding:0;
    font-family:Arial, Helvetica, sans-serif;
  }

  .bp-healing-inner{
    max-width:560px;
    margin:0 auto;
    padding:18px 14px 10px;
    background:#ffffff;
  }

  .bp-healing-title{
    margin:0 0 16px;
    color:#111111;
    text-align:center;
    font-size:24px;
    line-height:1.15;
    font-weight:900;
    letter-spacing:-0.3px;
  }

  .bp-healing-image-wrap{
    margin:0 0 16px;
    border-radius:14px;
    overflow:hidden;
    background:#f3f7f2;
  }

  .bp-healing-image{
    display:block;
    width:100%;
    height:auto;
  }

  .bp-healing-text{
    color:#1a1a1a;
    text-align:center;
    font-size:17px;
    line-height:1.45;
    font-weight:700;
  }

  .bp-healing-text p{
    margin:0 0 10px;
  }

  .bp-healing-last{
    margin-bottom:0;
  }

  @media (max-width: 480px){
    .bp-healing-inner{
      padding:14px 10px 8px;
    }

    .bp-healing-title{
      font-size:19px;
      line-height:1.18;
      margin-bottom:12px;
    }

    .bp-healing-image-wrap{
      margin-bottom:12px;
      border-radius:12px;
    }

    .bp-healing-text{
      font-size:14px;
      line-height:1.4;
    }
  }
  .bp-compare-block *{
    box-sizing:border-box;
  }

  .bp-compare-block{
    width:100%;
    font-family:Arial, Helvetica, sans-serif;
    padding:0;
  }

  .bp-compare-inner{
    max-width:560px;
    margin:0 auto;
    background:#ffffff;
    padding:18px 14px 14px;
  }

  .bp-compare-title{
    margin:0 0 16px;
    text-align:center;
    color:#111111;
    font-size:24px;
    line-height:1.16;
    font-weight:900;
    letter-spacing:-0.4px;
  }

  .bp-compare-image-wrap{
    margin:0 0 16px;
    background:#f5f5f5;
    border-radius:16px;
    overflow:hidden;
  }

  .bp-compare-image{
    display:block;
    width:100%;
    height:auto;
  }

  .bp-compare-text{
    text-align:center;
    color:#1b1b1b;
    font-size:18px;
    line-height:1.35;
    font-weight:800;
    letter-spacing:-0.2px;
  }

  @media (max-width: 480px){
    .bp-compare-inner{
      padding:14px 10px 10px;
    }

    .bp-compare-title{
      font-size:18px;
      line-height:1.2;
      margin-bottom:12px;
    }

    .bp-compare-image-wrap{
      margin-bottom:12px;
      border-radius:14px;
    }

    .bp-compare-text{
      font-size:14px;
      line-height:1.4;
    }
  }
  .bp-review-section{
max-width:520px;
margin:auto;
font-family:Arial;
padding:20px 12px;
}

.bp-review-title{
font-size:22px;
font-weight:800;
text-align:center;
margin-bottom:20px;
}

.bp-review-slider{
position:relative;
overflow:hidden;
}

.bp-review-track{
display:flex;
transition:0.5s;
}

.bp-review-slide{
min-width:100%;
display:none;
}

.bp-review-slide.active{
display:block;
}

.bp-review-img{
width:100%;
border-radius:14px;
margin-bottom:14px;
}

.bp-review-text{
font-size:16px;
line-height:1.5;
color:#333;
}

.bp-review-author{
margin-top:12px;
font-weight:700;
}

.bp-review-nav{
display:flex;
justify-content:center;
gap:14px;
margin-top:16px;
}

.bp-review-nav button{
width:42px;
height:42px;
border-radius:50%;
border:none;
background:#2c7a2c;
color:#fff;
font-size:24px;
cursor:pointer;
}
.bp-compare-block *{
    box-sizing:border-box;
  }

  .bp-compare-block{
    width:100%;
    font-family:Arial, Helvetica, sans-serif;
    padding:0;
  }

  .bp-compare-inner{
    max-width:560px;
    margin:0 auto;
    background:#ffffff;
    padding:18px 14px 14px;
  }

  .bp-compare-title{
    margin:0 0 16px;
    text-align:center;
    color:#111111;
    font-size:24px;
    line-height:1.16;
    font-weight:900;
    letter-spacing:-0.4px;
  }

  .bp-compare-image-wrap{
    margin:0 0 16px;
    background:#f5f5f5;
    border-radius:16px;
    overflow:hidden;
  }

  .bp-compare-image{
    display:block;
    width:100%;
    height:auto;
  }

  .bp-compare-text{
    text-align:center;
    color:#1b1b1b;
    font-size:18px;
    line-height:1.35;
    font-weight:800;
    letter-spacing:-0.2px;
  }

  @media (max-width: 480px){
    .bp-compare-inner{
      padding:14px 10px 10px;
    }

    .bp-compare-title{
      font-size:18px;
      line-height:1.2;
      margin-bottom:12px;
    }

    .bp-compare-image-wrap{
      margin-bottom:12px;
      border-radius:14px;
    }

    .bp-compare-text{
      font-size:14px;
      line-height:1.4;
    }
  }
  .bp-rootsoft-block *{
    box-sizing:border-box;
  }

  .bp-rootsoft-block{
    width:100%;
    font-family:Arial, Helvetica, sans-serif;
  }

  .bp-rootsoft-inner{
    max-width:560px;
    margin:0 auto;
    background:#fff;
    padding:18px 14px 14px;
  }

  .bp-rootsoft-title{
    margin:0 0 14px;
    text-align:center;
    color:#4f6f16;
    font-size:24px;
    line-height:1.12;
    font-weight:900;
    letter-spacing:-0.3px;
  }

  .bp-rootsoft-image-wrap{
    margin:0 0 14px;
    border-radius:16px;
    overflow:hidden;
    background:#f6f8f3;
  }

  .bp-rootsoft-image{
    display:block;
    width:100%;
    height:auto;
  }

  .bp-rootsoft-text{
    text-align:center;
    color:#111;
    font-size:17px;
    line-height:1.45;
    font-weight:700;
  }

  .bp-rootsoft-text p{
    margin:0 0 10px;
  }

  .bp-rootsoft-last{
    margin-bottom:0;
  }

  @media (max-width:480px){
    .bp-rootsoft-inner{
      padding:14px 10px 10px;
    }

    .bp-rootsoft-title{
      font-size:19px;
      margin-bottom:12px;
    }

    .bp-rootsoft-image-wrap{
      margin-bottom:12px;
      border-radius:14px;
    }

    .bp-rootsoft-text{
      font-size:14px;
      line-height:1.4;
    }
  }
   .bp-barrier-block *{
    box-sizing:border-box;
  }

  .bp-barrier-block{
    width:100%;
    font-family:Arial, Helvetica, sans-serif;
  }

  .bp-barrier-inner{
    max-width:560px;
    margin:0 auto;
    background:#fff;
    padding:18px 14px 14px;
  }

  .bp-barrier-title{
    margin:0 0 14px;
    text-align:center;
    color:#55771b;
    font-size:24px;
    line-height:1.12;
    font-weight:900;
    letter-spacing:-0.3px;
  }

  .bp-barrier-image-wrap{
    margin:0 0 14px;
    border-radius:16px;
    overflow:hidden;
    background:#f6f8f3;
  }

  .bp-barrier-image{
    display:block;
    width:100%;
    height:auto;
  }

  .bp-barrier-text{
    text-align:center;
    color:#111;
    font-size:17px;
    line-height:1.45;
    font-weight:700;
  }

  .bp-barrier-text p{
    margin:0 0 10px;
  }

  .bp-barrier-last{
    margin-bottom:0;
  }

  @media (max-width:480px){
    .bp-barrier-inner{
      padding:14px 10px 10px;
    }

    .bp-barrier-title{
      font-size:19px;
      margin-bottom:12px;
    }

    .bp-barrier-image-wrap{
      margin-bottom:12px;
      border-radius:14px;
    }

    .bp-barrier-text{
      font-size:14px;
      line-height:1.4;
    }
  }
  .bp-ingredients-text-block *{
    box-sizing:border-box;
  }

  .bp-ingredients-text-block{
    width:100%;
    font-family:Arial, Helvetica, sans-serif;
  }

  .bp-ingredients-text-inner{
    max-width:560px;
    margin:0 auto;
    background:#fff;
    padding:18px 14px 14px;
  }

  .bp-ingredients-text-title{
    margin:0 0 16px;
    text-align:center;
    color:#111;
    font-size:24px;
    line-height:1.14;
    font-weight:900;
    letter-spacing:-0.3px;
  }

  .bp-ingredients-group{
    margin-bottom:18px;
    text-align:center;
    color:#222;
  }

  .bp-ingredients-group h3{
    margin:0 0 8px;
    font-size:20px;
    line-height:1.2;
    font-weight:900;
    color:#111;
  }

  .bp-ingredients-group p{
    margin:0;
    font-size:16px;
    line-height:1.5;
    font-weight:500;
  }

  .bp-ingredients-sub{
    margin:10px 0 6px;
    font-size:16px;
    line-height:1.3;
    font-weight:800;
    color:#111;
  }

  .bp-ingredients-last{
    margin-bottom:0;
  }

  @media (max-width:480px){
    .bp-ingredients-text-inner{
      padding:14px 10px 10px;
    }

    .bp-ingredients-text-title{
      font-size:20px;
      margin-bottom:14px;
    }

    .bp-ingredients-group{
      margin-bottom:16px;
    }

    .bp-ingredients-group h3{
      font-size:17px;
    }

    .bp-ingredients-group p,
    .bp-ingredients-sub{
      font-size:14px;
      line-height:1.45;
    }
  }
  .bp-howto{
font-family:Arial, sans-serif;
background:#fff;
padding:20px 14px;
}

.bp-howto-inner{
max-width:560px;
margin:auto;
}

.bp-howto-title{
text-align:center;
font-size:28px;
font-weight:800;
margin-bottom:18px;
}

.bp-howto-steps{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:10px;
margin-bottom:18px;
}

.bp-step{
text-align:center;
position:relative;
}

.bp-step img{
width:100%;
border-radius:50%;
}

.bp-step p{
font-size:13px;
font-weight:600;
margin-top:6px;
}

.bp-num{
position:absolute;
top:-6px;
left:50%;
transform:translateX(-50%);
background:#5c8a1f;
color:#fff;
width:22px;
height:22px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:12px;
font-weight:700;
}

.bp-howto-text{
font-size:15px;
line-height:1.5;
}

.bp-line{
display:flex;
gap:10px;
margin-bottom:10px;
}

.bp-line-num{
background:#5c8a1f;
color:#fff;
min-width:22px;
height:22px;
border-radius:6px;
display:flex;
align-items:center;
justify-content:center;
font-size:13px;
font-weight:700;
margin-top:2px;
}

@media (max-width:600px){

.bp-howto-title{
font-size:22px;
}

.bp-howto-steps{
grid-template-columns:repeat(2,1fr);
}

}
.bp-proof-block *{
    box-sizing:border-box;
  }

  .bp-proof-block{
    width:100%;
    font-family:Arial, Helvetica, sans-serif;
    background:#fff;
  }

  .bp-proof-inner{
    max-width:560px;
    margin:0 auto;
    padding:16px 12px 18px;
  }

  .bp-proof-topline{
    text-align:center;
    font-size:22px;
    line-height:1.15;
    font-weight:900;
    color:#111;
    margin-bottom:14px;
  }

  .bp-proof-hero{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:12px;
    align-items:center;
    background:#f7f7f7;
    border-radius:18px 18px 0 0;
    padding:16px 14px 12px;
  }

  .bp-proof-left{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .bp-proof-badge{
    width:120px;
    height:120px;
    border-radius:50%;
    background:radial-gradient(circle at center,#d2f08b 0%,#79a92e 58%,#4d7a11 100%);
    color:#fff;
    font-size:15px;
    line-height:1.1;
    font-weight:900;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:14px;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
  }

  .bp-proof-right{
    text-align:left;
  }

  .bp-proof-title{
    color:#5a8a16;
    font-size:18px;
    line-height:1.15;
    font-weight:900;
  }

  .bp-proof-number{
    color:#111;
    font-size:58px;
    line-height:1;
    font-weight:900;
    margin:4px 0;
  }

  .bp-proof-subtitle{
    color:#5a8a16;
    font-size:20px;
    line-height:1.1;
    font-weight:900;
  }

  .bp-proof-image-wrap{
    background:#f7f7f7;
    overflow:hidden;
  }

  .bp-proof-image{
    display:block;
    width:100%;
    height:auto;
  }

  .bp-proof-stats{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:12px;
    align-items:start;
    background:#fff;
    padding:14px 6px 8px;
  }

  .bp-stat-big{
    text-align:left;
    padding-left:6px;
  }

  .bp-stat-num{
    color:#111;
    font-size:34px;
    line-height:1.05;
    font-weight:900;
    margin-bottom:8px;
  }

  .bp-stat-text{
    color:#5a8a16;
    font-size:15px;
    line-height:1.28;
    font-weight:900;
    display:grid;
    gap:12px;
    padding-top:6px;
  }

  .bp-proof-copy{
    text-align:center;
    padding:8px 4px 2px;
  }

  .bp-proof-copy h3{
    margin:12px 0 6px;
    color:#111;
    font-size:20px;
    line-height:1.15;
    font-weight:900;
  }

  .bp-proof-copy p{
    margin:0;
    color:#222;
    font-size:16px;
    line-height:1.45;
    font-weight:500;
  }

  .bp-reviews-title{
    text-align:center;
    margin:18px 0 12px;
    font-size:24px;
    line-height:1.1;
    font-weight:900;
    color:#111;
  }

  .bp-reviews-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .bp-review-card{
    border:1px solid #e8ebf1;
    border-radius:16px;
    background:#fff;
    padding:14px 12px;
    box-shadow:0 6px 18px rgba(16,24,40,.05);
  }

  .bp-review-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:8px;
    margin-bottom:8px;
  }

  .bp-review-name{
    color:#111;
    font-size:15px;
    line-height:1.2;
    font-weight:900;
  }

  .bp-review-stars{
    color:#f5a623;
    font-size:15px;
    line-height:1;
    white-space:nowrap;
  }

  .bp-review-card p{
    margin:0;
    color:#333;
    font-size:14px;
    line-height:1.42;
    font-weight:500;
  }

  @media (max-width:560px){
    .bp-proof-inner{
      padding:14px 10px 16px;
    }

    .bp-proof-topline{
      font-size:18px;
    }

    .bp-proof-hero{
      grid-template-columns:96px 1fr;
      gap:10px;
      padding:12px 10px 10px;
    }

    .bp-proof-badge{
      width:86px;
      height:86px;
      font-size:10px;
      padding:10px;
    }

    .bp-proof-title{
      font-size:15px;
    }

    .bp-proof-number{
      font-size:42px;
    }

    .bp-proof-subtitle{
      font-size:17px;
    }

    .bp-proof-stats{
      grid-template-columns:100px 1fr;
      gap:8px;
      padding:12px 0 4px;
    }

    .bp-stat-num{
      font-size:28px;
      margin-bottom:6px;
    }

    .bp-stat-text{
      font-size:13px;
      gap:10px;
      padding-top:4px;
    }

    .bp-proof-copy h3{
      font-size:17px;
    }

    .bp-proof-copy p{
      font-size:14px;
    }

    .bp-reviews-title{
      font-size:20px;
    }

    .bp-reviews-grid{
      grid-template-columns:1fr;
      gap:10px;
    }

    .bp-review-card{
      padding:12px 10px;
      border-radius:14px;
    }

    .bp-review-name{
      font-size:14px;
    }

    .bp-review-card p{
      font-size:13px;
    }
  }
  .bp-proof-compact{
display:flex;
flex-direction:column;
gap:6px;
font-family:Arial, sans-serif;
font-size:15px;
line-height:1.3;
}

.bp-item{
display:flex;
align-items:center;
gap:6px;
font-weight:600;
}
.timeline{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
font-family:Arial;
margin:10px 0;
}

.step{
text-align:center;
font-size:12px;
}

.icon{
font-size:18px;
margin-bottom:3px;
}

.date{
font-weight:700;
font-size:12px;
}

.status{
font-size:11px;
color:#555;
}

.line{
width:40px;
height:2px;
background:#ccc;
}
.site-footer{
background:#1f2a14;
color:#fff;
padding:30px 15px;
font-family:Arial;
}

.footer-inner{
max-width:600px;
margin:auto;
text-align:center;
}

.footer-brand h3{
margin-bottom:6px;
font-size:20px;
}

.footer-brand p{
opacity:0.8;
font-size:14px;
margin-bottom:20px;
}

.footer-links{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
margin-bottom:20px;
}

.footer-links a{
color:#b7d28c;
text-decoration:none;
font-size:13px;
}

.footer-links a:hover{
text-decoration:underline;
}

.footer-contact{
font-size:13px;
line-height:1.6;
margin-bottom:20px;
opacity:0.9;
}

.footer-copy{
font-size:12px;
opacity:0.7;
border-top:1px solid rgba(255,255,255,0.15);
padding-top:15px;
}
.product-specs{
  padding:40px 20px;
  background:#fff;
}

.product-specs__container{
  max-width:900px;
  margin:auto;
}

.product-specs__title{
  font-size:26px;
  font-weight:700;
  margin-bottom:25px;
}

.product-specs__grid{
  border-top:1px solid #e5e5e5;
}

.product-specs__row{
  display:flex;
  justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid #e5e5e5;
}

.product-specs__name{
  color:#666;
}

.product-specs__value{
  font-weight:600;
}
