/* ======= Full Article Block ======= */

.article-full {
    padding: 60px 20px;
    background: #eaf7ee;
}

.article-full-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* Article Image */
.article-full-img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 30px;
    max-height: 420px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}

/* Title */
.article-full-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Intro text */
.article-full-intro {
    font-size: 19px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 40px;
}

/* Section Titles */
.article-full-container h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 40px 0 20px;
    color: #1a1a1a;
}
.article-full-container h3 {
    margin: 20px 0;
}

/* Lists */
.article-list {
    margin-top: 10px;
    padding-left: 20px;
    margin-bottom: 25px;
}

.article-list li {
    margin-bottom: 14px;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.article-list li strong {
    color: #1a1a1a;
}

/* Final phrase */
.article-final {
    margin-top: 40px;
    font-size: 20px;
    text-align: center;
    color: #1a1a1a;
}

/* Mobile */
@media (max-width: 700px) {
    .article-full-container {
        padding: 30px 22px;
    }

    .article-full-title {
        font-size: 30px;
    }

    .article-full-img {
        max-height: 300px;
    }
}

 .order-wrapper {
      max-width: 420px;
      margin: 40px auto;
      padding: 30px 30px 0;
      background: #ffffff;
      border-radius: 16px;
      /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06); */
      font-family: "Inter", sans-serif;
    }

    .order-wrapper h2 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #1c1c1c;
      text-align: center;
      margin-top: 0;
    }

    .order-field {
      display: flex;
      flex-direction: column;
      margin-bottom: 18px;
    }

    .order-field label {
      margin-bottom: 6px;
      font-weight: 500;
      color: #333;
    }

    .order-field input,
    .order-field select {
      padding: 0 15px;
      border: 1px solid #d6d6d6;
      border-radius: 10px;
      font-size: 16px;
      transition: 0.2s;
      height: 44px;
      -webkit-appearance: none;
      appearance: none;
    }

    .order-field input:focus {
      border-color: #32d07a;
      outline: none;
      box-shadow: 0 0 0 3px rgba(50, 208, 122, 0.2);
    }

    .order-btn {
      width: 100%;
      padding: 14px;
      margin-top: 10px;
      background: #32d07a;
      color: #fff;
      border: none;
      font-size: 17px;
      border-radius: 12px;
      cursor: pointer;
      transition: 0.2s;
      font-weight: 600;
      margin-bottom: 7px;
    }

    .order-btn:hover {
      background: #28b869;
    }

    body {
      background: #e8fceb;
    }

    .prod-img {
      width: 100%;
    }

    .price-block {
      text-align: center;
      margin: 20px 0;
      font-size: 22px;
    }

    .price-block b {
      color: red;
      padding-left: 8px;
    }