﻿@font-face {
    font-family: 'fontawesome';
    src: url('/Fonts/Fontawesome/fontawesome.eot?#') format('eot'), url('/Fonts/Fontawesome/fontawesome.woff') format('woff'), url('/Fonts/Fontawesome/fontawesome.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'WooCommerce';
    src: url('/Fonts/WooCommerce/WooCommerce.eot?#') format('eot'), url('/Fonts/WooCommerce/WooCommerce.woff') format('woff'), url('/Fonts/WooCommerce/WooCommerce.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Vazir';
    src: url('/Fonts/Vazir_FaNum/Vazir_FaNum.eot?#') format('eot'), url('/Fonts/Vazir_FaNum/Vazir_FaNum.woff') format('woff'), url('/Fonts/Vazir_FaNum/Vazir_FaNum.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1570px
    }
}

@media screen and (min-width: 1750px) {
    .container {
        max-width: 1710px;
    }
}


/*#region common */

:root {
    --c7: #002366;
    --c6: #00308d;
    --c5: #0045c8;
    --c4: #045aff;
    --c3: #7aa7ff;
    --c2: #a1c1ff;
    --c1: #dce8ff;
    --c0: #eff5ff;
    --c0-5: rgba(239,245,255,.5);
    --gold7: #f39c12;
    --gold5: #f5af41;
    --gold3: #f7c370;
    --gold2: #fad7a0;
    --gold1: #fcebcf;
    --bs-light-rgb: 239,245,255;
    --bs-card-cap-bg: rgba(239,245,255,.5) !important;
}

body {
    font-family: Vazir, IRANSans_FaNum !important;
    color: var(--bs-gray-700) !important;
}

a {
    text-decoration: none;
}

    a:hover {
        color: var(--c5);
    }

ul {
    list-style: none;
}

.home-page section {
    margin: 0 0 7rem 0;
}

.home-page .topic-block img {
    border-radius: .375rem;
}

input[type=text], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], textarea, select {
    padding: .46rem .75rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
    line-height: 1.5;
    /*box-shadow: 0 0 0 1000px #eee inset !important;*/
}

    input[type=text]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, textarea:focus, select:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 2px 8px rgba(0,123,255,0.2);
    }

    input[type=text]::placeholder, input[type=email]::placeholder, input[type=number]::placeholder, input[type=password]::placeholder, input[type=search]::placeholder, input[type=tel]::placeholder, textarea::placeholder, select::placeholder {
        color: #999;
    }

.bg-blue {
    background-color: var(--c7)
}

.bg-gold {
    background-color: var(--gold7)
}

.bc-static {
    background-color: var(--c1)
}

.btn-gold {
    background-color: var(--gold5);
    border: 1px solid var(--gold7);
    color: var(--c7);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .btn-gold:hover {
        background-color: var(--gold7);
        color: white;
        border-color: var(--gold7);
        box-shadow: 0 4px 8px rgba(139, 113, 30, 0.25);
    }

    .btn-gold:active {
        background-color: var(--gold7);
        border-color: var(--gold7);
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(139, 113, 30, 0.2);
    }

    .btn-gold:focus {
        outline: 0;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.5);
        background-color: var(--gold5);
    }

    .btn-gold:disabled {
        opacity: 0.65;
        cursor: not-allowed;
        background-color: var(--gold5);
        border-color: var(--gold7);
    }

.btn-default {
    background-color: var(--c7);
    border: 1px solid var(--c5);
    color: white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .btn-default:hover {
        background-color: var(--c5);
        color: white;
        border-color: var(--c2);
        box-shadow: 0 4px 8px rgba(0, 35, 102, 0.25);
    }

    .btn-default:active {
        background-color: var(--c5);
        border-color: var(--c2);
        box-shadow: 0 2px 4px rgba(0, 35, 102, 0.2);
    }

    .btn-default:focus {
        outline: 0;
        box-shadow: 0 0 0 3px rgba(24, 103, 255, 0.5);
        background-color: var(--c4);
        border-color: var(--c4);
    }

    .btn-default:disabled {
        opacity: 0.65;
        cursor: not-allowed;
        background-color: var(--c7);
        border-color: var(--c5);
    }

.drpdown {
    position: relative;
    display: inline-block;
}

.drpdown-btn {
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 1050;
    position: relative;
}

.drpdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 8px;
    -o-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transform: rotateX(-75deg);
    -o-transform: rotateX(-75deg);
    -moz-transform: rotateX(-75deg);
    -webkit-transform: rotateX(-75deg);
}

.drpdown:hover .drpdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -o-transition: -o-transform .3s,opacity .3s;
    -ms-transition: -ms-transform .3s,opacity .3s;
    -moz-transition: -moz-transform .3s,opacity .3s;
    -webkit-transition: -webkit-transform .3s, opacity .3s;
    display: block;
}

.drpdown-item {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

    .drpdown-item:hover {
        background-color: var(--gold-light);
        color: var(--c7);
    }

    .drpdown-item:last-child {
        border-bottom: none;
    }

.input-group-quantity {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid var(--bs-gray-400);
    padding: 0 7px;
    border-radius: 7px;
    max-width: 90px;
    min-width: 70px;
}

    .input-group-quantity .quantity {
        text-align: center;
    }

        .input-group-quantity .quantity:focus, .input-group-quantity .quantit:active {
            box-shadow: none;
        }

    .input-group-quantity input {
        pointer-events: none;
    }

.table tr td {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.sticky-top {
    position: sticky;
    height: fit-content;
    max-height: 100vh;
    overflow-y: auto;
    top: 70px;
}

.required, .field-validation-error {
    color: red;
}

.text-justify {
    text-align: justify;
}

.title-uk {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 1rem 0;
}

    .title-uk .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-wrap: nowrap;
        width: 100%;
        color: var(--bs-gray-700);
    }

        .title-uk .title:after {
            content: " ";
            background: url(../images/stylish-border-flower.png);
            width: 361px;
            height: 24px;
        }
/*.title-uk .title:before, .title-uk .title:after {
            content: "";
            height: 1px;
            border: 2px solid;
            width: 50%;
            display: inline-block;
        }

        .title-uk .title:before {
            margin-left: 1rem;
        }

        .title-uk .title:after {
            margin-right: 1rem;
        }*/
.page {
    padding: 2rem 0;
    min-height: 600px;
}

    .page .inputs {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 10px;
        align-items: center;
    }

        .page .inputs label {
            min-width: 200px;
        }

        .page .inputs .d-flex {
            align-items: center;
        }

            .page .inputs .d-flex > * {
                padding-left: calc(var(--bs-gutter-x) * .5);
                padding-right: calc(var(--bs-gutter-x) * .5);
            }

.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
    padding-left: 30px;
}

    .btn-loading::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 15px;
        width: 18px;
        height: 18px;
        margin: -9px 0 0 -9px;
        border: 2px solid transparent;
        border-radius: 50%;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        animation: spin 0.8s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/** skeleton & captcha **/
.captcha-skeleton {
}

.skeleton-header {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-body {
    height: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-footer {
    height: 30px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.captcha-skeleton-body {
    width: 304px;
    height: 78px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.captcha-skeleton.captcha-loaded {
    display: none;
}

.carousel-dark {
    background-color: var(--c7);
}

.header .sticky-inner.scroll-menu, .fadeInsTicky {
    -webkit-animation-name: fadeInsTicky;
    animation-name: fadeInsTicky;
}

.header .sticky-inner.scroll-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    border: 0;
    margin: auto;
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .4);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, .4);
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: inherit;
    animation-fill-mode: inherit;
    /* padding: 0; */
    background-color: rgba(255,255,255,.86);
    backdrop-filter: saturate(190%) blur(16px);
    -webkit-backdrop-filter: saturate(190%) blur(16px);
}

    .header .sticky-inner.scroll-menu .topmenu-category ul.level-0 > li > a {
        padding: 1rem 0;
        color: var(--bs-gray-700);
    }

    .header .sticky-inner.scroll-menu .logo img {
        max-width: 35px;
    }

    .header .sticky-inner.scroll-menu .search-box-container {
        padding: .7rem 1rem;
    }

        .header .sticky-inner.scroll-menu .search-box-container .search-icon {
            font-size: 1.2rem;
            color: var(--bs-gray-700);
        }

        .header .sticky-inner.scroll-menu .search-box-container .search-container {
            top: 56px;
        }

    .header .sticky-inner.scroll-menu .drpdown .drpdown-menu {
        margin-top: 1rem;
    }

    .header .sticky-inner.scroll-menu .logo h1, .header .sticky-inner.scroll-menu .logo h2 {
        font-size: .8rem;
        color: var(--bs-gray-700);
    }

.header .header-lower .scroll-menu .menu a, .header .header-lower .scroll-menu .drpdown > a {
    color: var(--bs-gray-700);
}

.checkout #newaddress-container {
    display: none;
}

