.products-page {
    /* font-family: Arial, sans-serif; */
    color: #66513E;
    background: #F0E5D8;
}

.product-wrapper {
  display: flex;
  align-items: center;
  max-width: 1200px;
  gap: 2rem; /* space between image and text */
  width: 100%;
}

.product-main-image img {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-main-image img:hover {
  transform: scale(1.03);
}

.image-overlay-text {
    position: absolute;
    bottom: 1.5rem;
    left: 2rem;
    background: rgba(238, 219, 198, 0.85);
    padding: 1rem 1.5rem;
    border-radius: 6px;
}

.image-overlay-text h2 {
    margin: 0;
    font-size: 2rem;
}

.image-overlay-text p {
    margin: 0.3rem 0 0;
    font-weight: bold;
}

/* Masonry gallery */
.masonry-gallery {
    column-count: 6;
    column-gap: 1rem;
    margin: 2rem;
}

.masonry-gallery a {
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
}

.masonry-gallery img {
    width: 100%;
    border-radius: 6px;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.masonry-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Long description strip */
.product-description-strip {
     justify-content: center;
    display: flex;
    background: #eedbc6;
    padding: 2rem 1rem;
    border-radius: 8px;
  
}

.product-description-strip1 {
    background-color: rgb(77, 91, 106);
    padding: 2rem 1rem;
    border-radius: 8px;
    margin-top: 40px;
    color: white;
    justify-content: center;
    display: flex;
}


.product-description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #66513E;
    color: #F0E5D8;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #8B6E53;
}

/* Fade-in effect */
/* .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
} */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        column-count: 1;
    }

    .image-overlay-text {
        left: 1rem;
        bottom: 1rem;
        padding: 0.8rem 1rem;
    }

    .image-overlay-text h2 {
        font-size: 1.5rem;
    }
}