main .btn {
  border-radius: 10px;
}

#page hero-container {
  background-color: #f2f2f2;
  display: block;
  width: 100vw;
  translate: -50% 0;
  margin-left: 50%;

  .js-more {
    font-size: 16px;
  }

  .hero {
    background: transparent;
    max-width: var(--v3-container-max-w);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    height: auto;
    padding-block: 20px 40px;

    .image img {
      height: auto;
    }
  }

  h1 {
    width: 100%;
    color: #4E8028;
    font-size: 60px;
    line-height: 1.3;
    margin-bottom: 5px;
  }

  .content {
    padding-block: 20px !important;
    padding-inline: 20px;
    width: 100%;
    height: auto;
    min-height: 100px;
    min-width: 350px;
    max-width: 360px;

    h2 {
      color: #4E8028;
      margin: 0;
      font-size: 22px;
      font-weight: 600;
    }
  }

  .price {
    font-size: 45px;
    color: #000;

    &:has(.sale)>span:not(.sale) {
      text-decoration: line-through;
      font-size: 30px;
      margin-right: 10px;
    }

    .sale {
      color: #e13333;
    }
  }

  .size-selection {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
    gap: 10px;

    button {
      border: 1px solid #4D4D4D;
      color: #000;
      font-weight: 700;
      border-radius: 10px;
      padding: 10px 5px;

      &.active {
        border-color: #82B338;
      }

      &.highlight {
        background-color: #82B3381A;
        border: 2px solid #82B338;
        position: relative;

        &::before {
          content: "top deal";
          text-transform: uppercase;
          position: absolute;
          top: -8px;
          left: 50%;
          translate: -50% 0;
          width: max-content;
          background-color: #82B338;
          color: #fff;
          font-weight: 600;
          border-radius: 50px;
          padding: 2px 5px;
          font-size: 11px;
          line-height: 1;
        }
      }
    }
  }

  .delivery {
    color: #4E8028;
    margin-bottom: 10px;
  }

  .btn {
    width: auto;
    line-height: 1.3 !important;
    font-size: 24px !important;
    border-radius: 10px;
    padding-block: 10px !important;
    font-weight: 600;
    max-width: 100%;
    white-space: normal;
    margin-inline: auto !important;

    &.js-upload-btn::after {
      padding-block: max(5px, 0.5rem);
      content: "";
      mask: url('https://xxlpix-all.b-cdn.net/icons-huge/camera.svg') no-repeat center / contain;
      aspect-ratio: 1;
      height: 1.8em;
      margin: 0 auto;
      display: block;
      background-color: #fff;
    }
  }

  ul.checks {
    margin-bottom: 0;
    margin-top: 10px;

    li {
      margin-top: 0px;
    }

    li::before {
      color: #F49919 !important;
    }
  }

  @media (min-width: 768px) {
    h1 {
      grid-column: 1 / -1;
    }

    .image {
      grid-column: span 7;
      top: 0;
    }

    .content {
      grid-column: span 5;
    }
  }

  @media (max-width: 768px) {

    h1,
    .image,
    .content {
      grid-column: 1 / -1;
    }

    .image {
      margin-inline: auto;
    }

    .content {
      margin-inline: auto;
    }

    .price {
      font-size: 36px;
    }
  }
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  color: #000;

  @media (width <=768px) {
    & {
      font-size: 26px;
    }
  }
}

.benefitbar-v4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  text-align: center;
  max-width: var(--v3-container-max-w);
  margin-inline: auto;

  @media (width <=768px) {
    & {
      grid-template-columns: 1fr 1fr;
    }
  }
}

.funny-trust-box {
  background-color: #f6f6f6;
  width: 100vw;
  translate: -50% 0;
  margin-left: 50%;
  padding: 40px 20px;

  h2 {
    margin-top: 0;
  }

  star-rating {
    .star-rating {
      display: flex;
      flex-flow: column;

      .stars {
        [class*="star"]::after {
          height: 30px;
        }
      }

      .stars+span {
        font-size: 18px;
      }
    }
  }

  &>div {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    text-align: center;
    gap: 20px;
    align-items: center;
    max-width: var(--v3-container-max-w);
    margin-inline: auto;

    &>div:nth-child(2) {
      display: flex;
      flex-flow: wrap;
      gap: 20px;
      align-items: center;
      justify-content: space-between;

      &>div:nth-child(1) {
        width: 100%;
      }
    }

    @media (width <=768px) {
      & {
        grid-template-columns: 1fr 1fr;
      }

      &>div:nth-child(2) {
        order: 1;
        grid-column: 1 / -1;

        &>div {
          width: calc(50% - 20px);
        }
      }
    }
  }
}

.funny-delivery {
  background-color: #F6F6F6;
  max-width: 600px;
  margin-inline: auto;
  flex-flow: row;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 20px;
  color: #000;

  p {
    font-size: 24px;
    line-height: 1.3;

    @media (width <=768px) {
      & {
        font-size: 20px;
      }
    }
  }

  img {
    height: 70px;
    width: auto;

    @media (width <=768px) {
      & {
        height: 60px;
      }
    }
  }
}

.more {
  &:not(.active) {
    display: none;
  }

  .col {
    font-size: 14px;
    line-height: 1.4em;
  }

  h3 {
    border-bottom: 1px solid #ddd;
    text-align: center;
    padding-bottom: 10px;
  }

  .table-layout-1 td {
    font-size: 14px;
    line-height: 1.4em;
  }
}

#page .trustbar-new:has(.item) {
  width: 100%;
  margin-inline: auto;
  position: static;
  background-color: transparent;

  .item {
    color: #333;
  }

  img {
    opacity: 1;
  }
}