/**
 * @file
 * Product detail: gallery + body + stacked images.
 */

.deao-product__inner {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.deao-product__top {
  margin-bottom: 2rem;
}

/* Top row: main image (left) + thumbnail grid (right) */
.deao-product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1rem;
  align-items: start;
}

.deao-product-gallery__main {
  position: relative;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  min-height: 200px;
}

.deao-product-gallery__main-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.deao-product-gallery__counter {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.85rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 4px;
  line-height: 1.2;
}

.deao-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(4rem, 5.5rem));
  gap: 0.5rem;
  align-content: start;
}

.deao-product-gallery__thumb {
  display: block;
  padding: 0;
  margin: 0;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.deao-product-gallery__thumb:hover,
.deao-product-gallery__thumb:focus-visible {
  border-color: #bbb;
  outline: none;
}

.deao-product-gallery__thumb.is-active {
  border-color: #1a9b57;
  box-shadow: 0 0 0 1px #1a9b57;
}

.deao-product-gallery__thumb img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.deao-product__title-block {
  margin-top: 1.25rem;
}

.deao-product__title-block--solo {
  margin-bottom: 1.5rem;
}

.deao-product__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #222;
  line-height: 1.35;
}

/* Content: body + full-width images from field_images */
.deao-product__content {
  border-top: 1px solid #e8e8e8;
  padding-top: 1.5rem;
}

.deao-product__body {
  margin-bottom: 1.5rem;
}

.deao-product__body .field--name-body {
  margin: 0;
}

.deao-product__field-images .field__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.deao-product__field-images .field__item {
  margin: 0;
}

.deao-product__field-images img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 767.98px) {
  .deao-product-gallery {
    grid-template-columns: 1fr;
  }

  .deao-product-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
