
.product-image {
  max-width: 400px;              
  width: 100%;                   
  height: auto;                  
  display: block;                
  margin: 2rem auto;             
  border-radius: 16px;           
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
  object-fit: cover;             
}


@media (max-width: 768px) {
  .product-image {
    max-width: 90%;              
    margin: 1.5rem auto;
  }
}


.product-image:hover {
  transform: scale(1.05);        
  transition: transform 0.3s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}


.product-section {
  display: flex;                    
  align-items: center;              
  justify-content: space-between;   
  gap: 3rem;                        
  margin: 3rem 0;                   
  flex-wrap: wrap;                  
}


.product-text {
  flex: 1;                          
  min-width: 300px;                 
  text-align: left;
}

.product-text h2 {
  font-size: 2rem;
  color: #FFD700;                   
  margin-bottom: 1rem;
}

.product-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1rem;
}


.product-image-wrapper {
  flex: 1;                          
  max-width: 400px;                 
  text-align: right;                
}

.product-image {
  max-width: 100%;                  
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .product-section {
    flex-direction: column;         
    align-items: center;            
    text-align: center;             
  }

  .product-text {
    text-align: center;
    margin-bottom: 2rem;
  }

  .product-image-wrapper {
    text-align: center;
  }
}

.product-video-wrapper video {
  display: block;
  margin-left: 0;
}



.product-video-wrapper video {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin-top: 1rem;
  border-radius: 16px;                 
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4); 
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-text h2 {
    font-size: 2rem;
  color: #FFD700;                  
  margin-bottom: 1rem;

}

.video-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1rem;
}




.video-section {
    flex-direction: row-reverse;      

}

.video-wrapper {
    max-width: 400px;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
    display: block;
    transition: transform 0.3s ease;
}

.video-wrapper video:hover {
    transform: scale(1.03);
}


video {
    width: 100%;
    max-width: 400px;
}


@media (max-width: 768px) {
    .video-section {
        flex-direction: column;       
    }
    .video-text {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .video-wrapper {
        text-align: center;
    }
}