/* ========================================
   1. Imports
   ======================================== */
@import url("skin.css");
@import url("pre-define.css");
@import url("animation.css");


/* ========================================
   2. Header & Navigation
   ======================================== */
.top-bar {
    background-color: var(--primary);
    height: 25px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

    .top-bar p {
        text-transform: uppercase;
        font-size: 10px;
        letter-spacing: 1.3px;
    }

header {
    position: fixed;
    top: 25px;
    height: auto;
    width: 100%;
    background-color: transparent;
    color: var(--text-color);
    z-index: 992;
    display: flex;
    /* background-color: rgba(255, 255, 255, 0.8); */
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
    align-items: center;
    box-shadow: none;
    transition: all 0.5s;
}

    header.style-1 {
        top: 25px;
    }

.header:hover {
    background-color: var(--light-color);
    transition: all 0.5s;
}

.header .nav-link > a {
    color: var(--light-color);
    font-family: "avenir-book", "Avenir", sans-serif;
}

.header.is-fixed {
    top: 0;
    top: 25px;
    position: fixed;
}


.header.is-fixed,
.header:hover,
header.style-1 {
    background-color: var(--light-color);
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}

    .header.is-fixed .nav-link > a,
    .header:hover .nav-link > a,
    header.style-1 .nav-link > a {
        color: var(--title-color);
    }

    .header.is-fixed .nav-icon,
    .header:hover .nav-icon,
    header.style-1 .nav-icon {
        color: var(--title-color);
    }

.header .header-inner {
    padding: 5px 10px;
    border: none;
    background-color: transparent;
    transition: all 0.5s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header.is-fixed .header-inner,
.header:hover .header-inner,
header.style-1 .header-inner {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

header .header-inner.h-bottom {
    padding: 0 10px;
}

    header .header-inner.h-bottom .nav-group .nav-link .nav-inner-link {
        padding: 12px 15px;
        text-align: left;
    }

header .megatitle {
    line-height: 1.5;
    color: var(--dark-color);
    /* margin: 0 0.5rem; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 1.2px;
    font-weight: 700;
    text-transform: uppercase;
}

.header .header-port-media .header-media {
    width: 100%;
    height: 320px;
}

    .header .header-port-media .header-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.header .header-port-media .h-content {
    padding: 10px;
}

    .header .header-port-media .h-content .title {
        line-height: 1.5;
        color: var(--dark-color);
        /* margin: 0 0.5rem; */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s;
        font-size: 11px;
        line-height: 15px;
        letter-spacing: 1.2px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0;
    }

/* Logo Section */
.logo-container {
    flex: 1;
    width: fit-content;
    height: 100%;
    text-align: center;
}


    .logo-container img {
        max-width: 270px;
        width: 100%;
        height: 100%;
    }

/* Navigation Buttons */
.nav-btn {
    flex: 5;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    text-align: center;
    margin: auto;
    margin: 0 10px;
}

/* Nav Links */
.nav-links {
    width: 100%;
    text-align: center;
    margin: auto;
    display: contents;
}

    .nav-links > ul {
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        width: 100%;
        border-radius: var(--border-radius-lg-base);
        /* padding: 0 15px; */
        position: static;
    }

header .nav-group .nav-link a {
    position: relative;
    display: block;
}

header .nav-group .nav-link .g-box {
    display: flex;
    align-items: center;
}

    header .nav-group .nav-link .g-box .g-media {
        width: 15px;
        height: 15px;
        overflow: hidden;
        border-radius: 50%;
        margin-right: 5px;
        transition: all 0.5s ease-in-out;
    }

    header .nav-group .nav-link .g-box:hover .g-media {
        transform: scale(1.3);
    }

    header .nav-group .nav-link .g-box .g-media img {
        width: 100%;
        display: block;
        height: 100%;
        object-fit: cover;
    }

.nav-link > a {
    line-height: 1.5;
    color: var(--dark-color);
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 1.2px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-link:hover > a {
    /* transform: scale(1.05); */
    color: var(--primary);
}

.header .logo-container .logo-light {
    display: block;
}

.header .logo-container .logo-dark {
    display: none;
}

.header.style-1 .logo-container .logo-light {
    display: none;
}

.header.style-1 .logo-container .logo-dark {
    display: block;
}

.is-fixed.header .logo-container .logo-light,
.header:hover .logo-container .logo-light {
    display: none;
}

.is-fixed.header .logo-container .logo-dark,
.header:hover .logo-container .logo-dark {
    display: block;
}

/* Dropdown Menu */
header .dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: -50%;
    width: 14rem;
    transform: translate(0, 50%);
    opacity: 0;
    pointer-events: none;
    background-color: var(--light-color);
    transition: transform 0.5s, opacity 0.5s;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
}

.header .dropdown .dropdown-link {
    position: relative;
}

.header .dropdown ul {
    position: relative;
}

.dropdown-link > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--dark-color);
    line-height: 1.2;
    font-size: 12px;
}

.header .dropdown-link > a:hover {
    color: var(--primary-hover);
    transition: all 0.5s, color 0.3s;
}

.header .dropdown-link:not(:nth-last-child(1)) {
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
}

.nav-link:hover > .dropdown,
.dropdown-link:hover > .dropdown {
    transform: translate(0, -3px);
    opacity: 1;
    pointer-events: auto;
}

/* Second-level Dropdown */
.dropdown.second {
    top: 0;
    left: 100%;
    cursor: pointer;
    transform: translateX(15px);
}

/* Login / Sign-up Buttons */
.log-sign {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}


.header.is-fixed .nav-link > a,
.header.style-1 .nav-link > a {
    color: var(--dark-color);
}

.header .nav-link > a i {
    font-size: 80%;
    line-height: 1.1;
}

.header .nav-icon-list {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    width: auto;
    flex: 1;
    padding: 5px 0;
}

    .header .nav-icon-list .search-wrapper {
        display: flex;
        align-items: center;
    }

        .header .nav-icon-list .search-wrapper i {
            cursor: pointer;
        }

        .header .nav-icon-list .search-wrapper .form-control {
            border: none;
            font-size: 13px;
            background: transparent;
            color: var(--light-color);
        }

.header:hover .nav-icon-list .search-wrapper .form-control, .header.is-fixed .nav-icon-list .search-wrapper .form-control, .header.style-1 .nav-icon-list .search-wrapper .form-control {
    color: var(--dark-color);
}

.header .nav-icon-list .search-wrapper .form-control::placeholder {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.header.style-1 .nav-icon-list .search-wrapper .form-control::placeholder, .header.is-fixed .nav-icon-list .search-wrapper .form-control::placeholder {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.8);
}

.header .nav-icon-list .search-wrapper i {
    color: var(--light-color);
}

.header.is-fixed .nav-icon-list .search-wrapper i,
.header:hover .nav-icon-list .search-wrapper i,
.header.style-1 .nav-icon-list .search-wrapper i {
    color: var(--title-color);
}

.header.is-fixed .nav-icon-list .search-wrapper .form-control::placeholder,
.header:hover .nav-icon-list .search-wrapper .form-control::placeholder {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.8);
}

