/* Bright ambient gradient with shimmer */
@keyframes ambientGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shimmerEffect {
  0% { opacity: 0.1; transform: translateX(-50%) rotate(20deg); }
  50% { opacity: 0.3; transform: translateX(50%) rotate(20deg); }
  100% { opacity: 0.1; transform: translateX(-50%) rotate(20deg); }
}
body {
  font-family: 'Poppins', sans-serif;
  color: #0c0c0c;
  
  /* Gradient background */
background:
linear-gradient(
120deg,
rgba(255,245,230,0.35) 0%,
rgba(255,255,255,0.9) 50%,
rgba(255,245,230,0.35) 100%
);
  background-size: 1200% 1200%;
  animation: ambientGradient 90s ease infinite;
  overflow-x: hidden;
}

/* Shimmer overlay */
body::after {
  content: '';
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
background:
linear-gradient(
120deg,
rgba(255,245,230,0.35) 0%,
rgba(255,255,255,0.9) 50%,
rgba(255,245,230,0.35) 100%
);  animation: shimmerEffect 30s linear infinite;
  pointer-events: none;
  z-index: -1;
}
.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: center;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}



/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.hero_area .hero_bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.hero_area .hero_bg_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
}

.hero_area .hero_bg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(14, 55, 70, 0.9)), to(rgba(14, 55, 70, 0.15)));
  background: linear-gradient(to right, rgba(14, 55, 70, 0.9), rgba(14, 55, 70, 0.15));
}

@media (max-width: 768px){

  .hero_area{
    min-height: unset;
    background: -webkit-gradient(linear, left top, right top, from(rgba(14, 55, 70, 0.9)), to(rgba(14, 55, 70, 0.15)));
  background: linear-gradient(to right, rgba(14, 55, 70, 10), rgba(14, 55, 70, 0.91)); 
  }

  .hero_area .hero_bg_box{
    position: relative;     
    inset: auto;
    width: 100%;
    height: 70vh;           
    z-index: 0;
  }

  .hero_area .hero_bg_box img{
    width: 100%;
    height: 100%;
    object-fit: cover;      
    object-position: center;
  }

 .hero_area .hero_bg_box::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
 background:none; }


  .hero_content{
    display: block;
  }

.slider_section{
  flex: 1;
  display: flex;
  align-items: center;
}

  .slider_section .detail-box{
    color: #0c2c4c;
  }
  body:not(.is-home) .hero_area .hero_bg_box{
    display: none !important;
  }

  /* Om du vill: ta bort extra hero-styling på andra sidor */
  body:not(.is-home) .hero_area{
    min-height: unset !important;
  }
}

.nav-item.has-sub {
  position: relative;
}

/* Dold från början, men tar plats när .open sätts */
.nav-item.has-sub .nav-sublist {
  list-style: none;
  margin: 0;
  padding: 0;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.8s ease,
    opacity 0.3s ease;
}

/* När .open finns på li → expandera under menyalternativet */
.nav-item.has-sub.open .nav-sublist {
  max-height: 500px;     /* tillräckligt för alla länkar */
  opacity: 1;
}

/* Länkarna i undermenyn */
.nav-item.has-sub .nav-sublist li a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  text-transform: none;   /* inte versaler */
  color: #ffffff;         /* vit text */
  text-align: center;
}

.nav-item.has-sub .nav-sublist li a:hover {
  color: #1a73e8;         /* samma blå hover som övriga menyn */
  text-decoration: none;
}

/* Pilindikator på huvudlänken */
.nav-item.has-sub .sub-toggle::after {
  content: " ▾";
  font-size: 11px;
  transition: transform 0.25s ease;
}

.nav-item.has-sub.open .sub-toggle::after {
  content: " ▴";
}


/* --- PILAR PÅ TOGGLE --- */
.sub-toggle::after {
  content: " ▾";
  font-size: 11px;
  transition: transform 0.25s ease;
}

.nav-item.has-sub.open .sub-toggle::after {
  content: " ▴";
}


/* --- Sticky header --- */
.header_section {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
    background: linear-gradient(
  to right,
  #2b2622,
  #3a332d,
  #2b2622
);
box-shadow:
inset 0 1px rgba(255,255,255,0.05),
inset 0 -1px rgba(0,0,0,0.35),
0 10px 40px rgba(230,126,34,0.08);
}