.checkout legend {
    font-size: 1rem;
}
/*#endregion common */
/*#region header */
.admin-header-links {
    background-color: #333;
    text-align: center;
    color: #eee;
}

    .admin-header-links * {
        display: inline-block;
        margin: 0 10px;
        line-height: 35px;
        font-size: 12px;
        font-weight: bold;
    }

    .admin-header-links .impersonate {
        display: inline-block;
    }

        .admin-header-links .impersonate a {
            background-color: #555;
            padding: 0 15px;
        }

            .admin-header-links .impersonate a:hover {
                background-color: #666;
            }

.header a {
    color: var(--bs-gray-700);
    white-space: nowrap;
}

.header .header-lower .menu {
    display: flex;
    margin: 0;
}

    .header .header-lower .menu li {
        margin: 0 5px;
    }

    .header .header-lower .menu a, .header .header-lower .drpdown > a {
        padding: 1.5rem 10px;
    }

.header .header-lower .logo {
    display: flex;
    align-items: center;
}

    .header .header-lower .logo img {
        max-width: 55px;
    }

    .header .header-lower .logo h1 {
        font-size: 1rem;
        font-weight: bold;
        margin: 0;
        text-align: center;
    }

    .header .header-lower .logo h2 {
        font-size: 1rem;
        direction: ltr;
        margin: 0;
    }


.header .header-lower {
    background: linear-gradient(-45deg, var(--c1) 40%, var(--c2) 60%, var(--c3));
    /*background: url(../images/footer-backgrounds.png);*/
}

.header .drpdown {
    z-index: 1050;
}

    .header .drpdown > a:after {
        content: "\e64b";
        font-family: 'themify';
        vertical-align: middle;
        font-size: .6rem;
        display: inline-block;
    }

    .header .drpdown .drpdown-btn, .header .drpdown .drpdown-menu {
        width: 100%;
    }

    .header .drpdown .drpdown-menu {
        margin-top: 1.5rem;
        padding-top: 10px;
    }

        .header .drpdown .drpdown-menu ul {
            padding: 10px 1rem 1rem 1rem;
            margin: 0;
        }

            .header .drpdown .drpdown-menu ul li {
                padding: 5px 0;
            }

                .header .drpdown .drpdown-menu ul li:before {
                    content: '';
                    border-radius: 50%;
                    background-color: var(--c2);
                    width: 10px;
                    height: 10px;
                    display: inline-block;
                    vertical-align: -1px;
                    opacity: 0;
                    transition: 0.4s ease;
                    transform: scale(0);
                }

                .header .drpdown .drpdown-menu ul li:hover:before {
                    opacity: 1;
                    transform: scale(1);
                    margin-left: 8px;
                }
/*#endregion header */

@media only screen and (min-width: 768px) {
    /*#region topcategory */
    .topmenu-category {
        position: relative;
        display: flex;
        align-items: center;
    }

        .topmenu-category ul {
            padding: 0;
        }

        .topmenu-category .sublist.level-1 {
            display: flex;
            position: absolute;
            top: 100%;
            right: 0;
            min-width: 200px;
            padding: 1.5rem;
            background: white;
            border: 1px solid #ddd;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            -o-transform-origin: 0 0;
            -ms-transform-origin: 0 0;
            -moz-transform-origin: 0 0;
            -webkit-transform-origin: 0 0;
            transform-style: preserve-3d;
            -o-transform-style: preserve-3d;
            -moz-transform-style: preserve-3d;
            -webkit-transform-style: preserve-3d;
            transform: rotateX(-75deg);
            -o-transform: rotateX(-75deg);
            -moz-transform: rotateX(-75deg);
            -webkit-transform: rotateX(-75deg);
        }



            .topmenu-category .sublist.level-1 > li > a {
                border-bottom: 3px solid var(--c7);
                pointer-events: none;
            }

        .topmenu-category ul.level-0 {
            display: flex;
            margin: 0;
        }

            .topmenu-category ul.level-0 > li {
                margin: 0 0 0 1rem;
            }

                .topmenu-category ul.level-0 > li > a {
                    padding: 2rem 0;
                    display: block;
                    pointer-events: none;
                }

                    .topmenu-category ul.level-0 > li > a.has-sublist:after {
                        content: "\e64b";
                        font-family: 'themify';
                        vertical-align: middle;
                        font-size: .6rem;
                        display: inline-block;
                    }


            .topmenu-category ul.level-0 li:hover .level-1 {
                opacity: 1;
                visibility: visible;
                -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
                -o-transition: -o-transform .3s,opacity .3s;
                -ms-transition: -ms-transform .3s,opacity .3s;
                -moz-transition: -moz-transform .3s,opacity .3s;
                -webkit-transition: -webkit-transform .3s, opacity .3s;
            }

            .topmenu-category ul.level-0 li:hover a:after {
                animation: shakeY 1s infinite;
            }

        .topmenu-category ul.level-1 li {
            margin: 0 0 0 1rem;
        }

            .topmenu-category ul.level-1 li:last-child {
                margin: 0;
            }

            .topmenu-category ul.level-1 li a {
                margin: 0 0 .5rem 0;
                padding: 0 0 .5rem 0;
                display: block;
            }

        .topmenu-category ul.level-2 li a {
            transition: all .2s;
        }

            .topmenu-category ul.level-2 li a:hover {
                transform: translateX(-3px);
                color: var(--c4)
            }
    /*#endregion topcategory */

}

/*#region tab categories */
.tab-categories .nav-tabs .nav-link {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 15px 25px 15px 25px;
    margin-right: 11px;
    fill: #323232;
    color: #323232;
    background-color: #f1f1f1;
    border-radius: 1rem;
    transition: all .5s;
}

    .tab-categories .nav-tabs .nav-link.active {
        border: none;
        background-color: var(--gold7);
        color: #fff;
    }

.tab-categories .category-carousel .owl-carousel {
    display: flex;
    flex-wrap: wrap;
    --bs-gutter-x: 1.5rem;
}

    .tab-categories .category-carousel .owl-carousel > * {
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

@media (min-width: 768px) {
    .tab-categories .category-carousel .owl-carousel > * {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }
}

@media (max-width: 768px) {
    .tab-categories .category-carousel .owl-carousel {
        gap: 1rem;
    }

    .footer-lower {
        margin-bottom: 50px;
    }
}
/*#endregion tab categories */
/*#region card */
.card {
    border: none;
}

    .card .card-header {
        background: linear-gradient(-45deg, var(--gold1) 40%, var(--gold2) 60%, var(--gold3));
        border: none;
        border-radius: var(--bs-border-radius);
        box-shadow: 0 2px 4px rgba(54, 54, 54, .22);
        padding: 1rem;
    }

    .card .card-body {
        background-color: var(--c0-5);
        border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
        width: 97%;
        margin: 0 auto;
        border: 1px solid var(--bs-gray-200);
        border-top: none;
    }

    .card .card-footer {
        width: 97%;
        margin: auto;
        border: none;
    }
/*#endregion card */
/* #region autocomplete searchbox */
.search-box-container {
    position: relative;
    padding: 1.5rem;
}

    .search-box-container .search-container {
        position: absolute;
        top: 65px;
        left: 0;
        opacity: 0;
        visibility: hidden;
        min-width: 300px;
        background-color: white;
        padding: 10px;
        border-radius: var(--bs-border-radius);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 1050;
        transition: all .3s ease;
    }

        .search-box-container .search-container.active {
            opacity: 1;
            visibility: visible;
            transition: all .3s ease;
        }

    .search-box-container .search-icon {
        font-size: 1.5rem;
        font-weight: bold;
        transition: all .3s ease;
    }

        .search-box-container .search-icon:after {
            font-family: 'themify';
            content: "\e610";
        }

        .search-box-container .search-icon.active {
            transform: rotate(90deg);
            transition: all 0.3s ease;
        }

            .search-box-container .search-icon.active::after {
                font-family: 'themify';
                content: "\e646";
            }



#search {
    display: flex;
    position: relative;
    width: 100%;
}

    #search input[type=text] {
        width: 90%;
        padding-right: 2.5em;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    #search .search-box-button {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

        #search .search-box-button i {
            vertical-align: middle;
        }

    #search .search-spinner {
        padding-right: 1em;
    }



