.popup-img {
    max-width: 100%;
    height: 500px;
}

header {
    position: relative;
}

.search_input {
    position: absolute;
    top: 0rem;
    left: 0;
    width: 100%;
    height: 74px;
    background-color: var(--white-color);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in;
    box-shadow: 0 0 3px rgba(0, 0, 0, .4);
}

.search_input.active {
    opacity: 1;
    visibility: visible;
    transition: .3s ease-in;
}

.search_input__box {
    position: relative;
    width: 45%;
}

.search_input__box button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 20px;
    background-color: var(--main-color);
    color: var(--white-color);
    height: 100%;
    border: none;
    outline: none;
}

.search_close i {
    position: absolute;
    right: -3rem;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.search_close i:hover {
    color: #454545 !important;
    transition: .3s ease-in;
}

/*.myNav.sticky .search_btn i {*/
/*    color: var(--white-color) !important;*/
/*}*/

.search_close i {
    color: var(--black-color) !important;
    font-size: 33px !important;
}

.search_input__box input {
    width: 100%;
    border: 1px solid var(--black-color);
    padding: 10px;
    outline: none;
}

.myNav {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 99;
    background: var(--main-color);

    transition: .3s ease-in;
}

/*.myNav.sticky .logo img {*/
/*    mix-blend-mode: normal;*/
/*}*/

/*.myNav.sticky {*/
/*    background-color: var(--white-color);*/
/*    transition: .3s ease-in;*/
/*    box-shadow: 0 0 3px rgba(0, 0, 0, .5);*/
/*}*/

.myNav_content {
       display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_menu ul {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header_menu ul li a {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    color: var(--white-color);
}

/*.myNav.sticky .header_menu ul li a {*/
/*    color: var(--black-color);*/
/*}*/

/*.myNav.sticky .header_icon i {*/
/*    color: var(--black-color);*/
/*}*/

.header_icon {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cart {
    position: relative;
}

.cart p {
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: var(--main-color);
    color: var(--white-color);
    height: 20px;
    width: 20px;
    border-radius: 100%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
}

/* cart sidebar */
.cart_sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: #11182780;
    /* visibility: hidden; */
    transition: .3s ease-in;
}

.cart_sidebar.active {
    right: 0;
    transition: .3s ease-in;
}

.filter_sidebar__content {
    position: absolute;
    right: 0;
    top: 0;
    width: 20%;
    height: 100%;
    background-color: var(--white-color);
}

.filter_heading {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.filter_heading h6 {
    text-transform: capitalize;
    font-size: 22px;
}

.cart_cancel i {
    height: 35px;
    width: 35px;
    border-radius: 100%;
    background-color: #ddd;
    color: var(--black-color);
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s ease-in;
}


.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: var(--white-color) !important;
}

.cart_input {
    top: 100px;
    right: 40px;
    position: absolute;
}

.cart_input p,
.cart_input input {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.cart_input button {
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 6px 10px;
    border: none;
    outline: none;
}

.cart_sidebarBox:last-child {
    border-bottom: 0;
}

.cart_sidebarBox__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
}

.bottom_price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
}

.view--cart {
    margin-top: 2rem;
}

.view--cart a {
    letter-spacing: 1px;
    background-color: var(--black-color);
    color: var(--white-color);
    width: 100%;
    display: block;
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    font-size: 18px;
}

.view--cart a:hover {
    color: var(--white-color);
}

.bottom_price p {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--black-color);
    font-weight: 500;
}

.bottom_price h6 {
    font-weight: 600;
    font-size: 24px;
    color: var(--black-color);
}



.cart_sidebar__content {
    padding: 1rem;
}

.cart_sidebarBox {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid #ccc;
    padding: 1rem 0;
}

.cart_sidebar__img img {
    height: 120px;
    width: 120px;
    object-fit: cover;
}

.cart_content h6 {
    text-transform: capitalize;
    font-size: 18px;
}



/* mobile_nav */
.mobile_nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 999;
    width: 100%;
    height: 100%;
    background-color: #11182780;
    /* visibility: hidden; */
    transition: .3s ease-in;
}

.mobile_nav.navbar--active {
    right: 0;
    transition: .3s ease-in;
}

.mobile_nav__content {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 70%;
    background-color: var(--white-color);
}

.mobile_nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.cancel_nav i {
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 100%;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black-color);
    color: var(--white-color);
}

.mobile_menu ul {
    padding: 1rem !important;
}

.mobile_menu ul li {
    margin-bottom: 12px;
}

.mobile_menu ul li a i {
    font-size: 22px;
}

.mobile_menu ul li a {
    color: var(--black-color);
    font-size: 17px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    font-weight: 500;
    gap: 1rem;
}



