@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: currentColor;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .cart-count {
      top: -8px;
      right: -8px;
      animation: bounce 1s infinite;
    }

    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-2px);
      }
    }

    /* Hamburger animation */
    .open span:nth-child(1) {
      transform: rotate(45deg) translateY(6px);
    }

    .open span:nth-child(2) {
      opacity: 0;
    }

    .open span:nth-child(3) {
      transform: rotate(-45deg) translateY(-6px);
    }

    /* Slide down animation */
    #mobile-menu {
      transition: max-height 0.4s ease-in-out;
      overflow: hidden;
      max-height: 0;
    }

    #mobile-menu.show {
      max-height: 500px; /* large enough to fit content */
    }

    /* Overlay background */
    #menu-overlay {
      background-color: rgba(0, 0, 0, 0.4);
    }


 .hero-image {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
            url('Enhanced_Responsive_Design.svg') center/cover no-repeat;
        }

        .hero-image h1, .text-xl, .bg-indigo-600, .collections{
          position: relative;
          top: 150px;
          font-family: Georgia, 'Times New Roman', Times, serif;
        }

        /* General styles */
.subscribe-area {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.subscribe-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* dark overlay for contrast */
    z-index: -1;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #333;
}

.subscribe-form h3 {
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

/* Input styles */
.subscribe-form .form-control {
    border-radius: 6px;
    height: 45px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.subscribe-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Button style */
.subscribe-form .btn {
    width: 100%;
    height: 45px;
    border-radius: 6px;
    font-weight: 600;
    background-color: #000000;
    border: none;
    transition: background-color 0.3s ease;
}

.subscribe-form .btn:hover {
    background-color: #0056b3;
}

.upper{
  position: relative;
  display: none;
}