*{
	padding:0;
	margin:0;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');


body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.top-header img{
	width:100%;
}
/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  color: #fff;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.logo {
  font-size: 1.7rem;
  font-weight: bold;
}

/* Nav Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: #0a0a0a;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #00bfff;
}
nav ul li:last-child a {
	background:#0a0a0a;
	border-radius:6px;
	color:#fff;
	
}
nav ul li:last-child a:hover {
	color:#fff;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Transform into X */
.menu-toggle.open .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Responsive Nav */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    right: 2rem;
    background-color: #222;
    padding: 1rem 2rem;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  nav.active {
    opacity: 1;
    transform: translateY(10px);
    pointer-events: auto;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}
.hot-cats .card-title {
	letter-spacing: -1px;
	font-weight:600;
	margin-bottom:0
}

.new-arr{
	padding:30px 0; margin-bottom:25px;
background:#FFF9F0;}
	
}
.card.product-card {
      
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      margin: 20px auto;
      text-align: center;
    }
    .badge {
      background-color: #ff4d4d;
      color: white;
      font-weight: bold;
      padding: 4px 8px;
      position: absolute;
      top: 10px;
      left: 10px;
      border-radius: 4px;
      font-size: 12px;
    }
    .image-container {
      position: relative;
    }
    .image-container img {
      width: 100%;
      height: auto;
    }
    .title {
      font-size: 18px;
      font-weight: 600;
      margin: 10px 0 5px;
      color: #2e3a59;
    }
    .subtitle {
      font-size: 14px;
      color: #6c7a9c;
      margin-bottom: 10px;
    }
    .stars {
      color: gold;
      font-size: 18px;
      margin-bottom: 10px;
    }
    .price {
      font-size: 20px;
      font-weight: bold;
      color: #00bfff;
    }
    .original-price {
      text-decoration: line-through;
      color: #aaa;
      margin-left: 10px;
    }
    .discount {
      color: red;
      margin-left: 10px;
      font-weight: bold;
    }
	
	/*bottom products*/
	.bottom-products .main-bg {
      background-color: #0c223f;
      color: #fff;
      padding: 2rem;
    }
    .bottom-products .main-bg h1 {
      font-weight: 700;
      font-size: 1.8rem;
    }
    .main-bg h5 {
      font-weight: 400;
    }
    .bottom-products .product-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0,0,0,0.05);
      padding: 1rem;
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .bottom-products .product-card img {
      width: 153px;
      height: auto;
      border-radius: 5px;
    }
    .bottom-products .product-info {
      font-size: 0.9rem;
    }
    .bottom-products .price {
      color: #00bfff;
      font-weight: bold;
    }
	
	
	@media (min-width: 992px) {
	  .col-lg-5th {
		flex: 0 0 20%;
		max-width: 20%;
	  }
	}
	.heading-text{
		margin-bottom:30px;
	}
	.heading-text h2{
		font-size:50px;font-weight: 800;
	} 
	.heading-text.first h2{
		font-size:54px;font-weight: 800;
	}
	
	.heading-text .tagline-txt{
		font-weight: 600;
	} 
	
	@media (max-width: 768px) {
		.heading-text h2{
			font-size:30px;font-weight: 800;
		} 
		.heading-text.first h2{
			font-size:34px;font-weight: 800;
		}
		
	}
	
	footer .text-muted {
		color: #8E8E8E !important;
	}
	footer a.text-muted:hover {
		color: #fefefe !important;
	}
	
	@media (min-width: 768px) {
	nav ul li a {
		padding: 15px;
		display: block;
	}
	}