/*    Story    */
.elementor-instagram-stories-container {
    width: 100%;
    overflow: hidden;
}

.elementor-instagram-stories-wrapper {
    display: flex;
    align-items: center;
}

.elementor-instagram-stories-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
}

.elementor-instagram-stories-border {
    position: relative;
    border-radius: 50%;
    padding: 4px;
    background-image: linear-gradient(to left top, #ffc600 20%, #ff0040, #e600cc 80%);
}
.elementor-instagram-stories-border:before {
    content: "";
    position: absolute;
    right: 2px;
    top: 2px;
    left: 2px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}
.elementor-instagram-stories-border img {
    position: relative;
    z-index: 2;
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.story-title {
    font-size: 13px;
    line-height: 1;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .elementor-instagram-stories-container {
        display: block;
    }
    .elementor-instagram-stories-slide {
        width: auto;
    }
}
.elementor-instagram-stories-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
}
.elementor-instagram-stories-popup.active {
    opacity: 1;
    visibility: visible;
}
.elementor-instagram-stories-content {
    position: relative;
    width: 50%;
    height: 600px;
    background: black;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.elementor-instagram-stories-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}
.elementor-instagram-stories-timer-bar {
    position: absolute;
    top: 22px;
    left: 0;
    width: 90%;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 1s linear;
}
.elementor-instagram-stories-close {
    position: absolute;
    top: 30px;
    left: 22px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}
.elementor-instagram-stories-title {
    position: absolute;
    top: 36px;
    right: 22px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}
.elementor-instagram-stories-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.elementor-instagram-stories-popup .elementor-instagram-stories-content {
    position: relative;
}
.elementor-instagram-stories-popup .elementor-instagram-stories-prev,
.elementor-instagram-stories-popup .elementor-instagram-stories-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11pt;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    z-index: 10;
}
.elementor-instagram-stories-popup .elementor-instagram-stories-prev {
    left: 10px;
}
.elementor-instagram-stories-popup .elementor-instagram-stories-next {
    right: 10px;
}
.elementor-instagram-stories-popup .elementor-instagram-stories-image {
    width: 100%;
    height: auto;
}

/*    Category Box    */
.hover-cards {
    display: grid;
    width: 100%;
}

.hover-card-wrapper {
    text-decoration: none;
    display: block;
}

.hover-card {
    position: relative;
    width: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1000px;
    transition: all var(--animation-timing);
    text-align: center;
    cursor: pointer;
    padding: 30px 20px;
    box-sizing: border-box;
}

.hover-card:hover {
    transform: scale(1.05);
}

.card-content {
    position: relative;
    z-index: 2;
    transition: all var(--animation-timing);
}

.hover-card:hover .card-content {
    transform: translateY(-100%);
    opacity: 0;
}

.card-icon {
    margin-bottom: 20px;
    transition: all var(--animation-timing);
}

.hover-cards .card-icon svg path {
    fill: none !important;
}

.card-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    transition: all var(--animation-timing);
}

.card-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    transition: all var(--animation-timing);
}

.card-hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 25px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateY(100%);
    opacity: 0;
    transition: all var(--animation-timing);
}

.hover-card:hover .card-hover-content {
    transform: translateY(0);
    opacity: 1;
}

.card-hover-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
}

