*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "Noto Sans", sans-serif;
}
.closeheading{
  display:flex;
  justify-content: space-around;
  align-items: center;
  background-color: black;
  color: #E2E1E1;
}
.closebtn{
  cursor: pointer;
}
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.nostra{
  font-size: 24px;
  font-weight: bold;
}
nav a{
  margin-left: 20px;
  text-decoration: none;
  color: black;
  font-weight: 500;
}
nav a:hover{
  color: #555;
}
.slider{
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.slides-container{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.slide{
  min-width: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  transition: opacity 0.5s;
}
.overlay-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
}
.overlay-content h1{
  font-size: 3rem;
  font-weight: bold;
}
.overlay-content h3{
  margin-top: 10px;
  font-size: 1.2rem;
}
.shop-btn{
  margin-top: 15px;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background-color: white;
  color: black;
  border-radius: 4px;
  transition: background 0.3s;
}
.shop-btn:hover{
  background-color: #ddd;
}
.nav-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  padding: 0 15px;
  cursor: pointer;
  z-index: 20;
  border-radius: 8px;
}
.nav-btn.prev{
  left: 10px;
}
.nav-btn.next{
  right: 10px;
}
.brands__heading{
    margin: 50px;
}
.brands{
    display: flex;
    gap: 20px; 
    align-items: center;
    justify-content: space-around; 
    flex-wrap: wrap;
}
.brands__s1{
    text-align: center;
}
.brands img{
    width: 75px;
    height: 75px;
}
.heading{
    display: flex;
    justify-content: space-between;
    margin: 50px;
}
.heading p{
    margin-top: 10px;
}
.features{
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-box{
  background-color: #f4f6f8;
  border-radius: 8px;
  padding: 20px 25px;
  width: 270px;
  text-align: left;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.feature-box i{
  font-size: 32px;
  color: #000;
  margin-bottom: 15px;
  display: block;
}
.feature-box h3{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}
.feature-box p{
  font-size: 15px;
  color: #333;
  margin: 0;
}
.new-arrivals{
  padding: 40px 20px;
}
.new-arrivals h2{
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.products{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.product-card{
  position: relative;
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}
.product-card img{
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.6);
}
.shop-button{
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  color: black;
  border: none;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.shop-button:hover{
  background-color: #f0f0f0;
}
.most-wanted h2{
  font-size: 28px;
  font-weight: 700;
  margin: 20px;
}
.shirt-grid{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px;
}
.shirt-card{
  position: relative;
  background: #f9f9f9;
  padding: 10px;
  border-radius: 8px;
  width: 335px;
  text-align: center;
}
.shirt-card img{
  width: 100%;
  border-radius: 6px;
}
.sale-tag{
  position: absolute;
  top: 10px;
  left: 10px;
  background: red;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
}
.heart-icon{
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 24px;
  color: black;
  cursor: pointer;
}
.promo-banner{
  width: 97%;
  background-color: #1c222c;
  color: #f1f1f1;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}
.promo-content{
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.promo-image{
  flex: 1 1 300px;
  max-width: 500px;
  width: 100%;
}
.promo-text{
  flex: 1 1 300px;
}
.promo-text h1{
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.promo-text p{
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.shop-btn{
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #1c222c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s;
}
.shop-btn:hover{
  background-color: #e0e0e0;
}
.newsletter-container{
  text-align: center;
  max-width: 100%;
  padding: 40px;
}
.newsletter-container h1{
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.newsletter-container .highlight{
  font-weight: 700;
}
.newsletter-container p{
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 30px;
}
.form-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.form-container input[type="email"] {
  width: 100%;
  max-width: 600px;
  padding: 15px;
  font-size: 1rem;
  border: 2px solid #000;
  border-radius: 3px;
  outline: none;
}
.form-container button{
  background-color: #1a1a1a;
  color: #fff;
  font-size: 1.25rem;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.3s ease;
}
.form-container button:hover{
  background-color: #333;
}
.arrow{
  font-size: 1.25rem;
}
.nostra-section{
  background-color: #1a1f27;
  color: #f1f1f1;
  padding: 60px 40px;
  min-height: 40vh;
  box-sizing: border-box;
}
.nostra-section h2{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.nostra-section p{
  font-size: 1.25rem;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.social-icons{
  display: flex;
  gap: 20px;
}
.social-icons a{
  color: #fff;
  font-size: 1.8rem;
  transition: color 0.3s;
}
.social-icons a:hover{
  color: #ccc;
}