.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 0 0 4px 4px;
    background: #fff;
    z-index: 1000;
    display: none;
}

.autocomplete-item {
    padding: 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s;
}

    .autocomplete-item:last-child {
        border-bottom: none;
    }

.autocomplete-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.autocomplete-image {
    width: 50px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    margin-left: 15px;
}

.autocomplete-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.autocomplete-item-active,
.autocomplete-item:hover {
    background-color: #f8f9fa;
}

    .autocomplete-item-active .autocomplete-text,
    .autocomplete-item:hover .autocomplete-text {
        color: #4a90e2;
    }

.search-spinner {
    position: absolute;
    right: .5em;
    top: 9px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #4a90e2;
    animation: spin 1s ease-in-out infinite;
    /*display: none;*/
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .search-spinner.visible {
        opacity: 1;
    }

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.autocomplete-results::-webkit-scrollbar {
    width: 8px;
}

.autocomplete-results::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.autocomplete-results::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

    .autocomplete-results::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

/* #endregion autocomplete searchbox */

/*#region OWLCAROUSEL */
.owl-carousel {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

    .owl-carousel .owl-stage-outer {
        padding: 1rem 1px;
    }

    .owl-carousel .owl-item .thumbnail {
        min-height: 400px;
    }

        .owl-carousel .owl-item .thumbnail img {
            max-height: 300px;
        }

        .owl-carousel .owl-item .thumbnail .title a {
            color: #777;
        }

    .owl-carousel .owl-item img {
        width: inherit;
        margin: auto;
    }

.owl-carousel-wrapper .title {
    border-bottom: 1px solid #ddd;
    margin: 20px 0;
    padding: 10px 0;
    font-size: 1.2em;
}

    .owl-carousel-wrapper .title .view-all {
        float: left;
    }

        .owl-carousel-wrapper .title .view-all a:before {
            font-family: fontawesome;
            content: "\f00a";
            margin: 5px;
        }

        .owl-carousel-wrapper .title .view-all a {
            text-decoration: none;
        }

            .owl-carousel-wrapper .title .view-all a:hover {
                color: #444;
            }

.owl-carousel {
    position: relative;
}

    .owl-carousel .owl-controls {
        position: absolute;
        top: 50%;
        opacity: 0;
        width: 100%;
        font-size: 2.5em;
        transition: opacity 1s;
    }

    .owl-carousel:hover .owl-controls {
        opacity: 1;
    }

    .owl-carousel .owl-controls .owl-nav > div {
    }

    .owl-carousel .owl-controls .owl-prev {
        position: absolute;
        right: -40px;
        display: block;
    }

    .owl-carousel .owl-controls .owl-next {
        position: absolute;
        left: -40px;
        display: block;
    }
/*#endregion OWL CAROUSEL */

/*#region thumbnail */
/*.thumbnail {
    border: none;
}

    .thumbnail > * {
        margin-bottom: .6rem;
    }

    .thumbnail .book_link_title {
        color: black;
    }

    .thumbnail a, .thumbnail button {
        border: none;
    }

        .thumbnail a:hover, .thumbnail button:hover {
        }

        .thumbnail a img {
            background-color: var(--c0-5)
        }

    .thumbnail > a {
        margin: 0;
    }

    .thumbnail .product-title {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        display: block;
        color: black;
    }

    .thumbnail i {
        font-size: 1.2rem;
    }

    .thumbnail .caption {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        direction: rtl;
        margin: 0;
        width: 100%;
        border: none;
    }

        .thumbnail .caption > * {
            margin: 7px 0;
        }

    .thumbnail .price {
        display: flex;
    }

        .thumbnail .price span {
            display: block;
        }

        .thumbnail .price .old-price {
            text-decoration: line-through;
            color: #9b9b9b
        }

        .thumbnail .price .new-price {
            color: var(--maincolor)
        }

        .thumbnail .price .discount-percent, .thumbnail .on-sale {
            color: #fff;
            background: #cf292b;
            padding: 0 5px;
            line-height: 1.6rem;
            font-size: .875rem;
            font-weight: 600;
            border-radius: 3px;
            text-transform: capitalize;
            z-index: 1;
            direction: ltr;
        }

        .thumbnail .price .current-price {
            color: var(--textcolor)
        }

    .thumbnail .on-sale {
        position: absolute;
        top: 0;
        left: 0;
    }

    .thumbnail .compare:after {
        content: '\e911';
        font-size: 1.25rem;
        font-family: "roadthemes-icon";
        display: block;
        line-height: 1;
    }

    .thumbnail .card-img-top {
        position: relative;
    }

    .thumbnail .buttons {
        display: flex;
    }

        .thumbnail .buttons .wc-buttons {
            display: flex;
            justify-content: end;
        }

    .thumbnail ul.property-values {
        opacity: 0;
        position: absolute;
        top: 0;
        direction: rtl;
        width: 100%;
        height: 100%;
        right: 0;
        background-color: rgba(0,0,0,.3);
        color: #fff;
        line-height: 2em;
        padding: 5px 10px 0 5px;
        border-top-right-radius: var(--bs-card-border-radius);
        border-top-left-radius: var(--bs-card-border-radius);
        transition: all .5s;
    }

    .thumbnail:hover ul.property-values {
        opacity: 1;
    }

    .thumbnail.card {
        transition: all 0.3s ease-in-out;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .thumbnail.card:hover {
            transform: translateY(-5px) scale(1.009);
            box-shadow: 0 10px 10px -4px rgba(0, 0, 0, 0.2), 0 10px 10px -4px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease-in-out;
        }

        .thumbnail.card img.cover {
            transition: all 0.3s ease;
            width: 100%;
            height: auto;
        }

        .thumbnail.card:hover img.cover {
            transform: scale(1.01);
        }*/
/*#endregion thumbnail */

/*#region category navigation */

.block-category-navigation .cat-item {
    margin: 7px 0;
}

.block-category-navigation ul {
    margin: 0 15px 0 0;
}

    .block-category-navigation ul li {
        border-bottom: 1px dashed #ddd;
        padding: 0 0 5px 0;
    }

        .block-category-navigation ul li:last-child {
            border-bottom: none;
        }

        .block-category-navigation ul li.nosublist {
            margin-right: 29px;
        }

        .block-category-navigation ul li.level-0 {
            margin-right: 0;
        }

.block-category-navigation .close {
    display: inline-flex;
    float: right;
    margin: 0 0 0 10px;
}

    .block-category-navigation .close:after {
        font-family: fontawesome;
        content: "\f0fe";
    }

    .block-category-navigation .close.expanded:after {
        font-family: fontawesome;
        content: "\f146";
    }

/*#endregion category navigation */


/*#region home page category */
.home-page-category {
    margin: 3rem 0;
}

    .home-page-category a {
        color: white;
        display: block;
    }

    .home-page-category .category-item {
        position: relative;
        overflow: hidden;
    }

        .home-page-category .category-item img {
            transition: 300ms linear;
        }

        .home-page-category .category-item:hover img {
            transform: scale(1.05);
        }

        .home-page-category .category-item .title {
            position: absolute;
            bottom: 0;
            right: 0;
            color: white;
            backdrop-filter: blur(5px);
            width: 100%;
            padding: 2rem 1rem 1rem;
            -webkit-mask-image: linear-gradient(to top, transparent, black 30%, black 70%, transparent);
            mask-image: linear-gradient(to top, transparent, black 30%, black 70%, transparent);
            transition: all .3s;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .home-page-category .category-item .title .more-info:after {
                content: "\e629";
                font-family: 'themify';
                vertical-align: middle;
                font-size: .8rem;
                margin-right: 5px;
                display: inline-block;
            }

            .home-page-category .category-item .title .more-info:hover::after {
                color: red;
                animation: 1.2s linear 0s infinite normal none running passing;
            }

            .home-page-category .category-item .title .more-info:hover {
                color: red;
            }

        .home-page-category .category-item .picture {
            overflow: hidden;
        }

@keyframes passing {
    0% {
        transform: translateX(+50%);
        opacity: 0;
    }

    50% {
        transform: translateX(0%);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%);
        opacity: 0;
    }
}

@-moz-keyframes passing {
}

@-webkit-keyframes passing {
}
/*#endregion home page category */

/* #region blogs */
.blog-page {
    margin: 2rem auto;
}

.posts {
    width: 100%;
    margin: 0 auto 2rem auto;
}

    .posts .post {
        margin-bottom: 20px;
        min-height: 420px;
        background-color: var(--c0);
        padding: 1rem;
    }

        .posts .post .post-body {
            text-align: justify;
        }


        .posts .post img {
            width: 100%;
            border-radius: 1rem;
            -webkit-border-radius: 1rem;
            -moz-border-radius: 1rem;
        }

        .posts .post .post-head {
            display: flex;
            flex-direction: row;
        }

            .posts .post .post-head .post-date {
                color: var(--bs-gray-600);
            }

        .posts .post .tags {
            display: flex;
            align-items: center;
            padding: 2rem 0;
            border-bottom: 1px solid var(--c1);
        }

            .posts .post .tags ul {
                display: flex;
                gap: 1rem;
                flex-wrap: wrap;
                align-items: center;
                margin: 0;
            }

                .posts .post .tags ul li a {
                    background: white;
                    color: #1d4ed8;
                    padding: 9px 18px;
                    border-radius: 999px;
                    font-size: 14px;
                    font-weight: 600;
                }

        .posts .post .buttons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
        }

            .posts .post .buttons .read-more, .panel .read-more {
                background: #123f9f;
                color: #ffffff;
                padding: 13px 28px;
                border-radius: 14px;
                text-decoration: none;
                font-size: 15px;
                font-weight: 700;
                display: inline-flex;
                align-items: center;
                gap: 8px;
                transition: all 0.3s ease;
            }

                .posts .post .buttons .read-more:hover {
                    background: #0f2f7a;
                    color: #ffffff;
                }

.blogpost-page .comment {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

    .blogpost-page .comment:last-child {
        border: none;
    }

.news-item-page.posts .post img, .blog-posts.posts .post-body img {
    width: auto !important;
}
/*#region homepage blogs */
.blog-items .bg-gold, .blog-items .bg-blue {
    padding: 1rem;
}

.blog-items .cloud-card {
    height: 100%;
}

.blog-items .item {
    position: relative;
    padding-bottom: 2rem;
    height: 100%;
}

    .blog-items .item .item-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .5rem 1.5rem;
    }

    .blog-items .item .item-body {
        padding: 1.5rem 1.5rem 3rem;
    }

    .blog-items .item .blog-date {
        display: flex;
        align-items: center;
        position: relative;
    }

        .blog-items .item .blog-date .date {
            direction: ltr;
        }

    .blog-items .item .buttons {
        position: absolute;
        left: 1%;
        bottom: 1%;
    }
/*#endregion*/
/*#endregion blogs */
/*#region support and structure*/
.support {
    background: url(../images/customer-support.png);
    background-position: center;
    background-size: cover;
    padding: 4rem 0;
    margin: 2rem 0;
    -webkit-mask-image: linear-gradient(to top, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to top, transparent, black 15%, black 85%, transparent);
}


/*#endregion support and structure */
/*#region comments */
.comment .user-info:before {
    content: "\f007";
    font-family: fontawesome;
    border: 1px solid #ccc;
    padding: .5rem 1rem;
    display: inline-block;
    font-size: 2rem;
    color: #ccc;
}

.comment .comment-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comment .comment-content {
    padding: 1rem 0;
}
/*#endregion comments */
/*#region loading */
.ajax-loading-block-window {
    position: fixed;
    bottom: 0;
    right: 0;
    top: 0;
    left: 0;
    width: 160px;
    height: 50px;
    margin: auto;
    background-color: var(--c7);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    padding: 12px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .ajax-loading-block-window::before {
        content: "در حال بارگذاری...";
        color: white;
        font-size: 14px;
        direction: rtl;
    }

    .ajax-loading-block-window::after {
        content: "";
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-top: 3px solid white;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ajax-loading-block-window:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
    transition: all 0.3s ease;
}
/*#endregion loading */

/*#region PRODUCT FILTERS */

#product-filters select {
    width: 100%;
}

#product-filters .list-group-item, #productfilters .list-group-item {
    margin: 10px 0;
    background-color: white;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.product-filters .filter-title {
    border-bottom: 1px solid #f5f5f5;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
}

.product-filters .filter-value {
    max-height: 400px;
    overflow-y: scroll;
}

    .product-filters .filter-value ul {
        list-style: none;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
    }

        .product-filters .filter-value ul li {
            margin: 5px 0;
        }

.product-filters .pretty .state label {
    white-space: nowrap;
}

.product-filters .filter-searchbox {
    margin: 10px 0;
}

.product-filters .toggle-label {
    float: left;
    cursor: pointer;
}

    .product-filters .toggle-label:after {
        content: '\f078';
        font-family: FontAwesome;
    }

    .product-filters .toggle-label.expanded:after {
        content: '\f077';
        font-family: FontAwesome;
    }

#product-filters #submit-filter {
    width: 100%;
}