.header .nav-icon .line-shopping {
    font-size: 22px;
}

.header .nav-icon {
    color: var(--light-color);
    transition: all 0.5s;
    display: flex;
    align-items: center;
    margin-left: 0px;
    padding: 5px 0;
}

    .header .nav-icon .form-group {
        margin-bottom: 0;
        margin-left: 5px;
    }

        .header .nav-icon .form-group .form-control {
            border: none;
            font-size: 14px;
        }

            .header .nav-icon .form-group .form-control::placeholder {
                font-size: 14px;
            }

.header .form-control:focus {
    box-shadow: none;
}

.header .nav-icon:hover {
    color: var(--primary);
    transition: all 0.5s;
}

/* ========================================
   3. Hamburger Menu (Mobile)
   ======================================== */
.hamburger-menu-container {
    flex: 1;
    display: none;
    justify-content: flex-end;
}

.hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    justify-content: center;
    cursor: pointer;
    border-radius: var(--border-radius-base);
}

    .hamburger-menu div {
        width: 1.6rem;
        height: 3px;
        border-radius: var(--border-radius-sm-base);
        background-color: var(--light-color);
        position: relative;
        z-index: 0;
        transition: all 0.5s;
    }

        .hamburger-menu div:before,
        .hamburger-menu div:after {
            content: '';
            position: absolute;
            width: inherit;
            height: inherit;
            background-color: var(--light-color);
            border-radius: var(--border-radius-sm-base);
            transition: all 0.5s;
        }

.is-fixed .hamburger-menu {
    background-color: var(--primary);
}

.hamburger-menu div:before {
    transform: translateY(-7px);
}

.hamburger-menu div:after {
    transform: translateY(7px);
}

header .nav-link {
    position: static;
}

header .mega-title {
    padding: 5px 0;
    color: var(--dark-color);
    margin: 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 1.2px;
    font-weight: 700;
    text-transform: uppercase;
}

header .mega-dropdown {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--light-color);
    opacity: 0;
    pointer-events: none;
    transform: translateY(75px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 999;
    padding-bottom: 150px;
}

header .nav-link:hover > .mega-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(30px);
}

header.style-1 .nav-link:hover > .mega-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(30px);
}

header.is-fixed .nav-link:hover > .mega-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(30px);
    /*    transform: translateY(5px);*/
}

header .style-1.nav-link:hover > .mega-dropdown {
    transform: translateY(-10px);
    width: fit-content;
    right: 0;
    left: auto;
}

header .style-1.nav-link .mega-dropdown {
    transform: translateY(-10px);
    width: fit-content;
    right: 0;
    left: auto;
    padding: 10px;
}

.header .nav-link.style-1 > a {
    font-size: 20px;
    color: var(--light-color);
}

.is-fixed.header .nav-link.style-1 > a, .style-1.header .nav-link.style-1 > a, .header:hover .nav-link.style-1 > a {
    color: var(--primary);
}

header .nav-link.style-1 {
    position: relative;
}

    header .nav-link.style-1 .megatitle {
        padding-bottom: 5px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    }

header .mega-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    text-align: start;
    border-radius: var(--border-radius-base);
}

header .mega-dropdown .dropdown-link {
    border-bottom: none;
}

header .mega-dropdown a {
    padding: 0;
    font-weight: 500;
    line-height: 15px;
    font-size: 15px;
    display: block;
    letter-spacing: 0.5px;
    margin-top: 5px !important;
}

/*inner menu*/
.inner-menu {
    position: absolute !important;
    right: 0;
    top: -10px;
    height: fit-content !important;
    width: 140px;
    padding: 10px !important;
    transition: all 0.5s !important;
    z-index: 999;
    display: none;
    pointer-events: none;
    background-color: var(--light-color);
}

    .inner-menu .hm-menu .m2 {
        left: 12px;
    }

.dropdown-link:hover .inner-menu {
    display: block;
    pointer-events: auto;
    transition: all 0.5s;
}

/*.inner-menu .hm-menu p {
    font-size: 10px !important;
}*/

.inner-menu .hm-menu {
    margin-top: 0;
}

.inner-menu .hm-menu {
    position: relative;
    display: block;
    padding-left: 12px;
}

    .inner-menu .hm-menu::after {
        content: "\f105";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary);
        font-size: 10px;
    }

/*  Header End  */

.banner.inner-p-banner .banner-inner {
    height: 70vh;
    position: relative;
    z-index: 1;
}

    .banner.inner-p-banner .banner-inner:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--dark-color);
        opacity: 0.4;
        z-index: -1;
    }

/* banner start */
.banner-inner {
    height: 85vh;
    background-color: var(--primary-dark);
    background-color: var(--light-color);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    background-position: center;
    /* border-radius: var(--border-radius-lg-base); */
    padding: 20px;
    background-attachment: fixed;
    z-index: 1;
    background-position: center right;
}

/* .banner-inner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--rgba-primary-2);
    z-index: -1;
} */

.banner .banner-media {
    width: 100%;
    height: 100vh;
}

    .banner .banner-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.banner .banner-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    display: none;
}

    .banner .banner-content .b-top-content .b-title {
        color: var(--light-color);
        font-size: 62px;
        font-weight: 500;
        line-height: 1;
    }

    .banner .banner-content .b-top-content .b-content {
        color: var(--light-color);
        font-weight: 400;
        letter-spacing: 1.5px;
    }

    .banner .banner-content .b-bottom-content {
        text-align: center;
        width: fit-content;
    }

        .banner .banner-content .b-bottom-content .scroll-text {
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 10px;
            color: var(--light-color);
        }

        .banner .banner-content .b-bottom-content .scroll-icon {
            position: relative;
            height: 35px;
            width: 25px;
            margin: auto;
            margin-bottom: 10px;
            border: 1px solid var(--light-color);
            border-radius: var(--border-radius-base);
            transition: all 0.5s;
        }

        .banner .banner-content .b-bottom-content:hover .scroll-icon {
            transform: translateY(-5px);
            transition: all 0.5s;
        }

        .banner .banner-content .b-bottom-content .scroll-icon:after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, 50%);
            width: 1px;
            height: 30%;
            background-color: var(--light-color);
        }

