*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
:root{
    --main-grey-white-color: #EBEBEB;
    --main-black-color:#232323;
    --special-tags-color: rgba(216, 209, 193, 0.63);
    --button-color:#d8d8d8;
}

body{
    list-style: none;
    background-color: #EBEBEB;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    overflow-x: hidden;
}

main{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}
.header {
    padding: 1.6rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 61px;
}

.header img {
    height: 53px;
}

.navbar-lists {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-lists li {
    margin-right:43px;
}

.navbar-lists li:last-child {
    margin-right: 0;
}

.navbar-link {
    color: var(--main-black-color);
    transition: background-color 0.3s;
}

.navbar-lists li i{
    color: var(--main-black-color);
    cursor: pointer;
}

.icon {
    display: none;
}
.navbar-lists li:nth-child(1) i {
    color: rgb(48, 87, 15);
}

.navbar-lists li:nth-child(2) i {
    color: rgb(0, 0, 0);
}

.navbar-lists li:nth-child(3) i {
    color: rgb(11, 12, 11);
}

.dropdown-content a:nth-child(1) i {
    color: rgb(73, 86, 110);
}

.dropdown-content a:nth-child(2) i {
    color: rgb(255, 255, 255);
}

.dropdown-content a:nth-child(3) i {
    color: rgb(255, 255, 255);
}


@media screen and (max-width: 768px) {
    img{
        display: none;
    }
    .icon {
        display: flex;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 999;
        color: var(--main-black-color);
        font-size: 24px;
        cursor: pointer;
        flex-direction: row-reverse;
    }

    .navbar-lists {
        display: flex;
        position: fixed;
        top: 61px;
        left: -100%;
        background-color: var(--main-black-color);
        width: 35%;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: left 0.3s ease;
        z-index: 998;
        padding-left: 20px;
    }

    .navbar-lists i{
        padding-left: 30px;

    }

    .navbar-lists.responsive {
        left: 0;
        margin-right: 2rem;
    }

    .navbar-lists.responsive li {
        margin: 10px 0;
    }

    .navbar-link {
        padding: 5px 20px;
        text-align: left;
        width: 100%;
    }

    .navbar-link i {
        display: none;
    }

}




@media screen and (max-width: 768px) {
  
}


/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
    color: var(--main-grey-white-color);

}

/* Dropdown Button */
.dropbtn {
    background-color: transparent;
    color: var(--main-black-color);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    border: none;
    cursor: pointer;
}


.dropbtn i {
    margin-left: 4px;
    color: var(--main-black-color);

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--main-black-color);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    width: 160px;
}

.dropdown-content a {
    color: var(--main-grey-white-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
}

.dropdown-content a i {
    margin-right: 5px;
    color: var(--main-grey-white-color);
}

.dropdown-content a:hover {
    background-color: #a0a0a0c9;
}

.dropdown:hover .dropdown-content {
    display: block;
}


@media screen and (max-width: 768px) {
    .dropdown {
        display: block;
        margin-bottom: 10px;
    }

    .dropdown-content {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
        min-width: auto;
        border-radius: 0;
        width: 100%;
        top: initial;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropbtn {
        padding: 10px 20px;
    }

    .dropdown-content a {
        padding: 10px 20px;
    }

    .dropdown-content a i {
        display: none;
    }

    .dropdown:hover .dropdown-content a i {
        display: inline-block;
    }
}

.back-arrow{
    display: flex;
    width: 15%;
    padding: 2%;
    font-size: 25px;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    color: #232323;
}
/* Slider */

img {
  width: 100%;
  vertical-align: middle;
}

/* Grid start */

.grid-container {
    margin: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.grid-child-left{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.favs{
    width: 50px;
    float: right;
    margin-top: -50px;
    margin-right: 54px;
}

.favs:hover {
    cursor: pointer;
}
  /* Position the image container (needed to position the left and right arrows) */


  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .slide_btn{
    word-spacing: 10rem;  
    margin-left: -8rem;
    margin-top: 2rem;
    }
  .prev,
  .next {
    cursor: pointer;
    /* position: absolute; */
    width: auto;
    padding: 14px;
    margin-top: -50px;
    color: #232323;
    font-size: 26px;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  .prev:hover,
  .next:hover {
    background-color: #d8d1c1;
    opacity: 63%;
  }
  

  .banner{
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 20%;
    height: auto;
    background-color: #d8d1c1 ;
    opacity: 63%;
  }
   .details{
    width:100%;
    height: 200px;
    text-align: justify; 
    line-height: 3rem; 
}

.details h1{
font-size: 40px;
line-height: 10rem;
}
.details p{
    font-size: 24px;
    }
  
.details .size{
    font-size: 18px;
  }
  /* three columns side by side */
  .column {
    margin-top: 24%;
    float: left;
    width: 30%;
    margin-right: 5px;
  }
  
  /* Add a transparency effect for thumnbail images */
  .slides {
    opacity: 0.6;
  }
  
  .active,
  .slides:hover {
    opacity: 1;
  }

/* Dropup Button */
.drop_btn {
    background-color: #d8d8d8;
    color: #232323;
    padding: 16px;
    border: none;
  }
  
  /* The container <div> - needed to position the dropup content */
  .dropup {
    position: relative;
    display: inline-block;
  }
  
  /* Dropup content (Hidden by Default) */
  .dropup-content {
    display: none;
    position: absolute;
    bottom: 28px;
    background-color: #d8d8d8;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropup */
  .dropup-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropup links on hover */
  .dropup-content a:hover {
    background-color: #c4c4c4;
}
  
  /* Show the dropup menu on hover */
  .dropup:hover .dropup-content {
    display: block;
  }
  
  /* Change the background color of the dropup button when the dropup content is shown */
  .dropup:hover .drop_btn {
    background-color: #c4c4c4;
  }

.purchase-btn{
    color: #d8d8d8;
    display: flex;
    justify-content: flex-end;
    margin: 2rem;
    gap: 5px;
}
  .purchase-btn button{
    background-color: #d8d8d8;
    padding: 5px 25px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    font-size: 15px;
    text-decoration: none;
    border: none;
}
.purchase-btn button:hover{
    background-color: #c4c4c4;
}