.product-filters .filter-body {
    display: none;
}

    .product-filters .filter-body.expanded {
        display: block;
    }

.spinner {
    width: 1rem !important;
    height: 1rem !important;
    opacity: 0;
    visibility: hidden;
    /*transition:all .4s;
    -webkit-transition:all .4s;
    -moz-transition:all .4s;
    -o-transition:all .4s;*/
}

    .spinner.expanded {
        opacity: 1;
        visibility: visible;
    }

.brand-carousel {
    margin: 70px 0;
}
/*#endregion PRODUCT FILTER */

/*#region product review */
.comment-respond .comment-form-comment {
    display: flex;
    align-items: center;
}

    .comment-respond .comment-form-comment label {
        text-wrap: nowrap;
        min-width: 90px;
    }

.product-review {
    padding: 2rem 0;
}

    .product-review .commentlist {
        padding: 0;
    }

        .product-review .commentlist .comment {
            border-bottom: 1px solid #e9e9e9;
            padding: 0 0 2rem 0;
            margin: 0 0 2rem 0;
        }

    .product-review p.stars {
        margin: 10px 30px 10px 0;
    }

    .product-review .comment-form .comment-form-comment {
        display: flex;
    }

.woocommerce p.stars a {
    position: relative;
    height: 2em;
    width: 1.5em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none
}

    .woocommerce p.stars a::before {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 2em;
        height: 2em;
        line-height: 1;
        font-family: WooCommerce;
        font-size: 1.7em;
        content: '\e021';
        text-indent: 0
    }

    .woocommerce p.stars a:hover ~ a::before {
        content: '\e021'
    }

.woocommerce p.stars:hover a::before {
    content: '\e020'
}

.woocommerce p.stars.selected a.active::before {
    content: '\e020'
}