.banner .banner-social {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

    .banner .banner-social .s-icon {
        color: var(--light-color);
        margin-right: 10px;
        position: relative;
        padding-bottom: 5px;
        transition: all 0.5s;
    }

        .banner .banner-social .s-icon:after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 1px;
            background-color: var(--light-color);
            transition: all 0.5s;
        }

        .banner .banner-social .s-icon:hover:after {
            right: auto;
            left: 0;
            width: 100%;
            transition: all 0.5s;
        }

        .banner .banner-social .s-icon i {
            margin-right: 2px;
        }

.banner .banner-pro {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    display: none;
}

    .banner .banner-pro .p-product-inner-box {
        position: relative;
        z-index: 9;
    }

        .banner .banner-pro .p-product-inner-box .p-title {
            color: var(--light-color);
        }

        .banner .banner-pro .p-product-inner-box .r-icon {
            margin-right: -10px;
            opacity: 0;
            color: var(--light-color);
            transition: all 0.5s;
        }

        .banner .banner-pro .p-product-inner-box:hover .r-icon {
            margin-right: 10px;
            opacity: 1;
            transition: all 0.5s;
        }

        .banner .banner-pro .p-product-inner-box .b-pro-media {
            background-color: var(--light-color);
            border-radius: var(--border-radius-base);
            margin-top: 10px;
            padding: 10px;
            height: 130px;
        }

            .banner .banner-pro .p-product-inner-box .b-pro-media img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

.banner .swiper-pagination {
    top: 30%;
    width: fit-content;
    left: auto;
    right: 20px;
    transform: translateY(-150%);
    display: grid;
    gap: 0;
}

.banner .swiper-pagination {
    top: 50%;
    width: fit-content;
    left: auto;
    right: 20px;
    transform: translateY(-50%);
    display: grid;
    gap: 0;
    height: 60px;
}

.banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
}

.banner .swiper-button-prev,
.banner .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-color);
    transition: all 0.5s;
}

    .banner .swiper-button-prev:hover,
    .banner .swiper-button-next:hover {
        color: var(--primary);
        transition: all 0.5s;
    }

    .banner .swiper-button-prev:after,
    .banner .swiper-button-next:after {
        font-size: 20px;
        color: var(--light-color);
    }

/* banner End */
/* product Start  */
.product-box {
    margin-bottom: 30px;
}

    .product-box .product-media {
        width: 100%;
        height: 200px;
        background-color: var(--light-color);
        padding: 0;
        border-radius: var(--border-radius-lg-base);
        overflow: hidden;
        position: relative;
        transition: all 0.5s;
        /* border: 1px solid var(--rgba-primary-2); */
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .product-box .product-media .img-1 {
            display: block;
        }

        .product-box .product-media .img-2 {
            display: none;
        }

    .product-box:hover .product-media .img-1 {
        display: none;
    }

    .product-box:hover .product-media .img-2 {
        display: block;
    }

    .product-box .product-media .product-icon {
        position: absolute;
        right: 50%;
        bottom: 10px;
        transform: translateX(50%);
    }

.product-box {
    position: relative;
    cursor: pointer;
}

    .product-box .product-check {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 18px;
        height: 18px;
        z-index: 10;
    }

    .product-box .product-media .product-icon .p-icon {
        font-size: 22px;
        line-height: 22px;
    }

    .product-box .product-media .product-icon {
        opacity: 0;
        transition: all 0.5s;
        display: flex;
        gap: 15px;
    }

    .product-box:hover .product-media .product-icon {
        opacity: 1;
        transition: all 0.5s;
    }
    /*
    .product-box .filled {
        display: none;
        color: red;
    }*/

    .product-box .wishlist-btn.active .filled {
        display: inline;
    }

    /* .product-box .wishlist-btn.active .outline {
        display: none;
    }*/

    .product-box .product-media .view-btn {
        position: absolute;
        right: -50px;
        top: 10px;
        width: 35px;
        height: 35px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s;
        display: none;
    }

    .product-box:hover .product-media .view-btn {
        right: 10px;
        transition: all 0.5s;
    }

    .product-box .product-media img {
        width: 100%;
        height: 100%;
        max-width: 80%;
        object-fit: contain;
        transition: all 0.5s;
        margin: auto;
    }

    .product-box:hover .product-media img {
        transform: scale(1.1);
        transition: all 0.5s;
    }

    .product-box .pagi-content {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: block;
    }

        .product-box .pagi-content.active {
            border: 2px solid var(--primary);
        }

    .product-box .product-content {
        padding: 0 20px;
    }

        .product-box .product-content .product-top {
            text-align: center;
        }

            .product-box .product-content .product-top .name,
            .product-box .product-content .product-top .price {
                margin-bottom: 2px;
                line-height: 1;
            }

            .product-box .product-content .product-top .price {
                color: var(--primary);
                margin: 5px auto;
            }

        .product-box .product-content .product-bottom .description {
            margin-bottom: 0;
            line-height: 1.2;
            font-size: 12px;
        }

        .product-box .product-content .product-pagination {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2px;
            margin-bottom: 5px;
            opacity: 0;
            transition: all 0.5s ease-in-out;
        }

    .product-box:hover .product-content .product-pagination {
        opacity: 1;
    }

    .product-box .product-content .product-pagination img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
    }


.product-modal-box .m-product-media {
    width: 100%;
    height: 100%;
    height: 400px;
}

    .product-modal-box .m-product-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* product End  */
/* About Us Start  */
.about-us-section .about-media {
    width: 100%;
    height: 85vh;
}

    .about-us-section .about-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* About Us End  */
/* all product start */
.a-product-section .nav-tabs {
    border: none;
    gap: 10px;
    justify-content: start;
    flex-wrap: wrap;
}

.nav-tabs .nav-link {
    border: none;
    padding: 0;
    text-align: center;
    cursor: pointer;
    position: relative;
    padding-bottom: 8px;
    color: var(--dark-color);
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 1.2px;
    font-weight: 700;
    text-transform: uppercase;
}


    .nav-tabs .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: width 0.3s ease;
    }

    .nav-tabs .nav-link.active,
    .nav-tabs .nav-link:hover {
        color: var(--primary);
    }

        .nav-tabs .nav-link.active::after,
        .nav-tabs .nav-link:hover::after {
            width: 100%;
        }

/* all product end */
/* portfolio-section start */
.portfolio-section .p-media {
    position: relative;
}

    .portfolio-section .p-media .p-content {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        text-align: center;
        padding: 10px;
        background-color: rgba(255, 255, 255, 1);
    }

        .portfolio-section .p-media .p-content .content {
            margin-bottom: 0;
            line-height: 1.5;
            color: var(--dark-color);
            margin: 0 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s;
            font-size: 13px;
            line-height: 15px;
            letter-spacing: 1.2px;
            font-weight: 700;
            text-transform: uppercase;
        }

    .portfolio-section .p-media img {
        width: 100%;
        height: 100%;
    }

