.topNav p {
    text-align: center;
    font-weight: 500;
    color: var(--black-color);
}

.topNav {
    background-color: var(--main-color);
    padding: 10px 3rem;
}

.topNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black-color);
}

.topNav_content__left,
.topNav_content__right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.topNav_content a {
    color: var(--black-color) !important;
}

.myNav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 0 2rem;
    border-bottom: 1px solid #ccc;
}

.myNav.sticky {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 0 3px rgba(0, 0, 0, .4);
    background-color: var(--white-color);
}

.menu_right ul {
    justify-content: end;
}

.logo img {
    /* width: 380px; */
    width: 100px;
}

.logo {
    text-align: center;
    padding: 1rem 0;
}

.logo p a {
    margin-top: 5px;
    font-weight: 500;
    display: block;
    color: var(--black-color);
}

.menu ul {
    display: flex;
    gap: 2rem;
}

.menu ul li a {
    text-transform: uppercase;
    font-size: 16px;
    color: var(--black-color);
    font-weight: 500;
    display: flex;
    padding: 2rem 0;
}


.myNav {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 3px;
}

.dropdown-btn i {
    font-size: 15px;
    color: var(--main-color);
}

.dropdown_menu__list {
    padding: 3rem;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: var(--white-color);
    z-index: 99;
    width: 100%;
    display: flex;
    gap: 1rem;
    justify-content: start;
    align-items: center;
    box-shadow: 0 4px 2px rgba(0, 0, 0, .14);
    border-top: 1px solid #ccc;
    scrollbar-width: auto;
    overflow-x: auto;
    transition: .973s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    scrollbar-color: #999 transparent;
    visibility: hidden;
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);

}

.dropdown_menu:hover .dropdown_menu__list {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    visibility: visible;
    opacity: 1;
    transition: 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu__list::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.dropdown_menu__list::-webkit-scrollbar {
    height: 1px !important;
    display: none;
    width: 1px;
}

.dropdown_menu__list::-webkit-scrollbar-track {
    background: transparent;
}

.dropdown_menu__list::-webkit-scrollbar-thumb {
    background-color: #666;
    border-radius: 1px;
    height: 1px !important;
    display: none;
}

.dropdown_box {
    min-width: 150px;
    flex-shrink: 0;
}

.dropdown_box__img img {
    cursor: pointer;
    width: 250px;
    height: 250px;
    object-fit: cover;
    transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_box__img {
    overflow: hidden;
}

.dropdown_box__img:hover img {
    transform: scale(1.1);
    transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_box h6 {
    text-transform: capitalize;
    margin-top: 10px;
}

/* banner */
.hero-three__item {
    position: relative;
}

.hero-three__bg {
    position: relative;
    overflow: hidden;
}

.banner_slider.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}

.hero-three__bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(270deg, rgb(0 0 0 / 0%) 0%, rgba(0, 0, 0, 0.89) 100%);
}

.hero-three__bg img {
    width: 100%;
    height: 720px;
    object-fit: cover;
}
.hero-three{
    height: 720px !important;
}
.hero-three__content {
    position: absolute;
    /* left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.761);
    width: 900px;
    padding: 2rem;
    backdrop-filter: blur(3px);
    border-radius: 10px; */

    left: 5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white-color);
}

.hero-three__content h2 {
    text-transform: capitalize;
    font-size: 45px;
    font-weight: 600;
    text-shadow: 0 3px 4px rgba(0, 0, 0, .4);
    letter-spacing: .21px;
}

.hero-three__bg img {
    transition: transform 4s ease;
    transform: scale(1);
    /* default size */
}

.slick-active .hero-three__bg img {
    transform: scale(1.1);
    /* zoom slightly */
    transition-delay: .2s;
    /* wait 2s before zoom starts */
}

.hero-three__content p {
    margin-top: 1rem;
    font-size: 18px;
    max-width: 700px;
    line-height: 30px;
}

.myBtn {
    margin-top: 2rem;
}

.hero-three__btn a:nth-child(2) {
    background-color: var(--white-color);
    border: 1px solid var(--main-color);
    color: var(--black-color);
}

.banner_slider .slick-dots {
    bottom: 3rem !important;
}

.banner_slider .slick-dots li.slick-active button {
    background-color: var(--white-color) !important;
}

.hero-three__btn a:hover {
    background-color: var(--main-color);
    color: var(--black-color);
}

.hero-three__btn {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 1rem;
}

