*{
    margin:0;
    padding:0;
}

.header{
    min-height:100vh;
    width:100%;
    background:#fff;
    background-position:center;
    background-size:cover;
}
.FashionHub{
    color: rgb(0, 0, 0);
    font-size: 40px;
    text-align: left-aligned;
    padding: 20px 0;
    margin-left: 10%;
}
nav{
    display:flex;
    padding:10px 40px;
    justify-content: space-between;
    align-items:center;
    background:linear-gradient(90deg,rgba(23, 165, 151, 0.7), rgba(136, 223, 215, 0.1)); 
    position: relative;
}
.nav-links{
    flex:1;
    display:flex;
    justify-content:center;
}
.nav-links ul{
    display:flex;
    gap:30px;
}
.nav-links ul li{
    display:flex;
    gap:40px;
    list-style:none;
    display:inline-block;
    padding:20px 40px;
    position: relative;
}
.nav-links ul li a{
    color:rgb(0,0,0);
    text-decoration:none;
    font-size:13px;
    font-weight: bold;
}
.nav-links ul li::after{
    content:'';
    width:0%;
    height:2px;
    background:rgb(0, 0, 0);
    display: block;
    margin:auto;
    transition:0.5s;
}
.nav-links ul li:hover::after{
    width:100%;
}

nav .fa{
    display:none;
}
@media(max-width: 700px)
{
    .FashionHub{
        font-size: 30px;
    }
    .nav-links{
        position: absolute;
        background:rgb(1, 126, 116);
        height:100vh;
        width:200px;
        top:0;
        right:-200px;
        text-align:left;
        z-index:2;
        transition:right 0.3s ease;
    }
    nav .fa{
        display: block;
        color:#000;
        margin: 10px;
        font-size:22px;
        cursor:pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}
.image-container{
    display:flex;
    justify-content: center;
    align-items: center;

}
.banner-img {
    width: 80%;
    height: auto;
    display: block;
    margin-top: 30px;
    cursor:pointer;
    transition: transform 0.3s ease;
}
.banner-img:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    filter: brightness(1.1);
}


/*.text-box {
    color:rgb(0, 0, 0));
    display:inline-block;
    font-size:20px;
    font-weight:500;
    text-transform:capitalize;
    border:2px solid #111;
    padding:12px 25px;
    transition: all 0.42s ease;
}*/

.products{
    position:relative;
}
.text-box {
    color:#000;
    position: absolute;
    top: 110%; 
    left: 23%; 
    transform: translate(-50%, -50%);
    background-color:#000;
    color:#fff;
     
    padding: 10px 30px;
    border-radius: 0px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition:all .42 ease;
}
.text-box:hover{
    cursor:pointer;
    border:2px solid #111;
    background-color: rgba(255,255,255);
    color:#000
}
.center-text h2{
    text-align:center;
    font-size:40px;
    text-transform:capitalize;
    
    margin-top:85px;
}
.center-text span{
    color:rgba(0, 112, 99, 0.7);
}
.trending-img {
    width: 80%;
    height: auto;
    display: block;
    margin-top: 30px;
    cursor:pointer;
    transition: transform 0.3s ease;
}
.trending-img:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    filter: brightness(1.1);
}
.trending-img-container{
    display: flex;
    justify-content: center;
    align-items: center;    
}
.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px, auto));
    gap:2rem;
}
.row{
    position:relative;
    transition:all 0.4s;
}
.row img{
    width:100%;
    height:auto;
    transition:all 0.4s;
}
.row img:hover{
    transform:scale(0.9);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 30px;
    padding: 40px;
    justify-content: center;
    justify-items:center;
  }
  
  .product-card {
    width: 60%;
    text-align: center;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }
  
  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
  }
  .product-card button {
    background-color: #111;
    color: white;
    border: none;
    padding: 8px 16px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .product-card button:hover {
    background-color: teal;
  }
  
  .nav-icons {
    display: flex;
    gap: 40px;
    font-size: 18px;
    margin-right:100px;
  }
  
  .nav-icons i {
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease;

  }
  
  .nav-icons i:hover {
    color: teal;
  }
  