/**
 * Product Cards
 * Stilar för produktkort i views (Featured Products, produktlistor).
 */

/* Alla skärmstorlekar: 16:9 bild full bredd */
.card-img-wrap {
  flex: unset;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.card-img-wrap img,
.card-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-img-wrap .media,
.card-img-wrap .field,
.card-img-wrap .field__item,
.card-img-wrap picture {
  width: 100%;
  height: 100%;
}

/* Triton product card hover */
.triton-product-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}

.triton-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12) !important;
}

/* Title link — no underline, inherit color */
.triton-product-card .card-title a {
  text-decoration: none;
  color: inherit;
}

/* Stretched-link via title — makes entire card clickable */
.triton-product-card .triton-card-link a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
