/* Gallery */
.gallery-thumb {
  opacity: 0.45;
  transition: opacity 0.25s ease, outline-color 0.25s ease;
  outline: 1px solid transparent;
  outline-offset: 3px;
}

.gallery-thumb:hover {
  opacity: 0.75;
}

.gallery-thumb.is-active {
  opacity: 1;
  outline-color: rgba(166, 138, 114, 0.6); /* Taupe */
}

.dark .gallery-thumb.is-active {
  outline-color: rgba(166, 138, 114, 0.6); /* Taupe */
}

#gallery-main {
  transition: opacity 0.18s ease;
}

#gallery-main.is-fading {
  opacity: 0;
}

/* Specs table */
.specs-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(156, 139, 122, 0.25); /* Mushroom/25 */
}

.specs-row:first-child {
  border-top: 1px solid rgba(156, 139, 122, 0.25); /* Mushroom/25 */
}

/* Personalisation block */
.personalisation-block {
  border: 1px solid rgba(156, 139, 122, 0.25); /* Mushroom/25 */
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: rgba(156, 139, 122, 0.08);
}

.dark .personalisation-block {
  background: rgba(156, 139, 122, 0.06);
}

/* Breadcrumb */
.breadcrumb-sep {
  opacity: 0.3;
}
