/* Breadcrumbs auf der Startseite ausblenden */
body.home .woocommerce-breadcrumb,
body.home .shoptimizer-breadcrumb,
body.home .site-content .breadcrumb,
body.home .breadcrumb {
  display: none !important;
}

/* Header-Feinjustierung nur Startseite */
@media (min-width: 1200px) {
  .home .primary-navigation.with-logo {
    padding-left: 0 !important;
    margin-left: -100px !important;
  }

  .home .site-header-cart {
    margin-left: auto !important;
  }
}

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

.ivh-hero {
  position: relative;
  min-height: calc(84svh - var(--header-height, 0px));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #000000;
  color: #ffffff;
  font-family: inherit;
}

.ivh-hero,
.ivh-hero * {
  box-sizing: border-box;
}

/* 
   Stabile Hintergrundbild-Ebene.
   Wichtig: kein negatives z-index mehr.
   Das Bild bleibt optisch komplett im Hintergrund.
*/
.ivh-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-image: var(--ivh-hero-bg, url('/wp-content/uploads/2025/09/Infrarotheizung-zum-Wohlfuehlen-im-Wohnzimmer.jpg'));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.035);
  will-change: transform;
}

/* Falls du später doch auf <picture>/<img> als Background-Ebene wechselst */
.ivh-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ivh-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
}

/* Dunkles Overlay über dem Hintergrundbild */
.ivh-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.54) 46%,
      rgba(0, 0, 0, 0.34) 100%
    ),
    radial-gradient(
      70% 55% at 26% 34%,
      rgba(249, 186, 0, 0.23) 0%,
      transparent 62%
    );
}

/* Inhalt liegt sicher über Bild und Overlay */
.ivh-hero__container {
  position: relative;
  z-index: 2;
  width: min(1480px, 94%);
  margin: 0 auto;
  padding:
    calc(2rem + env(safe-area-inset-top, 0px))
    clamp(1rem, 3vw, 2.4rem)
    calc(2rem + env(safe-area-inset-bottom, 0px));
}

.ivh-hero__content {
  max-width: 790px;
  text-align: left;
}

.ivh-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.48rem 0.82rem;
  background: rgba(249, 186, 0, 0.18);
  border: 1px solid rgba(249, 186, 0, 0.42);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ivh-hero__title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 950;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.ivh-hero__title span {
  color: #f9ba00;
}

.ivh-hero__subtitle {
  max-width: 66ch;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.04rem, 0.55vw + 0.95rem, 1.25rem);
  line-height: 1.65;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.28);
}

.ivh-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.55rem;
}

.ivh-hero__benefits span {
  display: inline-flex;
  align-items: center;
  padding: 0.44rem 0.72rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.ivh-hero__benefits span::before {
  content: "✓";
  margin-right: 0.45rem;
  color: #f9ba00;
  font-weight: 950;
}

.ivh-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.7rem;
}

.ivh-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border: 2px solid transparent;
  text-decoration: none !important;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.ivh-hero__btn:hover {
  transform: translateY(-2px);
  text-decoration: none !important;
}

.ivh-hero__btn--primary {
  background: #f9ba00;
  border-color: #f9ba00;
  color: #111111 !important;
}

.ivh-hero__btn--primary:hover,
.ivh-hero__btn--primary:focus,
.ivh-hero__btn--primary:active {
  background: #e8ad00;
  border-color: #e8ad00;
  color: #111111 !important;
}

.ivh-hero__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.82);
  color: #ffffff !important;
}

.ivh-hero__btn--secondary:hover,
.ivh-hero__btn--secondary:focus,
.ivh-hero__btn--secondary:active {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff !important;
}

.ivh-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 790px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ivh-hero__trust li {
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(7px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.ivh-hero__trust strong {
  display: block;
  margin-bottom: 0.16rem;
  color: #f9ba00;
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.45rem);
  font-weight: 950;
  line-height: 1.15;
}

.ivh-hero__trust span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.38;
}

/* Hero-Inhalt nicht verstecken */
.ivh-hero [data-ivh-hero-reveal] {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   KATEGORIEN SECTION
========================================================= */

.ivh-categories [data-ivh-categories-reveal],
.ivh-reviews-header [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
}

.ivh-categories [data-ivh-categories-reveal].is-revealed,
.ivh-reviews-header [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.ivh-categories {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  font-family: inherit;
  background: #ffffff;
}

.ivh-categories,
.ivh-categories * {
  box-sizing: border-box;
}

.ivh-categories__container {
  width: min(1480px, 94%);
  margin-inline: auto;
  padding: 0 clamp(0.8rem, 2vw, 2rem);
}

.ivh-categories__header {
  max-width: 980px;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.ivh-categories__eyebrow,
.ivh-home-faq__eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  background: rgba(249, 186, 0, 0.18);
  border: 1px solid rgba(249, 186, 0, 0.32);
  color: #111111;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ivh-categories__title,
.ivh-home-faq__title {
  margin: 0 0 1rem;
  color: #111111;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.ivh-categories__intro {
  max-width: 82ch;
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.16rem);
  line-height: 1.7;
}

.ivh-categories__intro p {
  margin: 0;
}

.ivh-categories__intro p + p {
  margin-top: 0.75rem;
}

.ivh-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 1.8vw, 1.8rem);
  align-items: stretch;
}

