 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-color: #f6f6f6;
}

.navbar {
  background-color: #074D8B;
  /* box-shadow: rebeccapurple; */
  position: sticky;
  top: 0;
  z-index: 1;
}
.Categories {
  background-color: #e2f1fe;
  font-size: 18px;
  padding: 30px;
  margin-top: 2px;
}
.Categories .cat-text{
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif;
  cursor: pointer;
  margin: 20px;
  text-decoration: none;
}
#user{
  color: white;
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif;
  /* background-color: #162431; */
  font-size: 16px;
}
.cat-text:hover{
  background-color: #c5ddf3;
  padding: 5px;
  border-radius: 8px;
  color: #4e7aa1;
}

.nav-content {
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
    width: 15%;
    margin-right: 20px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-container input {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  width: 700px;
  outline: none;
}

.category-filter select {
  padding: 0.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  background-color: #074D8B;;
  color: #e5e7eb;
}

.cart-btn {
  position: relative;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #FAA323;
  cursor: pointer;
  font-size: 30px;

}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #6190bd;
  color: white;
  font-size: 0.75rem;
  padding: 0.125rem 0.375rem;
  border-radius: 99px;
}
.login {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  background-color: #FAA323;
  border: 1px solid #b6a07e;
  color: #074D8B;
}

.header-section {
  display: flex;
  justify-content: space-between;
}
img{
  width: 90%;
  margin-left: 60px;
  border-radius: 20px;
  margin-top: 12px;
}
.img-hero{
  display: none;
}

.nav-button {
  background-color: rgb(42, 42, 42);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px;
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 3rem;
  z-index: 1;
  
}

.nav-button.left {
  left: 80px;
}
.nav-button.right {
  right: 90px;
}
.main-content {
  max-width: 1280px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.main-content h2{
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #074D8B;
  /* text-decoration: rgb(250, 163, 35) underline 5px ; */
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 2fr));
   /* grid-template-columns: repeat(minmax(250px, 1fr)); */
  gap: 2rem;

}

