.bg-red {
   background: linear-gradient(to right, #e31e25 0 50%, #fff 50% 100%);
    color:#fff;
}
.bg-red-2 {
   background: linear-gradient(to right, #f7f7f8 0 50%, #fff 50% 100%);
    
}
main {
  padding-top: 50px;
}
 section {
    padding-top: 50px;
    padding-bottom: 50px;
} 


 .home-section-1 {
    background: #fff;
 
  
   }
    .home-section-1 img {
        max-width: 100%;
    }

    .home-section-1-content {
        display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .buttons .btn-white {
        background: #fff;
        padding: 5px 15px;
        border: 1px solid #ab797b;
        margin-right: 20px;
        color: #333333;
        text-decoration: none;
        border-radius: 7px;
    }

  .buttons .btn-border{
        background: #af0e14;
        padding: 5px 15px;
        border: 1px solid #ab797b;
        color: #fff;
         text-decoration: none;
         border-radius: 7px;
    }


     .buttons .btn-white:hover {
         background: #af0e14;
         color: #fff;
     }

      .buttons .btn-border:hover {
         background: #fff;
        border: 1px solid #670306;
        color: #af0e14;
      }


    .eco-term-card {
        text-decoration: none;
    color: #212529;
    }
    .product-media {
        padding-top: 0;
    }

    /* ===== Lightbox for office gallery ===== */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(17, 24, 39, .72);
  z-index: 99999;
}

.lightbox.is-open { display: flex; }

.lightbox__dialog {
  position: relative;
  width: min(980px, 100%);
  max-height: 90vh;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lightbox__img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
  object-fit: contain;
  background: #0b1220;
}

.lightbox__caption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  top: 10px;
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
  line-height: 1;
}

.lightbox__close { right: 10px; }
.lightbox__nav.prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 10px; top: 50%; transform: translateY(-50%); }

.lightbox__close:hover,
.lightbox__nav:hover { filter: brightness(.98); }