/* portfolio-section end */

/*  why chose us start */
.w-box .w-media {
    width: 100%;
    height: 220px;
    overflow: hidden;
    transition: all 0.5s;
}

    .w-box .w-media img {
        width: 100%;
        transition: all 0.5s;
        height: 100%;
        object-fit: cover;
    }

.w-box:hover .w-media img {
    transition: all 0.5s;
    transform: scale(1.2);
}

.w-box .w-content {
    text-align: center;
    /* padding: 10px; */
}

    .w-box .w-content .title {
        margin-bottom: 5px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 75%;
    }

.w-box .w-icon {
    text-align: center;
    margin-bottom: 5px;
    display: none;
}

    .w-box .w-icon i {
        color: var(--primary);
        font-size: 35px;
    }

.w-box {
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    padding: 20px 10px;
}

    .w-box.border-none {
        border-right: none;
    }

/* Remove border from last child */
.row .col-lg-3:last-child .w-box {
    border-right: none;
}

/*  why chose us end */

/* steps-section start */
.steps-section .steps-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps-section .steps-map iframe {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.steps-section .steps-media {
    position: relative;
    width: 100%;
    height: 85vh;
}

    .steps-section .steps-media .sm-text {
        position: absolute;
        top: 20px;
        left: 20px;
        text-align: center;
        background-color: var(--light-color);
        padding: 6px 10px;
        transition: all 0.5s;
    }

        .steps-section .steps-media .sm-text .title {
            color: var(--dark-color);
            margin-bottom: 0;
            transition: all 0.5s;
        }

        .steps-section .steps-media .sm-text:hover {
            background-color: var(--primary);
            transition: all 0.5s;
        }

            .steps-section .steps-media .sm-text:hover .title {
                color: var(--light-color);
                transition: all 0.5s;
            }

.steps-section .steps-box-wrapper {
    margin: 40px 0;
}

    .steps-section .steps-box-wrapper .steps-box {
        display: flex;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgb(0 0 0 / 30%);
    }

        .steps-section .steps-box-wrapper .steps-box .icon-s {
            margin-right: 10px;
            font-size: 20px;
            color: var(--title-color);
            transition: all 0.5s ease-in-out;
        }

        .steps-section .steps-box-wrapper .steps-box:hover .icon-s {
            color: var(--primary);
            transform: scale(1.2);
            transition: all 0.5s ease-in-out;
        }

        .steps-section .steps-box-wrapper .steps-box .s-number .number {
            color: var(--title-color);
            margin-right: 10px;
        }

        .steps-section .steps-box-wrapper .steps-box:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .steps-section .steps-box-wrapper .steps-box .s-title {
            margin-bottom: 0;
            font-weight: 500;
            text-transform: uppercase;
        }

        .steps-section .steps-box-wrapper .steps-box .content {
            margin-bottom: 0;
        }

.steps-section {
    height: 100%;
    /* background-color: var(--primary-dark); */
}

    .steps-section .steps-content {
        padding: 20px;
    }

    .steps-section .form-box {
        margin-top: 40px;
    }


/* steps-section end */

/* cta section start */
.cta-section {
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    z-index: 1;
}

    .cta-section:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--dark-color);
        opacity: 0.7;
        z-index: -1;
    }

/* cta section end */

/* blog section start */
.blog-section .blog-box {
    border-radius: var(--border-radius-base);
    transition: all 0.5s;
}

    .blog-section .blog-box:hover {
        transition: all 0.5s;
    }

    .blog-section .blog-box .blog-media {
        width: 100%;
        height: 400px;
        overflow: hidden;
        /* border-radius: var(--border-radius-base); */
        transition: all 0.5s;
    }

        .blog-section .blog-box .blog-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease-in-out;
        }

    .blog-section .blog-box:hover .blog-media img {
        transform: scale(1.2);
    }


    .blog-section .blog-box .blog-content {
        padding: 10px 15px;
    }

        .blog-section .blog-box .blog-content .title {
            margin-bottom: 5px;
        }

        .blog-section .blog-box .blog-content .blog-time {
            display: flex;
            align-items: end;
        }

            .blog-section .blog-box .blog-content .blog-time .date {
                color: rgba(0, 0, 0, 0.8);
                /* margin-left: 10px; */
                font-size: 85%;
            }

            .blog-section .blog-box .blog-content .blog-time .time {
                display: none;
            }

/* blog section end */


/* ml box start */

.portfolio-section .p-media {
    overflow: hidden;
}

    .portfolio-section .p-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.portfolio-section .pro-box .p-media {
    margin-bottom: 0.5rem;
}

    .portfolio-section .pro-box .p-media.land-p {
        aspect-ratio: 1 / 1.5;
    }

    .portfolio-section .pro-box .p-media img {
        width: 100%;
        height: 100%;
    }





/* ml box end */
/* global section start */
.global-box .global-media {
    width: 100%;
    position: relative;
    height: 150px;
    margin-bottom: 10px;
}

    .global-box .global-media .img-1 {
        filter: grayscale(0);
        width: 100%;
        height: 100%;
        transition: all 0.5s;
        object-fit: contain;
    }

.global-box:hover .global-media .img-1 {
    filter: grayscale(1);
    transition: all 0.5s;
}

.global-box .global-content {
    text-align: center;
}

    .global-box .global-content .g-info a {
        font-size: 12px;
        line-height: 1.4;
        display: inline-block;
        color: var(--text-color);
        transition: all 0.5s;
    }

        .global-box .global-content .g-info a:hover {
            color: var(--primary);
            transition: all 0.5s;
        }

.global-section .media-global img {
    width: 100%;
    height: 100%;
}

/* ===============================
   Worldwide Section
=================================*/

.worldwide {
    background: #151548;
    padding: 100px 0;
    text-align: center;
}
/* Map Wrapper */
.map-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 1000px;
}

    .map-wrapper img {
        width: 100%;
        height: auto;
        display: block;
    }

/* ===============================
   Country Indicator Style
=================================*/
.map-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: auto;
}

    .map-wrapper img {
        width: 100%;
        height: auto;
        /* IMPORTANT */
        display: block;
    }

    .map-wrapper .country {
        position: absolute;
        width: 8px;
        height: 8px;
        background: red;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
        z-index: 2;
    }

        /* Pulse Effect */
        .map-wrapper .country::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: red;
            animation: pulse 1.8s infinite;
            z-index: -1;
        }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* ===============================
   Country Positions
   (Adjust according to your map)
