*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'K2D', sans-serif;
}
body{
    background-color: rgb(0, 0, 0);
}
.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 20vh;
}
.nav{
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100px;
    line-height: 100px;
    background: linear-gradient(rgba(88, 70, 70, 0.6), transparent);
    z-index: 100;
}
.nav-logo img{
    margin-top: 10px;
    color: white;
    width: auto;
    height: 80px;
}
.nav-menu ul{
    display: flex;
}.nav-menu ul li,
.popup li{
  list-style-type: none;
}
.popup{
  border-radius: 20px;
}
.popup li a{
  text-decoration: none;
  font-weight: 500;
  color: black;
  padding: 3px;
}

.user-btn{
    display: flex;
    height: 50px;
    width: 50px;
    margin-top: 30px;
    position: relative;
    }
    .popup {
      position: absolute;
      background-color: #fff;
      border: 1px solid #ccc;
      padding: 10px;
      display: none; /* Hide by default */
  }
  
  /* Style for the pop-up content */
  .popup-content {
      color: #333;
  }
  
  /* Style for showing the pop-up when hovering */
  .user-btn:hover + #popup {
      display: block;
  }
.nav-menu li .link{
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    padding-bottom: 15px;
    margin: 0 25px;
}
.link:hover, .act{
    border-bottom: 2px solid #fff;
}
.nav-button .btn{
    width: 130px;
    height: 40px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s ease;
}
.btn:hover{
    background: rgba(255, 255, 255, 0.3);
}
#SignupBtn{
    margin-left: 15px;
}
.btn.white-btn{
    background: rgba(255, 255, 255, 0.7);
}
.btn.btn.white-btn:hover{
    background: rgba(255, 255, 255, 0.5);
}
.nav-menu-btn{
    display: none;
}
.login-container{
    width: 500px;
    display: flex;
    flex-direction: column;
    transition: .5s ease-in-out;
}
.form-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 512px;
    height: 420px;
    overflow: hidden;
    z-index: 2;
}

.login-container{
    position: absolute;
    left: 4px;
    width: 500px;
    display: flex;
    flex-direction: column;
    transition: .5s ease-in-out;
}
.input-field{
    font-size: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    height: 50px;
    width: 100%;
    padding: 0 10px 0 45px;
    border: none;
    border-radius: 30px;
    outline: none;
    transition: .2s ease;
}
.input-field:hover, .input-field:focus{
    background: rgba(255, 255, 255, 0.25);
}
::-webkit-input-placeholder{
    color: #fff;
}
.input-box i{
    position: relative;
    top: -35px;
    left: 17px;
    color: #fff;
}
.submit{
    font-size: 15px;
    font-weight: 500;
    color: black;
    height: 45px;
    width: 100%;
    border: none;
    border-radius: 30px;
    outline: none;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: .3s ease-in-out;
}
.submit:hover{
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 1px 5px 7px 1px rgba(0, 0, 0, 0.2);
}

.user-btn{
    display: flex;
    height:50px;
    width:50px;
    margin-top: 30px;
}

.two-col{
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: small;
    margin-top: 10px;
}
.two-col .one{
    display: flex;
    gap: 5px;
}
.two label a{
    text-decoration: none;
    color: #fff;
}
.two label a:hover{
    text-decoration: underline;
}

.dropdown ul li{
    display: inline-block;
    position:relative;
}

 ul li a{
    display:block;
    margin: 0;
    text-decoration: none;
    text-align: left;
    font-size: 20px;
    color: red;
}

ul li ul.dropdown li{
    display:block;
}

ul li ul.dropdown{
    background: rgba(0, 0, 0 0.6);
    position:absolute;
    z-index: 999;
    display:none;
}

ul li:hover ul.dropdown{
    display: block;
}

.gallery-img-container{
    min-height:100vh;
}

.gallery-img-container h1{
    font: 40px;
    padding:15px;
    color:white;
    text-align: center;
    text-transform: capitalize;
}

.gallery-img-container .showcase{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
    
}

.gallery-img-container .showcase .sc-imgs{
    height: 250px;
    width: 350px;
    border: 5px solid white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow:hidden;
    cursor: pointer;
}

.gallery-img-container .showcase .sc-imgs img{
    height: 100%;
    width:100%;
    border-radius: 10px;
    object-fit: cover;
    transition: .2s linear;
}

.gallery-img-container .showcase .sc-imgs:hover img{
    transform: scale(1.1);
}

.gallery-img-container .popup-img{
    position: fixed;
    top: 0;
    left: 0;
    background:rgba(0, 0, 0 0.9);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}

.gallery-img-container .popup-img{
    position: fixed;
    top: 0;
    left:0;
    background:rgba(0,0,0,0.9);
    height: 100%;
    width: 100%;
    z-index: 100;
}

.gallery-img-container .popup-img span{
    position:absolute;
    top:0;
    right:10px;
    font-size: 60px;
    font-weight: bolder;
    color: #fff;
    cursor:pointer;
    z-index: 100;
}

.gallery-img-container .popup-img img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #fff;
    border-radius: 5px;
    width: 800px;
    object-fit: cover;
}
.prod-details p{
    font-size: 20px;
    text-align: justify;
}
@media(max-width: 768px){
    .gallery-img-container .popup-img img{
        width: 95%;

    }

}

.prod-details{
    color: white;
    padding: 20px;

}

.prod-details h1{
font-weight: bold;
}

.prod-details h2{
    font-weight: bold; 
    color: red; 
    text-align: center;
    padding:10px;
}

.prod-details li{
    display: flex;
    justify-content: center;
    font-size: 20px;
}

.buttons{
    display: flex;
    height: 50px;
    width: 300px;
    justify-content: center;
    gap: 20px;
    background-color: red;
    padding: 10px;
    color: white;
    font-size: 20px;
    margin: 20px auto;
}

.buttons a{
    text-decoration: none;
    color: white;
}

.suggestion{
    display: flex;
    justify-content: space-around;
    right:1;
    padding: 10px;
    color: white;
}

.suggestion-title{
    margin: 20px;
    gap:10px;
    font-size: 30px;
}

.picture1 {
    display: flex;
    justify-content: center;
    height: 15rem;
    width: 30rem;
    border-radius: 10px;
    object-fit: cover;
    transition: filter 0.3s ease, border 0.3s ease;
}
.image-text1 {
    position: relative; 
    top: -50px; 
    color: white;
    font-size: 24px;
    font-weight: bold;
    visibility: hidden;
}

.picture1:hover {
   transition: scale(1.1);
    border: 2px solid rgba(255, 255, 255, 0.5); /* Add illuminated border */
}

footer{
    position:relative;
    bottom: 1;
    left: 0;
    right: 0;
    background: #111;
    height: auto;
    width: 100vw;
    font-family: "Open Sans";
    padding-top: 40px;
    color: #fff;
}

.footer-content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.footer-content h3{
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
}
.footer-content p{
    max-width: 500px;
    margin: 10px auto;
    line-height: 28px;
    font-size: 14px;
}
.socials{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}
.socials li{
    margin: 0 10px;
}
.socials a{
    text-decoration: none;
    color: #fff;
}
.socials a i{
    font-size: 1.1rem;
    transition: color .4s ease;

}
.socials a:hover i{
    color: aqua;
}

.footer-bottom{
    background: #000;
    width: 100vw;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p{
    font-size: 14px;
    word-spacing: 2px;
    text-transform: capitalize;
}
.footer-bottom span{
    text-transform: uppercase;
    opacity: .4;
    font-weight: 200;
}

