sudo nano custom.css/* ======================================================
   TEMP HERO SLIDER – FULL IMAGE (NO CROP)
   For ps_imageslider – Classic theme
   Image size: 2046x/* ======================================================
   TIGHTER PRODUCT GRID (LESS AIR BETWEEN CARDS)
   ====================================================== */


/* Slider wrapper */
#carousel,
.carousel {
  width: 100%;
  overflow: hidden;
  background-color: #000; /* bakgrund bakom bilden */
}

/* Bilden – visa HELA bilden */
.carousel-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background-color: #000;
}

/* Ta bort fast höjd om temat sätter någon */
.carousel-inner,
.carousel-item {
  height: auto !important;
  min-height: unset !important;
}

/* Säkerställ korrekt skalning på mindre skärmar */
@media (max-width: 991px) {
  .carousel-inner img {
    width: 100%;
    height: auto;
  }
}

/* Mobile – ingen beskärning */
@media (max-width: 575px) {
  .carousel-inner img {
    width: 100%;
    height: auto;
  }
}

/* Minska avståndet mellan produkter */
.products {
  margin-left: -10px;
  margin-right: -10px;
}

.product-miniature {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 30px;
}

/* ======================================================
   REMOVE AGGRESSIVE HOVER EFFECTS
   ====================================================== */

.product-miniature:hover img {
  transform: none !important;
}

.product-miniature .highlighted-informations {
  display: none !important;
}