=================================*/

.map-wrapper .bangkok {
    top: 54%;
    left: 74.5%;
}

.map-wrapper .hongkong {
    top: 48.5%;
    left: 79%;
}

.map-wrapper .dubai {
    top: 49%;
    left: 62%;
}

.map-wrapper .newyork {
    top: 40%;
    left: 24%;
}

.map-wrapper .newdelhi {
    top: 49%;
    left: 69%;
}

/* global section end */



/* footer Start */
footer {
    background-color: var(--primary-dark);
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

    /* ===== Footer Inner ===== */
    footer .footer-inner {
        position: relative;
        z-index: 2;
    }

/* ===== Large Footer Title ===== */
.footer .footer-inner .footer-box .footer-title.f-lg {
    font-size: 50px;
    line-height: 1.1;
    color: var(--light-color);
}

/* ===== Footer Text ===== */
.footer .footer-inner .footer-box .footer-text {
    color: var(--light-color);
}

footer .newsletter-form {
    margin-top: 20px;
}

    footer .newsletter-form .form-control {
        background-color: transparent;
        color: var(--light-color);
        border: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 0;
        padding: 6px 110px 6px 10px;
    }

    footer .newsletter-form .input-group {
        position: relative;
    }

        footer .newsletter-form .input-group .n-btn {
            position: absolute;
            top: 50%;
            right: 0;
            border-radius: var(--border-radius-base) !important;
            transform: translateY(-50%);
            z-index: 9;
        }

    footer .newsletter-form .form-control::placeholder {
        color: rgba(255, 255, 255, 0.8);
    }

footer .footer-top .footer-box .footer-text {
    color: var(--light-color);
}

footer .newsletter-form .form-control:focus,
footer .newsletter-form .form-control:active {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 1);
}


/* ===== Footer Middle Section ===== */
footer .footer-mid {
    padding: 30px 0;
}

    footer .footer-mid .footer-logo {
        text-align: center;
        background-color: var(--rgba-primary-1);
        padding: 20px;
    }

        footer .footer-mid .footer-logo img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

/* ===== Footer Bottom ===== */
footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    flex-wrap: wrap;
}

    footer .footer-bottom .list-inline-item:not(:last-child) {
        margin-right: 0.8rem;
    }

    footer .footer-bottom .c-icon {
        color: var(--light-color);
        transition: all 0.5s;
        display: block;
    }

        footer .footer-bottom .c-icon:hover {
            transform: scale(1.3);
            transition: all 0.5s;
        }

.footer-bottom .footer-bottom-content {
    color: var(--light-color);
}

    .footer-bottom .footer-bottom-content .footer-b-link {
        color: var(--light-color);
        text-decoration: underline;
    }

/* ===== Footer Links ===== */
footer .footer-box .footer-title {
    color: var(--light-color);
    font-size: 18px;
    margin-bottom: 14px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

footer .footer-box .footer-link-list .footer-link {
    color: var(--bs-light);
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    position: relative;
    text-transform: uppercase;
}

    footer .footer-box .footer-link-list .footer-link:after {
        content: '';
        position: absolute;
        opacity: 0;
        bottom: -10px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--light-color);
        transition: all 0.5s;
    }

    footer .footer-box .footer-link-list .footer-link:hover:after {
        opacity: 1;
        bottom: 0;
        transition: all 0.5s;
    }

    footer .footer-box .footer-link-list .footer-link:hover {
        opacity: 1;
        color: var(--light-color);
    }

/* footer End */

.product-section .myProduct-wrapper {
    padding: 0 20px;
}




.global-section .tesimonial-box {
    max-width: 100%;
    background: var(--light-color);
    padding: 15px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--rgba-primary-1);
    border-radius: var(--border-radius-base);
    margin: 10px 0 10px;
}

    .global-section .tesimonial-box:hover {
        transform: translateY(-5px);
        transition: all 0.4s ease;
        box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
    }


.tesimonial-box .quote {
    font-size: 30px;
    line-height: 30px;
    /* position: absolute; */
    top: 0px;
    left: 15px;
    color: var(--primary);
    margin-bottom: 0;
    opacity: 0.5;
}

.tesimonial-box .para p {
    margin: 5px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rgba-primary-1);
}