/* när man har scrollat ner */
.header_section.is-sticky {
  position: fixed;
  background: linear-gradient(
  to right,
  #2b2622,
  #3a332d,
  #2b2622
);
box-shadow:
inset 0 1px rgba(255,255,255,0.05),
inset 0 -1px rgba(0,0,0,0.35),
0 10px 40px rgba(230,126,34,0.08);            
}

/* valfritt: krymp loggan lite när sticky */
.header_section.is-sticky .navbar-brand img {
  max-height: 70px;
  transition: max-height 0.3s ease;
}


.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand {
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
}

.navbar-brand span {
  color: #1a73e8;
}

.navbar-brand:hover {
  color: inherit;
}


.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  font-size: 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-nav .nav-item .nav-link i {
  margin-right: 5px;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  color: #1a73e8;
}

.custom_nav-container .nav_search-btn {
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
  color: #ffffff;
}

.custom_nav-container .nav_search-btn:hover {
  color: #1a73e8;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}

/* -- Centrera Samarbeten-dropdown helt korrekt -- */
.navbar .dropdown-menu {
  position: absolute !important;     
  top: 100%;                         
  left: 50% !important;              
  transform: translateX(-50%) !important;

  min-width: 200px;                  
  width: auto;
  background: #0e3746;
  border-radius: 8px;
  border: none;
  padding: 6px 0;
  text-align: center;
  z-index: 9999;
}

/* Droppdown items */
.navbar .dropdown-item {
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
  white-space: nowrap;
}

.navbar .dropdown-item:hover {
  background-color: rgba(255,255,255,0.08);
  color: #1a73e8;
}
/* Utfällbar samarbetes-rad under menyn */
.samarbeten-panel {
  display: none;
  width: 100%;
  padding: 6px 0 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 4px;
}

.samarbeten-panel.open {
  display: block;
}

.samarbeten-panel .samarbeten-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
  margin-right: 16px;
}

.samarbeten-panel a {
  font-size: 14px;
  color: #007bff;
  margin-right: 14px;
  display: inline-block;
}

.samarbeten-panel a:hover {
  text-decoration: underline;
}

/* ============================
   STICKY CALL BUTTON – GLOBAL
   ============================ */

/* Default: nere i högra hörnet */
.sticky-call {
  position: fixed;
  bottom: 30px;
  right: 10px;
  z-index: 99999;
  background:
radial-gradient(circle at 20% 30%, rgba(255,160,60,0.08), transparent 40%),
radial-gradient(circle at 80% 70%, rgba(255,120,40,0.05), transparent 50%),
linear-gradient(135deg,#161310,#2b2622,#161310);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.35s ease;

  /* Viktigt för ikon + text-centering */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Ikon-stil – centreras med flex ovan */
.sticky-call::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: red;

  -webkit-mask: url('../images/icons/phone.svg') no-repeat center / contain;
  mask: url('../images/icons/phone.svg') no-repeat center / contain;

  filter: drop-shadow(0 0 2px rgba(0,0,0,0.6));
}

/* Hover när knappen är nere i hörnet */
.sticky-call:not(.in-header):hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  background: linear-gradient(135deg, #4fc3f7, #1a73e8);
}

/* När header är sticky → knappen i mitten av headern */
.header_section.is-sticky .sticky-call {
  position: absolute;
  bottom: auto;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background: #1a73e8;
  padding: 6px 18px;
  box-shadow: none;
}

/* Liten hover-effekt även i header, men behåll centring */
.header_section.is-sticky .sticky-call:hover {
  transform: translate(50%, -52%);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

/* När mobilenyn är öppen: flytta ner knappen igen */
body.nav-open .header_section.is-sticky .sticky-call {
  position: fixed;
  top: auto;
  bottom: 30px;
  right: 10px;
  transform: none;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  background: linear-gradient(
    90deg,
    rgba(102, 98, 98, 1) 0%,
    rgba(6, 8, 8, 1) 50%,
    rgba(82, 81, 77, 1) 100%
  );
}

/* ============================
   MOBILANPASSNING (max 768px)
   ============================ */
@media (max-width: 768px) {
  /* Lite mindre logo på mobil */
  .navbar-brand img {
    max-height: 70px;
  }

  .header_section.is-sticky .navbar-brand img {
    max-height: 55px;
  }

  /* Gör knappen smidigare på liten skärm */
  .sticky-call {
    font-size: 12px;
    padding: 4px 6px;
    max-width: 45vw;
    text-align: center;
  }

  /* Mindre ikon på mobil men fortfarande centrerad */
  .sticky-call::before {
    width: 18px;
    height: 18px;
  }
}
/* === DESKTOP/TABLET: knappen får ligga i headern när sticky === */
@media (min-width: 992px) {
  .header_section.is-sticky .sticky-call {
    position: absolute;
    bottom: auto;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background: #1a73e8;
    padding: 6px 18px;
    box-shadow: none;
  }

  .header_section.is-sticky .sticky-call:hover {
    transform: translate(50%, -52%);
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  }
}
/* === MOBIL: knappen alltid nere i hörnet, rör inte headern === */
@media (max-width: 991px) {
  .sticky-call {
    position: fixed !important;
    bottom: 20px !important;
    right: 12px !important;
    transform: none !important;
  }

  /* För säkerhets skull – ignorera ev. "in-header"-mode */
  .header_section.is-sticky .sticky-call {
    position: fixed !important;
    bottom: 20px !important;
    top: auto !important;
    right: 12px !important;
    transform: none !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }
}


/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 45px 0 75px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #ffffff;
}

.slider_section .detail-box h1 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #1a73e8;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #1a73e8;
}

