.elementor-8345 .elementor-element.elementor-element-83cc712{--display:flex;}.elementor-8345 .elementor-element.elementor-element-4621b82 > .elementor-widget-container{margin:-100px 0px 0px 0px;}.elementor-8345 .elementor-element.elementor-element-80c13d4{--display:flex;}.elementor-8345 .elementor-element.elementor-element-08eb08c{--display:flex;}.elementor-8345 .elementor-element.elementor-element-0448bb9{--display:flex;}@media(max-width:767px){.elementor-8345 .elementor-element.elementor-element-83cc712{--margin-top:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-8345 .elementor-element.elementor-element-4621b82 > .elementor-widget-container{margin:-50px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-ebebb60 *//* =========================
   PRODUCT DOCUMENT BUTTONS
   ========================= */

.product-documents {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.doc-btn {
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  border: none;

  background: linear-gradient(135deg, #1fa37a, #2bbf93);
  color: #ffffff !important;

  transition: all 0.25s ease;
}

.doc-btn:hover {
  background: linear-gradient(135deg, #17906c, #25a985);
  color: #ffffff !important;   /* låser vit text */
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(31,163,122,0.25);
}

.doc-btn:visited,
.doc-btn:active {
  color: #ffffff !important;
}


/* =========================
   PRODUCT BODY TEXT (GOTHAM 300)
   ========================= */

.product-summary p,
.product-info p,
.product-description p {
  font-family: "Gotham", sans-serif !important;
  font-weight: 300 !important;   /* Gotham Light */
  font-size: 16px;
  line-height: 1.6;
  color: #2f3c44;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-213a75c */.product-hero {
  padding: 80px 20px;
}

.product-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE BOX */
.product-image-box {
  border-radius: 18px;
  padding: 40px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 620px; /* större bildyta */
}

/* MAIN IMAGE AREA */
.image-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STÖRRE PRODUKTBILD */
.main-product-image {
  max-width: 720px;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

/* =========================
   THUMBNAILS (FIXAD)
   ========================= */

.product-thumbnails {
  display: flex;
  gap: 10px;
  background: white;
  padding: 6px 10px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  align-self: center;

  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;

  scrollbar-width: none; /* Firefox */
}

.product-thumbnails::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.thumb {
  width: 60px;
  height: 60px;
  object-fit: contain;
  padding: 6px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.2s;
  flex: 0 0 auto;
}

.thumb:hover {
  transform: scale(1.05);
}

.thumb.active {
  border-color: #1fa37a;
  background: #eef6f3;
}

/* PRODUCT INFO */
.product-category {
  color: #1fa37a;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.badge {
  background: #1fa37a;
  color: white;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 12px;
  margin-left: 10px;
}

.product-info h1 {
  font-size: 48px;
  font-weight: 300;
  color: #2f3c44;
  margin-bottom: 10px;
}

.product-name {
  color: #1fa37a;
  font-weight: 500;
  margin-bottom: 12px;
}

.divider {
  width: 50px;
  height: 2px;
  background: #1fa37a;
  margin: 12px 0 20px;
}

.product-info p {
  color: #5a6a73;
  line-height: 1.7;
  max-width: 420px;
}

.product-tags {
  margin-top: 24px;
}

.product-tags span {
  display: inline-block;
  padding: 8px 16px;
  margin-right: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  border-radius: 20px;
  border: none;
  background: linear-gradient(135deg, #eaf4f1 0%, #dff1eb 100%);
  color: #1fa37a;
  font-weight: 500;
  transition: all 0.2s ease;
}

.product-tags span:hover {
  background: linear-gradient(135deg, #1fa37a 0%, #2bbf93 100%);
  color: white;
  transform: translateY(-1px);
}

/* =========================
   PRODUCT HERO — MOBIL
   ========================= */
@media (max-width: 768px) {

  .product-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-image-box {
    height: auto;
    padding: 24px;
  }

  .main-product-image {
    max-width: 100%;
    max-height: 260px;
  }

  .product-thumbnails {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .thumb {
    width: 52px;
    height: 52px;
  }

  .product-info h1 {
    font-size: 32px;
  }

  .product-info p {
    max-width: 100%;
    font-size: 15px;
  }

  .product-tags span {
    font-size: 11px;
    padding: 6px 12px;
  }

  .product-hero {
    padding: 50px 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c03f80a */.product-description {
  padding: 1px 20px 80px;
}

.product-description-container {
  max-width: 900px;
  margin: auto;
}

/* HIGHLIGHT BLOCK */
.description-highlight {
  position: relative;
  padding-left: 28px;

  transition: all 0.35s ease;
}

/* GRADIENT STRECK */
.description-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;

  background: linear-gradient(
    180deg,
    #1fa37a 0%,
    #7fdcc6 100%
  );

  border-radius: 4px;
  transition: all 0.35s ease;
}

/* TEXT — ALLT i blocket */
.description-highlight,
.description-highlight p {
  font-family: "Gotham", sans-serif !important;
  font-weight: 300 !important;
  font-style: normal;
}

.description-highlight p {
  color: #5a6a73;
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 16px;
  transition: color 0.35s ease;
}

/* =========================
   HOVER ANIMATION
   ========================= */

.description-highlight:hover {
  transform: translateY(-3px);
}

.description-highlight:hover::before {
  box-shadow: 0 0 12px rgba(31,163,122,0.35);
}

.description-highlight:hover p {
  color: #44535c;
}/* End custom CSS */