/*** stone product hover ***/


.product-info2 {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.26);
  color: #fff;
  position: absolute;
  bottom: 0; /* Move the text up by 10px */
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; /* Add display flex to align the content vertically */
  flex-direction: column; /* Align the content in a column */
  justify-content: flex-end; /* Align the content to the bottom */
}

.product-info2:hover {
  opacity: 1;
  transform: scale(1.05);
}

.product-info2 h3 {
  display: flex;
  align-items: center;
  margin-bottom: 15%;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  color: azure;
   margin-left: 5px; /* Adjust the left margin for the text */
  margin-right: 5px; /* Adjust the right margin for the text */
}

@media (max-width: 600px) {
  

  .product-info2 h3 {
    margin-bottom: 20%;
    font-size: 14px;
  }
}

    
/*** stone product hover ***/




.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #f2eded; /* Set the desired background color */
 border-radius: 10px;
}

.product-card {
  position: relative;
  width: 100%; /* Modify width to fit mobile screen */
  max-width: 400px; /* Set a maximum width for each product card */
  margin: 20px;
  
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  background-color: #e8c3c3; /* Set the desired background color */
}

/* Media query for screens with a maximum width of 600px */
@media (max-width: 600px) {
  .product-card {
    width: 80%; /* Full width for mobile screens */
    margin: 10px;
  }
}


    
    .product-card:hover {
      transform: scale(1.05);
    }
    
    .product-card img {
      width: 100%;
      height: 200px; /* Adjust height to fit mobile screen */
      object-fit: cover;
    }
    
    .product-card .product-info {
      padding: 10px;
      background-color: rgba(0, 0, 0, 0.144);
      color: #fff;
      position: absolute;
      bottom: 0;
      width: 100%;
        height: 120px; /* Adjust the height as per your preference */
      opacity: 0;
      transition: opacity 0.3s;
    }
    
    .product-card:hover .product-info {
      opacity: 1;
    }
    
    .product-card .product-info h3 {
      margin: 0;
      font-size: 18px;
    }
    
    @media screen and (min-width: 768px) {
      /* Styles for larger screens */
      .product-card {
        width: 300px;
      }
      
      .product-card img {
        height: 100%;
      }
    }

/*** hover Button ***/
.hover-buttona {
     font-family: 'Nunito', sans-serif;
    font-weight: 800;
  display: inline-block;
  position: relative;
  padding: 0px 30px;

  border: none;
   color: coral;
  font-size: 20px;
    text-align: left;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
    border-radius: 10px; /* Adjust the value to change the roundness */
     box-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
    float: right;
}

.hover-buttona .text {
  display: inline-block;
  vertical-align: middle;
}



.hover-buttona:hover {
 
     transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0);
}

.hover-buttona .arrow {
  display: inline-block;
  font-size: 40px;
  vertical-align: middle;
  transition-property: transform;
  transition-duration: 0.3s;
    transform: translateX(0); /* Initial position */
  animation: moveArrow 1s infinite alternate;
    
}


@keyframes moveArrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}