.slider_section .detail-box a:hover {
  background-color: transparent;
  color: #ffffff;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel_btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 45px auto 0 auto;
}

.slider_section .carousel_btn-box a {
  position: unset;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  opacity: 1;
  color: #000000;
  font-size: 14px;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
  margin: 0 3px;
}

.slider_section .carousel_btn-box a:hover {
  background-color: #1a73e8;
  color: #ffffff;
}

.product_section .heading_container {
  margin-bottom: 35px;
}

.product_section .product_container {
  position: relative;
  background: #f4f4f4;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  margin: 0 75px;
}

    .product_container  {
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3); /* Soft elevation */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 20px;
  margin: 15px;
}

.product_container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .product_container {
    width: 250px !important;  
    margin: 0 auto;        
  }

  .product_section .box .detail-box {
    padding: 20px 15px;     
  }
  .product_section .product_container {
    padding: 20px;
  }

  .product_section .box .img-box {
    height: 180px;
  }
}

.single-btn.single-btn-secondary {
  background: #0e3746;
  color: #ffffff !important;
  border-radius: 6px;
  display: inline-block;
  padding: 8px 16px;

  margin-top: 6px;
}
.single-btn.single-btn-secondary:hover {
  background: #1a73e8;
  color: #ffffff !important;
}
.product-btn-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
@media (max-width: 576px) {
  .product-btn-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .product-btn-row a.single-btn,
  .product-btn-row a.single-btn-buy,
  a.single-btn-buy-addon {
    width: 100%;
    text-align: center;
    justify-content: center; 
  }

  .product_owl-carousel .item .box {
    padding: 15px 12px 18px;
  }
}
.product-btn-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  white-space: nowrap;
}


.single-btn-buy{
  background: #0e3746 !important; 
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  border: none;
  transition: 0.2s ease;
  display: inline-block;
  margin: 0;         
  line-height: 1.2;
}
.single-btn-buy:hover{
    background-color: transparent !important;
  color: #1a73e8;
  border: 2px solid #1a73e8;
  text-decoration: underline !important;
}

.product_section .box {
  color: #000000;
  text-align: center;
  border-radius: 5px;
}

