/**
 * Form styles for success message
 */
 .success-message {
    display: none;
    padding: 15px;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    text-align: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* Add these styles to your existing CSS file */
/* Only adding the minimal required styles for the flip effect */

.product-image-container {
    position: relative;
    height: 250px; /* Adjust based on your product image size */
    perspective: 1000px;
    overflow: hidden;
  }
  
  .product-image-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  
  .product-image-front,
  .product-image-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product-image-front img,
  .product-image-back img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .product-image-back {
    transform: rotateY(180deg);
  }
  
  .product-item:hover .product-image-flipper {
    transform: rotateY(180deg);
  }