/** Shopify CDN: Minification failed

Line 316:28 Expected identifier but found whitespace
Line 316:30 Unexpected "{"
Line 316:36 Expected ":"
Line 316:41 Expected ":"
Line 317:31 Expected identifier but found whitespace
Line 317:33 Unexpected "{"
Line 317:39 Expected ":"
Line 317:44 Expected ":"
Line 318:19 Expected identifier but found whitespace
Line 318:21 Unexpected "{"
... and 10 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:custom-product-comparison (INDEX:23) */
/* Generel styling */
.custom-product-comparison {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  background-color: var(--section-bg-color);
  overflow-x: clip; /* Forhindrer horisontal scroll pga. animation */
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-grid-container {
  margin: 0 auto;
  padding: 0 20px;
}

.custom-product-comparison__header {
  text-align: var(--header-text-align);
  margin-bottom: 50px;
}
.custom-product-comparison__header .custom-product-comparison__subtitle {
  margin-left: auto;
  margin-right: auto;
}
.custom-product-comparison__header[style*="text-align: left"] .custom-product-comparison__subtitle,
.custom-product-comparison__header[style*="text-align: right"] .custom-product-comparison__subtitle {
  margin-left: 0;
  margin-right: 0;
}
.custom-product-comparison__header[style*="text-align: right"] .custom-product-comparison__subtitle {
  margin-left: auto;
}

.custom-product-comparison__title {
  font-size: var(--heading-size);
  color: var(--heading-color);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  text-transform: var(--heading-text-transform);
  margin: 0 0 15px 0;
}

.custom-product-comparison__subtitle {
  font-size: var(--subheading-size);
  color: var(--subheading-color);
  font-weight: var(--subheading-font-weight);
  font-style: var(--subheading-font-style);
  max-width: var(--subheading-max-width);
  line-height: 1.6;
}

.custom-product-comparison__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-column-gap);
  align-items: stretch;
}

/* Kort styling */
.comparison-card {
  background-color: var(--card-bg-color);
  color: var(--card-text-color);
  border: var(--card-border-width) solid var(--card-border-color);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-box-shadow);
  padding: 30px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.comparison-card--recommended {
  border: var(--recommended-border-width) solid var(--recommended-border-color);
  padding-top: 55px;
}

.comparison-card__recommended-badge {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--recommended-badge-bg-color);
  color: var(--recommended-badge-text-color);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 15px;
}

.comparison-card__image-wrapper {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.comparison-card__image-wrapper img,
.comparison-card__image-wrapper .placeholder-svg {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.comparison-card__title {
  font-size: var(--card-title-size);
  font-weight: 600;
  margin: 0 0 10px 0;
}

.comparison-card__price {
  margin-bottom: 25px;
}

.comparison-card__price--compare {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 8px;
}

/* Features (flueben) */
.comparison-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
  flex-grow: 1;
}

.comparison-card__features li {
  display: flex;
  align-items: center;
  font-size: var(--feature-text-size);
  margin-bottom: 12px;
}

.comparison-card__features li svg {
  color: var(--individual-icon-color, var(--icon-color));
  width: var(--icon-size);
  height: var(--icon-size);
  margin-right: 10px;
  flex-shrink: 0;
}

/* Knapper */
.comparison-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.5px;
  border-radius: var(--button-border-radius);
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: auto;
}

.comparison-card__button > * {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) and (min-width: 1024px) {
  .comparison-card__button:hover {
    opacity: 0.85;
  }
  .comparison-card__button:hover span {
    transform: scale(1.05);
  }
  .comparison-card__button:hover .comparison-card__button-arrow {
    transform: scale(1.2) translate(3px, -3px);
  }
}

.comparison-card:not(.comparison-card--recommended) .comparison-card__button {
  background-color: var(--button-bg-color);
  color: var(--button-text-color);
}

.comparison-card--recommended .comparison-card__button {
  background-color: var(--button-bg-color-recommended);
  color: var(--button-text-color-recommended);
}

/* Desktop & Tablet styling */
@media screen and (min-width: 769px) {
  .custom-product-comparison__grid {
    grid-template-columns: repeat({{ section.settings.columns_desktop }}, 1fr);
  }
}

@media screen and (min-width: 769px) and (max-width: 990px) {
  .custom-product-comparison__grid {
    grid-template-columns: repeat({{ section.settings.columns_tablet }}, 1fr);
  }
}

/* Mobil-specifik slider styling */
@media screen and (max-width: 768px) {
  .comparison-grid-container {
    padding: 0;
  }
  .custom-product-comparison__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0;
    padding: 0 20px;
  }
  .custom-product-comparison__grid::-webkit-scrollbar {
    display: none;
  }
  .custom-product-comparison__grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .comparison-card {
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}
/* END_SECTION:custom-product-comparison */

/* START_SECTION:price-range (INDEX:67) */
.price-range-section {
    background-color: var(--section-bg);
    max-width: var(--section-max-width);
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
    margin: 0 auto;
  }

  .price-text {
    font-size: var(--heading-fs);
    color: var(--heading-color);
    font-weight: bold;
    margin-bottom: var(--gap-between-elements);
    line-height: 1.3;
  }

  .price-value {
    font-size: var(--price-value-fs);
    color: var(--price-color);
    font-weight: 700;
    margin-left: 0.5rem;
  }

  .price-button {
    font-size: var(--button-fs);
    color: var(--button-text-color);
    background-color: var(--button-color);
    border-radius: var(--button-radius);
    border: var(--button-border-width) solid var(--button-border-color);
    
    padding: 0.8em 1.6em; /* Brug em for padding der skalerer med font-size */
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    display: inline-block; /* Sikrer korrekt opførsel */
    text-align: center;
  }

  .price-button:hover {
    color: var(--button-text-color-hover);
    background-color: var(--button-color-hover);
    border-color: var(--button-border-color-hover);
  }

  .price-button--full {
    width: 100%;
    display: block;
  }

  /* Mobil-specifikke overskrivninger */
  @media screen and (max-width: 749px) {
    .price-range-section {
      text-align: center !important;
      
      /* Opdaterer variabler med mobil-værdier */
      --section-padding-top: {{ m_pt }}px;
      --section-padding-bottom: {{ m_pb }}px;
      --heading-fs: {{ m_h_fs }}px;
      --price-value-fs: {{ m_pv_fs }}px;
      --button-fs: {{ m_b_fs }}px;
    }
  }
/* END_SECTION:price-range */

/* START_SECTION:review-slider (INDEX:71) */
/* Generelle styles for indholdet */
.review-slider {
  background-color: #fff;
  padding: 0;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.review-average {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.review-stars a {
  font-size: 2rem;
  background-color: #3ad790;
  color: white;
  padding: 0.4rem 0.6rem;
  border-radius: 0.3rem;
  text-decoration: none;
}

.review-meta {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #333;
}

.review-sources {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  align-items: center;
}

/* == RETTET HER ==
   Styrer afstanden over og under hele sektionen.
   Juster selv værdierne for at finde den perfekte afstand. */
.section {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* END_SECTION:review-slider */