.product_owl-carousel .item {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product_owl-carousel .box {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}


.product_section .box .img-box {
  background: #f4f4f4;
  border-radius: 16px;
  height: 220px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 25px;
}

.product_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product_section .box .detail-box {
  padding: 18px 20px;
  text-align: center;
}

.product_section .box h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.product_section .price {
  font-weight: 600;
  color: #1a73e8;
  margin-bottom: 12px;
  display: block;
}

.product_section .box .detail-box .new_price {
  font-weight: 600;
}

.product_section .box .detail-box .old_price {
  text-decoration: line-through;
  color: #999;
}

.product_section .box .detail-box p {
  font-size: 15px;
  margin-bottom: 20px;
}

.product_section .box .detail-box a {
  display: inline-block;
  background: #1a73e8;
  color: #ffffff;
  padding: 8px 30px;
  border-radius: 25px;
  transition: 0.25s;
  border: 1px solid #1a73e8;
}

.product_section .box .detail-box a:hover {
  background: transparent;
  color: #1a73e8;
}

.product_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.product_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #1a73e8;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #1a73e8;
}

.product_section .btn-box a:hover {
  background-color: transparent;
  color: #1a73e8;
}

.product_section .owl-carousel {
  position: unset;
}

.product_section .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: -75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product_section .owl-carousel .owl-nav button.owl-next,
.product_section .owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  margin: 3px 0;
  border-radius: 100%;
  outline: none;
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1a73e8;
  color: #ffffff;
  font-size: 24px;
}

.product_section .owl-carousel .owl-nav button.owl-next:hover,
.product_section .owl-carousel .owl-nav button.owl-prev:hover {
  background-color: transparent;
  border: solid 2px;
  border-color: #1a73e8;
  color: #000000;
}

.product_section .owl-carousel .owl-dots {
  display: none;
}

.price-on-request {
  opacity: 0.85;
  font-style: italic;
}

/* Hover/focus "pop" for product cards */
.product_owl-carousel .item { 
  transform-origin: center bottom;
  will-change: transform, box-shadow;
  transition: transform .18s ease, box-shadow .18s ease;
}