/* collection */
.categories_gird {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.global_wrapper {
    padding: 50px 0;
}

.global_content {
    margin-top: 2rem;
}

.main_heading h2 {
    text-transform: capitalize;
    font-size: 54px;
    text-align: center;
    font-weight: 500;
}

.collection_box__img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: .7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.collection_box__img {
    overflow: hidden;
    border-radius: 10px;
}

.collection_box:hover img {
    transform: scale(1.1);
    transition: .7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.collection_box {
    margin: 0 12px;
    margin-bottom: 1rem !important;
}

.collection_box__name h3 {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: var(--black-color);
    text-transform: capitalize;
}

.collection_box__name h6 {
    font-size: 16px;
    color: var(--black-color);
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.collection_box__name p {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    color: #434343;
}

.collection_box__name p span {
    background-color: var(--main-color);
    color: #000;
    padding: 0 5px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: hill 1.5s infinite;
}

@keyframes hill {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }
}

.slick-dots li.slick-active button:before {
    display: none !important;
}

.slick-dots {
    bottom: -3rem !important;
}

.slick-dots li {
    width: 6px !important;
    height: 6px !important;
    aspect-ratio: 1 !important;
    margin: 0 2px !important;
}

.slick-dots li button {
    transition: all 0.5s ease-in;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 32px;
    background: rgba(182, 182, 182, 0.5) !important;
}

.slick-dots li.slick-active button {
    background: var(--main-color) !important;
    width: 1.5rem !important;
    transition: all 0.5s ease-in;
}

.slick-dots li.slick-active {
    width: 1.5rem !important;
}

.slick-dots li button::before {
    display: none !important;
}

/* ************ */
.slider-mobile-gutter {
    position: relative;
    display: block;
}

.section-collection-category-list .collection-list-wrapper .collection-lists-wrap[data-layout=grid] .collection-list {
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 14vw;
    gap: 2rem;
}

.categories_box__img img {
    width: 100%;
    transition: .6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: cover;
}

.categories_box__img {
    position: relative;
    transition: .4s cubic-bezier(0.075, 0.82, 0.165, 1);
    overflow: hidden;
    cursor: pointer;
}

.categories_box__img:hover img {
    transform: scale(1.12);
    opacity: .98;
    transition: .6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.categories_box__img:hover .seller_name {
    bottom: 0;
    transition: .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.seller_name {
    position: absolute;
    bottom: -50%;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: 0;
    background-color: var(--main-color);
    padding: 10px;
    width: 100%;
}

.seller_name h6 {
    font-size: 20px;
    text-align: center;
    text-transform: capitalize;
    color: var(--black-color);
}

.box1 img {
    height: 850px;
}

.box2 {
    margin-bottom: 24px;
}

.box2 img {
    height: 555px;
}

.box3 img {
    height: 270px;
}

.box5 {
    margin-top: 24px;
}

.box5 img {
    height: 555px;
}

/* cta_box__img */
.cta_box {
    position: relative;
}

.cta_box__img img {
    width: 100%;
}

.cta_box__content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.cta_box__content h3 {
    font-size: 45px;
    font-weight: 700;
}

.cta_box__content p {
    margin-top: 1rem;
    font-size: 20px;
}

/* blogs_box__img */
.blogs_box {
    margin-bottom: 24px;
}

.blogs_box__img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.blogs_box__img {
    position: relative;
}

.blogs_box__img p {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--black-color);
    color: #fff;
    padding: 3px 10px;
}

.blogs_box__content h6 {
    text-transform: capitalize;
    font-size: 18px;
    margin-top: 1rem;
}

.blogs_box__content p {
    font-size: 15px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blogs_box__content a {
    text-transform: capitalize;
    margin-top: 10px;
    display: flex;
    color: var(--main-color) !important;
    font-weight: 600;
}

/* blogs--details */
.blogs--img img {
    width: 100%;
    height: auto;
}

.blogs_content h3 {
    margin-top: 1rem;
    text-transform: capitalize;
    font-size: 36px;
    font-weight: 700;
}

.blogs_content p,
.blogs_content ul li {
    margin-top: 1rem;
    list-style: disc !important;
    line-height: 28px;
}

.blogs_content h6 {
    margin-top: 1rem;
}

.blogs_content ul {
    padding-left: 2rem !important;
}


.menu_icon {
    display: none;
}

.menu_icon i {
    font-size: 26px;
}



.mobileNav {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(3px);
    transition: .3s ease;
    z-index: 999;
}

.mobileNav.active {
    right: 0;
    transition: .3s ease;
}

.mobile_header {
    display: flex;
    background-color: var(--main-color);
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
}

.mobile_header__logo img {
    width: 80px;
}

.mobile_header__logo {
    text-align: center;
}

.mobile_header__logo p {
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
}

.cancel_btn i {
    cursor: pointer;
    height: 32px;
    width: 32px;
    border-radius: 100%;
    color: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
}

.mobileNav_content {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    overflow-y: auto;
    height: 100%;
    background-color: var(--white-color);
}

.mob-menu {
    height: 580px;
    overflow-y: scroll;
}

.mob-menu ul li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    color: var(--black-color);
}

/* Show animation when mobileNav is active */
.mobileNav.active .mob-menu ul li,
.dropdown_btn.active .dropdown_btn__list ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay */
.mobileNav.active .mob-menu ul li:nth-child(1),
.dropdown_btn.active .dropdown_btn__list ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobileNav.active .mob-menu ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobileNav.active .mob-menu ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobileNav.active .mob-menu ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobileNav.active .mob-menu ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobileNav.active .mob-menu ul li:nth-child(6) {
    transition-delay: 0.6s;
}

.mobileNav.active .mob-menu ul li:nth-child(7) {
    transition-delay: 0.7s;
}

.mobileNav.active .mob-menu ul li:nth-child(8) {
    transition-delay: 0.8s;
}

.mobileNav.active .mob-menu ul li:nth-child(9) {
    transition-delay: 0.9s;
}

.mob-menu ul li,
.dropdown_btn__list ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile_social {
    position: absolute;
    bottom: 0;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-top: 1px solid #ccc;
}

.mobile_social p {
    font-weight: 500;
    text-transform: capitalize;
}

.mobile_social__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.mobile_social__icons a img {
    width: 34px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.dropdown_btn__list {
    height: 0;
    overflow: hidden;
}

.dropdown_btn.active .dropdown_btn__list {
    height: auto;
    overflow: auto;
}

@media(max-width:1900px) {
   .menu ul {
        gap: 1rem;
   }
}
@media(max-width:1760px) {
   .logo {
        margin-left: 5rem;
   }
   .myNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
}
@media(max-width:1650px) {
    .logo img{
        width: 100px;
    }
}

@media(max-width:1440px) {
    .hero-three__content {
        left: 1.5rem;
    }

    .myNav {
        padding: 0 1rem;
    }

    .menu ul {
        gap: 1rem;
    }

    .menu ul li a {
        font-size: 14px;
    }


    .collection_box__img img {
        height: 300px;
    }

    .box1 img {
        height: 740px;
    }

    .box2 img,
    .box5 img {
        height: 441px;
    }

    .hero-three__bg img,.hero-three {
        height: 620px !important;
    }
}

@media(max-width:1200px) {
    .logo img {
        width: 100px;
    }
    .logo {
        margin-left: 2rem;
    }
}

@media(max-width:992px) {
    .menu {
        display: none;
    }
    .logo {
        margin-left: 0;
    }

    .menu_icon {
        display: block;
    }

    .myNav {
        padding: 0 1.5rem;
    }

    .categories_gird {
        grid-template-columns: repeat(3, 1fr);
    }

    .center_box {
        margin: 0 50%;
        width: 100%;
        margin-top: 24px !important;
    }

    .box1 img {
        height: 600px;
    }

    .box2 img,
    .box5 img {
        height: 350px;
    }

    .box3 img {
        height: 225px;
    }
}

@media(max-width:768px) {

    .center_box {
        margin: auto;
        margin-top: auto !important;
    }

    .mobileNav_content {
        width: 75%;
    }

    .mobile_header {
        padding: 10px 16px;
    }

    .mobile_header__logo img {
        width: 55px;
    }

    .blogs_box {
        margin-bottom: 1rem;
    }

    .categories_box {
        margin-bottom: 12px;
    }

    .box2 img,
    .box5 img,
    .box3 img {
        height: auto;
    }

    .mygrid {
        display: flex;
        overflow-x: auto;
        gap: 0 !important;
        scroll-behavior: smooth;
    }

    .mygrid .collection_box {
        min-width: 200px;
        flex-shrink: 0;
    }

    /* Optional: Hide scroll bar */
    .mygrid::-webkit-scrollbar {
        display: none;
    }

    .mygrid {
        -ms-overflow-style: none;
        /* IE & Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .box2 {
        margin-bottom: 12px;
    }

    .topNav {
        padding: 5px 12px;
    }

    .topNav p {
        font-size: 13px;
    }

    .topNav_content__right,
    .topNav_content__left {
        display: none;
    }

    .topNav_content {
        justify-content: center;
    }

    .blogs_box__content p {
        font-size: 14px;
        margin-top: 7px;
    }

    .topNav p {
        font-size: 13px;
    }

    .hero-three__content h2 {
        font-size: 32px;
    }

    .hero-three__content p {
        font-size: 15px;
        line-height: 24px;
    }

    .categories_gird {
        grid-template-columns: repeat(2, 1fr);
    }

    .main_heading h2 {
        font-size: 28px;
    }

    .global_wrapper {
        padding: 30px 0;
    }

    .collection_box__name h6 {
        font-size: 14px;
    }

    .hero-three__bg img,.hero-three {
        height: 550px !important;
    }

    .myNav {
        padding: 0 16px;
    }

    .logo img {
        width: 100px;
    }

    .slick-dots {
        bottom: -1rem !important;
    }

    .categories_box__img img {
        height: 300px;
    }

    .cta_box__content h3 {
        font-size: 38px;
    }

    .cta_box__content p {
        font-size: 16px;
        margin-top: 6px;
    }

    .myBtn {
        margin-top: 1rem;
    }

    .cta_box__img img {
        height: 450px;
    }

    .logo p {
        font-size: 14px;
    }

    .collection_box__img img {
        height: 200px;
    }

    .collection_box__name h3 {
        font-size: 16px;
    }
}

@media(max-width:576px) {
    .cta_box__content h3 {
        font-size: 26px;
    }

    .mobileNav_content {
        width: 90%;
    }
}