/* ==================================================
   STYLING Detail Page
   ================================================== */

:root {
  --staff-look-text: #141413;
  --staff-look-muted: #736e63;
  --staff-look-line: #d6d1c7;
  --staff-look-max: 1564px;
}

.staff-look-detail {
  align-items: stretch;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(420px, 550px) minmax(480px, 564px);
  justify-content: center;
  width: 100%;
}

.staff-look-main-media {
  aspect-ratio: 550 / 733;
  background: #f6f4ef;
  display: block;
  margin: 0;
  max-width: 550px;
  overflow: hidden;
  width: 100%;
}

.staff-look-main-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.staff-look-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 733px;
  overflow: hidden;
  padding: 20px 0;
}

.staff-look-profile {
  font-size: 14px;
  line-height: 16.5px;
  margin: 0 0 20px;
  white-space: nowrap;
}

.staff-look-items-section {
  margin: 0;
}

.staff-look-section-title {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 16.8px;
  margin: 0 0 5px;
}

.staff-look-items {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 154px);
  justify-content: space-between;
  width: 100%;
}

.staff-look-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.staff-look-item__image {
  aspect-ratio: 154 / 180;
  background: #f6f4ef;
  display: block;
  overflow: hidden;
  width: 154px;
}

.staff-look-item__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.staff-look-item__data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  width: 154px;
}

.staff-look-item__name,
.staff-look-item__price,
.staff-look-item__meta {
  color: var(--staff-look-text);
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 12px;
  white-space: nowrap;
}

.staff-look-item__name {
  line-height: 13px;
}

.staff-look-other {
  color: var(--staff-look-muted);
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2.1px;
  line-height: 11px;
  text-align: right;
  width: 100%;
}


/* ==================================================
   STYLING Detail Gallery
   ================================================== */

.page--styling-detail .staff-look-main-gallery {
  aspect-ratio: 550 / 733;
  background: #f6f4ef;
  display: block;
  max-width: 550px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.page--styling-detail .staff-look-main-gallery__track {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  transition: transform 360ms ease, opacity 160ms ease;
  width: 100%;
}

.page--styling-detail .staff-look-main-gallery__track .staff-look-main-media {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  max-width: none;
  min-width: 100%;
  width: 100%;
}

.page--styling-detail .staff-look-gallery-arrow {
  align-items: center;
  background: rgba(20, 20, 19, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow: none;
  color: #fff;
  display: flex;
  font-size: 0;
  height: 46px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  z-index: 3;
}

.page--styling-detail .staff-look-gallery-arrow--prev {
  left: 18px;
}

.page--styling-detail .staff-look-gallery-arrow--next {
  right: 18px;
}

.page--styling-detail .staff-look-gallery-arrow::before {
  border-color: #fff;
  border-style: solid;
  content: "";
  display: block;
  height: 10px;
  width: 10px;
}

.page--styling-detail .staff-look-gallery-arrow--prev::before {
  border-width: 0 0 1px 1px;
  transform: translateX(2px) rotate(45deg);
}

.page--styling-detail .staff-look-gallery-arrow--next::before {
  border-width: 1px 1px 0 0;
  transform: translateX(-2px) rotate(45deg);
}

.page--styling-detail .staff-look-gallery-arrow[hidden] {
  display: none !important;
}


/* ==================================================
   Responsive
   ================================================== */

@media (max-width: 1200px) {
  .staff-look-detail {
    gap: 32px;
    grid-template-columns: minmax(360px, 48vw) minmax(430px, 1fr);
  }

  .staff-look-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .staff-look-item__image,
  .staff-look-item__data {
    width: 100%;
  }

  .staff-look-item__name,
  .staff-look-item__price,
  .staff-look-item__meta {
    font-size: 12px;
  }
}

@media (max-width: 1023px) {
  .staff-look-detail {
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .page--styling-detail .staff-look-main-gallery,
  .staff-look-main-media {
    max-width: none;
  }

  .staff-look-panel {
    min-height: 0;
    padding: 0;
  }

  .staff-look-panel__body {
    padding: 0 20px;
    width: 100%;
  }

  .staff-look-profile {
    margin-bottom: 24px;
  }

  .staff-look-items {
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .staff-look-other {
    margin-top: 36px;
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .page--styling-detail .staff-look-main-gallery,
  .staff-look-main-media {
    aspect-ratio: 3 / 4;
  }

  .staff-look-items {
    gap: 32px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .staff-look-section-title {
    margin-bottom: 12px;
  }

  .staff-look-item {
    gap: 14px;
  }

  .staff-look-item__name,
  .staff-look-item__price,
  .staff-look-item__meta {
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }

  .staff-look-other {
    font-size: 12px;
    letter-spacing: 1.6px;
  }
}

@media (min-width: 1101px) {
  .page--styling-detail .product-layout {
    position: relative !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
  }

  .page--styling-detail .product-layout > .site-side-menu.hero__menu {
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 0 !important;
    max-height: 100vh !important;
    max-height: 100dvh !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
  }
}