.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    background-color: #000000;
    color:#b74b4b;
    position: relative;
    transition: background-color 0.3s ease;
    height: 8vh;
}

.logo a {
    text-decoration: none;
    color: #b74b4b;
    font-size: 24px;
    font-weight: bold;
    letter-spacing:2px;
    transition: color 0.3s ease;
    
}

/* Navbar Styles */
.navbar ul {
    display: flex;
    gap:18px;
    list-style-type: none;
    padding: 0 30px;
}

.navbar li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
    transition: 1s;
    text-transform: uppercase;
    padding: 15px;
}

.navbar li a:hover {
    color: #b74b4b;
    text-decoration: underline 2px;
    transition: .3s;
    
}

/* Menu Icon for mobile view */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
}

.menu-icon span {
    background-color: white;
    height: 3px;
    width: 100%;
    transition: all 0.3s ease;
}

/* Mobile Menu (hidden by default) */
.navbar ul {
    display: flex;
    
}

@media (max-width: 768px) {
    .navbar ul {
        position: absolute;
        top: 60px;
        left: 25vh;
        width: 80%;
        background-color: #000000;
        flex-direction: column;
        align-items: center;
        display: none; /* Hidden by default */
        transition: all 0.3s ease-in-out;
    }

    .navbar.active ul {
        display: flex; /* Shows the menu when 'active' class is added */
    }

    .menu-icon {
        display: flex;
    }

    /* Hamburger Icon Animation */
    .menu-icon.open span:nth-child(1) {
        transform: rotate(50deg);
        position: relative;
        top: 6px;
    }

    .menu-icon.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
        position: relative;
        bottom:6px;
    }

    .navbar li {
        padding: 10px 0;
    }

    .navbar li a {
        font-size: 18px;
    }
}

/* Header hover effects */
.header:hover {
    background-color: #000000;
}
@media (max-width: 768px) {
    .navbar ul {
        position: absolute;
        top: 60px;
        right: 1.5em;
        width: 250px;
        background-color: #000000;
        flex-direction: column;
        align-items: center;
        display: none; /* Hidden by default */
        transition: all 0.3s ease-in-out;
    }

    .navbar.active ul {
        display: flex; /* Shows the menu when 'active' class is added */
    }

    .menu-icon {
        display: flex;
    }

    /* Hamburger Icon Animation */
    .menu-icon.open span:nth-child(1) {
        transform: rotate(50deg);
        position: relative;
        top: 6px;
    }

    .menu-icon.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
        position: relative;
        bottom:6px;
    }

    .navbar li {
        padding: 10px 0;
    }

    .navbar li a {
        font-size: 18px;
    }
}
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #000;
      color: white;
      line-height: 1.6;
    }

  
    /* ===== Product Section ===== */
    .product-section {
      padding: 70px 10%;
    }

    .product-title {
      text-align: center;
      font-size: 2em;
      margin-bottom: 30px;
      color: #b74b4b;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 35px;
      
    }

    .product-card {
      background: #111;
      border: 1.5px solid #b74b4b;
      border-radius: 10px;
      overflow: hidden;
      transition: all 1s ease;
      cursor: pointer;
    }
    .product-card img
    {
      position: relative;
        }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 30px 35px 85px rgba(183, 75, 75, 0.4);
    }

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: 0.3s ease;
    }

    .product-card:hover img {
      opacity: 0.9;
    }

    .product-info {
      padding: 15px;
    }

    .product-info h3 {
      color: #b74b4b;
      margin-bottom: 10px;
    }

    .product-info p {
      font-size: 0.9em;
      color: #ccc;
    }

    /* ===== Button ===== */
    .btn {
     display: inline-block;
    padding: 1rem 1rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 15px;
    color: #b74b4b;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 0.5px solid #b74b4b;
    transition: 0.5s ease;
    cursor: pointer;
    text-decoration: none;
    }

    .btn:hover {
      transform: scale3d(1.03);
    background-color: #b74b4b;
    color: black;
    box-shadow: 0 0 50px #b74b4b;
    text-transform: uppercase;
    transition: .8s;
    }

    /* ===== Footer ===== */
    footer {
      text-align: center;
      padding: 20px;
      border-top: 1px solid #333;
      color: #999;
      font-size: 0.9em;
      margin-top: 50px;
    }

    /* ===== Responsive ===== */
    @media (max-width: 600px) {
      .product-info h3 {
        font-size: 1em;
      }
    }
  