.page-hero {
  position: relative;
  background: radial-gradient(circle at 25% 50%, #36483c, #222e26);
  /* background-color: #36483c; */
  color: white;
  width: 100%;
  aspect-ratio: 4/1;
  margin-bottom: 50px;
}

.page-hero__image {
  position: absolute;
  height: 50%;
  aspect-ratio: 1/1;
  object-fit: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 65%;
}

.page-hero__title-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
  left: 50%;
  max-width: 40%;
}

.page-hero__title-text {
  font-family: "Cormorant Garamond", "Times New Roman", Times, serif;
  font-size: 35px;
  line-height: 45px;
  font-weight: 500;
}

.page-hero__subtitle-text {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}

.design-nav {
  width: 100%;
  padding: 0 50px;
}

.design-nav__item-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  gap: 0.8vw;
}

.selected-collection {
  border: 1px solid black;
}

.breadcrumb-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.breadcrumb-nav__item-wrapper,
.breadcrumb-nav__item-count {
  display: flex;
  flex-direction: row;
  padding: 0 50px;
  margin-bottom: 20px;
}

.breadcrumb-nav__item,
.breadcrumb-nav__item-count {
  color: black;
  font-size: 14px;
  text-decoration: none;
  list-style: none;
}

.breadcrumb-nav__item::after {
  content: "/";
  margin: 5px;
  color: black;
}

.breadcrumb-nav__item:last-child::after {
  content: "";
}

/* best sellers catalogue */

.video-section__item {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  border: 1px solid lightgray;
}

.video-section__video {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 1/1;
  scale: 1.05;
  transition: transform 0.3s ease;
}

.video-section__item:hover .video-section__video {
  transform: scale(1.05);
}

.catalogue {
  padding-bottom: 50px;
}

/* Phone Screen */

@media (max-width: 1024px) {
  .page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: static;
    aspect-ratio: 1/1;
    padding: 25px;
    margin-bottom: 0;
  }

  .page-hero__image {
    position: static;
    height: 30%;
    transform: none;
    right: 65%;
    margin-bottom: 20px;
  }

  .page-hero__title-wrapper {
    position: static;
    text-align: center;
    transform: none;
    max-width: none;
    width: 100%;
  }

  .page-hero__subtitle-text {
    font-size: 14px;
  }

  .design-nav__item-name {
    font-size: 14px;
  }

  .design-nav {
    padding: 25px;
    width: 100%;
  }

  .design-nav::-webkit-scrollbar {
    display: none;
  }

  .design-nav__item-wrapper {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 30vw;

    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;

    justify-content: start;
    margin-bottom: 0;
    gap: 10px;
  }

  .breadcrumb-nav__item-wrapper,
  .breadcrumb-nav__item-count {
    padding: 0 25px;
  }

  .breadcrumb-nav__item,
  .breadcrumb-nav__item-count {
    font-size: 12px;
  }

  .catalogue {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 25px;
  }

  .catalogue-item {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
  }

  .catalogue-item__image-link {
    display: none;
  }

  .catalogue-item__overlay {
    position: static;
    display: flex;
    border: none;
    padding: 0 0 25px 0;
  }

  .catalogue-item:hover .catalogue-item__overlay {
    display: flex;
  }

  .favorite-button {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 10px;
    right: 10px;
    width: 20%;
    aspect-ratio: 1/1;
    background-color: white;
    border: 1px solid lightgray;
    border-radius: 100%;
    z-index: 1000;
    cursor: pointer;
  }

  .favorite-button img {
    opacity: 0.5;
  }

  .catalogue-item__button {
    width: 100%;
    text-align: center;
  }

  .selected-collection {
    border: 1px solid black;
  }
}

/* Tablet Portrait Screen */
@media (min-width: 769px) and (max-width: 1024px) {
  .page-hero {
    aspect-ratio: 2/1;
    padding: 0 50px;
  }

  .page-hero__subtitle-text {
    font-size: 16px;
    line-height: 26px;
  }

  .design-nav {
    padding: 50px;
  }

  .design-nav__item-wrapper {
    grid-auto-columns: 25vw;
  }

  .breadcrumb-nav__item-wrapper,
  .breadcrumb-nav__item-count {
    padding: 0 50px;
  }

  .catalogue {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 50px;
  }

  .catalogue-item__image-link {
    display: none;
  }

  .catalogue-item__overlay {
    position: static;
    display: flex;
    border: none;
    padding: 0 0 25px 0;
  }
}

/* Tablet Landscape Screen */
@media (min-width: 1025px) and (max-width: 1399px) {
}
