/*
* ===================================================
*     CUSTOM CSS CODE BELOW
* ===================================================
/* =====================================
/* =========================================
   MAGPUCK – Product grid rounded corners
   Targets the actual QB element: data-qb-element="productgrid"
   ========================================= */

[data-qb-element="productgrid"] .product {
  border-radius: 28px !important;
  overflow: hidden !important;
}

[data-qb-element="productgrid"] .product .product-image {
  border-radius: 28px !important;
  overflow: hidden !important;
}

[data-qb-element="productgrid"] .product .product-image img {
  border-radius: 28px !important;
  display: block !important;
  transition: transform 0.35s ease !important;
}

[data-qb-element="productgrid"] .product:hover .product-image img {
  transform: scale(1.04) !important;
}
/* =========================================
   MAGPUCK – Remove "Flera val" everywhere in product grid
   + pull title/price closer to image
   ========================================= */

/* 1) Remove the whole hover overlay area that contains "Flera val" */
[data-qb-element="productgrid"] .product .product-hover-overlay{
  display: none !important;
}

/* (Extra safety: if theme renders the link somewhere else) */
[data-qb-element="productgrid"] .product a[href*="moreOptions"],
[data-qb-element="productgrid"] .product a[class*="more"],
[data-qb-element="productgrid"] .product a[class*="option"],
[data-qb-element="productgrid"] .product .product-more-options,
[data-qb-element="productgrid"] .product .more-options{
  display: none !important;
}

/* 2) Pull text (title/price) up closer to the image */
[data-qb-element="productgrid"] .product .product-image{
  margin-bottom: 6px !important;
}

/* Your template uses: <div class="position-relative ..."> around title/price */
[data-qb-element="productgrid"] .product .position-relative{
  margin-top: -6px !important;
}

/* Tighten title spacing */
[data-qb-element="productgrid"] .product h3{
  margin-top: 0 !important;
  margin-bottom: 4px !important;
}

/* Tighten price spacing */
[data-qb-element="productgrid"] .product .product-price{
  margin-top: 0 !important;
}
<!-- Importera Arimo -->
<link href="https://fonts.googleapis.com/css2?family=Arimo:wght@400;700;800&display=swap" rel="stylesheet">
footer,
footer * {
  font-family: 'Arimo', sans-serif !important;
}
/* MAGPUCK – Big CTA button under each product */
[data-qb-element="productgrid"] .product .mp-cta{
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 12px auto 0;
  padding: 14px 16px;
  background: #fff;
  color: #000;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .6px;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

[data-qb-element="productgrid"] .product .mp-cta:hover{
  background: #f1f1f1;
}
/* =========================================
   MAGPUCK – Fix product title size (Chrome/Safari)
   Makes titles slightly smaller & tighter
   ========================================= */

[data-qb-element="productgrid"] .product h3,
[data-qb-element="productgrid"] .product h3 a {
  font-size: 15px !important;     /* mindre än default */
  line-height: 1.25 !important;   /* tajtare, snyggare i Chrome */
}
/* =========================================
   MAGPUCK – More spacing between image and title
   ========================================= */

[data-qb-element="productgrid"] .product .product-image {
  margin-bottom: 16px !important;
}