/* The visible card inside the item */
.product_owl-carousel .item .box {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1;
}
.product_owl-carousel .item .box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px; 
    background: linear-gradient(
        135deg,
        #1a73e8 0%,
        #fff 25%,
        #fff 50%,
        #fff 75%,
        #1a73e8 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* Hover / keyboard focus styles (pop) */
.product_owl-carousel .item:hover .box,
.product_owl-carousel .item:focus-within .box {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(22, 40, 64, 0.18);
  z-index: 2; /* lift above neighbors */
}

/* Slight stronger effect on pointer devices only (prevents accidental mobile shifts) */
@media (hover: hover) and (pointer: fine) {
  .product_owl-carousel .item:hover .box {
    transform: translateY(-10px) scale(1.035);
    box-shadow: 0 22px 50px rgba(22, 40, 64, 0.20);
  }
}

/* Make sure the transform doesn't push layout: keep outer item height stable */
.product_owl-carousel .item,
.product_owl-carousel .item .box {
  backface-visibility: hidden;
}

/* Optional: add a subtle border accent when popped */
.product_owl-carousel .item:hover .box,
.product_owl-carousel .item:focus-within .box {
  border-color: rgba(26,115,232,0.08);
}

/* Keyboard-visible focus outline for accessibility */
.product_owl-carousel .item:focus-within {
  outline: 3px solid rgba(26,115,232,0.08);
  outline-offset: 6px;
}



.about_section { 
  color: #fff;
  padding: 50px 0;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: center;
}

.about_section .img-box {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about_section .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about_section .detail-box {
  margin: 40px 0;
}

.about_section h2{
  text-align: center;
}

.about_section .detail-box p {
  color: #e9e9e9;
  font-size: 17px;
  line-height: 1.6;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 12px 35px;
  width: 100%;
  background-color: #1a73e8;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s ease;
  border: 1px solid #1a73e8;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(26,115,232,0.4);
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #1a73e8;
  box-shadow: 0 0 15px rgba(26,115,232,0.7);
}


.full-page {
    background-color: transparent;
    padding: 80px 0;
    color: #fff;
}

.about-body {
  color: #0c0c0c;
  background: linear-gradient(270deg, #a2d2ff, #ffffff, #d0f4de, #e0f7fa);
  background-size: 1200% 1200%;
  animation: ambientGradient 90s ease infinite;
  overflow-x: hidden;
  padding-bottom: 80px;
}

/* Smooth animated background */
@keyframes ambientGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Section Titles */
.faq_section h2,
.products_overview h2,
.knowledge_bank h2 {
  font-size: 44px;
  font-weight: 800;
  color: #0c2c4c;
  text-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.about_section p,
.faq_section p {
  font-size: 18px;
  color: #222;
}

/* ABOUT BOXES */
.about-box {
  background: rgba(255, 255, 255, 0.92);
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.18);
}

/* ABOUT HEADERS */
.about-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #063970;
  margin-bottom: 15px;
}

.responsive-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ================= SAMARBETEN / PARTNERS ================= */

.partners_section {
  background: #0e3746;         /* matchar din header/vibe */
  color: #fff;
}

.partners_section .heading_container h2 {
  color: #fff;
}

.partners_section .heading_container p {
  color: rgba(255,255,255,0.85);
}

.partner-card {
  display: block;
  text-decoration: none !important;
  color: inherit;
  margin-bottom: 25px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.partner-inner {
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ================= SAMARBETEN / PARTNERS ================= */

.partner-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #4fc3f7, #1a73e8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  overflow: hidden;          /* viktigt för att hålla bilden i cirkeln */
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fyller cirkeln, beskär om det behövs */
  display: block;
}

.partner-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.partner-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}

.partner-link {
  font-size: 12px;
  font-weight: 600;
  color: #4fc3f7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Hover-effekt på kort */
.partner-card:hover .partner-inner {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.09);
}

.partner-card:hover .partner-link {
  color: #ffffff;
}




/* FAQ */
.faq-item {
  margin-bottom: 15px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.10);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 22px;
  background: #0c2c4c;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}


.faq-answer {
  background: #000;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 20px;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, padding 0.5s ease;
  border-top: 1px solid #e5e5e5;
}

.faq-answer p{
  color: #ffffff;
}

.faq-question.active + .faq-answer {
  opacity: 1;
  padding: 20px;
}

/* Contact Button */
.about-btn {
  background: #0c2c4c;
  color: white !important;
  padding: 14px 32px;
  font-size: 20px;
  border-radius: 35px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.20);
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #155a8a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transform: translateY(-3px);
}

/* Products Overview */
.products_overview {
  background: rgba(255,255,255,0.7);
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.products_overview h4 {
  color: #063970;
  font-weight: 700;
}

.products_overview p {
  color: #333;
}

/* Knowledge bank */
.knowledge_bank h4 {
  color: #063970;
  font-weight: 700;
}

.knowledge_bank p {
  color: #333;
}


/* ===========================================
   PREMIUM BLUE CALCULATOR — GLOBAL VERSION
   =========================================== */
/* Toggle-knappen */
.calc-toggle-btn {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}
.calc-toggle-btn:hover {
  background: #4fc3f7;
}

/* Wrapper som fäller ut/ihop kalkylatorn */
.calculator_wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.45s ease;
}

/* När den är öppen */
.calculator_wrapper.expanded {
  max-height: 1500px; /* ska bara vara större än innehållet */
  opacity: 1;
}


/* === Glasig container med blå ton === */
.pellets_calculator {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    border-radius: 14px;
    padding: 50px 30px;
    color: #ffffff;
    max-width: 900px;
    margin: auto;
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}

/* === Labels === */
.pellets_calculator label {
    color: #dce3f1;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

/* === Inputs === */
.pellets_calculator input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.28);
    color: #ffffff;
}

.pellets_calculator input::placeholder {
    color: rgba(255,255,255,0.45);
}

/* === Knapp === */
.pellets_calculator button {
    padding: 14px 40px;
    border-radius: 12px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    background: #4da8ff;
    color: #fff;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 6px 22px rgba(77,168,255,0.45);
}

.pellets_calculator button:hover {
    background: #78c3ff;
    transform: translateY(-2px);
}

/* === Resultattext === */
#calc_result {
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px;
    color: #9be7ff;
    text-align: center;
}

/* ===========================================
   ORDER-KORT — Premium blå stil
   =========================================== */
.order-cards-container,
#order_cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.order-card {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    position: relative;
    text-align: center;
    color: #ffffff;
    backdrop-filter: blur(5px);
    transition: 0.25s ease;
}

.order-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.25);
}

/* === Badge (Rekommenderas) === */
.order-card .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #4da8ff, #1e90ff);
    color: #ffffff;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(77,168,255,0.4);
}

