.best-seller {
  font-size: 16px;

  .grid {
    display: grid;
    @media (max-width: 767px) {
      gap: 15px;
    }
  }

  .text-primary {
    color: rgba(var(--color-button),var(--alpha-button-background));
  }

  .bg-primary {
    background-color: rgba(var(--color-button),var(--alpha-button-background));
  }

  .space-y-8 > :not([hidden]) ~ :not([hidden]), .brand-story__text > *:not(:first-child) {
    margin-top: 32px;
    margin-bottom: 0;
    @media (max-width: 767px) {
      margin-top: 16px;
    }
  }

  .desktop-hide {
    @media (min-width: 768px) {
      display: none;
    }
  }

  .mobile-hide {
    @media (max-width: 767px) {
      display: none;
    }
  }

  .py-1\.5 {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .best-seller--badge {
    @media (max-width: 767px) {
      display: inline-block;
      margin-bottom: 15px;
    }
  }

  .image-side {
    img {
      aspect-ratio: 1;
      object-fit: cover;
    }
  }

  .best-seller__text {
    margin: 20px 0 0 !important;

    ul {
      @media (max-width: 767px) {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
      }
    }

    p {
      margin: 0 0 25px;
    }
  }

  .text-side {
    @media (max-width: 767px) {
      text-align: center;
    }
  }
}