.banner_video video {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.header_icon i {
    color: var(--white-color);
    font-size: 22px;
    cursor: pointer;
}

/* banner_video */
.banner_video {
    position: relative;
}

.banner_video__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.banner_video__content a {
    background-color: var(--black-color);
    padding: 10px 30px;
    color: var(--white-color);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.banner_video__content a:hover {
    background-color: var(--black-color);
    color: var(--white-color);
    transition: .3s ease-in;
}

.collection_wrapper {
    padding: 40px 0 100px 0;
}

.collection_wrapper__content h1 {
    font-size: 24px;
    margin-bottom: 1rem !important;
}

.collection_box__img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.collection_box__img {
    position: relative;
}

.hide_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s ease-in;
}

.collection_box__img:hover .hide_img {
    opacity: 1;
    transition: .3s ease-in;
}

.collection_box__content h3 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--black-color);
    margin-top: 10px;
}

.collection_box__content p {
    color: var(--black-color);
    font-weight: 500;
}

.collection_box {
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.collection_content__btn {
    text-align: center;
}

.collection_content__btn a {
    padding: 7px 30px;
    border-radius: 5px;
    color: var(--white-color);
    font-size: 18px;
    letter-spacing: 1px;
    background-color: var(--black-color);
    text-transform: capitalize;
}

.collection_content__btn a:hover {
    color: var(--white-color);
}

.footer_wrapper {
    background-color: var(--black-color);
    padding: 10px 0;
}

.footer_wrapper__content ul {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: end;
}

.footer_wrapper__content ul li a {
    font-size: 18px;
    color: var(--white-color);
    text-transform: capitalize;
}

.menu_icon {
    display: none;
}

.styled-text {
    font-family: 'Spectral', serif;
    font-weight: 700;
    font-size: 50px;
    color: #5daded;
    display: inline-block;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
}

.styled-text .ampersand {
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    color: #5daded;
}

.logo a {
    font-size: 32px;
    font-family: 'Spectral', serif;
    color: white;
    font-weight: 700;
}

.mob_logo a {
    font-size: 25px;
    font-family: 'Spectral', serif;
    color: #5daded;
    font-weight: 700;
}


.logo a:hover {
    color: #5daded;
}

/*.myNav.sticky p {*/
/*    color: var(--black-color) !important;*/
/*}*/

@media(max-width: 1400px) {
    .filter_sidebar__content {
        width: 40%;
    }
}

@media(max-width:1200px) {

    .header_menu ul,
    .header_icon {
        gap: 13px;
    }

    .logo a {
        font-size: 35px;
    }
}

@media(max-width:992px) {
    .myNav_content {
        padding: 12px 0;
    }

    .filter_sidebar__content {
        width: 60%;
    }

    .header_menu ul {
        display: none;
    }

    .menu_icon {
        display: block;
    }

    .menu_icon i {
        color: var(--white-color);
        font-size: 26px;
    }

    /*.myNav.sticky .menu_icon i {*/
    /*    color: var(--black-color);*/
    /*}*/

    .header_menu {
        display: none;
       
    }

    .header_icon {
        display: flex;
        align-items: end;
       
    }
}


@media(max-width:768px) {
    .logo a {
        font-size: 28px;
    }

    .logo {
        width: 110%;
    }

    .search_input__box {
        width: 80%;
    }

    .collection_box__img img {
        height: 300px;
    }

    .footer_wrapper__content ul {
        gap: 1rem;
    }

    .footer_wrapper__content ul li a {
        font-size: 16px;
    }

    .collection_wrapper__content h1 {
        font-size: 19px;
    }

    .collection_box {
        margin-bottom: 20px;
    }

    .banner_video__content a {
        font-size: 16px;
    }

    .collection_content__btn {
        margin-top: 2rem;
    }

    .collection_content__btn a {
        font-size: 16px;
    }

    .collection_box__content h3 {
        font-size: 17px;
    }

    .collection_wrapper {
        padding: 40px 0 50px 0;
    }

    .header_icon i {
        font-size: 18px;
    }
}


@media (max-width: 576px) {
    .logo a {
        font-size: 22px;
    }

    .banner_wrapper {
        margin-top: 4rem;
    }

    .search_close i {
        right: -2rem;
    }

    .filter_sidebar__content {
        width: 90%;
    }

    .collection_box__img img {
        height: 270px;
    }

    .footer_wrapper__content ul {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .myNav p {
        font-size: 14px;
        padding-top: 5px;
    }
}

@media (max-width: 450px) {
    .banner_wrapper {
        margin-top: 51px;
    }
    .myNav p{
        font-size:11px;
    }
}
@media (max-width: 400px){
    .myNav p{
        font-size:10px;
    }
    
}