/* === Text === */
.order-card p {
    margin: 6px 0;
    font-size: 16px;
    color: #e5efff;
}

/* === Ikoner === */
.order-card .icons {
    font-size: 22px;
    margin-right: 6px;
}

/* === Orderknapp === */
.btn-order {
    margin-top: 12px;
    display: inline-block;
    background: #4da8ff;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
}

.btn-order:hover {
    background: #78c3ff;
}

/* ===========================================
   MOBILANPASSNING — Ingen overflow, perfekt layout
   =========================================== */
@media (max-width: 768px) {

    html, body {
        overflow-x: hidden !important;
        max-width: 100%;
    }

    .pellets_calculator,
    .calculator_box,
    #order_cards,
    .order-card {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    #order_cards {
        display: flex !important;
        flex-direction: column;
        align-items: center;
    }

    .order-card {
        width: 100%;
        max-width: 340px;
    }

    .order-card .badge {
        right: -6px;
        top: -2px;
    }

}


.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Reveal Left (varje rad) ===== */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease-out;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}


/* Addon Section */
#addon_section .addon_box {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
    margin: 15px;
    text-align: center;
}
.addon_box {
    position: relative; 
    overflow: hidden; 
    border-radius: 18px; 
}
.addon_box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 2px; 
    background: linear-gradient(
        135deg,
        #1a73e8 0%,
        #1a73e8 25%,
        #1a73e8 50%,
        #1a73e8 75%,
        #1a73e8 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

#addon_section .addon_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

#addon_section .addon_img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    height: 180px; /* fixar kort höjd */
    overflow: hidden;
}

#addon_section .addon_img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#addon_section .addon_detail-box {
    padding: 15px;
}

#addon_section .addon_detail-box h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 600;
    text-decoration: underline;
}

#addon_section .addon_detail-box .price {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #1a73e8;
}

#addon_section .addon-btn {
    display: inline-block;
    background: #1b4cff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background .25s ease;
}

#addon_section .addon-btn:hover {
    background: transparent;
    color: #1b4cff;
    border: solid 2px;
    border-color: #1b4cff;
}

#addon_section .addon-viewall-box {
    text-align: center;
    margin-top: 35px;
}

#addon_section .addon-viewall-btn {
    background: #333;
    color: #fff;
    padding: 10px 26px;
    border-radius: 30px;
    text-decoration: none;
    transition: background .25s ease;
}

#addon_section .addon-viewall-btn:hover {
    background: transparent;
    border: 2px solid #1b4cff;
    color: #1b4cff;
}

/* --- Responsivt --- */
@media (max-width: 768px) {
    #addon_section .col-sm-6 {
        margin-bottom: 20px;
    }

    #addon_section .addon_img-box {
        height: 150px;
        padding: 10px;
    }
}


/* CONTACT SECTION */
.contact_section {
  position: relative;
  background-color: #fff;
  padding-bottom: 40px;
}
.hp-field {
    display: none !important;
}

/* Heading */
.contact_section .heading_container {
  padding-top: 25px;
  margin-bottom: 25px;
}

/* FORM FIELDS */
.contact_section .form_container input,
.contact_section .form_container textarea {
  width: 100%;
  border: 2px solid transparent;
  height: 50px;
  margin-bottom: 22px;
  padding: 14px 20px;
  background-color: #f4f7fb;
  outline: none;
  color: #000;
  border-radius: 8px;
  font-size: 16px;

  transition: all 0.25s ease;
}

/* Make textarea larger */
.contact_section .form_container textarea {
  height: 140px;
  resize: none;
}

/* Placeholder color */
.contact_section .form_container input::placeholder,
.contact_section .form_container textarea::placeholder {
  color: #555;
}

/* Hover */
.contact_section .form_container input:hover,
.contact_section .form_container textarea:hover {
  background-color: #eef4ff;
}

/* BLUE FOCUS EFFECT */
.contact_section .form_container input:focus,
.contact_section .form_container textarea:focus {
  border-color: #1a73e8;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.25);
}

/* BUTTON */
.contact_section .form_container button {
  margin-top: 10px;
  border: none;
  text-transform: uppercase;
  padding: 12px 50px;
  background: #1a73e8;
  color: #ffffff;
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;

  transition: all .3s ease;
}

