 /* Configure Tailwind and custom styles */
      :root {
        /* Define custom colors */
        --color-primary: #1a1a1a; /* Dark background */
        --color-secondary: #f43f72; /* Neon Pink/Fuchsia Accent */
        --color-text: #f0f0f0; /* Light text */
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Inter", sans-serif;
        background-color: var(--color-primary);
        color: var(--color-text);
      }

      /* Neon Accent Class for Text and Borders */
      .neon-accent {
        color: var(--color-secondary);
        text-shadow: 0 0 5px rgba(244, 63, 114, 0.7),
          0 0 10px rgba(244, 63, 114, 0.5);
      }

      /* Custom glow for buttons/CTA */
      .cta-button {
        transition: all 0.3s ease;
        box-shadow: 0 0 15px rgba(244, 63, 114, 0.5);
      }
      .cta-button:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 0 25px rgba(244, 63, 114, 0.8),
          0 0 40px rgba(244, 63, 114, 0.6);
        background-color: #f43f72; /* Darker pink on hover */
      }

      /* Image Hover Effect */
      .product-card-image {
        transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
        will-change: transform, filter; /* Optimization hint for smooth animation */
      }
      .product-card-image:hover {
        transform: scale(1.05) rotate(1deg);
        filter: brightness(1.2); /* Slight brightness change on hover */
      }

      /* Floating WhatsApp Button Style */
      .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background-color: #25d366;
        color: white;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, background-color 0.3s ease;
      }

      .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #128c7e;
      }

      /* Responsive Grid for Gallery */
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
      }

    .logo{
        border-radius: 50%;
    }