/*===== GOOGLE FONTS =====*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
/*===== ROOT ======*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color:#222831	;
    --secondary-color:#393E46;
    --color-text:#fff;
    --header-height:3rem;
}
/*===== RESET HTML =====*/
html, body{
    width: 100%;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
}
/*===== OVERLAY =====*/
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    z-index: 55;
}
.first{
    background-color: var(--primary-color);
}
.second{
    left: 33.3%;
    background-color: #fff;
}
.third{
    left: 66.6%;
    background-color: var(--secondary-color);
}
/*===== CONTAINER'S =====*/
.left_container, .right_container{
    position: absolute;
    height: 100%;
    width: 50%;
    z-index: -50;
}
.left_container{
    background-color: var(--primary-color);
}
.right_container{
    left: 50%;
    background-color: var(--secondary-color);
}
/*===== STRIPS =====*/
.left_strip, .right_strip{
    position: absolute;
    width: 25px;
    height: 100vh;
    opacity: .5;
    z-index: -10;
}
.left_strip{
    left: 5rem;
    background-color: #F4EEE0;

}
.right_strip{
    right: 5rem;
    background-color: #F4EEE0;
}
/*===== BODY LAYOUT  =====*/
.body_layout{
    display: grid;
    grid-template-columns: 100%;
    align-items: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
/*===== HEADER =====*/
header{
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
}

/*===== NAV =====*/
.nav{
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav_insider{
    width: 75%;
    top: 60%;
    display: flex;
    align-items: center;
}
.nav__icon{
    font-size: 1.5rem;
    color: var(--color-text);
    text-transform: capitalize;
}
.nav__menu{
    margin-left: 9rem;
}
.nav__item{
    margin-bottom: 2rem;
}
.nav__link{
    color: #F4EEE0;
    text-transform: capitalize;
    font-size: 16px;
}
.nav__link:hover{
    border-bottom: 1px solid var(--color-text);
}

/*===== SOCIAL =====*/
.social{
    position: absolute;
    right: 12rem;
    top: 50%;
}
.social ul {
    list-style: none;
}
.social ul li{
    display: inline-block;
    font-weight: 500;
    cursor: pointer;
}
.social ul li i{
    font-size: 19px;
    color: #F4EEE0;
}
.social ul li:nth-child(1)::after{
    content: "/";
    position: absolute;
    left: 60%;
    color: #F4EEE0;

}
.social ul li:nth-child(2)::after{
    content: "/";
    position: absolute;
    left: 55%;
    color: #F4EEE0;

}
.social ul li:not(:last-child){
    padding-right: 70px;

}
.about_text{
    position:absolute;
    font-size: 15px;
    font-weight: 500;
    color: #F4EEE0;
    top:17rem;
    left:15rem;
    width:30%;
    z-index: -10;
}

.product_text{
    position: absolute;
    top: 17%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: -10;

}
.product_title{
    font-size: 100px;
    text-transform: capitalize;
    color: var(--color-text);
    z-index: -10;
}
.product_title > sup{
    font-size: 30px;
    color: var(--color-text);
    z-index: -10;
}
.product_type{
    font-size: 25px;
    font-weight: 500;
    color: var(--color-text);
    z-index: -10;
    text-transform: capitalize;
}

/*===== MEDIA QUERIES (FOR MAX-WIDTH:768px) =====*/
@media screen and (max-width:768px) {
    .logo{
        margin-left: 0.5rem;
    }
    .social{
        display: none;
    }
    .nav{
        height: 2.5rem;
    }
    .nav__menu{
        position: fixed;
        top: var(--header-height);
        background-color: black;
        right: 50%;
        width: 44%;
        height: 100vh;
        padding: 1.5rem;
        z-index: 25;
        border-top: 1px solid #eee;
        border-left: 1px solid #eee;
        transition: all 0.5s;
    }
    .left_strip{
        left: 110px;
    }
    .right_strip{
        right: 100px;
    }
    .product_title{
        font-size: 45px;
    }
    .product_title > sup{
        font-size: 25px;
    }
    .product_type{
        font-size: 18px;
    }
    .slide_nav_wrapper{
        flex-direction: row;
        left: 10px;
    }
    .iconstyle{
        display: none;
    }
}
/*===== MEDIA QUERIES (FOR MIN-WIDTH:768px) =====*/
@media screen and (min-width:768px) {
    .nav__list{
        display: flex;
    }
    .nav__item{
        margin-bottom: 0;
        margin-left: 2rem;
    }
    .menu_toggle_btn{
        display: none;
    }
    .nav__item.search_btn, .nav__item.cart_btn{
        display: none;
    }
}

/*===== MEDIA QUERIES (FOR MIN-WIDTH:1200px) =====*/
@media screen and (min-width:1200px) {
    .body_layout{
        padding-left: 1.5rem;
        padding-right: 2.2rem;
    }
}

.iconstyle{
    max-width: 260px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-100%, -50%);
}
img{
    -webkit-animation: mover 2s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(15px); }
}


body.menu-toggled > .meta-link > span {
    color: rgb(30, 30, 30);
  }
  
  #source-link {
    bottom: 3%;
    left:74%;
    right: 11%;
  }
  
  #source-link > i {
    color: #F4EEE0;
  }
  
  #yt-link > i {
    color: rgb(239, 83, 80);
  }
  
  .meta-link {
    align-items: center;
    backdrop-filter: blur(3px);
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    bottom: 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;  
    display: inline-flex;
    gap: 5px;
    left: 10px;
    padding: 10px 20px;
    position: fixed;
    text-decoration: none;
    transition: background-color 400ms, border-color 400ms;
    z-index: 10000;
  }
  
  .meta-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .meta-link > i, .meta-link > span {
    height: 20px;
    line-height: 20px;
  }
  
  .meta-link > span {
    color: white;
    font-family: "Rubik", sans-serif;
    font-weight: 500;
  }