.tesimonial-box .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .tesimonial-box .user-info .r-user-box {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.tesimonial-box .media img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.tesimonial-box .r-user-box {
    flex: 1;
}

.tesimonial-box .name {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.tesimonial-box .post {
    font-size: 13px;
    color: var(--text-color);
    margin: 2px 0 0 0;
}

.tesimonial-box .country {
    margin: 2px 0 0 0;
    font-weight: 600;
    text-transform: uppercase;
}

.tesimonial-box .rating {
    display: flex;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .tesimonial-box .rating i {
        font-size: 14px;
    }

.global-section .myTestimonial .swiper-slide {
    opacity: 0.5;
    filter: blur(1px);
    transition: all 0.5s ease-in-out;
}

    .global-section .myTestimonial .swiper-slide.swiper-slide-active {
        opacity: 1;
        filter: blur(0);
    }


.hm-menu {
    overflow: hidden;
    width: fit-content;
    height: fit-content;
    position: relative;
    display: block;
}

    .hm-menu p {
        transition: all 0.5s ease-in-out;
        font-size: 12px;
        margin: 0;
        color: var(--text-color);
    }

    .hm-menu .m1 {
        transform: translateY(0);
    }

    .hm-menu:hover .m1 {
        transform: translateY(-110%);
        transition: all 0.5s ease-in-out;
    }

    .hm-menu .m2 {
        transform: translateY(110%);
        position: absolute;
        left: 0;
        top: 0;
    }

    .hm-menu:hover .m2 {
        transform: translateY(0);
        transition: all 0.5s ease-in-out;
        color: var(--primary);
    }

/* product-list section */
.product-list-section {
    padding-bottom: 70px;
}

    .product-list-section .product-top {
        display: flex;
        gap: 5px;
        margin-bottom: 10px;
        padding: 10px;
        flex-wrap: wrap;
    }

    .product-list-section .pro-filter-box {
        position: sticky;
        top: 100px;
        height: calc(100vh - 90px);
        overflow-y: auto;
        padding: 10px;
    }

    .product-list-section .product-box-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .product-list-section .pro-filter-box .f-box {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

        .product-list-section .pro-filter-box .f-box .form-check-label {
            font-size: 12px;
        }

    .product-list-section .pro-filter-box .form-select.style-1 {
        border: none;
    }

        .product-list-section .pro-filter-box .form-select.style-1:focus {
            box-shadow: none;
        }

    .product-list-section input[type="range"]::-webkit-slider-thumb {
        pointer-events: auto;
        appearance: none;
        width: 18px;
        height: 18px;
        background: var(--primary);
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid #fff;
    }

    .product-list-section input[type="range"]::-moz-range-thumb {
        pointer-events: auto;
        width: 18px;
        height: 18px;
        background: var(--primary);
        border-radius: 50%;
        cursor: pointer;
        border: 2px solid #fff;
    }

    .product-list-section .pro-filter-box .f-box .label-title {
        color: var(--dark-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.5s;
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 1.2px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .product-list-section .slider-track {
        position: absolute;
        width: 100%;
        height: 5px;
        background: #ddd;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 5px;
        z-index: 1;
    }

    .product-list-section .product-bottom-bar {
        padding-top: 20px;
        margin-top: 30px;
        border-top: 1px solid var(--rgba-primary-3);
    }

    .product-list-section .range-amount {
        font-size: 11px;
        line-height: 11px;
    }

.product-bottom-bar .page-item .page-link {
    margin-right: 5px;
    border-radius: var(--border-radius-base);
    color: var(--title);
    transition: all 0.5s ease-in-out;
}

    .product-bottom-bar .page-item .page-link:focus {
        box-shadow: none;
    }

.product-bottom-bar .page-link:hover,
.product-bottom-bar .page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light-color);
}

.range-slider-container {
    cursor: pointer;
}

    .range-slider-container input[type="range"] {
        pointer-events: none;
        /* Allows click to reach the track/container */
    }

        /* BUT re-enable pointer events for the circular handles only */
        .range-slider-container input[type="range"]::-webkit-slider-thumb {
            pointer-events: auto;
        }

        .range-slider-container input[type="range"]::-moz-range-thumb {
            pointer-events: auto;
        }




.product-details-section .productSilder {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

    .product-details-section .productSilder .swiper-slide {
        width: 25%;
        height: 100%;
        /* border: 1px solid rgba(0, 0, 0, 0.2); */
        border-radius: var(--border-radius-base);
        opacity: 0.4;
    }

    .product-details-section .productSilder .swiper-slide-thumb-active {
        opacity: 1;
    }

.product-details-section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 450px;
}

.quantity-selector {
    margin: 0 0 20px;
}

    .quantity-selector .i-btn {
        width: 35px;
        height: 35px;
        font-size: 28px;
        line-height: 28px;
        border-radius: var(--border-radius-base);
        background-color: var(--light-color);
        border: 1px solid var(--primary);
        transition: all 0.5s ease-in-out;
    }

        .quantity-selector .i-btn:hover {
            background-color: var(--primary);
            color: var(--light-color);
            border: 1px solid var(--primary);
        }

    .quantity-selector .i-form {
        width: 60px;
        height: 35px;
        text-align: center;
        display: inline-block;
        border-color: var(--primary);
        padding: 5px 0px 5px 5px;
    }

.product-details-section .actions {
    margin-bottom: 30px;
}

.product-details-section .products-content .actions .btn-link {
    margin-right: 20px;
}

.product-details-section .products-inner-details {
    margin: 15px 0;
    padding: 0;
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    border-radius: var(--border-radius-base);
}

    .product-details-section .products-inner-details .pd-title {
        margin-bottom: 0;
        padding: 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transition: all 0.5s;
        font-size: 15px;
        line-height: 15px;
        letter-spacing: 1.2px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .product-details-section .products-inner-details .pd-content {
        padding: 10px;
    }

        .product-details-section .products-inner-details .pd-content dt {
            color: var(--title-color);
            margin-bottom: 0;
            padding: 10px;
            transition: all 0.5s;
            font-size: 12px;
            line-height: 12px;
            letter-spacing: 1.2px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .product-details-section .products-inner-details .pd-content dd {
            color: var(--text-color);
            margin-bottom: 0;
            padding: 10px;
            transition: all 0.5s;
            font-size: 12px;
            line-height: 12px;
        }

        .product-details-section .products-inner-details .pd-content .content {
            margin: 0;
        }

.product-details-section .products-media .swiper-slide {
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
    border-radius: var(--border-radius-base);
}

.product-list-section .t-title {
    text-transform: uppercase;
}

.product-details-section .b-top .t-title {
    text-transform: uppercase;
}


.product-details-section .productThumb .swiper-slide {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

    .product-details-section .productThumb .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        transform-origin: center center;
    }

    .product-details-section .productThumb .swiper-slide:hover img {
        transform: scale(1.5);
        cursor: crosshair;
    }

    .product-details-section .productThumb .swiper-slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.03);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .product-details-section .productThumb .swiper-slide:hover::after {
        opacity: 1;
    }

.product-details-section .swiper-button-prev:after,
.product-details-section .swiper-button-next:after {
    color: var(--text-color);
    font-size: 25px;
    transition: all 0.5s ease-in-out;
}

.product-details-section .swiper-button-prev:hover:after,
.product-details-section .swiper-button-next:hover:after {
    color: var(--title-color);
}

.product-details-section .stone-details {
    /* display: flex; */
    /* align-items: center; */
    gap: 5px;
}

    .product-details-section .stone-details .sd-media {
        width: 26px;
        height: 26px;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
    }

        .product-details-section .stone-details .sd-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .product-details-section .stone-details table {
        width: 100%;
    }

        .product-details-section .stone-details table tr:hover .sd-media {
            transform: scale(1.2);
            transition: all 0.5s ease-in-out;
        }

.breadcrumb.style-1 .breadcrumb-item + .breadcrumb-item::before {
    color: var(--light-color) !important;
}

/* mission section start */
.mission-section .mission-content {
    padding: 30px;
}

.mission-section .mv-media {
    width: 100%;
    height: 100%;
    max-height: 500px;
    overflow: hidden;
}

    .mission-section .mv-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* mission section end */


.quantity-box .i-btn {
    width: 25px;
    height: 25px;
    background: transparent;
    border: none;
    font-size: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.5s ease-in-out;
}

.table-selector .i-btn:hover {
    color: var(--title-color);
}

.quantity-box input[type="number"]::-webkit-inner-spin-button,
.quantity-box input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-box input[type="number"] {
    -moz-appearance: textfield;
}

.gemstone-list th {
    width: 25%;
}

.quantity-box .i-form {
    border: none;
    border-bottom: 2px solid;
    border-radius: 0;
    text-align: center;
    padding: 0;
    width: 40px;
    height: 25px;
    font-size: 12px;
    color: var(--text-color);
    transition: all 0.5s ease-in-out;
}


.table-selector .i-form:hover {
    color: var(--title-color);
}

.gemstone-list .g-media {
    width: 20px;
    height: 20px;
}

    .gemstone-list .g-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gemstone-list table thead {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.gemstone-list table {
    padding: 10px;
}

    .gemstone-list table thead tr th,
    .gemstone-list table tbody tr td {
        padding: 5px;
        font-size: 12px;
    }
/* 
.gemstone-list .table-scroll {
    max-height: 220px;
    overflow-y: auto;
}
.gemstone-list .table-scroll.style-1{
    max-height: 350px;
}

.gems-invoice .top-invoice .table-scroll {
    max-height: 200px !important;
    overflow-y: auto;
} */

.gemstone-list .g-table thead th {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    align-items: center;
    justify-content: space-between;
    transition: all 0.5s;
    font-size: 12px;
    font-weight: 700;
    line-height: 15px;
    letter-spacing: 1.2px;
    font-weight: 700;
    text-transform: uppercase;
}

.gems-invoice {
    padding: 15px;
    border-radius: var(--border-radius-base);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 125px;
}

    .gems-invoice .title,
    .gems-invoice .section-head {
        margin-bottom: 0;
    }

    .gems-invoice .bottom-invoice {
        margin: 15px 0;
        padding: 15px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: space-between;
    }

        .gems-invoice .bottom-invoice .bi-box {
            text-align: center;
            align-items: center;
            margin-bottom: 5px;
            padding-bottom: 5px;
        }

            .gems-invoice .bottom-invoice .bi-box:last-child {
                margin-bottom: 0;
                padding-bottom: 0;
            }

            .gems-invoice .bottom-invoice .bi-box .title {
                letter-spacing: 1.2px;
                color: var(--dark-color);
                transition: all 0.5s;
                text-transform: uppercase;
                margin: 0;
                margin-bottom: 10px;
            }

            .gems-invoice .bottom-invoice .bi-box .amount {
                margin-bottom: 0;
            }

    .gems-invoice .g-button-list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

/* policy section start */
.policy-section .p-content .p-inner-content {
    margin-bottom: 30px;
    scroll-margin-top: 100px;
}

    .policy-section .p-content .p-inner-content .title {
        margin-bottom: 10px;
    }

.policy-section .p-box-title {
    position: sticky;
    top: 95px;
    padding: 10px;
}

    .policy-section .p-box-title.style-1 {
        height: calc(100vh - 90px);
        overflow: auto;
    }

/* .policy-section .policy-inner-box {
    margin-top: 50px;
} */

.policy-section .policy-inner-box .ts-title {
    position: relative;
    transition: all 0.5s ease-in-out;
    color: var(--title-color);
    padding-bottom: 3px;
    margin-bottom: 5px;
    display: inline-block;
}

    .policy-section .policy-inner-box .ts-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 1px;
        background-color: var(--dark-color);
        transition: all 0.5s ease-in-out;
    }

    .policy-section .policy-inner-box .ts-title:hover:after,
    .policy-section .policy-inner-box .ts-title.active:after {
        right: auto;
        left: 0;
        width: 100%;
    }

    .policy-section .policy-inner-box .ts-title:hover {
        color: var(--primary);
    }

/* policy section end*/
/* faq start */
.faq-section .faq-inner-box {
    /* margin-top: 40px; */
}

    .faq-section .faq-inner-box .faq-media {
        overflow: hidden;
        border-radius: var(--border-radius-base);
        margin-bottom: 30px;
    }

        .faq-section .faq-inner-box .faq-media img {
            width: 100%;
            height: 100%;
        }

.faq-section .accordion {
    margin-bottom: 30px;
}

    .faq-section .accordion .accordion-item {
        border: none !important;
        margin-bottom: 20px;
    }

        .faq-section .accordion .accordion-item .accordion-button::after {
            content: none;
        }

        .faq-section .accordion .accordion-item .accordion-header .accordion-button {
            padding: 5px 5px 5px 15px;
            display: flex;
            align-items: center;
            border-radius: var(--border-radius-base) !important;
            justify-content: space-between;
        }

        .faq-section .accordion .accordion-item .accordion-body {
            padding: 5px 5px 5px 15px;
            font-size: 12px;
            border-bottom: 1px solid var(--rgba-primary-3);
        }

        .faq-section .accordion .accordion-item .accordion-header .accordion-button .a-icon {
            width: 30px;
            height: 30px;
            min-width: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--border-radius-base);
            background-color: var(--primary);
            color: var(--light-color);
        }

            .faq-section .accordion .accordion-item .accordion-header .accordion-button .a-icon i {
                transform: rotate(45deg);
                transition: all 0.5s ease-in-out;
            }

        .faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed .a-icon i {
            transform: rotate(0);
            transition: all 0.5s ease-in-out;
        }

/* faq end */

/* contact box start */
.steps-section .contact-information {
    padding: 20px;
    border-radius: var(--border-radius-lg-base);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 90px;
}

    .steps-section .contact-information .contact-box {
        margin-bottom: 30px;
        display: flex;
    }

        .steps-section .contact-information .contact-box:last-child {
            margin-bottom: 0;
        }

        .steps-section .contact-information .contact-box .icon-contact {
            margin-right: 15px;
            color: var(--primary);
            font-size: 30px;
        }

        .steps-section .contact-information .contact-box .content-contact .title {
            margin-bottom: 5px;
        }

        .steps-section .contact-information .contact-box .icon-contact {
            margin-right: 10px;
        }

/* contact box end */


/* Service Section Start */
.service-section .service-box .s-content {
    padding: 10px;
}

    .service-section .service-box .s-content .title {
        margin-bottom: 5px;
    }

    .service-section .service-box .s-content .content {
        margin-bottom: 0;
    }

.service-section .service-box .s-media {
    width: 100%;
    height: 200px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

    .service-section .service-box .s-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease-in-out;
    }

.service-section .service-box:hover .s-media img {
    transform: scale(1.3);
}

/* Service Section End */
.counter-section {
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    z-index: 1;
}

    .counter-section:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: var(--light-color);
        opacity: 0.6;
        z-index: -1;
    }

    .counter-section .counter-section {
        margin-bottom: 30px;
    }

    .counter-section .counter-box {
        position: relative;
    }

        .counter-section .counter-box .count-number {
            font-size: 100px;
            font-weight: 700;
            color: var(--rgba-primary-2);
            margin: 0;
        }

        .counter-section .counter-box .title {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: max-content;
            padding: 5px 10px;
            border-radius: var(--border-radius-sm-base);
            margin: 0;
            font-size: 13px;
            line-height: 13px;
            letter-spacing: 1.2px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--title-color);
            background-color: rgba(255, 255, 255, 0.5);
        }

/* cart section start */
.cart-section .cart-list .c-product-media {
    width: 80px;
    height: auto;
    min-width: 80px;
}

    .cart-section .cart-list .c-product-media img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

.cart-section table, .modal.style-1 table {
    border: none;
}

.cart-section table thead tr th, .modal.style-1 table thead tr th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
    font-size: 13px;
    line-height: 13px;
    letter-spacing: 1.2px;
    font-weight: 700;
    text-transform: uppercase;
}

.cart-section table tbody tr td, .modal.style-1 table tbody tr td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.modal.style-1 table thead tr th, .modal.style-1 table tbody tr td {
    font-size: 13px;
    line-height: 13px;
    padding: 5px;
}

.cart-section .cart-details {
    position: sticky;
    top: 95px;
}

.cart-section .tc-box {
    display: flex;
    gap: 5px;
    align-items: center;
}

    .cart-section .tc-box .c-product-content .title {
        text-wrap: nowrap;
    }

.cart-section textarea {
    width: 170px;
}

/* cart section end */



/* Login Section Start */
.login-section {
    padding-top: 100px;
    width: 100%;
    height: 100vh;
    overflow-X: hidden;
}

    .login-section .login-media {
        width: 100%;
        height: 100vh;
    }

        .login-section .login-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .login-section .login-content {
        padding: 15px;
    }

    .login-section .login-head .login-logo {
        width: 100%;
        height: 100%;
    }

        .login-section .login-head .login-logo img {
            width: 100%;
            height: 100%;
            max-width: 280px;
            object-fit: contain;
        }

    .login-section .login-head .section-head {
        width: 100%;
        height: 100%;
        margin: 0 0 20px 0;
        /* padding: 0 0 10px; */
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.2); */
    }

        .login-section .login-head .section-head .title {
            margin-bottom: 0;
        }

    .login-section .form-bottom {
        padding-top: 5px;
        margin-top: 20px;
        /* border-top: 1px solid rgba(0, 0, 0, 0.2); */
    }

    .login-section .btn-login {
        margin-top: 10px;
        /* padding-top: 10px; */
        text-align: center;
    }