.contact_section .form_container button:hover {
  background-color: #0c57b3;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

/* MAP CONTAINER */
.contact_section .map_container {
  width: 100%;
  height: 345px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Dölj honeypot-fältet */
.hp-field {
  display: none !important;
}

/* Gäller kontaktsektionen nere på sidan */
.contact_section .consent-box,
/* Gäller inline-contact-boxen på produktsidan */
#inlineContact .consent-box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 15px;
}

/* Checkbox-storlek och position */
.contact_section .consent-box input[type="checkbox"],
#inlineContact .consent-box input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

/* Texten bredvid checkboxen */
.contact_section .consent-label,
#inlineContact .consent-label {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  display: block;
  margin: 0;
}

/* Länken i texten */
.contact_section .consent-label a,
#inlineContact .consent-label a {
  color: #1e5cff;
  text-decoration: underline;
}

.contact_section .consent-label a:hover,
#inlineContact .consent-label a:hover {
  text-decoration: none;
}



.client_section .client_container {
  margin-top: 45px;
}

.client_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 5px;
}

.client_section .box .img-box {
  position: relative;
  width: 105px;
  margin-bottom: -45px;
  margin-left: 25px;
}

.client_section .box .img-box img {
  width: 100%;
  border-radius: 100%;
  border: 5px solid #1a73e8;
}

.client_section .box .detail-box {
  border: 1px solid #E97451;
  padding: 60px 25px 25px 25px;
  margin-bottom: 25px;
}

.client_section .box .detail-box h5 {
  font-weight: 600;
}

.client_section .box .detail-box p {
  margin: 0;
}

.client_section .carousel-wrap {
  margin: 0 auto;
  position: relative;
}

.client_section .carousel-wrap .active + .active .box {
  margin-top: 45px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 20px 10px 0 0;
  outline: none;
  background-color: #1a73e8;
  color: #ffffff;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: #1a73e8;
}

/* footer section*/
.footer_section {
  background:
radial-gradient(circle at 30% 40%, rgba(255,180,80,0.08), transparent 40%),
linear-gradient(135deg, #161310, #2b2622, #161310);
  color: #ffffff;
}


.footer_section .footer_content {
  padding: 60px 0 10px 0;
}

.footer_section .footer-col {
  margin-bottom: 45px;
}

.footer_section .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer_section .contact_nav a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer_section .contact_nav a i {
  font-size: 22px;
  margin-right: 10px;
}

.footer_section .contact_nav a:hover {
  color: #1a73e8;
}

.footer_section h4 {
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

.footer_section .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer_section .social_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 18px;
  margin-left: 10px;
}

.footer_section .social_box a:hover {
  color: #1a73e8;
  border-color: #0d3c78;
}

.footer_section .footer_form input {
  width: 100%;
  border: none;
  height: 45px;
  margin-bottom: 15px;
  padding-left: 25px;
  background-color: #eaeaea;
  outline: none;
  color: #101010;
}

.footer_section .footer_form button {
  display: inline-block;
  padding: 10px 45px;
  background-color: #1a73e8;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #1a73e8;
}

.footer_section .footer_form button:hover {
  background-color: transparent;
  color: #1a73e8;
}

.footer_section .footer-info {
  background-color: #0b2d39;
}

.footer_section .footer-info p {
  margin: 0;
}

.footer_section .footer-info p a {
  color: inherit;
}

.footer_section .footer-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          align-items: center;
          text-align: center;
}

.footer_section .footer-info-box p,
.footer_section .footer-info-box .social_box {
  margin: 15px 0;
  text-align: center;
}
.footer-legal {
  margin-top: 4px;
  font-size: 13px;
}

.footer-legal a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-legal a:hover {
  text-decoration: none;
}

/* Justera loggan i footern på desktop */
@media (min-width: 992px) {
  .footer_section .footer_form {
    text-align: right;
  }

  /* Extra luft mellan mittenkolumnen (Kontakt) och loggokolumnen */
  .footer_section .footer-col:nth-child(3) {
    padding-left: 40px;
  }
}

/* Lite extra luft ovanför loggan på mindre skärmar om det behövs */
@media (max-width: 991.98px) {
  .footer_section .footer_form {
    margin-top: 20px;
    text-align: center;
  }
}
