/* Main content */
/* Breadcrumbs */
.about-us-page .breadcrumb-wrapper {
  padding: 141px 0 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 1920px;
  margin: auto;
  transition: padding 0.4s ease;
}
.about-us-page .breadcrumb-wrapper .container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 157px;
  transition: gap 0.4s ease;
}
.about-us-page .breadcrumb-wrapper img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.about-us-page .breadcrumb-wrapper .about-us-hero-mobile {
  display: none;
}
.about-us-page .breadcrumb-wrapper .h3 {
  max-width: 713px;
}
/* Inner content */
.inner-content-section {
  padding-top: 70px;
  max-width: 1440px;
  margin: auto;
  transition: padding-top 0.4s ease;
}
.inner-content-section > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.inner-content-section > div img {
  width: 100%;
  height: 100%;
  max-height: 684px;
  -o-object-fit: cover;
  object-fit: cover;
}
.inner-content-section > div > div {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 100px 24px 100px 32px;
  transition: gap 0.4s ease, padding 0.4s ease;
}
.inner-content-section > div:nth-child(2) > div {
  padding: 100px 32px 100px 24px;
}
.inner-content-section > div:nth-child(2) {
  position: relative;
}
.inner-content-section > div:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100vw;
  max-width: 1920px;
  background: var(--brand2);
  z-index: -1;
}
/* Our story section */
.our-story-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  gap: 44px;
  max-width: 800px;
  text-align: center;
  position: relative;
  padding: 120px 24px;
  transition: padding 0.4s ease, gap 0.4s ease;
}
.our-story-section::before {
  content: "";
  position: absolute;
  background: var(--brand2);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100vw;
  max-width: 1920px;
  z-index: -1;
}
/* Popular products section */
.popular-products-section {
  margin-top: 120px;
  transition: margin-top 0.4s ease;
}
.popular-products-section > div {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.popular-products-section .section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.popular-products-section .section-title .view-all-desk {
  margin: 12px 32px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 1px solid var(--black1);
  transition: border-color 0.4s ease;
}
.popular-products-section .view-all-mob {
  display: none;
}
.popular-products-section .section-title .view-all-desk span,
.popular-products-section .view-all-mob span {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.popular-products-section ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  transition: gap 0.4s ease;
}
.popular-products-section .custom-rating {
  display: flex;
  gap: 5px;
}
.popular-products-section .products .mobile-view {
  display: none;
}

.popular-products-section .product-card-hover .view-product {
  width: unset;
}
.popular-products-section a .discount-badge {
  text-transform: uppercase;
  background: var(--brand1);
  padding: 2px 6px;
  border-radius: 4px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 10px;
  left: 10px;
}

.popular-products-section a .price {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  margin-right: auto;
}
.popular-products-section a .price ins {
  text-decoration: none;
}
.popular-products-section a .price del {
  color: var(--grey1);
}
/* Responsive */
@media (max-width: 768px) {
  /* Breadcrumbs */
  .about-us-page .breadcrumb-wrapper {
    padding: 116px 0 24px;
  }
  .about-us-page .breadcrumb-wrapper .container {
    gap: 142px;
  }
  .about-us-page .breadcrumb-wrapper img {
    -o-object-position: 70% center;
    object-position: 70% center;
  }
  /* Breadcrumbs */
  .about-us-page .breadcrumb-wrapper .about-us-hero-desktop {
    display: none;
  }
  .about-us-page .breadcrumb-wrapper .about-us-hero-mobile {
    display: block;
    -o-object-position: right;
    object-position: right;
  }
  /* Inner content */
  .inner-content-section {
    padding-top: 50px;
  }
  .inner-content-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .inner-content-section > div:nth-child(2) {
    flex-direction: column-reverse;
  }
  .inner-content-section > div > div {
    gap: 24px;
    padding: 50px 16px;
  }
  .inner-content-section > div:nth-child(2) > div {
    padding: 50px 16px;
  }
  .inner-content-section > div:nth-child(1) > div {
    padding: 32px 16px;
  }

  /* Our story section */
  .our-story-section {
    gap: 32px;
    padding: 50px 16px;
  }
  /* Popular products */
  .popular-products-section {
    margin-top: 100px;
  }
  .popular-products-section .section-title .view-all-desk {
    display: none;
  }
  .popular-products-section .view-all-mob {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-bottom: 1px solid var(--black1);
    transition: border-color 0.4s ease;
  }
  .popular-products-section ul {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    -moz-column-gap: 12px;
    column-gap: 12px;
  }

  .popular-products-section .products .mobile-view {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
