/* =========================================================
   WHIRLPOOL PRODUCT DESCRIPTIONS V1.04
   Parolek-shop UI
   Pouze .whp-* prvky
   ========================================================= */


/* =========================================================
   INTRO
   ========================================================= */

.whp-intro{
  position:relative;
  overflow:hidden;
  background:#f5f7f7;
  border:1px solid #e7eceb;
  border-radius:16px;
  padding:30px 32px;
  margin:20px 0 36px;
}

.whp-intro:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:5px;
  background:#00a98f;
}

.whp-intro h1{
  margin:0 0 12px;
  color:#202525;
  font-size:30px;
  line-height:1.2;
  font-weight:700;
}

.whp-intro p{
  margin:0;
  max-width:1000px;
  color:#596262;
  font-size:16px;
  line-height:1.7;
}


/* =========================================================
   HERO
   ========================================================= */

.whp-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  align-items:center;
  gap:52px;
  margin:40px 0 48px;
}

.whp-hero-img{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  padding:24px;
  background:#fff;
}

.whp-hero-img img{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:500px;
  object-fit:contain;
}

.whp-hero-body{
  min-width:0;
}

.whp-hero-body h2{
  margin:0 0 22px;
  color:#202525;
  font-size:28px;
  line-height:1.25;
  font-weight:700;
}


/* =========================================================
   HLAVNÍ BENEFITY
   ========================================================= */

.whp-bullets{
  list-style:none;
  padding:0;
  margin:0;
}

.whp-bullets li{
  display:grid;
  grid-template-columns:30px 1fr;
  align-items:start;
  gap:12px;
  margin:0;
  padding:12px 0;
  color:#596262;
  font-size:15px;
  line-height:1.5;
  border-bottom:1px solid #edf0ef;
}

.whp-bullets li:last-child{
  border-bottom:0;
}

.whp-bullets b{
  display:block;
  margin-bottom:2px;
  color:#202525;
  font-weight:700;
}

.whp-badg{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#e3f6f2;
  color:#009b83;
  font-size:15px;
  font-weight:700;
}


/* =========================================================
   FEATURE GRID
   ========================================================= */

.whp-features{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  margin:42px 0;
}


/* =========================================================
   FEATURE KARTA
   ========================================================= */

.whp-feat{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  min-width:0;
  overflow:hidden;
  padding:0;
  background:#fff;
  border:1px solid #e6e9e9;
  border-radius:16px;
  box-shadow:0 4px 18px rgba(0,0,0,.045);
}


/* =========================================================
   OBRÁZEK FEATURE KARTY
   ========================================================= */

.whp-feat-img{
  width:100%;
  height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px 22px 10px;
  box-sizing:border-box;
  background:#f7f8f8;
}

.whp-feat-img img{
  display:block;
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}


/* =========================================================
   TEXT FEATURE KARTY
   ========================================================= */

.whp-feat-body{
  min-width:0;
  padding:18px 22px 22px;
  background:#fff;
}

.whp-feat h3{
  margin:0 0 8px;
  color:#202525;
  font-size:17px;
  line-height:1.35;
  font-weight:700;
  text-align:left;
}

.whp-feat p{
  margin:0;
  color:#626b6b;
  font-size:14px;
  line-height:1.6;
  text-align:left;
}


/* =========================================================
   DESKTOP HOVER
   ========================================================= */

@media(min-width:993px){

  .whp-feat{
    transition:transform .2s ease,box-shadow .2s ease;
  }

  .whp-feat:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 24px rgba(0,0,0,.07);
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:992px){

  .whp-intro{
    padding:26px 28px;
  }

  .whp-intro h1{
    font-size:27px;
  }

  .whp-hero{
    gap:30px;
  }

  .whp-hero-img{
    padding:16px;
  }

  .whp-hero-img img{
    max-height:420px;
  }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media(max-width:768px){

  /* INTRO */

  .whp-intro{
    padding:22px 20px 22px 24px;
    margin:16px 0 28px;
    border-radius:12px;
  }

  .whp-intro h1{
    font-size:23px;
  }

  .whp-intro p{
    font-size:14px;
    line-height:1.65;
  }


  /* HERO */

  .whp-hero{
    grid-template-columns:1fr;
    gap:24px;
    margin:28px 0 34px;
  }

  .whp-hero-img{
    padding:10px;
  }

  .whp-hero-img img{
    max-height:350px;
  }

  .whp-hero-body h2{
    font-size:22px;
    margin-bottom:16px;
  }


  /* BENEFITY */

  .whp-bullets li{
    padding:10px 0;
    font-size:14px;
  }


  /* FEATURE GRID */

  .whp-features{
    grid-template-columns:1fr;
    gap:16px;
    margin:32px 0;
  }

  .whp-feat{
    border-radius:12px;
  }


  /* FEATURE OBRÁZEK */

  .whp-feat-img{
    height:160px;
    padding:18px;
    background:#f7f8f8;
  }


  /* FEATURE TEXT */

  .whp-feat-body{
    padding:17px 18px 19px;
    background:#fff;
  }

  .whp-feat h3{
    margin:0 0 8px;
    font-size:17px;
    line-height:1.35;
    text-align:left;
  }

  .whp-feat p{
    font-size:14px;
    line-height:1.6;
    text-align:left;
  }

}