.ivh-category-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ivh-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.13);
  border-color: rgba(249, 186, 0, 0.45);
}

.ivh-category-card--highlight {
  border: 2px solid rgba(249, 186, 0, 0.65);
}

.ivh-category-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
}

.ivh-category-card__link:hover,
.ivh-category-card__link:focus,
.ivh-category-card__link:active {
  color: inherit;
  text-decoration: none !important;
}

.ivh-category-card__image {
  height: 275px;
  background: #eeeeee;
  overflow: hidden;
}

.ivh-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.ivh-category-card:hover .ivh-category-card__image img {
  transform: scale(1.06);
}

.ivh-category-card__content {
  padding: clamp(1.25rem, 1.8vw, 1.7rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ivh-category-card__label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
  font-weight: 850;
  color: #111111;
  background: rgba(249, 186, 0, 0.14);
  padding: 0.35rem 0.65rem;
}

.ivh-category-card__title {
  margin: 0 0 0.55rem;
  color: #111111;
  font-size: clamp(1.25rem, 0.45vw + 1.05rem, 1.48rem);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ivh-category-card__desc {
  margin: 0 0 1.1rem;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.98rem;
  line-height: 1.58;
}

.ivh-category-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
}

.ivh-category-card__features span {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.68rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fafafa;
  color: rgba(17, 17, 17, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
}

.ivh-category-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #f9ba00;
  color: #111111 !important;
  padding: 0.78rem 1rem;
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.ivh-category-card__cta::after {
  content: "→";
  margin-left: 0.55rem;
}

.ivh-categories__footer {
  max-width: 850px;
  margin: 3.1rem auto 0;
  text-align: center;
}

.ivh-categories__footer p {
  margin: 0 auto 1.4rem;
  color: rgba(17, 17, 17, 0.68);
  font-size: 1.05rem;
  line-height: 1.65;
}

.ivh-categories__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #111111;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 900;
  padding: 1rem 1.45rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease;
}

.ivh-categories__button:hover,
.ivh-categories__button:focus,
.ivh-categories__button:active {
  background: #000000;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.ivh-categories__button::after {
  content: "→";
  color: currentColor;
}

/* =========================================================
   REVIEWS HEADER
========================================================= */

.ivh-reviews-header {
  text-align: center;
  padding: clamp(3rem, 3vw, 4.5rem) 1.5rem clamp(2rem, 3vw, 3.5rem);
  background: #ffffff;
  color: #111111;
}

.ivh-reviews-header,
.ivh-reviews-header * {
  box-sizing: border-box;
}

.ivh-reviews-header__container {
  max-width: 1480px;
  margin: 0 auto;
}

.ivh-reviews-header__title {
  margin: 0 0 0.75rem;
  color: #111111;
  font-size: clamp(1.9rem, 2vw + 1rem, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 950;
}

.ivh-reviews-header__title .accent {
  color: #f9ba00;
}

.ivh-reviews-header__subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #555555;
  font-size: clamp(1rem, 1vw + 0.6rem, 1.2rem);
  line-height: 1.55;
}

/* =========================================================
   FAQ SECTION
========================================================= */

.ivh-home-faq {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.8rem) 0;
  background: #ffffff;
  font-family: inherit;
}

.ivh-home-faq,
.ivh-home-faq * {
  box-sizing: border-box;
}

.ivh-home-faq__container {
  width: min(1320px, 94%);
  margin: 0 auto;
  padding: 0 clamp(0.8rem, 2vw, 2rem);
}

.ivh-home-faq__header {
  max-width: 820px;
  margin: 0 auto 2.7rem;
  text-align: center;
}

.ivh-home-faq__intro {
  max-width: 72ch;
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.15rem);
  line-height: 1.7;
}

.ivh-home-faq__list {
  display: grid;
  gap: 0.9rem;
}

.ivh-home-faq__item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
  overflow: hidden;
}

.ivh-home-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding: 1.2rem 1.35rem;
  cursor: pointer;
  list-style: none;
  color: #111111;
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.16rem);
  font-weight: 900;
  line-height: 1.35;
}

.ivh-home-faq__question::-webkit-details-marker {
  display: none;
}

.ivh-home-faq__question::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(249, 186, 0, 0.2);
  color: #111111;
  font-size: 1.35rem;
  font-weight: 900;
}

.ivh-home-faq__item[open] .ivh-home-faq__question::after {
  content: "–";
  background: #f9ba00;
}

