

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: var(--background-color);
      color:  var(--text-color);
    }


    /* === HERO === */
    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
       color:  var(--text-color);
    }

    .video-wrapper {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .hero-gradient {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 40%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--hero-gradient-end) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(50%);
      width: 100%;
      height: 100%;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 2rem;
      max-width: 900px;
    }

    .hero-content h1 {
      font-size: 48px;
      line-height: 1.2;
      margin: 0 0 20px 0;
    }

    .cta-btn {
      padding: 0.8em 1.5em;
      border: 2px solid white;
       background: var(--cta-btn-background-hero);
      color: var(--cta-btn-color-hero);
      font-weight: bold;
      text-transform: uppercase;
      font-size: 1.2rem;
      margin-top: 1rem;
      cursor: pointer;
      transition: background 0.3s;
      text-decoration: none;
      display: inline-block;
      border-radius: 12px;
    }

   

    /* === INTRO === */
    #intro {
      scroll-margin-top: 120px; /* just below fixed navbar */
    }

    .intro-section {
     
      padding: 0px;
      text-align: center;
      position: relative;
      z-index: 5;
    }

    .intro-container {
      max-width: 800px;
      margin: 0 auto;
      margin-top: 50px;
    }

    .intro-section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .intro-section p {
      font-size: 1.2rem;
      line-height: 1.6;
      opacity: 0.85;
    }

    /* === PRODUCT CARDS (osv. behålls som i din version) === */
  .product-section {
      padding: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  justify-content: start;
    }

.product-card {
     position: relative;
  background: var(--product-card-background);
  color: var(--product-card-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
 box-shadow: 0px 8px 8px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   min-height: 390px;
   width: 100%;          /* Fyll hela gridcellen */
   
  
}

.product-card:hover {
  transform: translateY(-5px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  outline: rgb(137 135 135) solid 2px;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card .content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card h3 {
  margin: 0 0 -7px 0;
  font-size: 1.2rem;
  color: var(--color-footer-text);
  min-height: 45px;
}

.product-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 12px;
  min-height: 53px;
}

.product-card .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-footer-text);
  text-align: center;
  margin-top: 10px;
}

.product-card .price-info {
  font-size: 0.85rem;
  color: var(--color-sitefooter-text);
  margin-bottom: 16px;
  margin-top: 5px;
  text-align: center;
}

.product-card .btn {
  margin-top: auto;
  padding: 12px;
  border: none;
  background: #ff1e1e;
  color: white;
  font-weight: bold;
  font-size: 0.95rem;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
  text-align: center;
    text-decoration: none;
}

.product-card .btn:hover {
  background: var(--cta-btn-background-hover);
}

.flag-icon {
 position: absolute;
    top: 9px;
    right: 9px;
    padding: 0;
}

.flag-icon img {
  height: 20px;
  display: block;
  width: 37px;
    display:none;
}
    
    
    
    

    .content {
      padding: 20px;
    }

   
   .price {
          font-weight: bold;
          margin-top: 0.5rem;
          color: #d9534f; /* röd färg */
          font-size: 1.1rem;
          height:26px;
        }
        .price-info {
          font-size: 0.9rem;
          color: #666;
          margin-top: 0.25rem;
         visibility: hidden;
         height: 20px;
        } 

   
  .product-card {
  position: relative;
  overflow: hidden;
}

.image-overlay-text {
    position: absolute;
    top: 0px;
    left: -4px;
    background: rgba(0, 0, 0, 0.65);
    color: white;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
    text-align: center;
}

.hero.image-mode::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* eller justera efter smak */
  z-index: 0;
}

.hero.image-mode::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Du kan justera opaciteten här */
  z-index: 0;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.0em !important;
    line-height: 1.3;
  }
}






   
    
    
.product-card .price {
    position: absolute !important;
    bottom: 100px !important;
    width: calc(100% - 40px) !important;
}
    
.product-card .price-info {
    position: absolute !important;
    bottom: 62px !important;
    width: calc(100% - 40px) !important;
}
    
.product-card {
    min-height: 500px !important;
}
    

@media (max-width: 768px) {
    .product-card {
    min-height: 550px !important;
    }
    .intro-section p {
        padding: 0 20px;   
    }
    .intro-section h2 {
    font-weight: 600;
    padding: 0 20px;
    }

    
    .product-section{
        padding: 20px 20px !important;
    }
    
}


@media (max-width: 619px) {
    .product-card {
      min-height: 485px !important; */
    }
}