@media (max-width: 1024px) {
    .elementor-grid-tablet-1 .hover-cards { grid-template-columns: repeat(1, 1fr); }
    .elementor-grid-tablet-2 .hover-cards { grid-template-columns: repeat(2, 1fr); }
    .elementor-grid-tablet-3 .hover-cards { grid-template-columns: repeat(3, 1fr); }
    .elementor-grid-tablet-4 .hover-cards { grid-template-columns: repeat(4, 1fr); }
    .elementor-grid-tablet-5 .hover-cards { grid-template-columns: repeat(5, 1fr); }
    .elementor-grid-tablet-6 .hover-cards { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 767px) {
    .elementor-grid-mobile-1 .hover-cards { grid-template-columns: repeat(1, 1fr); }
    .elementor-grid-mobile-2 .hover-cards { grid-template-columns: repeat(2, 1fr); }
    .elementor-grid-mobile-3 .hover-cards { grid-template-columns: repeat(3, 1fr); }
    .elementor-grid-mobile-4 .hover-cards { grid-template-columns: repeat(4, 1fr); }
    .elementor-grid-mobile-5 .hover-cards { grid-template-columns: repeat(5, 1fr); }
    .elementor-grid-mobile-6 .hover-cards { grid-template-columns: repeat(6, 1fr); }

    .hover-card {
        padding: 25px 15px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description,
    .card-hover-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hover-cards {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .hover-card {
        height: 250px !important;
        padding: 20px 15px;
    }
}

/*    Category 2    */
.nokameh_element_category_box {
    display: grid;
    grid-template-columns: 1fr 2fr;
    box-shadow: 0 0 20px #434eb51a;
    overflow: hidden;
    width: 100%;
}

.nokameh_element_category_box.layout-flex {
    display: flex;
    flex-wrap: wrap;
}

.nokameh_element_category_box.layout-flex .info_section {
    flex: 1;
    min-width: 300px;
}

.nokameh_element_category_box.layout-flex .items_section {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    min-width: 300px;
}

.nokameh_element_category_box.layout-flex .items_section .item {
    flex: 1;
    min-width: 200px;
}

.nokameh_element_category_box .info_section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nokameh_element_category_box .info_section .title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
}

.nokameh_element_category_box .info_section .description p {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.6;
}

.nokameh_element_category_box .info_section .button {
    border: 1px solid;
    display: inline-block;
    margin-top: 20px;
    border-radius: 10px;
    padding: 10px 25px;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    align-self: flex-start;
}

.nokameh_element_category_box .items_section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.nokameh_element_category_box .items_section .item {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    border: 1px solid #f9f9f9;
    padding: 45px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nokameh_element_category_box .items_section .icon {
    font-size: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nokameh_element_category_box .items_section .item_title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

@media only screen and (max-width: 1024px) {
    .nokameh_element_category_box {
        grid-template-columns: 1fr;
    }

    .nokameh_element_category_box .items_section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    .nokameh_element_category_box .items_section {
        grid-template-columns: 1fr;
    }

    .nokameh_element_category_box .info_section {
        padding: 20px;
    }

    .nokameh_element_category_box .items_section .item {
        padding: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .nokameh_element_category_box .info_section {
        padding: 15px;
    }

    .nokameh_element_category_box .items_section .item {
        padding: 20px;
    }
}

/*    Image Slider 1    */
.nokameh-image-slider-1 .swiper-container {
    width: 100%;
    overflow: hidden;
}

.nokameh-image-slider-1 .no-item {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    align-items: center;
    padding-left: 10px;
}

.nokameh-image-slider-1 .no-image-box {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 3;
}

.nokameh-image-slider-1 .no-details-box {
    height: 82%;
    box-shadow: 0 0 0 10px #2121210f;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 38px 0 0 38px;
}

.nokameh-image-slider-1 .no-details-box .no-details {
    width: 80%;
    text-align: center;
}

.nokameh-image-slider-1 .no-details-box > div {
    width: 100%;
}

.nokameh-image-slider-1 .no-details .no-buttons {
    text-align: left;
}

.nokameh-image-slider-1 .no-details .no-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    font-size: 24px;
}

.nokameh-image-slider-1 .no-details .no-buttons a svg {
    width: 30px;
    height: 30px;
}

.nokameh-image-slider-1 .no-title {
    font-weight: 800;
    font-size: 3em;
}

.nokameh-image-slider-1 .no-subtitle {
    font-weight: 400;
    font-size: 2em;
    margin-top: 10px;
}

.nokameh-image-slider-1 .no-buttons {
    margin-top: 25px;
}

.nokameh-image-slider-1 .no-image-box img {
    border-radius: 38px;
    height: auto;
    width: 69%;
    object-fit: cover;
}

.nokameh-image-slider-1 .swiper-pagination {
    text-align: center;
    position: relative;
    margin-top: 15px;
}

.nokameh-image-slider-1 .swiper-pagination span {
    margin: 5px;
    width: 11px;
    height: 11px;
}

.nokameh-image-slider-1 .swiper-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: none;
    border: 1px solid #b1b1b1;
    font-size: 20px;
    cursor: pointer;
    transition: ease 0.3s;
    margin: 0 15px;
}

.nokameh-image-slider-1 .swiper-nav-btn::after {
    font-size: 20px;
}

@media screen and (max-width: 1024px) {
    .nokameh-image-slider-1 .no-item {
        padding: 0;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .nokameh-image-slider-1 .no-details-box .no-details {
        width: 100%;
    }

    .nokameh-image-slider-1 .no-details-box {
        border-radius: 0 0 38px 38px;
        height: auto;
        box-shadow: none;
    }

    .nokameh-image-slider-1 .no-image-box img {
        height: auto;
        border-radius: 38px 38px 0 0;
    }
}

@media screen and (max-width: 767px) {
    .nokameh-image-slider-1 .swiper-nav-btn {
        opacity: 0;
    }
    .story-content {
        width: 90%;
    }
}



/*   Product 1   */
.nokameh-products-grid .grid_products-area {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.nokameh-products-grid .grid_products-box {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.nokameh-products-grid .grid_products-box:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.13);
}
.nokameh-products-grid .img-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.nokameh-products-grid .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nokameh-products-grid .rating-star {
    position: absolute;
    top: 6px;
    left: 12px;
    font-size: 16px;
    color: #4CAF50;
    z-index: 2;
}
.nokameh-products-grid .rating-number{
    font-size: 14px;
    font-weight: 300;
    color: #969fae;
}
.nokameh-products-grid .color-swatches {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 4px;
    z-index: 2;
}
.nokameh-products-grid .color-swatches span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.1);
}
.nokameh-products-grid .has-more {
    font-size: 10px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nokameh-products-grid .discount-badge {
    padding: 2px 7px 0 7px;
    border-radius: 20px 20px 20px 0;
}
.nokameh-products-grid .add-to-cart-btn {
    background-color: #E0115F;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    flex-shrink: 0;
}
.nokameh-products-grid .add-to-cart-btn:hover:not(.disabled) {
    opacity: 0.9;
}
.nokameh-products-grid .add-to-cart-btn.disabled {
    background-color: silver;
    color: black;
    pointer-events: none;
}
.nokameh-products-grid .regular_price {
    font-size: 14px;
    font-weight: 600;
    color: #353941;
    margin-bottom: 4px;
}
.nokameh-products-grid .sale-price {
    font-size: 12px;
    color: #999;
}
.nokameh-products-grid .content-area {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.nokameh-products-grid .head {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.nokameh-products-grid .head .content {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
    flex-grow: 1;
}
.nokameh-products-grid .footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nokameh-products-grid .mwprprice {
    text-align: left;
}
.nokameh-products-grid .nokameh-products-grid {
    position: relative;
    padding: 0 30px;
}
.nokameh-products-grid .nokameh-products-grid .swiper-button-next,
.nokameh-products-grid .nokameh-products-grid .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}
.nokameh-products-grid .nokameh-products-grid .swiper-button-next {
    right: -36px !important;
}
.nokameh-products-grid .nokameh-products-grid .swiper-button-prev {
    left: -36px !important;
}
.nokameh-products-grid .swiper-button-next::after,
.nokameh-products-grid .swiper-button-prev::after {
    content: '' !important;
    display: none !important;
}

.nokameh-products-grid .swiper-button-next,
.nokameh-products-grid .swiper-button-prev {
    font-family: inherit !important;
}
.nokameh-products-grid .nokameh-products-grid .swiper-pagination {
    position: relative;
    margin-top: 20px;
}
.nokameh-products-grid .swiper-wrapper {
    align-items: stretch;
}
.nokameh-products-grid .swiper-slide {
    height: auto;
}
.nokameh-products-grid .img-container {
    height: 200px;
}
.nokameh-products-grid .img-container img:hover{
    transform: none !important;
}
.nokameh-products-grid h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}
.nokameh-products-grid .head .content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 66px;
}
@media (max-width: 1025px) {
    .nokameh-products-grid .img-container {
        height: 170px;
    }
}
@media (max-width: 768px) {
    .nokameh-products-grid .img-container {
        height: 150px;
    }
}
@media (max-width: 480px) {
    .nokameh-products-grid .img-container {
        height: 130px;
    }
}


/*    Product 2     */
.grid-products .nokameh-pagination {
    text-align: center;
    margin-top: 3rem;
}

.grid-products .nokameh-pagination a,
.grid-products .nokameh-pagination span {
    display: inline-block;
    padding: 5px 15px;
    font-size: 1em;
    margin: 3px;
    transition: ease .3s;
}

.grid-products .products-list .product,
.grid-products .products-list .product .product-cover {
    position: relative;
    transition: ease .4s;
}

.grid-products .products-list .product {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, .07);
}

.grid-products .products-list .product > div {
    width: 100%;
}

.grid-products .products-list .product .product-cover {
    margin-bottom: 10px;
}

.grid-products .products-list .product .product-cover img {
    width: 100%;
    border-radius: 6px 6px 0 0;
    object-fit: cover;
}
.grid-products .products-list .product .product-cover .product-label .sale{
    background-color: #fff;
    color: #3A3A3A;
}
.grid-products .products-list .product .product-cover .product-label {
    position: absolute;
    top: 0;
    right: 0;
    padding: 13px;
    z-index: 99;
}

.grid-products .products-list .product .product-cover .product-label span {
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    padding: 3px 13px;
    border-radius: 6px;
}

.grid-products .products-list .product .product-label .onsale {
    color: #fff;
    background-color: #ffb93a;
}

.grid-products .products-list .product .product-label .soldout {
    color: #fff;
    background-color: #c00;
}

.grid-products .products-list .product .product-label .new {
    color: #fff;
    background-color: #00b0ff;
}

.grid-products .products-list .product .price-wrap {
    margin: 10px 0 20px 0;
}

.grid-products .products-list .product .price-wrap .price del {
    color: #b7b7b7;
    margin: 0 7px;
    display: flex;
}

.grid-products .products-list .product .price-wrap .price,
.grid-products .products-list .product .price-wrap .price ins,
.grid-products .products-list .product .price-wrap .price span {
    display: inline-block;
}

.grid-products .products-list .product .price-wrap .price > span > bdi {
    color: #35495c;
}

.grid-products .products-list .product .price-wrap .price > span > bdi,
.grid-products .products-list .product .price-wrap .price ins span bdi {
    font-size: 18px;
    font-weight: 600;
}

.grid-products .products-list .product .price-wrap .price span {
    margin: 0 3px;
}

.grid-products .products-list .product .product-foot .fa,
.grid-products .products-list .product .product-foot i,
.grid-products .products-list .product .product-foot a.added {
    display: none;
}

.grid-products .products-list .product .product-foot {
    margin: 0 0 -8px 0;
}

.grid-products .products-list .product .product-foot a {
    display: inline-block;
    transition: ease .3s;
    max-width: 100%;
    color: #fff;
    background-color: #000;
    border-radius: 6px 6px 0 0;
    padding: 7px 30px 7px 30px;
}
.grid-products .products-list .product .title-wrap a * {
    color: #686868;
    font-size: 15px;
}

.grid-products .pagination a{
    border: none !important;
}

.grid-products .products-list .col-product-widget-2{
    padding: 0 6px !important;
}

@media only screen and (max-width: 768px) {
    .grid-products {
        margin: 0 auto;
    }
    .grid-products .products-list .product {
        margin: 0;
        padding: 10px;
    }

    .grid-products .nokameh-pagination {
        display: none;
    }
}

/*    List Product    */
.list-product-wrap {
    background-color: #ef3f55;
    -webkit-border-radius: 16px;
    border-radius: 16px;
    padding: 20px 3px;
    position: relative;
}

.list-product-wrap .sc-first-item-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-product-wrap .sc-first-item-content a {
    color: #fff;
    text-align: center;
    font-size: 15px;
}

.list-product-wrap .sc-first-item-content a i {
    vertical-align: text-top;
    padding: 0 !important;
}

.list-product-wrap .swiper-slide:not(.sc-first-item-content) img {
    object-fit: fill;
}

.list-product-wrap .swiper-slide .sc-item-content {
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    background-color: #fff;
    height: 100%;
    padding: 13px;
}

.list-product-wrap .swiper-slide .sc-items-top,
.list-product-wrap .swiper-slide .sc-items-bottom {
    width: 100%;
}

.list-product-wrap .swiper-slide .sc-items-bottom {
    padding: 0;
    margin-top: 10px;
}

.list-product-wrap .swiper-slide {
    height: auto;
}

.list-product-wrap .swiper-wrapper .swiper-slide .sc-item-content {
    border-radius: 6px;
}

.list-product-wrap .swiper-wrapper .swiper-slide:last-child .sc-item-content {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.list-product-wrap .swiper-slide.sc-last-item-content .sc-item-content {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.list-product-wrap .swiper-slide .sc-item-content > div {
    width: 100%;
}

.list-product-wrap .swiper-slide.sc-last-item-content .sc-item-content i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid;
    color: #19bfd3;
    border-radius: 50px;
}

.list-product-wrap .swiper-slide.sc-last-item-content .sc-item-content a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.list-product-wrap .swiper-slide.sc-last-item-content .sc-item-content a span {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    color: #444444;
}

.list-product-wrap .swiper-slide .sc-items-top .mwprprice {
    margin-top: 10px;
}

.list-product-wrap .regular_price {
    display: flex;
    font-size: 15px;
    justify-content: space-between;
    flex-direction: row;
}

.list-product-wrap .reg-price-wrap {
    font-weight: 600;
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.list-product-wrap .reg-price-wrap em {
    font-style: normal;
    font-size: 11px;
}

.list-product-wrap .sale-percent {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background-color: #ef3f55;
    color: #fff;
    width: 26%;
    border-radius: 50px;
    padding: 0 5px;
}

.list-product-wrap .sale-price {
    font-size: 13px;
    text-align: left;
    color: #c3c3ce;
}

.list-product-wrap .regular_price.without-sale .reg-price-wrap {
    display: block;
    width: 100%;
    text-align: left;
}

.list-product-wrap .swiper-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    background: none;
    background-color: #fff;
    border: 1px solid #b1b1b1;
    font-size: 20px;
    color: #464646;
    cursor: pointer;
    transition: ease .3s;
}

.list-product-wrap .swiper-nav-button.swiper-btn-next {
    right: auto;
    left: 10px;
}

.list-product-wrap .swiper-button-disabled {
    opacity: 0;
}

.list-product-wrap .sale-progress {
    width: 100%;
    height: 4px;
    background-color: #f1f2f4;
    margin-top: 8px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.list-product-wrap .sale-progress .percent {
    position: absolute;
    left: 0;
    height: 100%;
    background-color: #ef3f55;
    border-radius: 50px;
}

.list-product-wrap .product-labels {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    padding: 7px;
}

.list-product-wrap .product-labels span {
    display: inline-block;
    font-size: 13px;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 8px;
    border-radius: 50px 0 50px 50px;
}

.list-product-wrap .product-labels span.out-stock {
    color: #fff;
    background-color: #ef3f55;
}

.list-product-wrap .product-title h1,
.list-product-wrap .product-title h2,
.list-product-wrap .product-title h3,
.list-product-wrap .product-title h4,
.list-product-wrap .product-title h5,
.list-product-wrap .product-title h6 {
    margin: 9px 0 6px 0;
    color: #444444;
}

.list-product-wrap .product-title > * {
    font-size: 15px;
    font-weight: 600;
}

.list-product-wrap .add-to-cart-btn {
    display: inline-block;
    color: #ef3f55;
    background-color: #fff;
    border: 1px solid #ef3f55;
    padding: 5px 12px;
    margin-top: 10px;
    transition: ease .12s;
    font-size: 15px;
}

.list-product-wrap .swiper-slide {
    flex-shrink: 0 !important;
    width: 187px !important;
    height: auto;
    margin: 0 3px;
}

.list-product-wrap .swiper-wrapper {
    display: flex !important;
    align-items: stretch;
}


/*   List Product 2   */
.list-product-2,
.list-product-2 .carousel-contents {
    position: relative;
}

.list-product-2 .carousel-contents,
.list-product-2 .carousel-tabs {
    width: 100%;
}

.list-product-2 .carousel-contents {
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-product-2 .carousel-content {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
    border-radius: 10px;
    transition: ease .4s;
    opacity: 0;
}

.list-product-2 .carousel-content.show {
    opacity: 1;
}

.list-product-2 .carousel-tab {
    position: relative;
    text-align: center;
    padding: 13px;
    border-radius: 5px;
    color: #212121;
    background-color: #f0f0f0;
    font-size: 15px;
    margin-bottom: 7px;
    cursor: pointer;
    transition: ease .3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-product-2 .carousel-tab.active {
    box-shadow: inset -4px 0 0 #10ad8e;
}

.list-product-2 .carousel-box-title {
    position: absolute;
    top: 0;
    right: 50%;
    z-index: 19;
    -moz-transform: translateX(75%);
    -webkit-transform: translateX(75%);
    transform: translateX(75%);
    padding: 10px 20px;
    background-color: #f0f0f0;
    border-radius: 0 0 10px 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.list-product-2 .carousel-box-title strong {
    color: #10ad8e;
}

.list-product-2 .carousel-details {
    text-align: center;
}

.list-product-2.has-box-title .carousel-details {
    padding-top: 3em;
}

.list-product-2 .carousel-cover img {
    display: block;
    max-width: 100%;
    margin: 0 auto 0 auto;
}

.list-product-2 .carousel-details .carousel-item-title {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
}

.list-product-2 .carousel-details .price,
.list-product-2 .carousel-details .price *:not(span) {
    display: inline-block;
}

.list-product-2 .carousel-details .price bdi {
    display: block;
}

.list-product-2 .carousel-details .mw_add_to_cart {
    display: inline-block;
    margin-top: 1em;
    padding: 7px 15px;
    min-width: 130px;
    color: #10ad8e;
    border: 1px solid #10ad8e;
    border-radius: 6px;
    font-size: 16px;
    transition: ease .3s;
}

.list-product-2 .carousel-details .mw_add_to_cart:hover {
    color: #fff;
    background-color: #10ad8e;
}

.list-product-2 .carousel-details .mw_add_to_cart span,
.list-product-2 .carousel-details .mw_add_to_cart .fa {
    margin-left: 10px;
}

.list-product-2 .carousel-details .price {
    font-size: 16px;
    margin-top: 1em;
}

.list-product-2 .carousel-details .price,
.list-product-2 .carousel-details .price ins {
    color: #10ad8e;
    display: inline-block;
}

.list-product-2 .carousel-details .price del {
    margin: 0 7px;
    color: #c7c7c7;
}

.list-product-2 .carousel-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 40;
    background-color: #ff0707;
    color: #fff;
    width: 181px;
    height: 100px;
    text-align: center;
    font-size: 15px;
    padding: 6px;
    -webkit-transform: rotate(45deg) translate(16%, -74%);
    -moz-transform: rotate(45deg) translate(16%, -74%);
    transform: rotate(45deg) translate(16%, -74%);
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
}

.list-product-2 .carousel-badge span {
    width: 100%;
}

.list-product-2 .price-discounted {
    display: none;
    background-color: #ff0707;
    padding: 3px 7px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    vertical-align: middle;
}

.carousel-loader {
    display: inline-block;
    width: 0;
    height:4px;
    background-color: #000;
}

.carousel-cover img{
    border-radius: 6px !important;
}

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.rounded {
    border-radius: 10px;
}

@media screen and (max-width: 767px){
    .list-product-2.has-box-title {
        padding-top: 3em;
    }

    .list-product-2 .carousel-cover {
        margin-bottom: 1em;
    }

    .list-product-2 .carousel-box-title {
        right: 0;
        width: 100%;
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .list-product-2 .carousel-tabs,
    .list-product-2 .carousel-badge {
        display: none;
    }

    .list-product-2 .price-discounted {
        display: inline-block;
    }
}

/*   List Product 3   */
.list-product-3 {
    background-color: #354ac4;
    padding: 16px;
    -webkit-border-radius: 16px;
    border-radius: 16px;
}

.list-product-3 .box-products-wrap {
    background-color: #fff;
    border-radius: 8px;
    padding: 16px;
    height: 100%;
}

.list-product-3 .box-details {
    color: #fff;
}

.list-product-3 .box-btns {
    margin-top: 1rem;
}

.list-product-3 .box-btns a{
    display: inline-block;
    border: 1px solid;
    padding: 6px 20px;
    border-radius: 7px;
    font-size: 14px;
}

.list-product-3 .box-btns a i {
    vertical-align: middle;
    font-size: 11px;
    margin-right: 5px;
}

.list-product-3 .box-btns a svg {
    width: 15px;
    vertical-align: middle;
    fill: #fff;
}

.list-product-3 .box-title {
    font-size: 15px;
    line-height: 1.7;
}

.list-product-3 .bp-title h4 {
    display: inline-block;
    font-size: 16px;
}

.list-product-3 .bp-title i,
.list-product-3 .bp-title svg {
    font-size: 18px;
    vertical-align: middle;
    margin-left: 7px;
    color: #354ac4;
}

.list-product-3 .bp-title svg {
    width: 15px;
    fill: #354ac4;
}

.list-product-3 .bp-title,
.list-product-3 .bp-btns {
    line-height: 1.7;
}

.list-product-3 .bp-btns a {
    font-size: 15px;
    color: #354ac4;
}

.list-product-3 .bp-btns a i,
.list-product-3 .bp-btns a svg {
    vertical-align: middle;
    margin-right: 2px;
}

.list-product-3 .bp-btns a svg {
    width: 10px;
    fill: #354ac4;
}

.list-product-3 .box-products {
    margin-top: 15px;
    text-align: center;
}

.list-product-3 .box-products img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-top: 15px;
}

.list-product-3 .box-details {
    border-radius: 8px;
    background-size: 95%;
    height: 100%;
}

@media screen and (max-width: 767px){
    .list-product-3 .shop-category6-box > .row {
        row-gap: 30px;
    }

    .list-product-3 .bp-title {
        margin-top: 7px;
    }

    .list-product-3 .bp-title,
    .list-product-3 .bp-btns {
        text-align: center;
    }
}

/*   List Product 4   */
.list-product-4 {
    border: 1px solid #e0e0e6;
    border-radius: 16px;
    overflow: hidden;
}

.list-product-4 .use-grid-template {
    display: grid;
}

.list-product-4 .use-grid-template.grd-5 {
    grid-template-columns: repeat(5,minmax(0,1fr));
}

.list-product-4 .use-grid-template.grd-4 {
    grid-template-columns: repeat(4,minmax(0,1fr));
}

.list-product-4 .use-grid-template.grd-3 {
    grid-template-columns: repeat(3,minmax(0,1fr));
}

.list-product-4 .use-grid-template.grd-2 {
    grid-template-columns: repeat(2,minmax(0,1fr));
}

.list-product-4 .use-grid-template.grd-1 {
    grid-template-columns: repeat(1,minmax(0,1fr));
}

.list-product-4 .cat-products {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    flex: 1 1;
    gap: 1px;
    background-color: #f1f2f4;
}

.list-product-4 .cat-products.cp-1 {
    grid-template-columns: repeat(1,minmax(0,1fr));
}

.list-product-4 .cat-products a,
.list-product-4 .cat-products .cat-product.is-empty{
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-product-4 .cat-products .cat-product.is-empty {
    display: none;
}

.list-product-4 div:is(.cp-3, .cp-5, .cp-7, .cp-9, .cp-11, .cp-13, .cp-15) .cat-product.is-empty{
    display: flex;
}

.list-product-4 .cat-products img {
    width: 125px;
    height: 125px;
    object-fit: contain;
    transform: scale(.9);
}

.list-product-4 .cat-item {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    background-color: #fff;
}

.list-product-4 .cat-item > div {
    width: 100%;
}

.list-product-4 .cp-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-product-4 .category-items {
    gap: 1px;
    background: #f0f0f0;
}

.list-product-4 .cat-title h4 {
    font-size: 18px;
    color: #202020;
}

.list-product-4 .subtitle {
    font-size: 13px;
    font-weight: 300;
    color: #5e5e5e;
    margin-top: 5px;
}

.list-product-4 .cat-foot {
    text-align: center;
    padding: 0 10px 15px 10px;
}

.list-product-4 .cat-foot a {
    font-size: 14px;
    color: #19bfd3;
}

.list-product-4 .cat-foot a i {
    vertical-align: middle;
    margin: 0 5px;
}

.list-product-4 .cat-foot a svg {
    width: 9px;
    vertical-align: middle;
    margin: 0 2px;
    fill: #19bfd3;
}

.list-product-4 .cat-title-wrap {
    padding: 15px 15px 0 15px;
}

.list-product-4 .cat-products-wrap {
    padding: 15px;
}

@media screen and (max-width: 1000px) {
    .list-product-4 .category-items.use-grid-template {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media screen and (max-width: 580px) {
    .list-product-4 .category-items.use-grid-template {
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
}

/*     Product 3    */
.grid-products-5-wrap .product-items {
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 0;
}

.grid-products-5-wrap .box-head {
    position: relative;
    margin-bottom: 25px;
    padding: 0 15px;
    text-align: right;
}

.grid-products-5-wrap .box-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.grid-products-5-wrap .box-btn {
    position: absolute;
    top: 3px;
    left: auto;
}

.grid-products-5-wrap .product-items .product-item {
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.grid-products-5-wrap .product-item .sc-item-content {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    background-color: #fff;
    height: 100%;
    padding: 13px;
    gap: 7px;
}

.grid-products-5-wrap .product-item .sc-items-top,
.grid-products-5-wrap .product-item .sc-items-bottom {
    width: 100%;
}

.grid-products-5-wrap .product-item .sc-items-bottom {
    padding: 0;
    margin-top: 10px;
}

.grid-products-5-wrap .product-item {
    height: auto;
    overflow: hidden;
}

.grid-products-5-wrap .product-item img {
    width: 100%;
}

.grid-products-5-wrap .product-item .sc-item-content > div {
    width: 100%;
}

.grid-products-5-wrap .product-item .sc-items-top .mwprprice {
    margin-top: 10px;
}

.grid-products-5-wrap .regular_price {
    display: flex;
    font-size: 15px;
    justify-content: space-between;
}

.grid-products-5-wrap .reg-price-wrap {
    display: flex;
    align-items: center;
    column-gap: 4px;
}

.grid-products-5-wrap .reg-price-wrap em {
    font-style: normal;
    font-size: 11px;
}

.grid-products-5-wrap .sale-percent {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background-color: #ef3f55;
    color: #fff;
    width: 26%;
    border-radius: 50px;
    padding: 0 5px;
}

.grid-products-5-wrap .sale-price {
    margin-top: 7px;
    font-size: 13px;
    text-align: left;
    padding-left: 29px;
    color: #c3c3ce;
}

.grid-products-5-wrap .regular_price.without-sale .reg-price-wrap {
    display: block;
    width: 100%;
}


.grid-products-5-wrap .sale-progress {
    width: 100%;
    height: 4px;
    background-color: #f1f2f4;
    margin-top: 8px;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.grid-products-5-wrap .sale-progress .percent {
    position: absolute;
    left: 0;
    height: 100%;
    background-color: #ef3f55;
    border-radius: 50px;
}

.grid-products-5-wrap .product-labels {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    padding: 7px;
}

.grid-products-5-wrap .product-labels span {
    display: inline-block;
    font-size: 13px;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 8px;
    border-radius: 50px 0 50px 50px;
}

.grid-products-5-wrap .product-labels span.out-stock {
    color: #fff;
    background-color: #ef3f55;
}

.grid-products-5-wrap .product-title {
    color: #444444;
}

.grid-products-5-wrap .product-title h3 {
    font-size: 15px;
    font-weight: 600;
}

.grid-products-5-wrap .product-metas {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 10px 0;
    color: #7e7e7e;
}

.grid-products-5-wrap .product-star {
    color: #333;
    font-weight: 600;
}

.grid-products-5-wrap .product-star i {
    color: #fdc419;
}

.grid-products-5-wrap .product-metas .low-stock {
    color: #e6123d;
}

.grid-products-5-wrap .product-metas .is-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #12a6e6;
    font-size: 13px;
}

.product-metas .extra-label .is-stock svg path{
    stroke: #12a6e6;
}

.grid-products-5-wrap .product-items .product-item:nth-of-type(5n+1),
.grid-products-5-wrap .product-items .product-item:nth-of-type(5n+2),
.grid-products-5-wrap .product-items .product-item:nth-of-type(5n+3),
.grid-products-5-wrap .product-items .product-item:nth-of-type(5n+4)
{
    border-left: 1px solid #f0f0f0;
}

.grid-products-5-wrap .product-colors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 5px;
}

.grid-products-5-wrap .product-colors span {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50px;
    color: #7e7e7e;
    font-size: 12px;
}

.grid-products-5-wrap .product-colors .has-more {
    position: relative;
    top: -2px;
}

.grid-products-5-wrap .item-buttons {
    margin: 12px 0;
}

.grid-products-5-wrap .item-buttons a {
    padding: 4px 10px;
}

.grid-products-5-wrap .rating i::before {
    color: #FF7020;
}

.grid-products-5-wrap .rating span.voted {
    margin-right: 10px;
    color: #BABABA;
}

.grid-products-5-wrap .product-item a.fimage {
    display: block
}

.grid-products-5-wrap .product-item img {
    width: 100%;
    height: 100%;
}

.grid-products-5-wrap .title-sale-percent {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background-color: #ef3f55;
    color: #fff;
    border-radius: 50px;
    padding: 0 5px;
    margin-right: 5px;
}

.grid-products-5-wrap .product-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

@media screen and (min-width: 1024px) {
    .grid-products-5-wrap .product-colors {
        position: absolute;
        top: 15px;
        left: 15px;
    }
}

@media screen and (max-width: 1024px) {
    .grid-products-5-wrap .product-items {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .grid-products-5-wrap .product-items .product-item:nth-of-type(3n+2) {
        border-left: 1px solid #f0f0f0;
    }
}

@media screen and (max-width: 767px) {
    .grid-products-5-wrap .product-item .sc-item-content {
        align-items: center;
    }

    .grid-products-5-wrap .product-items {
        grid-template-columns: repeat(1,minmax(0,1fr));
    }

    .grid-products-5-wrap .product-item .sc-item-content > div {
        width: auto;
    }

    .grid-products-5-wrap .product-item .sc-item-content .sc-items-top {
        width: 111px;
        flex-shrink: 0;
    }

    .grid-products-5-wrap .product-item div.sc-items-bottom {
        flex: 1;
        box-sizing: border-box;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
.grid-products-5-wrap .product-star i{
    padding: 0 !important;
}
.grid-products-5-wrap .product-more-details .mwprprice .regular_price{
    display: flex;
    flex-direction: row;
}

/*    Product 4    */
.grid-products-6 {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #eef1f0;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px;
    border-radius: 16px;
    position: relative;
}

.grid-products-6 .product-item {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 70px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    padding: 10px;
    background-color: #fff;
}

.grid-products-6 .product-item img {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    object-fit: cover;
}

.grid-products-6 .items-box {
    margin-inline-start: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 8px;
}

.grid-products-6 .title-box {
    padding-top: 10px;
}

.grid-products-6 .title-box img {
    max-width: 200px;
    max-height: 60px;
    object-fit: cover;
    vertical-align: middle;
    margin: -6px 0 0 7px;
}

.grid-products-6 .box-title {
    display: inline-block;
    font-size: 21px;
    font-weight: bold;
    color: #39ae00;
}

.grid-products-6 .box-title .box-tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    background-color: #39ae00;
    color: #fff;
    padding: 3px 10px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    margin: 0 9px;
}

.grid-products-6 .archive-link {
    display: inline-block;
    font-size: 13px;
    color: #39ae00;
    background-color: #fff;
    padding: 12px 18px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    text-align: center;
}

.grid-products-6 .archive-link i{
    padding: 0 !important;
}

.grid-products-6 .archive-link i {
    margin-right: 6px;
    position: relative;
    top: 2px;
}

.grid-products-6 .percent-label {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #ef3f55;
    color: #fff;
    font-size: 13px;
    height: 21px;
    padding: 0 6px;
    border-radius: 50px;
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .grid-products-6 .title-box,
    .grid-products-6 .items-box {
        width: 100%;
    }
    .grid-products-6 {
        flex-wrap: wrap;
    }
    .grid-products-6 .items-box {
        margin-top: 1.3rem;
    }
    .grid-products-6 .archive-link {
        margin-inline-start: auto;
        height: 40px;
        width: 40px;
        padding: 10px;
    }
    .grid-products-6 .archive-link span {
        display: none;
    }
    .grid-products-6 .archive-link i {
        margin: 0;
    }
}

@media screen and (max-width: 640px){
    .grid-products-6 .title-box {
        text-align: center;
    }
    .grid-products-6 .items-box {
        row-gap: 8px;
    }
}


/*    Question    */
.nokameh-ultimate-accordion-widget {
    width: 100%;
    font-family: inherit;
}

.nokameh-ultimate-accordion {
    width: 100%;
}

.nokameh-accordion-scrollable {
    max-height: 300px;
    overflow-y: auto;
}

.nokameh-scroll-right.nokameh-accordion-scrollable {
    padding-right: 10px;
}

.nokameh-accordion-scrollable {
    max-height: 300px;
    overflow-y: auto;
}

.nokameh-scroll-right.nokameh-accordion-scrollable {
    direction: ltr;
    padding-right: 10px;
}

.nokameh-scroll-left.nokameh-accordion-scrollable {
    direction: rtl;
    padding-left: 10px;
}

.nokameh-scroll-right.nokameh-accordion-scrollable .nokameh-accordion-item,
.nokameh-scroll-right.nokameh-accordion-scrollable .nokameh-accordion-header,
.nokameh-scroll-right.nokameh-accordion-scrollable .nokameh-accordion-title,
.nokameh-scroll-right.nokameh-accordion-scrollable .nokameh-accordion-icon {
    direction: rtl;
}

.nokameh-accordion-scrollable::-webkit-scrollbar {
    width: 6px;
}

.nokameh-accordion-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.nokameh-accordion-scrollable::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.nokameh-accordion-scrollable::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.nokameh-accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.nokameh-accordion-header {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    position: relative;
}

.nokameh-accordion-header:hover {
    background-color: #f0f0f0;
}

.nokameh-accordion-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex-grow: 1;
}

.nokameh-accordion-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.nokameh-accordion-item.active .nokameh-accordion-icon {
    transform: rotate(45deg);
}

.nokameh-accordion-content {
    display: none;
    background-color: #fff;
}

.nokameh-accordion-content,
.nokameh-accordion-content * {
    font-family: inherit;
    line-height: inherit;
}


@media (max-width: 768px) {
    .nokameh-accordion-header {
        padding: 15px;
    }

    .nokameh-accordion-title {
        font-size: 15px;
    }

    .nokameh-accordion-item.active .nokameh-accordion-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .nokameh-accordion-header {
        padding: 12px 15px;
    }

    .nokameh-accordion-title {
        font-size: 14px;
    }
}

/*   Portfolio   */
.portfolio-element .row {
    row-gap: 25px;
}

.portfolio-element .tabs-list {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-element .tabs-list .tab-item {
    display: inline-block;
    padding: 10px 15px;
    font-size: 17px;
    color: #333;
    border-radius: 50px;
    margin: 5px 8px;
}

.portfolio-element .tabs-list .tab-item.active {
    background-color: #8750F7;
    color: #fff;
}

.portfolio-element .portfolio-item {
    position: relative;
}

.portfolio-element .item-details-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 20px;
}

.portfolio-element .item-cover {
    display: flex;
    align-items: center;
}

.portfolio-element .item-cover img {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    transition: ease .15s;
    border: 1px solid transparent;
}

.portfolio-element .portfolio-item:hover .item-cover img {
    border-color: #684ceb;
}

.portfolio-element .item-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    background-color: #684ceb;
    color: #fff;
    border-radius: 6px;
    transition: ease .15s;
    transform: translateY(15px);
    opacity: 0;
}

.portfolio-element .portfolio-item:hover .item-content {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-element .item-title {
    font-size: 16px;
    font-weight: 600;
}

.portfolio-element .item-des {
    font-size: 13px;
    font-weight: 300;
    margin-top: 7px;
}

.portfolio-element .item-icon {
    width: 50px;
    display: flex;
    align-items: center;
}

/*    Grid Post    */
.nokameh-elementor-blog-style {
    width: 100%;
}

.nokameh-elementor-grid-layout {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.nokameh-elementor-blog-style .nokameh-elementor-post-item {
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
}

.nokameh-elementor-blog-style .nokameh-elementor-post-thumbnail-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    justify-content: center;
    height: 200px;
    padding: 12px 12px 0 12px;
}

.nokameh-elementor-post-image-container {
    width: 100%;
    height: 100%;
    border-radius: 9px;
    overflow: hidden;
}

.nokameh-elementor-blog-style .nokameh-elementor-post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
    transition: transform 0.3s ease;
}

.nokameh-elementor-blog-style .nokameh-elementor-post-item:hover img {
    transform: scale(1.05);
}

.nokameh-elementor-blog-style .nokameh-elementor-post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.nokameh-elementor-blog-style .nokameh-elementor-post-title h3 {
    margin: 0;
    line-height: 1.6;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 18px;
    font-weight: 600;
    color: #353941;
}

.nokameh-elementor-blog-style .nokameh-elementor-post-excerpt {
    font-weight: 400;
    line-height: 1.7;
    text-align: right;
    margin: 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    color: #666;
    font-size: 14px;
}

.nokameh-elementor-post-date-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    border-radius: 9px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    line-height: 1;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
}

.nokameh-elementor-post-date-badge .nokameh-elementor-date-number {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.nokameh-elementor-post-date-badge .nokameh-elementor-date-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 9px;
    padding: 0;
    margin: 0;
}

.nokameh-elementor-post-meta-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nokameh-elementor-post-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nokameh-elementor-post-meta-item,
.nokameh-elementor-post-read-more {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
    transition: all 0.3s ease;
}

.nokameh-elementor-post-read-more {
    color: #353941;
    font-weight: 600;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .nokameh-elementor-grid-layout {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .nokameh-elementor-blog-style .nokameh-elementor-post-thumbnail-wrap {
        height: 180px;
    }

    .nokameh-elementor-blog-style .nokameh-elementor-post-content {
        padding: 16px;
    }
}

/*    Grid Post 2    */
.grid-post-2 {
    display: grid;
    grid-template-areas: 'grid_item_one grid_item_two grid_item_three' 'grid_item_four grid_item_five grid_item_five';
    grid-gap: 20px;
}

.grid-post-2 .item {
    width: 100%;
    position: relative;
    background-size: cover;
    transition-duration: .3s;
    overflow: hidden;
    min-height: 250px;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.5);
}

.grid-post-2 .item .post-item-details {
    width: 100%;
}

.grid-post-2 .item a {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: right;
    padding: 20px 20px 20px 20px;
}

.grid-post-2 .item a .post-meta {
    margin: 3px 0 0;
}

.grid-post-2 .item a span {
    display: inline-block;
}

.grid-post-2 .item a .post-meta span:not(:first-of-type) {
    margin: 0 10px;
}

.grid-post-2 .item:nth-of-type(1) {
    grid-area: grid_item_one;
}

.grid-post-2 .item:nth-of-type(2) {
    grid-area: grid_item_two;
}

.grid-post-2 .item:nth-of-type(3) {
    grid-area: grid_item_three;
}

.grid-post-2 .item:nth-of-type(4) {
    grid-area: grid_item_four;
}

.grid-post-2 .item:nth-of-type(5) {
    grid-area: grid_item_five;
}

.grid-post-2 .item:nth-of-type(1) a {
    background-image: linear-gradient(360deg, rgba(183, 28, 28, 0.77) -20%, rgba(12, 211, 31, 0) 70%);
}

.grid-post-2 .item:nth-of-type(2) a {
    background-image: linear-gradient(360deg, rgba(104, 159, 56, 0.5) -20%, rgba(12, 211, 31, 0) 70%);
}

.grid-post-2 .item:nth-of-type(3) a {
    background-image: linear-gradient(360deg, rgba(81, 45, 168, 0.77) -20%, rgba(12, 211, 31, 0) 70%);
}

.grid-post-2 .item:nth-of-type(4) a {
    background-image: linear-gradient(360deg, rgba(230, 81, 0, 0.77) -20%, rgba(12, 211, 31, 0) 70%);
}

.grid-post-2 .item:nth-of-type(5) a {
    background-image: linear-gradient(360deg, rgba(13, 71, 161, 0.77) -20%, rgba(12, 211, 31, 0) 70%);
}

.grid-post-2 .item h3{
    color: #fff;
    font-size: 18px;
}

.grid-post-2 .item h3,
.grid-post-2 .item .post-meta {
    width: 100%;
}

.grid-post-2 .none-cover-overlay.item a {
    background-image: none;
}

.grid-post-2 .item a .post-meta span {
    color: #fff;
    font-size: 13px;
    font-weight: 300;
}

.grid-post-2 .post-meta i{
    padding: 0 !important;
}

@media screen and (max-width: 767px) {
    .elementor .grid-post-2 {
        display: grid;
        grid-template-columns: repeat(2,minmax(0,1fr));
        grid-template-areas: none;
        gap: 10px;
    }

    .elementor .grid-post-2 .item {
        grid-area: auto;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575.98px) {
    .elementor .grid-post-2 {
        grid-template-columns: repeat(1,minmax(0,1fr));
    }
}


/*    Post Slide    */
.post-carouse .box-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.post-carouse .post-thumbnail-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    justify-content: center;
}

.post-carouse .box-heading .box-title {
    font-size: 21px;
    font-weight: 600;
    color: #000;
}

.post-carouse .box-heading .box-buttons a {
    display: flex;
    align-items: center;
    font-size: 21px;
    gap: 10px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.post-carouse .box-heading .box-buttons a svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.post-carouse.is-ltr .box-heading .box-buttons a svg {
    transform: rotateY(180deg);
}

.post-carouse .post-item {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-carouse .post-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.post-carouse .post-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: ease .12s;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.post-carouse .post-item:hover img {
    transform: scale(1.05);
}

.post-carouse .post-item .post-content {
    padding: 16px;
}

.post-carouse .post-item .post-title h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: #000;
    transition: all 0.3s ease;
}

.post-carouse .post-item:hover .post-title h3 {
    color: #007bff;
}

.post-carouse .post-item .post-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 12px 0;
    transition: all 0.3s ease;
}

.post-carouse .post-item:hover .post-excerpt {
    color: #333;
}

.post-carouse .post-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #2B6AFF;
    color: white;
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.post-carouse .post-date-badge .date-number {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.post-carouse .post-date-badge .date-label {
    font-size: 12px;
    line-height: 1;
    margin-top: 2px;
}

.post-carouse .post-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.post-carouse .post-comment-btn,
.post-carouse .post-category-btn,
.post-carouse .post-author-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.post-carouse .post-comment-btn {
    background-color: #2B6AFF;
    color: white;
}

.post-carouse .post-comment-btn i{
    padding: 0 !important;
}

.post-carouse .post-comment-btn:hover {
    background-color: #1e57ff;
}

.post-carouse .post-category-btn,
.post-carouse .post-author-btn {
    background-color: #F5F7FA;
    color: #333;
}

.post-carouse .post-category-btn:hover,
.post-carouse .post-author-btn:hover {
    background-color: #E9ECF0;
}

.post-carouse .post-author-btn img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.post-carouse .post-item .post-details-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 16px;
    transform: translateY(30px);
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 2;
}

.post-carouse .post-item:hover .post-details-wrap {
    transform: translateY(0px);
    opacity: 1;
}

.post-carouse .post-item .post-details {
    background-color: #ffffff;
    padding: 16px;
    color: #000;
    font-size: 13px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.post-carouse .post-item:hover .post-details {
    background-color: #f8f9fa;
}

.post-carouse .post-item .post-details .post-votes {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    background-color: #4FAB5B45;
    color: #4FAB5B;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.post-carouse .post-item:hover .post-details .post-votes {
    background-color: #4FAB5B66;
    transform: translateY(-2px);
}

.post-carouse .post-item .post-details .post-categories {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

.post-carouse .post-item.without-title .post-details-wrap {
    transform: translateY(0);
    opacity: 1;
}

.post-carouse .swiper {
    overflow: hidden;
}

.post-carouse .swiper-slide {
    height: auto;
}

/*     List Post    */
.nokameh-post-list-widget {
    direction: rtl;
}

.nokameh-post-list-container {
    width: 100%;
}

.nokameh-post-list-scrollable {
    overflow-y: auto;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

.nokameh-post-list-scrollable::-webkit-scrollbar {
    width: 6px;
}

.nokameh-post-list-scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.nokameh-post-list-scrollable::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.nokameh-post-list-scrollable::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.nokameh-blog-list-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.nokameh-blog-item-content {
    padding: 0;
}

.nokameh-post-image-wrapper {
    position: relative;
    height: 100%;
}

.nokameh-post-image-container {
    height: 200px;
    overflow: hidden;
}

.nokameh-post-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nokameh-blog-list-item:hover .nokameh-post-image-container img {
    transform: scale(1.05);
}

.nokameh-post-list-container.nokameh-post-list-scrollable {
    scrollbar-width: auto !important;
    padding-right: 9px;
}

.nokameh-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    color: #999;
    font-size: 14px;
}

.nokameh-post-content-area {
    padding: 20px;
}

.nokameh-post-content-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.nokameh-post-title h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #353941;
}

.nokameh-post-title a {
    text-decoration: none;
    color: inherit;
}

.nokameh-post-title h3:hover {
    color: #0073e6;
}

.nokameh-post-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.nokameh-post-meta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.nokameh-post-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nokameh-post-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #353941;
    transition: all 0.3s ease;
}

.nokameh-post-meta-item svg {
    color: #353941;
}

.nokameh-post-read-more {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #353941;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: transparent;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
}

.nokameh-post-read-more:hover {
    color: #0073e6;
}

.nokameh-post-read-more svg {
    transition: color 0.3s ease;
}

.nokameh-no-posts {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.nokameh-scroll-right .nokameh-post-list-scrollable {
    direction: ltr;
}

.nokameh-scroll-left .nokameh-post-list-scrollable {
    direction: rtl;
}

.nokameh-blog-item-content{
    direction: rtl;
}

@media (max-width: 768px) {
    .nokameh-post-meta-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .nokameh-post-actions {
        gap: 12px;
    }

    .nokameh-post-content-area {
        padding: 16px;
    }

    .nokameh-post-image-container {
        height: 180px;
    }

    .nokameh-post-content-area.col-md-8 {
        padding-top: 0;
    }
}

/*    Charts    */
.nokameh-charts-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nokameh-chart-col {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.nokameh-chart-wrapper {
    position: relative;
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.nokameh-chart-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.nokameh-chart {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 25px;
    box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.8),
            inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.nokameh-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.nokameh-chart-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 85%;
}

.nokameh-chart-title {
    font-weight: 700;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
    font-size: 18px;
    line-height: 1.2;
}

.nokameh-chart-text {
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.3;
}

.nokameh-chart-icon {
    margin-bottom: 12px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.nokameh-chart-icon i,
.nokameh-chart-icon svg {
    width: 1.2em;
    height: 1.2em;
    transition: all 0.4s ease;
}

.nokameh-chart-wrapper:hover .nokameh-chart-icon {
    transform: scale(1.1) rotate(5deg);
}

.nokameh-bar-chart {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    padding: 5px;
    width: 100%;
}

.nokameh-bar-bg {
    border-radius: 16px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nokameh-bar-progress {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nokameh-bar-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%);
    animation: shimmer 2s infinite;
}

.nokameh-chart-svg {
    transition: all 0.5s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.nokameh-circle-chart .nokameh-chart-progress,
.nokameh-semi-circle-chart .nokameh-chart-progress,
.nokameh-line-chart .nokameh-chart-progress {
    opacity: 0;
    animation: nokameh-fadeIn 0.8s ease-out forwards;
}

.nokameh-circle-chart,
.nokameh-semi-circle-chart,
.nokameh-line-chart {
    position: relative;
    transition: all 0.5s ease;
}

.nokameh-chart-wrapper:hover .nokameh-circle-chart,
.nokameh-chart-wrapper:hover .nokameh-semi-circle-chart,
.nokameh-chart-wrapper:hover .nokameh-line-chart {
    transform: scale(1.05);
}

.nokameh-charts-columns-1 .nokameh-chart-col { width: 100%; }
.nokameh-charts-columns-2 .nokameh-chart-col { width: 50%; }
.nokameh-charts-columns-3 .nokameh-chart-col { width: 33.333%; }
.nokameh-charts-columns-4 .nokameh-chart-col { width: 25%; }
.nokameh-charts-columns-5 .nokameh-chart-col { width: 20%; }
.nokameh-charts-columns-6 .nokameh-chart-col { width: 16.666%; }

@media (max-width: 1024px) {
    .nokameh-charts-columns-tablet-1 .nokameh-chart-col { width: 100%; }
    .nokameh-charts-columns-tablet-2 .nokameh-chart-col { width: 50%; }
    .nokameh-charts-columns-tablet-3 .nokameh-chart-col { width: 33.333%; }
    .nokameh-charts-columns-tablet-4 .nokameh-chart-col { width: 25%; }
    .nokameh-charts-columns-tablet-5 .nokameh-chart-col { width: 20%; }
    .nokameh-charts-columns-tablet-6 .nokameh-chart-col { width: 16.666%; }

    .nokameh-chart {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .nokameh-charts-columns-mobile-1 .nokameh-chart-col { width: 100%; }
    .nokameh-charts-columns-mobile-2 .nokameh-chart-col { width: 50%; }
    .nokameh-charts-columns-mobile-3 .nokameh-chart-col { width: 33.333%; }
    .nokameh-charts-columns-mobile-4 .nokameh-chart-col { width: 25%; }
    .nokameh-charts-columns-mobile-5 .nokameh-chart-col { width: 20%; }
    .nokameh-charts-columns-mobile-6 .nokameh-chart-col { width: 16.666%; }

    .nokameh-chart {
        padding: 15px;
    }

    .nokameh-chart-title {
        font-size: 16px;
    }

    .nokameh-chart-text {
        font-size: 13px;
    }

    .nokameh-chart-wrapper:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

@keyframes nokameh-fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/*     Time Line 1     */
.ult-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.ult-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: #10ad8e;
    z-index: 1;
    border-radius: 10px;
}

.ult-timeline-progress {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: #10ad8e;
    z-index: 2;
    border-radius: 10px;
    height: 0;
    transition: height 0.3s ease;
}

.ult-timeline-left::before,
.ult-timeline-left .ult-timeline-progress {
    left: 50px;
}

.ult-timeline-right::before,
.ult-timeline-right .ult-timeline-progress {
    left: calc(100% - 50px);
}

.ult-timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    z-index: 3;
    opacity: 1;
    transform: translateY(0);
}

.ult-timeline-item-left {
    justify-content: flex-start;
    padding-right: calc(50% + 40px);
}

.ult-timeline-item-right {
    justify-content: flex-end;
    padding-left: calc(50% + 40px);
}

.ult-timeline-left .ult-timeline-item {
    padding-right: 0;
    padding-left: 120px;
    justify-content: flex-start;
}

.ult-timeline-right .ult-timeline-item {
    padding-left: 0;
    padding-right: 120px;
    justify-content: flex-end;
}

.ult-timeline-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #10ad8e;
    border: 4px solid #ffffff;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 4px rgba(16, 173, 142, 0.2);
    transition: all 0.3s ease;
}

.ult-timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #10ad8e;
    border-radius: 50%;
}

.ult-timeline-left .ult-timeline-dot {
    left: 50px;
}

.ult-timeline-right .ult-timeline-dot {
    left: calc(100% - 50px);
}

.ult-timeline-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #10ad8e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.ult-timeline-left .ult-timeline-icon {
    left: 50px;
}

.ult-timeline-right .ult-timeline-icon {
    left: calc(100% - 50px);
}

.ult-timeline-icon i {
    font-size: 18px;
}

.ult-timeline-icon svg {
    width: 18px;
    height: 18px;
}

.ult-timeline-content {
    flex: 1;
    max-width: 500px;
}

.ult-timeline-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.ult-timeline-date {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    display: inline-block;
    background: #10ad8e;
    padding: 8px 15px;
    border-radius: 15px;
}

.ult-timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
    line-height: 1.3;
}

.ult-timeline-subtitle {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #10ad8e;
    margin-bottom: 15px;
}

.ult-timeline-description {
    color: #666666;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.ult-timeline-item:hover .ult-timeline-card {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ult-timeline-item:hover .ult-timeline-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.ult-timeline-item:hover .ult-timeline-dot {
    transform: translate(-50%, -50%) scale(1.2);
}

@media (max-width: 768px) {
    .ult-timeline::before,
    .ult-timeline-progress {
        left: 30px !important;
    }

    .ult-timeline-item-left,
    .ult-timeline-item-right {
        padding: 0 0 0 80px !important;
        justify-content: flex-start !important;
    }

    .ult-timeline-dot,
    .ult-timeline-icon {
        left: 30px !important;
    }

    .ult-timeline-content {
        max-width: 100%;
    }

    .ult-timeline-card {
        padding: 20px;
    }

    .ult-timeline-title {
        font-size: 20px;
    }

    .ult-timeline-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ult-timeline-item {
        margin-bottom: 40px;
    }

    .ult-timeline-card {
        padding: 15px;
    }

    .ult-timeline-title {
        font-size: 18px;
    }

    .ult-timeline-subtitle {
        font-size: 14px;
    }

    .ult-timeline-description {
        font-size: 14px;
    }

    .ult-timeline-icon {
        width: 40px;
        height: 40px;
    }

    .ult-timeline-icon i {
        font-size: 16px;
    }

    .ult-timeline-icon svg {
        width: 16px;
        height: 16px;
    }
}

/*    Tabs    */
.widget-nokameh-tabs {
    position: relative;
    width: 100%;
}

.widget-tabs-layout-horizontal .widget-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.widget-tabs-layout-horizontal .widget-tab-item {
    flex: 1;
    min-width: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.widget-tabs-layout-vertical {
    display: flex;
    gap: 30px;
}

.widget-tabs-layout-vertical .widget-tabs-nav {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget-tabs-layout-vertical .widget-tabs-content {
    flex: 1;
}

.widget-tabs-layout-creative .widget-tabs-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.widget-tabs-layout-creative .widget-tab-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.widget-tabs-layout-creative .widget-tab-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.widget-tabs-layout-creative .widget-tab-item.active {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,123,255,0.3);
}

.widget-tabs-icon-top .widget-tab-inner {
    flex-direction: column;
    text-align: center;
}

.widget-tabs-icon-left .widget-tab-inner {
    flex-direction: row;
    align-items: center;
    text-align: left;
}

.widget-tabs-icon-right .widget-tab-inner {
    flex-direction: row-reverse;
    align-items: center;
    text-align: right;
}

.widget-tabs-icon-bottom .widget-tab-inner {
    flex-direction: column-reverse;
    text-align: center;
}

.widget-tab-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    position: relative;
    z-index: 2;
}

.widget-tab-text {
    flex: 1;
}

.widget-tab-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    margin: 0;
}

.widget-tab-description {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
    line-height: 1.4;
}

.widget-tab-indicator-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #007bff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.widget-tabs-layout-vertical .widget-tab-indicator-line {
    width: 3px;
    height: 100%;
    top: 0;
    left: auto;
    right: 0;
    transform: scaleY(0);
}

.widget-tab-item.active .widget-tab-indicator-line {
    transform: scaleX(1);
}

.widget-tabs-layout-vertical .widget-tab-item.active .widget-tab-indicator-line {
    transform: scaleY(1);
}

.widget-tab-indicator-dot {
    position: relative;
}

.widget-tab-indicator-dot::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.widget-tabs-layout-horizontal .widget-tab-indicator-dot::before {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.widget-tabs-layout-vertical .widget-tab-indicator-dot::before {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.widget-tab-item.active .widget-tab-indicator-dot::before {
    opacity: 1;
}

.widget-tab-indicator-circle {
    position: absolute;
    border: 2px solid #007bff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.widget-tabs-layout-horizontal .widget-tab-indicator-circle {
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.widget-tabs-layout-vertical .widget-tab-indicator-circle {
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.widget-tab-item.active .widget-tab-indicator-circle {
    opacity: 1;
}

.widget-tab-content {
    display: none;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.widget-tab-content.active {
    display: block;
}

.widget-tab-content.fade-in {
    animation-name: fadeIn;
}

.widget-tab-content.slide-in {
    animation-name: slideInUp;
}

.widget-tab-content.zoom-in {
    animation-name: zoomIn;
}

.widget-tab-content.flip-in {
    animation-name: flipInX;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    to {
        transform: perspective(400px);
        opacity: 1;
    }
}

.widget-tab-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.widget-tab-video iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .widget-tabs-layout-vertical {
        flex-direction: column;
    }

    .widget-tabs-layout-vertical .widget-tabs-nav {
        flex: none;
        width: 100%;
    }

    .widget-tabs-layout-creative .widget-tabs-nav {
        grid-template-columns: 1fr;
    }

    .widget-tab-inner {
        padding: 12px 15px;
    }

    .widget-tab-title {
        font-size: 14px;
    }

    .widget-tab-description {
        font-size: 11px;
    }

    .widget-tab-video iframe {
        height: 250px;
    }
}

.widget-tab-item {
    position: relative;
    overflow: hidden;
}

.widget-tab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.widget-tab-item:hover::before {
    left: 100%;
}

.widget-tabs-layout-creative .widget-tab-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.widget-tabs-layout-creative .widget-tab-item:hover::after {
    opacity: 1;
}

/*    Review Card   */
.review-card, .testimonial-carousel-item {
    position: relative;
}
.review-card.testimonial-carousel.has-paginate-progressbar .swiper {
    padding-top: 40px;
}

.swiper-controls-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    min-height: 44px;
    position: relative;
    width: 100%;
}

.tc-swiper-pagination {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
}

.testimonial-carousel .gc-controls {
    display: flex;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.testimonial-carousel .gc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35,31,32,.7);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .15s ease, background .2s;
    flex-shrink: 0;
}

.testimonial-carousel .gc-btn svg {
    display: block;
    margin: 0 auto;
}

.testimonial-carousel .gc-btn.gc-prev:hover,
.testimonial-carousel .gc-btn.gc-next:hover {
    transform: translateY(-2px);
    background: rgba(35,31,32,.9);
}

.review-card .testimonial-carousel-item-content {
    position: relative;
    transition: ease all .4s;
    border: 1px solid #f0f0f0;
    background-color: #ffffff;
    border-radius: 17px;
    padding: 23px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.review-card .testimonial-carousel-item-content .head {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.review-card .testimonial-carousel-item-content .stars {
    color: #dddddd;
    display: flex;
    align-items: center;
}
.review-card .testimonial-carousel-item-content .stars .star-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.review-card .testimonial-carousel-item-content .stars .star-svg {
    width: 16px;
    height: 16px;
    display: block;
}
.review-card .testimonial-carousel-item-content .head .avatar {
    width: 15%;
    display: flex;
    align-items: flex-start;
}
.review-card .testimonial-carousel-item-content .head .avatar img {
    width: 69px;
    border-radius: 9px;
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.13);
}
.review-card .testimonial-carousel-item-content .head .meta {
    width: 85%;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.review-card .testimonial-carousel-item-content .meta .meta-left {
    flex: 1;
    min-width: 0;
}
.review-card .testimonial-carousel-item-content .meta .meta-right {
    margin-left: 10px;
    flex-shrink: 0;
}
.review-card .testimonial-carousel-item-content .rate {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
.review-card .testimonial-carousel-item-content .rate .stars {
    display: flex;
}
.review-card .testimonial-carousel-item-content .rate .num {
    margin-left: 5px;
    white-space: nowrap;
}
.review-card .testimonial-carousel-item-content .head .name {
    color: #000000;
    font-size: 17px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-card .testimonial-carousel-item-content .head .site-name {
    color: #bfbfbf;
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.review-card .testimonial-carousel-item-content .content {
    color: #979797;
    font-size: 13px;
    font-weight: 300;
    margin: 18px 0 0 0;
    flex: 1;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}
.review-card .testimonial-carousel-item-content .rate .stars .star-svg.filled {
    fill: #ff9d00;
}
.review-card .testimonial-carousel-item-content .rate .stars .star-svg {
    fill: #E0E0E0;
}
.review-card .swiper-slide {
    height: auto;
    box-sizing: border-box;
    transition: none !important;
    width: 100% !important;
    max-width: 100% !important;
}
.review-card .testimonial-carousel-item-content {
    padding: 23px;
    margin: 0;
    box-sizing: border-box;
}
.review-card .swiper-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    align-items: stretch;
    display: flex;
    overflow: visible !important;
}
.review-card .swiper {
    width: 100%;
    padding: 0;
    overflow: hidden !important;
}
.review-card .testimonial-carousel-item-wrap {
    width: 100%;
    padding: 0;
    margin: 0;
    height: 100%;
}
.review-card .testimonial-carousel-item-wrap,
.review-card .testimonial-carousel-item {
    height: 100%;
}
.review-card .swiper-slide {
    display: flex;
    margin-right: 0 !important;
    flex: 0 0 auto;
}

.review-card .swiper-slide:not(.swiper-slide-active) .testimonial-carousel-item-content .head .name,
.review-card .swiper-slide:not(.swiper-slide-active) .testimonial-carousel-item-content .head .site-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.review-card .swiper-slide:not(.swiper-slide-active) .testimonial-carousel-item-content .content {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 60px;
    line-height: 1.4;
}

.review-card .swiper-slide:not(.swiper-slide-active) .testimonial-carousel-item-content .meta {
    flex-wrap: wrap;
}

.review-card .swiper-slide:not(.swiper-slide-active) .testimonial-carousel-item-content .meta .meta-left {
    width: 100%;
    margin-bottom: 5px;
}

.review-card .swiper-slide:not(.swiper-slide-active) .testimonial-carousel-item-content .meta .meta-right {
    width: 100%;
    margin-left: 0;
    display: none;
}

.review-card .swiper-slide:not(.swiper-slide-active) .testimonial-carousel-item-content .rate {
    justify-content: flex-start;
}

.review-card .swiper-slide-active .testimonial-carousel-item-content .content {
    display: block;
    overflow: visible;
    height: auto;
}

.swiper-pagination-bullets {
    position: static !important;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.swiper-pagination-progressbar {
    position: static !important;
    height: 4px !important;
    margin-top: 0 !important;
}

@media (min-width: 1024px) {
    .review-card .swiper-slide {
        max-width: 70% !important;
        width: auto !important;
    }
    .review-card .swiper-slide-duplicate {
        max-width: 70% !important;
        width: auto !important;
    }
}

@media (max-width: 768px) {
    .review-card .testimonial-carousel-item-content .head {
        flex-direction: column;
        align-items: flex-start;
    }
    .review-card .testimonial-carousel-item-content .head .avatar {
        width: 100%;
        margin-bottom: 15px;
    }
    .review-card .testimonial-carousel-item-content .head .avatar img {
        width: 60px;
        height: 60px;
    }
    .review-card .testimonial-carousel-item-content .head .meta {
        width: 100%;
        flex-direction: column;
    }
    .review-card .testimonial-carousel-item-content .meta .meta-right {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }
    .review-card .testimonial-carousel-item-content .rate {
        justify-content: flex-start;
    }
    .swiper-controls-container {
        flex-direction: column;
        gap: 15px;
    }
    .testimonial-carousel .gc-controls {
        margin-left: 0;
        width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .review-card .swiper-slide {
        max-width: 50% !important;
        width: auto !important;
    }
    .review-card .swiper-slide-duplicate {
        max-width: 50% !important;
        width: auto !important;
    }
}

/*    Review Card 2    */
.review-card-2, .review-card-2 .testimonial-carousel-item {
    position: relative;
}

.review-card-2 .swiper-wrapper {
    padding: 2rem 0;
}

.review-card-2 .testimonial-carousel-item-wrap {
    transform: scale(.83) skew(9deg, 1deg);
    margin: 0 0 48px 0;
}

.review-card-2 .testimonial-carousel-item-content {
    position: relative;
    transition: ease all .4s;
    border: 1px solid #f0f0f0;
    background-color: #ffffff;
    border-radius: 17px;
    padding: 23px;
    box-shadow: 0 5px 35px #00000017;
}

.review-card-2 .testimonial-carousel-item-content .head {
    display: flex;
}

.review-card-2 .testimonial-carousel-item-content .stars {
    color: #dddddd;
}

.review-card-2 .testimonial-carousel-item-content .stars span {
    font-size: 13px;
}

.review-card-2 .testimonial-carousel-item-content .head .avatar {
    width: 27%;
    display: flex;
    align-items: center;
}

.review-card-2 .testimonial-carousel-item-content .head .avatar img {
    width: 74px;
    border-radius: 15px;
    box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.13);
}

.review-card-2 .testimonial-carousel-item-content .head .meta {
    width: 73%;
}

.review-card-2 .testimonial-carousel-item-content .rate {
    display: inline-block;
    text-align: left;
}

.review-card-2 .testimonial-carousel-item-content .head .name {
    color: #000000;
    font-size: 17px;
    font-weight: 600;
}

.review-card-2 .testimonial-carousel-item-content .head .site-name {
    color: #bfbfbf;
    font-size: 14px;
    font-weight: 300;
}

.review-card-2 .testimonial-carousel-item-content .content {
    color: #979797;
    font-size: 13px;
    font-weight: 300;
    margin: 18px 0 0 0;
}

.review-card-2 .testimonial-carousel-item-content .rate .stars span.checked {
    color: #ff9d00;
}

/*     Type Writer    */
.typewriter-element .typewriter-fixed {
    display: inline-block;
    float: right;
    margin-left: 3px;
    font-size: 23px;
}

.typewriter-element .Typewriter__wrapper{
    font-size: 23px;
}

.typewriter-element.typewriter-box-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.typewriter-element.typewriter-box-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.typewriter-element.typewriter-box-right {
    display: flex;
    justify-content: right;
    align-items: center;
}

.typewriter-element .Typewriter__cursor {
    -webkit-animation: Typewriter-cursor 1s infinite;
    animation: Typewriter-cursor 1s infinite;
    margin-left: 1px;
    font-size: 23px;
}

.typewriter-element .typewriter {
    display: inline-block;
    margin: 0 6px;
}

@-webkit-keyframes Typewriter-cursor {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes Typewriter-cursor {
    0% {
        opacity: 0
    }
    50% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

/*     Color Title    */
.colorful_element {
    text-align: center;
}

.colorful_element .colorful_title {
    color: #7918DA;
}

.colorful_element .text-wrap {
    display: inline-block;
}

.colorful_element span {
    font-size: 20px;
    display: inline-block;
}

.colorful_element .title-line {
    height: 1px;
}

/*     Price Box    */
.nokameh_price_box
{
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    border-radius: 20px;
    padding: 20px;
    position: relative;
}
.nokameh_price_box .title
{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #ff071b;
}
.nokameh_price_box .price-line
{
    display: flex;
    align-items: center;
    margin-top: 10px;
    position: absolute;
    width: 80%;
    padding: 20px;
    left: 0;
    justify-content: space-between;
    border-radius: 0 50px 50px 0;
    background-color: #ff071b;
    color: #ffffff;
}
.nokameh_price_box .price-line .value,
.nokameh_price_box .price-line .currency {
    font-size: 30px;
    font-weight: 600;
}
.nokameh_price_box .price_items
{
    margin-top: 110px;
}
.nokameh_price_box .price_items ul li
{
    padding: 3px;
    list-style-type: none;
    color: #35495C;
}
.nokameh_price_box .price_items ul li::before
{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 10px;
    background-color: #ff071b;
}
.nokameh_price_box a.btn-wrapper
{
    display: block;
    text-align: center;
    border-radius: 30px;
    padding: 5px;
    margin-top: 20px;
    background-color: #ff071b;
    color: #ffffff;
}

/*   Color Title 2   */
.colorful-title2 .colorful-title-items {
    position: relative;
    padding: 1rem;
    text-align: center;
    background-color: #F6E7FF;
    border: 1px solid #7E5AB1;
}

.colorful-title2 .item-title {
    font-size: 25px;
    font-weight: 900;
}

.colorful-title2 .colorful-title-items .dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #F6E7FF;
    border: 2px solid #7E5AB1;
}

.colorful-title2 .colorful-title-items .dot-1,
.colorful-title2 .colorful-title-items .dot-2 {
    top: -7px;
}

.colorful-title2 .colorful-title-items .dot-1 {
    right: -7px;
}

.colorful-title2 .colorful-title-items .dot-2 {
    left: -7px;
}

.colorful-title2 .colorful-title-items .dot-3,
.colorful-title2 .colorful-title-items .dot-4 {
    bottom: -7px;
}

.colorful-title2 .colorful-title-items .dot-3 {
    right: -7px;
}

.colorful-title2 .colorful-title-items .dot-4 {
    left: -7px;
}

/*    Price Box 2    */
.nokameh_element_price_box_2 {
    padding: 30px 0;
    position: relative;
    transition: ease .17s;
}

.nokameh_element_price_box_2 .no-label {
    position: absolute;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.nokameh_element_price_box_2 .no-title {
    font-weight: 600;
    font-size: 35px;
    padding: 0 30px;
}

.nokameh_element_price_box_2 .no-title-suffix {
    color: #828282;
    padding: 0 30px;
}

.nokameh_element_price_box_2 .no-price-section {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
    padding: 0 30px;
}

.nokameh_element_price_box_2 .no-price-section .no-price {
    display: flex;
    gap: 3px;
    align-items: center;
}

.nokameh_element_price_box_2 .no-price-section .no-price .no-price-value {
    font-size: 25px;
    font-weight: 600;
}

.nokameh_element_price_box_2 .no-price-section .no-price .no-price-currency {
    font-size: 25px;
    font-weight: 600;
}

.nokameh_element_price_box_2 .no-price-section .no-price-suffix {
    font-size: 25px;
}

.nokameh_element_price_box_2 .no-description {
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    padding: 0 30px;
}

.nokameh_element_price_box_2 .no-items {
    padding: 0 9px 3px 9px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nokameh_element_price_box_2 .no-items .no-item {
    display: flex;
    gap: 10px;
    position: relative;
    width: 100%;
    padding: 0 9px 3px 9px;
    margin: 0 auto;
}

.nokameh_element_price_box_2 .no-items .no-item .no-item-label {
    position: absolute;
    background-color: #3f5dd5;
    color: white;
    padding: 1px 5px 0;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.nokameh_element_price_box_2 .no-button {
    padding: 0 30px;
    margin-top: 30px;
}

.nokameh_element_price_box_2 .no-button a {
    padding: 10px 20px;
    display: inline-block;
    border-radius: 12px;
    color: #fff;
    transition: all .2s;
    width: 100%;
}

.nokameh_element_price_box_2 .no-footer {
    padding: 0 30px;
    margin-top: 30px;
    color: #717171;
    text-align: center;
}

.nokameh_element_price_box_2 .box-head.with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.nokameh_element_price_box_2 .box-icon-wrap {
    padding: 10px;
}

.nokameh_element_price_box_2 .box-icon {
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    border-radius: 7px;
    font-size: 29px;
    color: #3f5dd5;
    transition: ease .15s;
}

/*     Introduction Box    */
a.introduction-box,
.introduction-box {
    min-height: 343px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
}

.introduction-box-right h2,
.introduction-box-right .title {
    width: 100%;
    font-size: 38px;
    margin-top: 70px;
    color: #fff;
}

.introduction-box-right h3,
.introduction-box-right .subtitle{
    width: 100%;
    color: #fff;
    font-weight: 100;
    font-size: 24px;
    margin-top: 40px;
}

.introduction-box::before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100%;
}

.introduction-box::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100%;
}

.introduction-box-left {
    width: 50%;
}

.introduction-box-left img {
    width: 100%;
    height: 330px;
    border-radius: 10px;
}

@media screen and (max-width: 1024px) {
    .introduction-box,
    a.introduction-box {
        flex-direction: column;
        text-align: center;
        flex-wrap: wrap;
    }

    .introduction-box-right h2,
    .introduction-box-right h3,
    .introduction-box-right .title,
    .introduction-box-right .subtitle {
        margin-right: 0;
    }

    .introduction-box-left {
        width: 100%;
    }

    .introduction-box-left img {
        width: 100%;
        height: 400px;
        margin-top: 30px;
    }

    .introduction-box-right .title {
        margin-top: 0;
    }

    .introduction-box-right .subtitle {
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .introduction-box-left img {
        width: 100%;
        height: 150px;
    }
}

/*     Introduction Box 2    */
.nokameh-introduction-box-2 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}

.nokameh-introduction-box-2-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.nokameh-introduction-box-2-left {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.nokameh-introduction-box-2-left img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.nokameh-introduction-box-2 .corner-dot {
    position: absolute;
    background-color: #F6E7FF;
    border: 2px solid #7E5AB1;
    border-radius: 2px;
    z-index: 2;
}

.nokameh-introduction-box-2 .dot-1 {
    top: -7px;
    right: -7px;
}

.nokameh-introduction-box-2 .dot-2 {
    top: -7px;
    left: -7px;
}

.nokameh-introduction-box-2 .dot-3 {
    bottom: -7px;
    right: -7px;
}

.nokameh-introduction-box-2 .dot-4 {
    bottom: -7px;
    left: -7px;
}

.nokameh-introduction-box-2-buttons{
    display: flex;
    align-items: center;
}

.nokameh-introduction-box-2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #222;
    font-weight: 600;
    border-radius: 0.5rem;
    font-size: 1rem;
    line-height: 2rem;
    padding: 0.7rem 2rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nokameh-introduction-box-2-button:hover {
    background-color: #333;
    color: white;
    text-decoration: none;
}

.nokameh-introduction-box-2-button .icon-before,
.nokameh-introduction-box-2-button .icon-after {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nokameh-introduction-box-2-button .icon-before {
    margin-left: 8px;
    order: 1;
}

.nokameh-introduction-box-2-button .icon-after {
    margin-right: 8px;
    order: 3;
}

.nokameh-introduction-box-2-button .button-text {
    order: 2;
}

.nokameh-introduction-box-2-button i,
.nokameh-introduction-box-2-button svg {
    display: inline;
    width: 1.3rem;
    height: 1.3rem;
    color: white;
    fill: currentColor;
}

@media screen and (max-width: 1024px) {
    .nokameh-introduction-box-2 {
        flex-direction: column !important;
        text-align: center;
    }

    .nokameh-introduction-box-2-left {
        width: 100% !important;
        margin-top: 30px;
        order: 2;
    }

    .nokameh-introduction-box-2-right {
        order: 1;
        padding: 20px 15px;
    }

    .nokameh-introduction-box-2-right .title {
        margin-top: 0 !important;
    }

    .nokameh-introduction-box-2-right .subtitle {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    .nokameh-introduction-box-2-buttons {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .nokameh-introduction-box-2 {
        min-height: 300px !important;
    }

    .nokameh-introduction-box-2-left img {
        height: 150px;
    }

    .nokameh-introduction-box-2-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px !important;
    }

    .nokameh-introduction-box-2-button {
        width: 100%;
        max-width: 250px;
        margin: 0 !important;
    }

    .nokameh-introduction-box-2-button:not(:last-child) {
        margin-left: 0 !important;
    }
}

/*    Category    */
.nokameh-category-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.nokameh-category-col {
    display: flex;
    padding: 8px;
    box-sizing: border-box;
}

.nokameh-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
    padding: 24px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nokameh-category-media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f7fafc;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.nokameh-category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nokameh-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 32px;
    color: #4a5568;
}

.nokameh-category-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 8px 0;
    text-align: center;
    transition: color 0.3s ease;
}

.nokameh-category-count {
    font-size: 14px;
    color: #718096;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .nokameh-category-media {
        width: 70px;
        height: 70px;
    }

    .nokameh-category-title {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .nokameh-category-media {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .nokameh-category-card {
        padding: 20px 12px;
    }

    .nokameh-category-title {
        font-size: 14px;
    }

    .nokameh-category-count {
        font-size: 13px;
    }
}

/*    Before After    */
.nokameh-before-after {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: col-resize;
}

.nokameh-before-after.nokameh-orientation-vertical {
    cursor: row-resize;
}

.nokameh-before-container,
.nokameh-after-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.nokameh-after-container {
    width: 50%;
}

.nokameh-orientation-vertical .nokameh-after-container {
    width: 100%;
    height: 50%;
}

.nokameh-before-img,
.nokameh-after-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nokameh-label-before,
.nokameh-label-after {
    position: absolute;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.nokameh-before-after:hover .nokameh-label-before,
.nokameh-before-after:hover .nokameh-label-after {
    opacity: 1;
}

.nokameh-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: grab;
}

.nokameh-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
}

.nokameh-handle i {
    font-size: 16px;
    color: #333333;
    padding: 0 !important;
}

.nokameh-orientation-vertical .nokameh-handle i {
    transform: rotate(90deg);
}

.nokameh-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.8);
    transform: translateX(-50%);
    z-index: 15;
}

.nokameh-orientation-vertical .nokameh-divider {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.nokameh-before-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, transparent 50%);
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nokameh-before-after:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .nokameh-before-after {
        height: 300px;
    }

    .nokameh-handle {
        width: 35px;
        height: 35px;
    }

    .nokameh-label-before,
    .nokameh-label-after {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/*    News    */
.nokameh-news-ticker {
    display: flex;
    align-items: center;
    background: #1e40af;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    direction: rtl;
    height: 60px;
}

.nokameh-ticker-header {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 10;
}

.nokameh-today-date,
.nokameh-ticker-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 100%;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.nokameh-today-date {
    background: #059669;
    color: white;
    gap: 8px;
    width: 120px;
}

.nokameh-ticker-title {
    background: #dc2626;
    color: white;
    gap: 10px;
    width: 150px;
}

.nokameh-ticker-content {
    flex: 1;
    position: relative;
    height: 100%;
    background: #1e3a8a;
    overflow: hidden;
}

.nokameh-swiper-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.swiper-wrapper {
    align-items: center;
}

.nokameh-slide {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 33px;
}

.nokameh-slide-content {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 10px;
}

.nokameh-post-thumbnail {
    flex-shrink: 0;
    margin-left: 10px;
}

.nokameh-post-thumbnail img {
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.nokameh-post-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex: 1;
}

.nokameh-news-post-title {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.nokameh-news-post-title a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: #ffffff;
}

.nokameh-news-post-title a:hover {
    color: #fbbf24;
}

.nokameh-news-post-date {
    background: #374151;
    color: #d1d5db;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.nokameh-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 20;
}

.nokameh-nav-button {
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 30;
    width: 32px;
    height: 32px;
}

.nokameh-nav-button:hover {
    background: rgba(0, 0, 0, 0.4);
}

.nokameh-no-posts {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    width: 100%;
}

.nokameh-title-icon,
.nokameh-date-icon {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .nokameh-news-ticker {
        flex-direction: column;
        height: auto !important;
    }

    .nokameh-ticker-header {
        width: 100%;
        height: 40px;
    }

    .nokameh-today-date,
    .nokameh-ticker-title {
        flex: 1;
        padding: 5px 10px;
        height: 100%;
    }

    .nokameh-ticker-content {
        width: 100%;
        min-height: 50px;
    }

    .nokameh-post-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .nokameh-swiper-container {
        padding: 0 40px;
    }

    .nokameh-news-post-date {
        font-size: 10px;
        padding: 2px 6px;
    }
}

/*    Go Top    */
.nokameh-element-gotop {
    display: flex;
    justify-content: center;
}

.nokameh-element-gotop .gotop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    gap: 10px;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    box-shadow: none;
    color: #777777;
    padding: 7px;
    border-radius: 7px;
    font-size: 15px;
    transition: ease .2s;
}

/*    Social Links    */
.nksl-social-box {
    max-width: 100%;
}

.nksl-social-title {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.nksl-social-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.nksl-social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 8px;
}

.nksl-svg-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    z-index: 2;
    position: relative;
}

.nksl-svg-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    fill: #ffffff;
}

.nksl-custom-icon {
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.nksl-btn-bg {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nksl-hover-default .nksl-social-btn:not(.nksl-no-animation):hover .nksl-btn-bg {
    transform: rotate(16deg);
    transform-origin: bottom;
}

.nksl-hover-fade .nksl-social-btn:not(.nksl-no-animation):hover .nksl-svg-container {
    opacity: 0.8;
    transform: translateY(-2px);
}

.nksl-hover-scale .nksl-social-btn:not(.nksl-no-animation):hover .nksl-svg-container {
    transform: scale(1.1);
}

.nksl-hover-slide-up .nksl-social-btn:not(.nksl-no-animation):hover .nksl-svg-container {
    transform: translateY(-5px);
}

.nksl-hover-none .nksl-social-btn:not(.nksl-no-animation):hover .nksl-svg-container {
    transform: none;
}

.nksl-social-btn:hover .nksl-svg-container {
    background-color: rgba(255, 255, 255, 0.2);
}

.nksl-no-animation .nksl-btn-bg,
.nksl-no-animation .nksl-svg-container {
    transition: none !important;
    transform: none !important;
}

.nksl-social-btn[data-social="instagram"] .nksl-btn-bg {
    background: #f09433;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.nksl-social-btn[data-social="telegram"] .nksl-btn-bg {
    background: #0088cc;
}

.nksl-social-btn[data-social="youtube"] .nksl-btn-bg {
    background: #FF0000;
}

.nksl-social-btn[data-social="facebook"] .nksl-btn-bg {
    background: #3b5998;
}

.nksl-social-btn[data-social="twitter"] .nksl-btn-bg {
    background: #1DA1F2;
}

.nksl-social-btn[data-social="git-hub"] .nksl-btn-bg {
    background: #333333;
}

.nksl-social-btn[data-social="pinterest"] .nksl-btn-bg {
    background: #BD081C;
}

.nksl-social-btn[data-social="aparat"] .nksl-btn-bg {
    background: #ED145B;
}

.nksl-social-btn[data-social="whatsapp"] .nksl-btn-bg {
    background: #25D366;
}

.nksl-social-btn[data-social="spotify"] .nksl-btn-bg {
    background: #1DB954;
}

.nksl-social-btn[data-social*="custom"] .nksl-btn-bg {
    background: #6c5ce7;
}

@media (max-width: 768px) {
    .nksl-social-container {
        justify-content: center;
    }

    .nksl-social-btn {
        width: 45px;
        height: 45px;
    }

    .nksl-svg-icon {
        width: 18px;
        height: 18px;
    }

    .nksl-custom-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .nksl-social-container {
        gap: 10px;
    }

    .nksl-social-btn {
        width: 40px;
        height: 40px;
    }

    .nksl-svg-icon {
        width: 16px;
        height: 16px;
    }

    .nksl-custom-icon {
        font-size: 16px;
    }
}

/*    Iran Map    */
.iran-map-final {
    width: 100%;
    background: #32425a;
    padding: 20px;
    border-radius: 12px;
    box-sizing: border-box;
}

.iran-map-final * {
    box-sizing: border-box;
}

.map-title {
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.map-subtitle {
    font-size: 1.1rem;
    color: #768191;
    text-align: center;
    margin: 0 0 30px 0;
    font-weight: 300;
}

.map-wrapper {
    width: 100%;
    margin: 0 auto;
}

.map-svg-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 654.51147 / 593.71021;
}

.map-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.map-svg path {
    cursor: pointer;
    transition: all 0.3s ease;
    stroke-linejoin: round;
}

.pulse-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.city-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.city-title {
    background: #2c3e50;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1.4;
    margin-bottom: 8px;
    order: -1;
    position: relative;
    z-index: 20;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.city-title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 8px 8px 0;
    border-color: #2c3e50 transparent transparent;
}

.city-title h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.city-title p {
    margin: 4px 0 0 0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    opacity: 0.9;
}

.city-pulse {
    position: relative;
    pointer-events: none;
}

.pulse-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background: currentColor;
    border-radius: 50%;
    animation: core-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px currentColor;
    z-index: 10;
}

.pulse-ring-1,
.pulse-ring-2,
.pulse-ring-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid currentColor;
    border-radius: 50%;
    opacity: 0;
}

.pulse-ring-1 {
    width: 100%;
    height: 100%;
    animation: ring-pulse-1 2s ease-out infinite;
}

.pulse-ring-2 {
    width: 150%;
    height: 150%;
    animation: ring-pulse-2 2s ease-out infinite;
}

.pulse-ring-3 {
    width: 200%;
    height: 200%;
    animation: ring-pulse-3 2s ease-out infinite;
}

@keyframes core-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes ring-pulse-1 {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@keyframes ring-pulse-2 {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes ring-pulse-3 {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .map-svg-container {
        max-width: 100%;
    }

    .city-marker {
        top: calc(var(--original-top) - 8px);
    }

    .city-pulse {
        width: 25px !important;
        height: 25px !important;
    }

    .city-title {
        padding: 10px 14px;
    }

    .city-title h3 {
        font-size: 13px;
    }

    .city-title p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .iran-map-final {
        padding: 15px;
    }

    .map-title {
        font-size: 1.5rem;
    }

    .map-subtitle {
        font-size: 0.9rem;
    }

    .city-marker {
        top: calc(var(--original-top) - 21px) !important;
    }

    .city-pulse {
        width: 20px !important;
        height: 20px !important;
    }

    .city-title {
        padding: 8px 12px;
    }

    .city-title h3 {
        font-size: 12px;
    }

    .city-title p {
        font-size: 10px;
    }
}

/*    Team    */
.nokameh-team-container.grid-layout {
    display: grid;
    width: 100%;
}

.nokameh-team-slider-wrapper {
    position: relative;
    padding: 0;
}

.nokameh-team-slider {
    width: 100%;
    overflow: hidden;
}

.nokameh-team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    box-sizing: border-box;
}

.nokameh-member-role {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    word-break: break-word;
    box-sizing: border-box;
}

.nokameh-member-role .role-part-1,
.nokameh-member-role .role-part-2 {
    display: inline-block;
}

.nokameh-member-image-container {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.nokameh-member-image {
    object-fit: cover;
    display: block;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

.nokameh-member-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    width: 100%;
    word-break: break-word;
    box-sizing: border-box;
}

.nokameh-member-description {
    font-size: 14px;
    margin-bottom: 20px;
    color: #666;
    width: 100%;
    line-height: 1.6;
    word-break: break-word;
    box-sizing: border-box;
}

.nokameh-member-social {
    width: 100%;
    box-sizing: border-box;
}

.nokameh-contact-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.nokameh-member-phone {
    font-size: 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    word-break: break-all;
    flex-shrink: 0;
    box-sizing: border-box;
}

.nokameh-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    flex-grow: 1;
    box-sizing: border-box;
}

.nokameh-social-links.no-phone {
    justify-content: center;
    flex-grow: 0;
}

.nokameh-member-phone.no-social {
    flex-grow: 1;
    justify-content: center;
}

.nokameh-member-phone.has-social {
    flex-grow: 1;
}

.nokameh-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #333333;
    transition: transform 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-sizing: border-box;
}

.nokameh-social-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.nokameh-social-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.custom-social-icon {
    font-size: inherit;
}

.nokameh-not-available {
    font-size: 14px;
    color: #999;
    font-style: italic;
    text-align: center;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.nokameh-top-slider-nav {
    position: absolute;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.nokameh-top-slider-nav.top-left {
    left: 0;
    right: auto;
    justify-content: flex-start;
}

.nokameh-top-slider-nav.top-right {
    left: auto;
    right: 0;
    justify-content: flex-end;
}

.nokameh-top-slider-nav.top-center {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    justify-content: center;
}

.nokameh-top-slider-nav .swiper-button-next,
.nokameh-top-slider-nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 50%;
    color: #ffffff;
    box-sizing: border-box;
}

.nokameh-top-slider-nav .swiper-button-next svg,
.nokameh-top-slider-nav .swiper-button-prev svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.nokameh-top-slider-nav .swiper-button-next::after,
.nokameh-top-slider-nav .swiper-button-prev::after {
    display: none;
}

.nokameh-team-slider .swiper-button-next,
.nokameh-team-slider .swiper-button-prev {
    display: none;
}

.nokameh-team-slider .swiper-pagination {
    position: relative;
    margin-top: 20px;
    bottom: 0;
}

.nokameh-team-slider .swiper-wrapper {
    align-items: stretch;
}

.nokameh-team-slider .swiper-slide {
    height: auto;
}

@media (max-width: 1024px) {
    .nokameh-team-container.grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nokameh-team-container.grid-layout {
        grid-template-columns: 1fr;
    }

    .nokameh-team-member {
        padding: 15px;
    }

    .nokameh-member-image {
        max-width: 150px;
        max-height: 150px;
    }

    .nokameh-member-name {
        font-size: 16px;
    }

    .nokameh-member-role {
        font-size: 14px;
    }

    .nokameh-contact-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .nokameh-social-links {
        justify-content: center;
        width: auto;
        flex-grow: 0;
    }

    .nokameh-member-phone {
        margin-left: 0 !important;
        width: auto;
        justify-content: center;
    }

    .nokameh-top-slider-nav {
        position: absolute;
        display: flex;
        margin-bottom: 15px;
    }

    .nokameh-top-slider-nav.top-left {
        left: 0;
        right: auto;
        justify-content: flex-start;
    }

    .nokameh-top-slider-nav.top-right {
        left: auto;
        right: 0;
        justify-content: flex-end;
    }

    .nokameh-top-slider-nav.top-center {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nokameh-team-member {
        padding: 10px;
    }

    .nokameh-member-image {
        max-width: 120px;
        max-height: 120px;
    }

    .nokameh-social-links {
        gap: 8px;
    }

    .nokameh-social-link {
        width: 36px;
        height: 36px;
    }

    .nokameh-social-icon {
        width: 16px;
        height: 16px;
    }

    .nokameh-top-slider-nav .swiper-button-next,
    .nokameh-top-slider-nav .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .nokameh-top-slider-nav .swiper-button-next svg,
    .nokameh-top-slider-nav .swiper-button-prev svg {
        width: 14px;
        height: 14px;
    }
}