.ivh-home-faq__answer {
  padding: 0 1.35rem 1.35rem;
  color: rgba(17, 17, 17, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.ivh-home-faq__answer p {
  margin: 0;
}

.ivh-home-faq__answer p + p {
  margin-top: 0.85rem;
}

.ivh-home-faq__answer a {
  color: #111111;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: #f9ba00;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.ivh-home-faq__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  background: #111111;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.ivh-home-faq__cta strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-size: clamp(1.12rem, 0.5vw + 1rem, 1.35rem);
  font-weight: 950;
}

.ivh-home-faq__cta span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.ivh-home-faq__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.ivh-home-faq__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.15rem;
  font-weight: 900;
  text-decoration: none !important;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.ivh-home-faq__button:hover,
.ivh-home-faq__button:focus,
.ivh-home-faq__button:active {
  text-decoration: none !important;
  transform: translateY(-2px);
}

.ivh-home-faq__button--primary {
  background: #f9ba00;
  color: #111111 !important;
  border: 1px solid #f9ba00;
}

.ivh-home-faq__button--primary:hover,
.ivh-home-faq__button--primary:focus,
.ivh-home-faq__button--primary:active {
  background: #e8ad00;
  border-color: #e8ad00;
  color: #111111 !important;
}

.ivh-home-faq__button--secondary {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.ivh-home-faq__button--secondary:hover,
.ivh-home-faq__button--secondary:focus,
.ivh-home-faq__button--secondary:active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  border-color: #ffffff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .ivh-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ivh-category-card__image {
    height: 245px;
  }
}

@media (max-width: 900px) {
  .ivh-hero {
    min-height: calc(88svh - var(--header-height, 0px));
  }

  .ivh-hero__bg {
    background-image: var(--ivh-hero-bg-mobile, var(--ivh-hero-bg, url('/wp-content/uploads/2025/09/Infrarotheizung-Wohnzimmer-Mobile.jpg')));
    background-position: center 28%;
    transform: scale(1.02);
  }

  .ivh-hero__image {
    object-position: center 28%;
    transform: scale(1.02);
  }

  .ivh-hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.64) 55%,
        rgba(0, 0, 0, 0.74) 100%
      ),
      radial-gradient(
        90% 70% at 50% 20%,
        rgba(249, 186, 0, 0.18) 0%,
        transparent 60%
      );
  }

  .ivh-hero__content {
    max-width: 100%;
    text-align: center;
  }

  .ivh-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .ivh-hero__benefits,
  .ivh-hero__ctas {
    justify-content: center;
  }

  .ivh-hero__trust {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .ivh-home-faq {
    padding: 3rem 0;
  }

  .ivh-home-faq__container {
    width: 96%;
    padding: 0 0.75rem;
  }

  .ivh-home-faq__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .ivh-home-faq__buttons {
    flex-direction: column;
  }

  .ivh-home-faq__button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .ivh-hero {
    min-height: auto;
    padding: 1.6rem 0 1.8rem;
  }

  .ivh-hero__container {
    width: 96%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .ivh-hero__eyebrow {
    font-size: 0.68rem;
    line-height: 1.3;
    letter-spacing: 0.07em;
    margin-bottom: 0.75rem;
    padding: 0.42rem 0.65rem;
  }

  .ivh-hero__title {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 0.75rem;
  }

  .ivh-hero__subtitle {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 1.1rem;
  }

  .ivh-hero__benefits {
    display: none;
  }

  .ivh-hero__ctas {
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1rem;
  }

  .ivh-hero__btn {
    width: 100%;
    min-height: 3.05rem;
  }

  .ivh-hero__trust {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .ivh-hero__trust li {
    padding: 0.7rem 0.85rem;
  }

  .ivh-hero__trust strong {
    font-size: 1.15rem;
  }

  .ivh-hero__trust span {
    font-size: 0.9rem;
  }

  .ivh-categories {
    padding: 3rem 0;
  }

  .ivh-categories__header {
    margin-bottom: 2.3rem;
  }

  .ivh-category-card__image {
    height: 215px;
  }

  .ivh-reviews-header {
    padding: 2.2rem 0.9rem 1.8rem;
  }

  .ivh-reviews-header__title {
    font-size: clamp(1.7rem, 5vw + 0.6rem, 2.2rem);
    line-height: 1.18;
  }

  .ivh-reviews-header__subtitle {
    padding: 0 0.5rem;
  }
}

@media (max-width: 767px) {
  .ivh-categories__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .ivh-category-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .ivh-category-card__image {
    height: 240px !important;
  }

  .ivh-category-card__cta {
    width: 100% !important;
  }

  .ivh-categories__button {
    width: 100%;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .ivh-hero__bg,
  .ivh-hero__image,
  .ivh-hero__btn,
  .ivh-category-card,
  .ivh-category-card__image img,
  .ivh-categories [data-ivh-categories-reveal],
  .ivh-reviews-header [data-reveal],
  .ivh-home-faq__button {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }

  .ivh-hero [data-ivh-hero-reveal],
  .ivh-categories [data-ivh-categories-reveal],
  .ivh-reviews-header [data-reveal] {
    opacity: 1 !important;
  }
}