.product-card {
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  border: 1px solid rgb(216, 216, 216);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s;
  
}
.brand-card {
  display: flex;
  text-align: center;
  width:200px;
  align-items: center;
  margin-left: 0px;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img{
  width: 100%;
  margin-bottom: 1rem;
  margin-left: 2px;
}
.brand-image{
  width: 100%;
  cursor: pointer;
  margin-bottom: 1rem;
/* overflow: hidden; */
}

.product-info h3 {
  font-size: 22px;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 22px;
  color: #171717a6;
  font-weight: 700;
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif
}

.product-price {
  font-size: 22px;
  font-weight: 600;
  color: rgb(250, 163, 35);
  line-height: 21px;
  margin:  0.5rem 0;

}

.product-category {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #555;
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif;
  cursor: pointer;
  text-decoration: none;
}
.rating{
  font-family: woodmart-font;
  font-size: 14px;
  line-height: 15px;
  font-weight: 400;
  margin-top: 0.5rem;
}
.rating i{
  color: #555;
}

.addbtn {
  width: 100%;
  padding: 0.5rem;
  color: #074D8B;
  border: 2px solid #074D8B;
  border-radius: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  font-weight: bold;

}

.addbtn:hover {
  background-color: #074D8B;
  color: white;
}
.Vedio{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.footer{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #074D8B;
  color: #fff;
  width: 100%;
  padding: 50px;

}
.footer-logo {
padding: 20px;

}
.footer-logo img{
  width: 60%;
  margin-left: 30px;
}
.footer-logo .socialmedia{
  margin-left: 30px;
  margin-top: 20px;
  
}
.socialmedia i{
  width: 25px;
  padding: 1px;
  border-radius: 2px;
  background-color: #4e7aa1;
}
.quick-links, .top-gatigories, .douwnload-now{
  display: block;
}
.quick-links h4, .top-gatigories, h4{
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif;
  margin-bottom: 10px;
}
.quick-links a, .top-gatigories a{
  text-decoration: none;
  display: block;
  color: #f6f6f6;
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-top: 10px;
}
.quick-links  i{
  color: #FAA323;
  font-size: 20px;
}
.top-gatigories i{
  color: #FAA323;
  font-size: 20px;
}
.douwnload-now img{
  width: 60%;
  margin-left: 20px;

}
.douwnload-now{
  margin-top: 20px;
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  
}

.modal.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
 
}

.modal-content {
  background: #e5e7eb;
  border-radius: 0.5rem;
  width: 100%;
  padding: 28px;
  max-width: 700px;
  max-height: 100vh;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 2rem;
  right: 1rem;
  background: none;
  border: none;
  color: #074D8B;
  cursor: pointer;
}
h2{
  margin-top: 20px;
  color: #074D8B;
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif;
}

.cart-items {
  margin: 1.5rem 0;
  
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.cart-item img {
  width: 100px;
  height: 80px;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif;
}

.cart-item-details h4 {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  padding: 0.25rem 0.5rem;
  border: 1px solid #e5e7eb;
  background: #f6f6f6;
  border-radius: 0.25rem;
  cursor: pointer;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #e5e7eb;
}

.checkout-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #FAA323;
  color: white;
  border: none;
  border-radius: 0.375rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.checkout-btn:hover {
  background-color: #074D8B;
}
footer{
  background-color: #FAA323;
  padding: 30px;
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: 400;
  font-family: "Samsung Sharp", Arial, Helvetica, sans-serif
}
.toggle-menu{
    position: absolute;
    top: 55px;
    left: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;

}
.toggle-menu .bar{
    height: 3px;
    width: 100%;
    background-color: #FAA323;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 1rem;
  }
  .toggle-menu{
        display: flex;
        margin-left: 5px;
    }
  .logo{
    width: 40%;
    margin-left: 10px;
  }
  img{
  width: 95%;
  margin-left: 15px;
  border-radius: 10px;
}
.Vedio{
   width: 100%;
   margin-left: 10px;
  border-radius: 20px;
}

  .search-container, .category-filter, .login, #user{
    display: none;
  }
  .cart-btn{
    position: absolute;
    top: 30%;
    right: 5%;
    
  }
  .Categories{
    display: none;
  }
  .Categories.active, .cat-text{
    display: block;
    background-color: #e99311;
    padding: 10px;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    
  }
  
 .navbar.active .navbar-links{
        opacity: 1;
        max-height: 300px;
                transition: max-height 0.8s ease-in-out, opacity 0.8s ease-in-out ;

    }

  .navbar.active .toggle-menu .bar:nth-child(2) {
        opacity: 0;  
    }
  .navbar.active .toggle-menu .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
  .navbar.active .toggle-menu .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

  .brand-card {
  display: block;
  text-align: center;
  width: 400px;
  margin-right: 20px;
}

  .products-grid{
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
  }
  .footer{
  display: block;
  background-color: #074D8B;
  color: #fff;
  padding: 20px;
  width: 100%;
  }
  .footer-logo {
  padding: 10px;

}
  .footer-logo img{
  width: 50%;
}
.socialmedia i{
  width: 50px;
  padding: 10px;
  border-radius: 1px;
  background-color: #4e7aa1;
}
.quick-links, .top-gatigories, .douwnload-now{
  margin: 30px;
  /* border-bottom: 0.5px solid #afdaff; */
}
.quick-links h4, .top-gatigories, h4{
  font-weight: 750;
  font-size: 29px;
}
.quick-links a, .top-gatigories a{
  font-size: 18px;
  font-weight: 100;
  padding: 20px;
  border-bottom: 1px solid #6190bd;
}
.douwnload-now img{
  width: 90%;

}
footer{
  padding: 10px;
  font-size: 16px;
}

}