/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    background-repeat: repeat;
  }
  
  a {
    color: #c800ff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Header */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
  }
  
  header .logo img {
    width: 120px;
  }
  
  header .logo img:hover {
    filter: drop-shadow(0px 0px 10px #c800ff);
    transition: filter 0.3s ease;
  }
  
  header nav ul {
    display: flex;
    list-style: none;
  }
  
  header nav ul li {
    margin-left: 20px;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
  }
  
  header nav ul li a.active {
    color: #c800ff;
  }
  
  header nav ul li a:hover {
    color: #c800ff;
    transform: scale(1.1);
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  /* Hamburger Menu */
  header .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  header .hamburger div {
    width: 30px;
    height: 5px;
    background-color: white;
  }
  
  @media (max-width: 768px) {
    header nav ul {
      display: none;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 112px;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 0px;
    }
  
    header nav.active ul {
      display: flex;
    }
  
    header .hamburger {
      display: flex;
    }
  }
  
  /* Product Section */
  .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
  }
  
  .product-item {
    width: 45%;
    margin-bottom: 20px;
    text-align: center;
    padding: 10px; /* Space inside the border */
    border: 1px solid #ccc; /* Default border */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background-color: white; /* Background color */
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, filter 0.3s ease;; /* Smooth hover effect */
  }
  
  .product-item:hover {
    border-color: #c800ff; /* Purple border on hover */
    box-shadow: 0 4px 12px rgba(200, 0, 255, 0.5); /* Slightly stronger shadow with purple tint */
    transform: scale(1.05); /* Increase size slightly */
  filter: saturate(1.5); /* Increase saturation */
  }
  
  
  
  .product-item img {
    max-width: 35%; /* Reduce the width to 80% of its container */
    height: auto;
    border-radius: 10px;
    margin: 0 auto; /* Center the image */
  }
  
  .product-item h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin: 10px 0;
  }
  
  .product-item p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #666;
  }
  
/* Initial styles for the price overlay */
.product-item .price-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    color: white;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease; /* Smooth fade-in effect */
    border-radius: 10px; /* Match the product-item's rounded corners */
  }
  
  /* Ensure product-item is positioned relatively */
  .product-item {
    position: relative; /* Required for the overlay to position correctly */
    overflow: hidden; /* Prevent overlay from spilling outside */
  }
  
  /* Show the price overlay on hover */
  .product-item:hover .price-overlay {
    opacity: 1; /* Make it visible on hover */
  }
  

  /* Footer */
  footer {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
  }
  
  footer .social-icons a img {
    width: 30px;
    margin: 0 35px;
    transition: transform 0.3s ease; /* Smooth transition for the hover effect */
  }
  
  footer .social-icons a img:hover {
    transform: scale(1.2); /* Make the icon 20% larger on hover */
  }
  
  
  footer .social-icons img:hover {
    transform: scale(1.1);
  }
  
  @media (max-width: 768px) {
    .product-item {
      width: 100%;
    }
  }
  