.woocommerce p.stars.selected a.active ~ a::before {
    content: '\e021'
}

.woocommerce p.stars.selected a:not(.active)::before {
    content: '\e020'
}

.comment-form .stars a {
    border: none;
    color: #fed700;
    line-height: 14px
}

    .comment-form .stars a:after {
        color: #afafaf;
        font-family: FontAwesome;
        font-weight: 400
    }

    .comment-form .stars a.star-1:after {
        content: '\f006'
    }

    .comment-form .stars a.star-2:after {
        content: '\f006\f006'
    }

    .comment-form .stars a.star-3:after {
        content: '\f006\f006\f006'
    }

    .comment-form .stars a.star-4:after {
        content: '\f006\f006\f006\f006'
    }

    .comment-form .stars a.star-5:after {
        content: '\f006\f006\f006\f006\f006'
    }

    .comment-form .stars a.active:after,
    .comment-form .stars a:hover:after {
        color: #fed700
    }
/*#endregion PRODUCT REVIEW */

/*#region discount label*/
.discount-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--c4), var(--c7));
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: pulse 2s infinite;
}

.discount-percent {
    background: linear-gradient(135deg, var(--gold), var(--gold7));
}

.discount-special {
    background: linear-gradient(135deg, #00d2d3, #54a0ff);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.discount-label::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: inherit;
    border-radius: 6px;
    opacity: 0.3;
    z-index: -1;
}

@media (max-width: 768px) {
    .discount-label {
        font-size: 12px;
        top: 5px;
        left: 5px;
    }
}
/*#endregion*/

/*#region lightslider */

.imageGallery ul li.isver {
    text-align: center;
    background-color: #f5f5f5;
    padding: 5rem 2rem;
}

    .imageGallery ul li.isver img {
        width: 75%;
        box-shadow: -20px 20px 20px -5px #aaa;
    }

.imageGallery ul.lSPager {
    display: flex;
    float: right;
    padding-right: 0;
}

    .imageGallery ul.lSPager li.active {
        border: 1px solid #323232;
    }
/*#endregion lightslider */

/*#region footer */
.footer {
    background-color: var(--c0-5);
    background: url(../images/footer-backgrounds.png);
    background-size: cover;
    background-position: center;
}

.footer-upper, .footer-lower {
    padding: 30px 0px;
    color: #929292;
}

    .footer-upper .footer-block .title {
        /*color: #253237;*/
        color: white;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .footer-upper .footer-block ul.list {
        padding: 0;
        font-size: 1.1rem;
    }

        .footer-upper .footer-block ul.list li a {
            font-weight: 400;
            color: #707070;
            position: relative;
            margin-bottom: .8rem;
            display: inline-block;
        }

            .footer-upper .footer-block ul.list li a:hover {
                color: var(--c4);
            }

            .footer-upper .footer-block ul.list li a:after {
                content: "";
                height: 1px;
                background: var(--maincolor);
                position: absolute;
                right: 0;
                opacity: 0;
                width: 0;
                bottom: -2px;
                -webkit-transition: all .2s ease-in-out;
                transition: all .2s ease-in-out;
            }

            .footer-upper .footer-block ul.list li a:hover:after {
                width: 100%;
                opacity: 1;
            }

ul.networks {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    ul.networks li {
        margin-right: 10px;
    }

        ul.networks li a {
            font-size: 1.2rem;
            width: 40px;
            height: 40px;
            display: inline-flex;
            -webkit-box-align: center;
            align-items: center;
            -webkit-box-pack: center;
            justify-content: center;
        }

            ul.networks li a:hover {
                color: var(--gold7);
            }

.follow-us .social a {
    display: block;
    width: 38px;
    height: 38px;
    background: url('../images/social-sprite.png') no-repeat;
    font-size: 0;
}

.follow-us .social .enamad a, .follow-us .social .samandehi a {
    width: auto;
    height: auto;
    background: transparent;
}

.follow-us .social a.facebook {
    background-position: 0 0;
}

.follow-us .social a.twitter {
    background-position: -38px 0;
}

.follow-us .social a.rss {
    background-position: -76px 0;
}

.follow-us .social a.youtube {
    background-position: -114px 0;
}

.follow-us .social a.google-plus {
    background-position: -152px 0;
}

.follow-us .social a.instagram {
    background-position: -228px 0;
}

.follow-us .social a.telegram {
    background-position: -190px 0;
}

.follow-us .social a.eta {
    background-position: -342px 0;
}

.follow-us .social a.bale {
    background-position: -304px 0;
}

.follow-us .social a.whatsapp {
    background-position: -266px 0;
}
/*#endregion footer */

/*#region barnotification */
#bar-notification {
    position: fixed;
    top: 10px;
    max-width: 500px;
    margin: 0 auto;
    right: 10px;
    z-index: 1055;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    /*animation: fadeIn 0.5s ease-out;*/
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    #bar-notification.show {
        display: block;
    }

    #bar-notification.success {
        background: linear-gradient(135deg, rgba(46, 204, 113, 0.95), rgba(26, 188, 156, 0.95));
        color: white;
    }

    #bar-notification.info {
        background: linear-gradient(135deg, rgba(52, 152, 219, 0.95), rgba(41, 128, 185, 0.95));
        color: white;
    }

    #bar-notification.warning {
        background: linear-gradient(135deg, rgba(243, 156, 18, 0.95), rgba(231, 126, 34, 0.95));
        color: white;
    }

    #bar-notification.error {
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.95), rgba(192, 57, 43, 0.95));
        color: white;
    }

.bar-notification .close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .bar-notification .close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .bar-notification .close::before,
    .bar-notification .close::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 2px;
        background: white;
    }

    .bar-notification .close::before {
        transform: rotate(45deg);
    }

    .bar-notification .close::after {
        transform: rotate(-45deg);
    }

.bar-notification .content {
    font-size: 1.2rem;
    margin: 30px 0 10px 0;
    line-height: 1.6;
}

    .bar-notification .content a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 3px 8px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

        .bar-notification .content a:hover {
            background: rgba(255, 255, 255, 0.3);
            text-decoration: underline;
        }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    to {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
}

.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}




@media (max-width: 600px) {
    #bar-notification {
        max-width: 300px;
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .bar-notification .content {
        font-size: 1rem;
        margin: 30px 0 0 0;
    }
}
/*#endregion*/