.login-content {
    padding: 20px;
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
    border-radius: var(--border-radius-base);
}

.login-section .login-form .form-group .label {
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-section .login-head .login-form .form-control, .login-section .login-head .login-form .form-select {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

    .login-section .login-head .login-form .form-control:focus, .login-section .login-head .login-form .form-select:focus {
        border-bottom: 1px solid var(--primary);
        box-shadow: none;
    }

.login-section .login-content .form-control, .login-section .login-content .form-select {
    border-width: 1px !important;
    padding: 8px;
}

/* Login Section End */


.search-wrapper {
    position: relative;
    width: 250px;
}

.recent-searches {
    width: 250px;
    border: 1px solid #ddd;
    background: #fff;
    display: none;
    padding: 10px;
    position: absolute;
    z-index: 9;
}

    .recent-searches .recent-pro {
        height: 250px;
        overflow-y: auto;
        margin: 5px 0;
    }

    .recent-searches
    .s-product {
        display: flex;
        gap: 5px;
        align-items: top;
    }

.s-product .s-product-media {
    width: 40px;
    height: 40px;
}

    .s-product .s-product-media img {
        width: 100%;
        height: 100%;
    }

.s-product .s-product-content .pro-name {
    font-size: 10px;
    line-height: 10px;
    margin-bottom: 5px;
}

.s-product .s-product-content .pro-price {
    font-size: 12px;
    line-height: 12px;
    color: var(--primary-color);
    margin-bottom: 0;
}


.recent-searches.active {
    display: block;
}

.recent-searches ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-searches li {
    padding: 5px 0;
    cursor: pointer;
}

    .recent-searches li:hover {
        background: #f5f5f5;
    }


.eye-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
/* Account Section Start */
.gemstone-list .table-scroll.style-1 table thead tr th {
    text-wrap: nowrap;
}
/* Account Section End */

.loadingmodal {
    background-color: #dcdcdc;
    text-align: center;
    opacity: 0.8;
    z-index: 9999;
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0;
}

    .loadingmodal img {
        display: inline-block;
        width: 50px;
        height: 50px;
        top: 50%;
        position: fixed;
        left: 50%;
    }


.portfolio-section .rs-info-box .rs-media img {
    width: 100%;
    height: 100%;
}

.portfolio-section .rs-info-box .ps-list {
    padding-left: 20px;
}

    .portfolio-section .rs-info-box .ps-list li {
        list-style-type: decimal;
        margin-bottom: 10px;
    }


.no-data-media {
    text-align: center;
    width: 100%;
    height: 100%;
}

    .no-data-media img {
        width: 100%;
        height: 100%;
        max-height: calc(100vh - 210px);
        margin: 0 auto;
        object-fit: contain;
    }

.header .header-inner .nav-btn .nav-links .nav-group .nav-link.mega-menu .mega-dropdown .row {
    margin-top: auto;
}

.header .header-inner .nav-btn .nav-links .nav-group .nav-link.mega-menu .mega-dropdown .col-lg-3.col-md-6 {
    margin-top: 0;
}

.is-fixed.header .style-1.nav-link:hover > .mega-dropdown {
    transform: translateY(-20px);
}

.s-pro-nodata {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-nowrap {
    text-wrap: nowrap;
}


.cart-nodata {
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.error-section {
    text-align: center;
}

    .error-section .error-media {
        width: 100%;
        height: 100%;
        max-width: 500px;
        margin: 30px auto;
    }

        .error-section .error-media img {
            width: 100%;
            height: 100%;
        }

.checkbox-middle {
    margin-top: 30px;
    border: 2px solid rgba(0,0,0, 0.2);
    padding: 20px;
    border-radius: var(--border-radius-base);
    transition: all 0.5s;
}

    .checkbox-middle:hover {
        border-color: var(--primary);
        transition: all 0.5s;
    }

    .checkbox-middle .code-form {
        position: relative;
    }

    .checkbox-middle .code-form {
        position: relative;
    }

        .checkbox-middle .code-form .btn-submit {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
        }

        .checkbox-middle .code-form .form-control {
            padding: 10px 70px 10px 10px;
        }

.checkout-section .ad-icon {
    margin-left: 10px;
    padding: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.modal.style-1 .modal-content .modal-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal.style-1 .modal-content .modal-header .close {
    border: none;
    background-color: transparent;
    opacity: 0.5;
    font-size: 25px;
    transition: all 0.5s ease-in-out;
    line-height: 1.2;
}
.modal.style-1 .modal-content .modal-header .close:hover{
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.account-section .fade:not(.show) {
    opacity: 0 !important;
    display: none !important;
}