/*************/
/*** Other ***/
/*************/

hr {
  margin: 0;
}

/* Picture viewer */

.gallery-img {
  position: absolute;
  object-fit: contain;
  width: 100%;
  height: 100%;

  transition: opacity 0.2s ease;
}

#picture-viewer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 200px;
  flex: 1;
}

.picture-viewer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;

  margin: 5px;
  padding: 0;
  width: 32px;
  height: 32px;
}

.picture-viewer-bullets {
  display: flex;
  align-self: flex-end;
}

.picture-viewer-bullet {
  margin: 5px;
  padding: 4px;

  border-radius: 50%;
  background-color: var(--color);
}

/****************/
/*** Overview ***/
/****************/

.gallery-product-desc {
  display: -webkit-box;
  line-clamp: 6;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  /* overflow: hidden; */
  overflow: scroll;
}

/**************/
/*** Dialog ***/
/**************/

.product-dialog {
  width: auto;
  height: auto;
}

.product-dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  stroke: currentColor;
  transition: stroke 0.2s ease;

  &:hover {
    stroke: red;
  }
}

/**********************/
/*** Product detail ***/
/**********************/

/*******/
/* TOP */
/*******/

.product-part {
  display: flex;

  @media screen and (max-width: 850px) {
    flex-direction: column;
  }

  @media screen and (min-width: 851px) {
    gap: 20px;
  }
}

.product-hide-on-collapse {
  @media screen and (max-width: 850px) {
    display: none;
  }
}

#product-pictures {
  flex: 1;
  display: flex;
  aspect-ratio: 16 / 9;
  min-width: 250px;

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.product-details {
  flex: 0.5;

  display: flex;
  flex-direction: column;
}

#product-detail-name {
  margin-bottom: 0;
}

.product-detail-obtainability {
  margin: 10px 0 10px 0;
}

#product-detail-price {
  font-size: 1.5em;
  font-weight: 600;
}

#product-detail-desc-short {
  flex: 1;
}

.product-detail-desc-short-fade {
  @media screen and (min-width: 851px) {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    mask: linear-gradient(to bottom, var(--color) 70%, transparent);
  }
}

.product-dialog-buttons {
  display: flex;
  gap: 10px;
  justify-content: space-evenly;

  margin: 20px 0 20px 0;
}

.product-dialog-buttons button {
  flex: 1;
}

/**********/
/* Bottom */
/**********/

#product-detail {
  flex: 6;
  text-align: justify;

  &:target {
    border-radius: 5px;
    animation-name: product-detail-target-fade;
    animation-duration: 1s;
  }
}

@keyframes product-detail-target-fade {
  from {
    background-color: var(--accent);
  }

  to {
    background-color: unset;
  }
}

#product-comments {
  flex: 4;
}

.product-comment {
  border: var(--border-color) 1px solid;
  border-radius: 10px;
  padding: 10px;
  margin: 10px 0 10px 0;
}