/*#region GoodDetail */
.sticky {
    background: linear-gradient(90.2deg, rgba(255, 255, 255, .88) -1%, #FFFFFF 100%);
    box-shadow: 0 4px 22px rgba(54, 54, 54, .22);
    backdrop-filter: blur(6px);
    border-radius: 32px;
    padding: 32px;
}

.good-detail .fullsize-pic {
    max-width: 400px;
}

.good-detail .bc-color {
    background: linear-gradient(-45deg, var(--c7) 40%, var(--c6) 60%, var(--c4));
    color: white;
}

    .good-detail .bc-color a {
        color: white;
    }

.good-detail .sticky-bottom-wrap {
    margin-top: -57px;
    margin-bottom: 140px;
    top: 56px;
    position: sticky;
    z-index: 3;
}

    .good-detail .sticky-bottom-wrap .sticky {
        background: linear-gradient(-160deg, #fff 50%, var(--c3) 52%, var(--c1) 79%);
        background-size: 400% 100%;
        background-position: 98%;
        transition: all .4s;
    }

        .good-detail .sticky-bottom-wrap .sticky.is-sticky {
            background-position: 22%;
            transition: all .4s;
        }

            .good-detail .sticky-bottom-wrap .sticky.is-sticky ul.actions li a {
                color: white;
            }

    .good-detail .sticky-bottom-wrap .sticky-bottom {
    }

        .good-detail .sticky-bottom-wrap .sticky-bottom .sticky-end {
            float: left;
        }

        .good-detail .sticky-bottom-wrap .sticky-bottom .sticky-start {
            float: right;
        }

            .good-detail .sticky-bottom-wrap .sticky-bottom .sticky-start ul.actions {
                display: flex;
                padding: 0;
                margin: 0;
                flex-wrap: wrap;
                justify-content: space-around;
                gap: 2rem;
            }

        .good-detail .sticky-bottom-wrap .sticky-bottom .sticky-end, .good-detail .sticky-bottom-wrap .sticky-bottom .sticky-start {
            display: flex;
            align-items: center;
        }

            .good-detail .sticky-bottom-wrap .sticky-bottom .sticky-end > *, .good-detail .sticky-bottom-wrap .sticky-bottom .sticky-start > * {
                padding-left: calc(var(--bs-gutter-x) * .5);
                padding-right: calc(var(--bs-gutter-x) * .5);
            }

.good-detail .bc-image-color {
    position: relative;
    padding-bottom: 150px;
}

    .good-detail .bc-image-color::after {
        content: '';
        background: radial-gradient(ellipse at bottom, var(--c7), var(--c4));
        height: 252px;
        width: 100%;
        position: absolute;
        bottom: 0;
    }

.good-detail .system-pics {
    position: relative;
    z-index: 1;
}

    .good-detail .system-pics .img-link {
        display: block;
        position: relative;
        border: 2px solid var(--c3);
        border-radius: var(--bs-border-radius);
    }

        .good-detail .system-pics .img-link img {
            width: 100%;
        }

        .good-detail .system-pics .img-link:hover img {
            filter: blur(4px) brightness(0.9);
            transition: all .2s;
        }

        .good-detail .system-pics .img-link:hover:after {
            content: "\e63d";
            font-family: 'themify';
            color: black;
            z-index: 2;
            position: absolute;
            inset: 0;
            width: 32px;
            height: 32px;
            margin: auto;
            font-size: 2rem;
        }

.good-detail .summary p {
    text-align: justify;
}
/*#endregion GoodDetail */

/*#region alert */
.alert {
    padding: 20px 25px;
    margin-bottom: 25px;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 5px 15px rgba(0, 35, 102, 0.08);
    border-right: 4px solid;
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease;
}

    .alert:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 35, 102, 0.12);
    }

.alert-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-message {
    font-size: 1.05rem;
    line-height: 1.7;
}

.alert-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .alert-close:hover {
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.05);
    }

.alert-info {
    background: linear-gradient(to left, var(--c0), var(--c0-5));
    border-color: var(--c5);
    color: var(--c7);
}

    .alert-info .alert-icon {
        background-color: var(--c5);
        color: white;
    }

