/* Trust Signals */

.trust-heading {
    margin-bottom: 30px;
}

.trust-signals {
  padding: 32px 0;
  background: #fff;
}

.trust-signals__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-signals__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  border: 1px solid #e8edf7;
  border-radius: 14px;
  background: #ffffff;
  transition: 0.3s;
}

.trust-signals__item:hover {
  box-shadow: 0 10px 30px rgba(0, 56, 168, 0.08);
  transform: translateY(-2px);
}

.trust-signals__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: #0d47a1;
  background: rgba(13, 71, 161, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-signals__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #1f1f1f;
}

.product-badge-bestseller {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #f7d774, #d4a017);
    color: #111;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    padding: 7px 14px;
    border-radius: 30px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    white-space: nowrap;
}

.bestseller-thumb {
    position: relative;
    display: block;
}

@media (max-width: 1024px) {
   .trust-heading {
    margin-bottom: 20px;
   }

  .trust-signals {
    padding: 24px 0;
  }
  

  .trust-signals__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-signals__item {
    flex-direction: column;
    text-align: center;
    padding: 18px 12px;
  }

  .trust-signals__text {
    font-size: 14px;
  }
}


.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.home-hero picture,
.home-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.home-hero__image {
    object-fit: cover;
    object-position: center;
}

.home-hero__overlay {
    position: relative;
    z-index: 2;
    background: #3d3d3d66;
    height: 100%;
    min-height: 520px;
}

@media (max-width: 767px) {
    .home-hero {
        min-height: 420px;
    }

    .home-hero__overlay {
        min-height: 420px;
    }
}