.alert-success {
    background: linear-gradient(to left, #f0f9f0, rgba(240, 249, 240, 0.7));
    border-color: #28a745;
    color: #155724;
}

    .alert-success .alert-icon {
        background-color: #28a745;
        color: white;
    }

.alert-warning {
    background: linear-gradient(to left, var(--gold1), rgba(250, 246, 233, 0.7));
    border-color: var(--gold7);
    color: #856404;
}

    .alert-warning .alert-icon {
        background-color: var(--gold7);
        color: white;
    }

.alert-danger {
    background: linear-gradient(to left, #fdf0f0, rgba(253, 240, 240, 0.7));
    border-color: #dc3545;
    color: #721c24;
}

    .alert-danger .alert-icon {
        background-color: #dc3545;
        color: white;
    }

.alert-primary {
    background: linear-gradient(to left, var(--c1), rgba(220, 232, 255, 0.7));
    border-color: var(--c5);
    color: var(--c7);
}

    .alert-primary .alert-icon {
        background-color: var(--c5);
        color: white;
    }

.alert-secondary {
    background: linear-gradient(to left, #f8f9fa, rgba(248, 249, 250, 0.7));
    border-color: #6c757d;
    color: #383d41;
}

    .alert-secondary .alert-icon {
        background-color: #6c757d;
        color: white;
    }

.alert-with-actions {
    flex-direction: column;
    gap: 15px;
}

.alert-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.alert-btn {
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.alert-btn-primary {
    background-color: var(--c4);
    color: white;
}

    .alert-btn-primary:hover {
        background-color: var(--c5);
    }

.alert-btn-outline {
    background-color: transparent;
    color: inherit;
    border: 1.5px solid currentColor;
}

    .alert-btn-outline:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

.alert-no-icon {
    padding-right: 25px;
}

    .alert-no-icon .alert-icon {
        display: none;
    }

.alert-compact {
    padding: 15px 20px;
    margin-bottom: 15px;
}

    .alert-compact .alert-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .alert-compact .alert-title {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .alert-compact .alert-message {
        font-size: 1rem;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .alert {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .alert-close {
        position: absolute;
        top: 15px;
        left: 15px;
    }

    .alert-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

/*#endregion alert */

/*#region animation */
@keyframes shakeY {
    0%,to {
        transform: translate3d(0,0,0)
    }

    30%,90% {
        transform: translate3d(0,-4px,0)
    }

    60% {
        transform: translate3d(0,4px,0)
    }
}

@keyframes sway {
    0% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(5px) rotate(0.5deg);
    }

    50% {
        transform: translateX(0) rotate(0deg);
    }

    75% {
        transform: translateX(-5px) rotate(-0.5deg);
    }

    100% {
        transform: translateX(0) rotate(0deg);
    }
}

@-moz-keyframes sway {
    0% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(5px) rotate(0.5deg);
    }

    50% {
        transform: translateX(0) rotate(0deg);
    }

    75% {
        transform: translateX(-5px) rotate(-0.5deg);
    }

    100% {
        transform: translateX(0) rotate(0deg);
    }
}

@-webkit-keyframes sway {
    0% {
        transform: translateX(0) rotate(0deg);
    }

    25% {
        transform: translateX(5px) rotate(0.5deg);
    }

    50% {
        transform: translateX(0) rotate(0deg);
    }

    75% {
        transform: translateX(-5px) rotate(-0.5deg);
    }

    100% {
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes fadeInsTicky {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-moz-keyframes fadeInsTicky {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInsTicky {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}
/*#endregion animation */

/*#region nivoslider*/
.carousel-fade .carousel-item {
    position: relative;
    opacity: 0;
    transition: opacity .4s ease-in-out !important;
}

    .carousel-fade .carousel-item.active {
        opacity: 1;
        z-index: 1;
    }

    .carousel-fade .carousel-item img {
        width: 100%;
    }
/*
#carouselExampleCaptions .carousel-inner {
    min-height: 500px;
}

#carouselExampleCaptions .carousel-item .carousel-caption {
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    font-size: 2rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: left;
}

#carouselExampleCaptions .carousel-item.active .carousel-caption {
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
    left: 10%;
    top: 10%;
    animation: sway 2s ease-in-out infinite;
}

#carouselExampleCaptions .carousel-item img {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 20%;
    top: 50%;
}*/

/*#endregion nivoslider */

/*#region contactus */
.contactus-page .address:before {
    content: "\f3c5";
    font-family: fontawesome;
    margin: 0 .7rem;
    font-size: 1.3rem;
}

.contactus-page .phone:before {
    content: "\e69d";
    font-family: 'themify';
    margin: 0 .7rem;
    font-size: 1.3rem;
}

.contactus-page .mobile:before {
    content: "\f3cd";
    font-family: fontawesome;
    margin: 0 .7rem;
    font-size: 1.3rem;
}

.contactus-page .email:before {
    content: "\e75a";
    font-family: 'themify';
    margin: 0 .7rem;
    font-size: 1.3rem;
}
/*#endregion contactus */

/*#region aboutus */
.aboutus-slider-wrapper {
    padding: 2rem 0 2rem 15%;
    margin: 0 0 2rem;
    text-align: left;
}

    .aboutus-slider-wrapper img {
        max-width: 100%;
    }

.caption-top {
    border: 1px solid #ccc;
    padding: 1rem 2rem;
    position: absolute;
    top: 30%;
    left: 40%;
    border-radius: 5px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, .5);
    font-size: 1.5rem;
}

.caption-left {
    column-count: 2;
    column-gap: 3%;
}

    .caption-left .cl-box {
        text-align: center;
        min-height: 176px;
    }

        .caption-left .cl-box > * {
            display: block;
        }

        .caption-left .cl-box .cl-top {
            background-color: #e3274a;
            color: white;
        }

        .caption-left .cl-box .cl-bot {
            padding: 1rem;
            background-color: var(--c0-5);
            min-height: 110px;
        }

.aboutus-services {
    background: url(../images/services.jpg);
    background-size: cover;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

    .aboutus-services .content {
        display: flex;
        /* gap: 1rem; */
        flex-wrap: wrap;
        justify-content: center;
    }

        .aboutus-services .content .block {
            border: 1px solid #ccc;
            padding: 1rem;
            border-radius: 5px;
            backdrop-filter: blur(8px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            background-color: rgba(255, 255, 255, .5);
            text-align: right;
            min-width: 48%;
            margin: 2px;
        }

            .aboutus-services .content .block ul {
                padding-right: .7rem;
                list-style: disc;
                font-size: .8rem;
            }
/*#endregion aboutus */

/*#region panel & blog */
.blogpost-page .post-head h1 {
    font-size: 1.5rem;
}

.post, .panel {
    width: 100%;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin: 20px auto;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
}

    .post:hover, .panel:hover {
        /*transform: translateY(-5px);*/
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

.post-head, .panel-head {
    margin-bottom: 20px;
    padding-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
}

.post-title, .panel-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.5;
    flex: 1 1 auto;
    transition: color 0.2s ease;
    word-break: break-word;
}

    .post-title:hover, .panel-title:hover {
        color: #3b82f6;
    }

.post-date {
    font-size: 0.85rem;
    color: #94a3b8;
    padding: 4px 12px;
    border-radius: 50px;
    white-space: nowrap;
    margin-right: 10px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.post-body, .panel-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 25px;
    text-align: justify;
    background-color: #fafcff;
    padding: 20px;
    border-radius: 16px;
    border-right: 4px solid var(--c2);
}


/*#endregion panel */

/*#region home page news */
section.news-grid {
    background: #f5f5f5;
    margin-bottom: 0;
    padding: 7rem 0;
}

.homepage-news .view-all {
    text-align: center;
    margin: 4rem 0;
}

    .homepage-news .view-all a {
        color: gray;
    }

.homepage-news .news-item {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

    /* بکگراند متفاوت برای هر باکس با استفاده از nth-child */
    .homepage-news .news-item:nth-child(1) {
        background: linear-gradient(135deg, var(--c7) 0%, var(--c3) 100%);
    }

    .homepage-news .news-item:nth-child(2) {
        background: linear-gradient(135deg, var(--gold7) 0%, var(--gold3) 100%);
    }

    .homepage-news .news-item:nth-child(3) {
        background: linear-gradient(135deg, var(--c7) 0%, var(--c3) 100%);
    }

    /* افکت hover روی کل باکس */
    .homepage-news .news-item:hover {
        transform: translateY(-10px);
    }

    /* کانتینر تصویر */
    .homepage-news .news-item .news-image {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

        .homepage-news .news-item .news-image img {
            width: 100%;
            /*height: 100%;*/
            object-fit: cover;
            transition: transform 0.5s ease;
        }

    .homepage-news .news-item:hover .news-image img {
        transform: scale(1.08);
    }

    /* اوورلی روی تصویر */
    .homepage-news .news-item .news-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .homepage-news .news-item:hover .news-image::after {
        opacity: 1;
    }

    /* بخش هدر خبر */
    .homepage-news .news-item .news-head {
        padding: 20px 20px 10px 20px;
    }

    .homepage-news .news-item .news-title {
        font-size: 18px;
        font-weight: 700;
        color: white;
        text-decoration: none;
        line-height: 1.4;
        display: block;
        margin-bottom: 10px;
        transition: all 0.3s ease;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

        .homepage-news .news-item .news-title:hover {
            text-decoration: underline;
            opacity: 0.9;
        }

    .homepage-news .news-item .news-date {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        display: inline-block;
        padding: 4px 12px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        backdrop-filter: blur(5px);
    }

    /* متن خبر */
    .homepage-news .news-item .news-body {
        padding: 0 20px 15px 20px;
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        display: -webkit-box;
        -webkit-line-clamp: 3;
        /*-webkit-box-orient: vertical;*/
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 130px;
    }

    /* دکمه‌ها */
    .homepage-news .news-item .buttons {
        padding: 0 20px 25px 20px;
        text-align: left;
    }

    .homepage-news .news-item .read-more {
        display: inline-block;
        padding: 10px 24px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

        .homepage-news .news-item .read-more:hover {
            background: white;
            color: #333;
            transform: translateX(-5px);
            border-color: transparent;
        }

    /* نسخه جایگزین با تم روشن برای باکس‌ها */
    .homepage-news .news-item.light-theme {
        background: white;
        border: 1px solid #e5e7eb;
    }

        .homepage-news .news-item.light-theme .news-title {
            color: #1f2937;
        }

        .homepage-news .news-item.light-theme .news-date {
            background: #f3f4f6;
            color: #6b7280;
        }

        .homepage-news .news-item.light-theme .news-body {
            color: #4b5563;
        }

        .homepage-news .news-item.light-theme .read-more {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
        }

.home-page-tabs {
    padding: 8rem 20px 12rem;
    background-color: var(--c3);
    background-image: url(../images/home-page-bkg2.png), url(../images/home-page-bkg.png);
    background-position: top, bottom;
    background-repeat: no-repeat;
}

/* انیمیشن ورود باکس‌ها */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.homepage-news .news-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

    .homepage-news .news-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .homepage-news .news-item:nth-child(2) {
        animation-delay: 0.3s;
    }

    .homepage-news .news-item:nth-child(3) {
        animation-delay: 0.5s;
    }

/* تگ‌ها و نشان‌ها */
.homepage-news .news-item {
    position: relative;
}

    .homepage-news .news-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: rgba(255, 255, 255, 0.5);
        z-index: 1;
    }

    /* نشان ویژه برای هر باکس */
    .homepage-news .news-item:nth-child(1)::after {
        content: 'جدید';
        position: absolute;
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        color: #667eea;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        z-index: 2;
        backdrop-filter: blur(5px);
    }

/* استایل واکنش‌گرا */
@media (max-width: 768px) {
    .homepage-news .news-item {
        min-width: 280px;
    }

    .homepage-news .news-title {
        font-size: 16px;
    }

    .homepage-news .news-body {
        font-size: 13px;
    }

    .homepage-news .buttons {
        padding: 0 20px 20px 20px;
    }
}
/*#endregion home page news */

/*#region cloud card */
/* استایل پایه باکس‌ها - بدون حرکت در hover */
.cloud-card {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .cloud-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    /* حباب‌های ابر */
    .cloud-card::before,
    .cloud-card::after,
    .cloud-card .bubble {
        content: '';
        position: absolute;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        z-index: 0;
    }

    .cloud-card::before {
        bottom: -15px;
        left: 5%;
        width: 80px;
        height: 80px;
    }

    .cloud-card::after {
        bottom: -25px;
        left: 25%;
        width: 55px;
        height: 55px;
    }

    .cloud-card .bubble {
        bottom: -10px;
        right: 10%;
        width: 65px;
        height: 65px;
    }

    /* رنگ‌های گرادیانت */
    .cloud-card.bg-blue {
        background: linear-gradient(135deg, var(--c7), var(--c3));
    }

    .cloud-card.bg-gold {
        background: linear-gradient(135deg, #f1c40f, #f39c12);
    }

    /* افکت نئومورفیسم */
    .cloud-card.neuomorphic {
        background: #e0e0e0;
        box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1), -20px -20px 40px rgba(255, 255, 255, 0.8);
        border-radius: 20px;
    }

        .cloud-card.neuomorphic.bg-blue {
            background: linear-gradient(135deg, #3498db, #2980b9);
            box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2), -10px -10px 20px rgba(255, 255, 255, 0.3);
        }

        .cloud-card.neuomorphic.bg-gold {
            background: linear-gradient(135deg, #f1c40f, #f39c12);
            box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2), -10px -10px 20px rgba(255, 255, 255, 0.3);
        }

    /* افکت گرادیانت متحرک */
    .cloud-card.animated-gradient {
        background: linear-gradient(270deg, #3498db, #2980b9, #f1c40f, #f39c12);
        background-size: 400% 400%;
        animation: gradientShift 6s ease infinite;
    }

@@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* افکت حاشیه درخشان */
.cloud-card.glow-border {
    position: relative;
    border: 2px solid transparent;
}

    .cloud-card.glow-border::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #ffd700, #ff8c00, #ffd700);
        border-radius: 20px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .cloud-card.glow-border:hover::before {
        opacity: 1;
    }

/* افکت شیشه‌ای (Glassmorphism) */
.cloud-card.glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .cloud-card.glass.bg-blue {
        background: rgba(52, 152, 219, 0.25);
    }

    .cloud-card.glass.bg-gold {
        background: rgba(241, 196, 15, 0.25);
    }

/* افکت سایه داخلی */
.cloud-card.inner-shadow {
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* افکت هولوگرافیک */
.cloud-card.holographic {
    background: linear-gradient(135deg, rgba(255,0,255,0.3), rgba(0,255,255,0.3), rgba(255,255,0,0.3));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.5);
}

/* خطوط دکوراتیو روی باکس */
.cloud-card.decorative-lines {
    overflow: hidden;
}

    .cloud-card.decorative-lines::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient( 45deg, transparent, transparent 20px, rgba(255,255,255,0.05) 20px, rgba(255,255,255,0.05) 40px );
        pointer-events: none;
    }

/* محتوای داخل باکس باید بالای افکت‌ها قرار گیرد */
.cloud-card .item {
    position: relative;
    z-index: 1;
}

/*#endregion cloud card */


/*#region thumbnail */
/* حذف استایل‌های پیش‌فرض Bootstrap card */
.thumbnail.card {
    background: none;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

/* استایل کانتینر اصلی */
.thumbnail {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .thumbnail:hover {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    /* استایل تصویر */
    .thumbnail img {
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .thumbnail:hover img {
        transform: scale(1.05);
    }

    /* دایورتگ تصویر */
    .thumbnail a {
        display: block;
        overflow: hidden;
        position: relative;
    }

        /* افکت روی تصویر */
        .thumbnail a::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

    .thumbnail:hover a::after {
        opacity: 1;
    }

    /* بدنه کارت - حذف استایل‌های Bootstrap */
    .thumbnail .card-body {
        padding: 1.25rem;
        background: transparent;
        position: relative;
        z-index: 1;
    }

    /* عنوان محصول */
    .thumbnail .product-title {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        line-height: 1.4;
    }

        .thumbnail .product-title span {
            color: #2c3e50;
            transition: color 0.3s ease;
        }

    .thumbnail:hover .product-title span {
        color: #3498db;
    }

    /* دکمه خرید */
    .thumbnail .btn-default {
        background: var(--c7);
        color: white;
        border: none;
        border-radius: 30px;
        padding: 0.5rem 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        margin: 1rem 0 0 0;
    }

        .thumbnail .btn-default:hover {
            background: var(--c6);
            /*box-shadow: 0 5px 15px rgba(0,35,102, 0.4);*/
        }

    /* اگر کلاس add-info را می‌خواهید استایل دهید */
    .thumbnail .add-info {
        margin-top: 1rem;
    }



    /* اطمینان از اینکه محتوا بالای افکت‌ها قرار گیرد */
    .thumbnail .card-body,
    .thumbnail a:first-child {
        position: relative;
        z-index: 1;
    }

/* استایل ریسپانسیو */
@media (max-width: 768px) {


    .thumbnail .product-title span {
        font-size: 0.9rem;
    }

    .thumbnail .btn-default {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* افکت گرادیانت متحرک برای hover (اختیاری) */
@keyframes borderGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
}

.thumbnail:active {
    animation: borderGlow 0.5s ease;
}
/*#endregion thumbnail */

/*#region home page support */
.support-png {
    background-image: url(../images/support.png);
    background-size: cover;
    background-color: var(--gold5);
    border-radius: 16px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .3), 0 10px 20px rgba(0, 0, 0, .2);
    width: 75px;
    height: 75px;
    display: block;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
}
/* استایل بخش پشتیبانی و استقرار */
.support {
    padding: 7rem 0;
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
    border-radius: 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

    /* افکت دکوراتیو پس‌زمینه */
    .support::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(52, 152, 219, 0.1), transparent);
        border-radius: 50%;
        z-index: 0;
    }

    .support::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(241, 196, 15, 0.1), transparent);
        border-radius: 50%;
        z-index: 0;
    }

    /* استایل کارت‌ها */
    .support .supporter,
    .support .structure {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 30px 25px;
        height: 100%;
        transition: all 0.4s ease;
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(5px);
        opacity: 0.8;
    }

        .support .supporter:hover,
        .support .structure:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

    /* استایل عنوان */
    .support .title {
        position: relative;
        margin-bottom: 25px;
        text-align: center;
    }

        .support .title h4 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
            padding-bottom: 15px;
            position: relative;
            display: inline-block;
        }

            /* خط زیر عنوان */
            .support .title h4::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 50px;
                height: 3px;
                background: var(--c7);
                border-radius: 3px;
                transition: width 0.3s ease;
            }

    .support .supporter:hover .title h4::after,
    .support .structure:hover .title h4::after {
        width: 80px;
    }

    /* استایل تصویر */
    .support .image {
        text-align: center;
        margin-bottom: 20px;
        position: relative;
    }

        .support .image img {
            max-width: 120px;
            height: auto;
            transition: all 0.4s ease;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        }

    .support .supporter:hover .image img,
    .support .structure:hover .image img {
        transform: scale(1.1);
        filter: drop-shadow(0 8px 20px rgba(52, 152, 219, 0.3));
    }

    /* حلقه دکوراتیو دور تصویر */
    .support .image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(52, 152, 219, 0.1), transparent);
        border-radius: 50%;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: -1;
    }

    .support .supporter:hover .image::before,
    .support .structure:hover .image::before {
        opacity: 1;
        width: 140px;
        height: 140px;
    }

    /* استایل متن */
    .support p {
        color: #555;
        line-height: 1.8;
        text-align: justify;
        font-size: 0.95rem;
        margin: 20px 0 0;
        position: relative;
    }

    /* استایل اختصاصی برای استقرار */
    .support .supporter {
        border-bottom: 3px solid #3498db;
    }

        .support .supporter .title h4 {
            color: #2980b9;
        }

    /* استایل اختصاصی برای پشتیبانی */
    .support .structure {
        border-bottom: 3px solid var(--gold5);
    }

        .support .structure .title h4 {
            color: var(--gold5);
        }

/* استایل ریسپانسیو */
@media (max-width: 768px) {
    .support {
        padding: 40px 20px;
    }

        .support .supporter,
        .support .structure {
            margin-bottom: 30px;
            padding: 20px;
        }

        .support .title h4 {
            font-size: 1.5rem;
        }

        .support .image img {
            max-width: 100px;
        }

    support p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .support .row > div:last-child {
        margin-top: 20px;
    }
}

/* افکت گرادیانت متحرک روی هور */
@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.support .supporter::before,
.support .structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(241, 196, 15, 0.05));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.support .supporter:hover::before,
.support .structure:hover::before {
    opacity: 1;
}

/* استایل آیکون‌های تزئینی (اختیاری) */
.support .supporter .icon-badge,
.support .structure .icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.support .supporter:hover .icon-badge,
.support .structure:hover .icon-badge {
    transform: rotate(360deg);
    background: rgba(52, 152, 219, 0.2);
}

/* اگر می‌خواهید شماره یا آیکون اضافه کنید */
.support .supporter .counter,
.support .structure .counter {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
    z-index: 2;
}

.support .structure .counter {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

/*#endregion home page support */


