/* ===== Base / Header (بدون تغییر در منطق) ===== */

html {
    box-sizing: border-box;
    overflow-x: hidden !important;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-x: hidden !important;
}

.container {
    margin: 0 auto;
}


.view-breadcrumb {
    direction: rtl;
    position: relative;
}

.view-breadcrumb ol {
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    text-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1px 0;
}

.view-breadcrumb-item {
    font-size: 16px;
    color: var(--view-accent-400);
    line-height: 24px;
}

.view-breadcrumb-item.is-current {
    color: var(--view-primary);
    font-weight: 500;
}

.view-breadcrumb-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    transition: all 300ms;
}

.view-breadcrumb-link svg path {
    transition: all 300ms;

}

.view-breadcrumb-link:hover {
    color: var(--view-secondary);
}

.view-breadcrumb-link:hover svg path {
    fill: var(--view-secondary);
}

.view-breadcrumb-sep {
    opacity: .55;
    user-select: none;
}


.view-pagination-numbers ul,
.view-pagination-list {
    display: flex;
    list-style: none;
    gap: 4px;
    padding: 0;
    margin: 0;
    align-items: center;
}

li.view-pagination-item .view-pagination-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E9E9ED;
    border-radius: 100%;
    color: #64627E;
    text-decoration: none;
    font-size: 18px;
    color: #64627E;
    font-weight: 500;
}

li.view-pagination-numbers {
    padding: 4px;
    border: 1px solid #DEDCF7;
    border-radius: 56px;
}

li.view-pagination-item.is-current .view-pagination-btn {
    color: #fff;
    background-color: var(--view-accent);
    position: relative;
    z-index: 1;
}

li.view-pagination-item.is-current .view-pagination-btn::before {
    content: '';
    background: url("../image/pagination.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    mix-blend-mode: difference;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.view-pagination-item.is-next .view-pagination-btn,
.view-pagination-item.is-prev .view-pagination-btn {
    color: unset;
    background: unset;
    width: 40px;
    height: 40px;
}

.view-pagination-item.is-prev .view-pagination-btn {
    transform: rotate(180deg);
}

nav.view-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.view-header {
    position: relative;
    z-index: 100;
}

.header-wrapper {
    height: 160px;
    background: #FBFFFF;
    border-radius: 0 0 32px 32px;
    border: 1px solid var(--view-accent-100);
    display: flex;
}

.header-wrapper .header-top {
    margin-top: -25px !important;
}

.header-wrapper .view-logo a {
    width: fit-content;
}

.view-search-form {
    width: 100%;
    position: relative;
}

.view-search-form input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid var(--view-accent-100);
    background: #FBFFFF;
    font-family: inherit;
    padding: 8px 16px;
    outline: none;
}

.view-search-form svg {
    position: absolute;
    left: 16px;
    top: 15px;
}

.view-dashboard-btn {
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--view-accent-100);
    background: transparent;
    cursor: pointer;
}

.view-nav-wrapper {
    background: var(--view-accent);
    height: 73px;
    border-radius: 56px;
    margin: -40px 0 0 0 !important;
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
    padding: 0 16px;
}

.view-nav-wrapper .support {
    width: fit-content;
    margin: 0;
    padding: 0;
    gap: 10px;
    display: flex;
    align-items: center;
}

.view-nav-wrapper .support .support-text {
    text-align: left;
}

.view-nav-wrapper .support .support-text p {
    direction: ltr;
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    line-height: 32px;
}

.view-nav-wrapper .support .support-text span {
    font-weight: 300;
    font-size: 14px;
    color: #ffffff80;
}

/* ===== Primary menu (سطح اول روی نوار تیره) ===== */
.view-nav-menu {
    display: flex;
    align-items: center;
    max-width: 80% !important;
    max-height: 73px;
    position: relative;
}

.view-nav-menu .view-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.view-menu>li {
    position: relative;
}

.view-menu>li>a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
}

/* نقطه قبل از آیتم سطح اول */
.view-menu>li>a::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #ffffff1a;
    border-radius: 2px;
    display: block;
    transition: background .2s;
}

.view-menu>li:hover>a::before {
    background: var(--view-primary);
}

/* فقط همان آیتم */

.view-menu>.current-menu-item {
    background: #5b51d84d;
    padding: 8px 16px;
    border-radius: 48px;
}

.view-menu>.current-menu-item>a {
    font-weight: 700;
}

.view-menu>.current-menu-item>a::before {
    width: 12px;
    height: 12px;
    transform: rotate(45deg);
    background: var(--view-primary);
}

/* ===== Submenus (سه‌سطحی) ===== */
/* پنل زیرمنو */
.view-submenu-wrap {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-start: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    pointer-events: none;
}

.view-submenu {
    min-width: 217px;
    margin: 0;
    padding: 16px 0px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--view-accent-100);
    border-radius: 24px;
}

.view-submenu.depth-1 {
    min-width: 217px;
    border-radius: 24px 0 24px 24px;
}

/* نمایش سطح دوم */
.view-menu>li:hover>.view-submenu-wrap,
.view-menu>li:focus-within>.view-submenu-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(20px);
    pointer-events: auto;
}

/* آیتم‌های سطح دوم */
.view-submenu>li {
    position: relative;
}

.view-submenu>li>a.view-menu-link {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    color: #4A4A4A;
    font-size: 16px;
    line-height: 28px;
    text-decoration: none;
}

/* نقطه قبل از آیتم سطح دوم */
.view-submenu>li>a.view-menu-link::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 2px;
    display: inline-block;
    margin-inline-end: 8px;
    background: #E9E9F7;
    vertical-align: middle;
    transition: background .2s;
}

/* هاور/فعال سطح دوم: بنفش و متن سفید (حفظ می‌شود وقتی وارد سطح سوم می‌شویم) */
.view-submenu>li:hover>a.view-menu-link,
.view-submenu>li:focus-within>a.view-menu-link {
    background: var(--view-secondary-700, #5B51D8);
    color: #fff;
}

.view-submenu>li:hover>a.view-menu-link::before,
.view-submenu>li:focus-within>a.view-menu-link::before {
    background: #fff;
}

/* سطح سوم: کنارِ سطح دوم باز شود */
.view-submenu .view-submenu-wrap {
    top: 0;
    inset-inline-start: 100%;
}

.view-submenu>li:hover>.view-submenu-wrap,
.view-submenu>li:focus-within>.view-submenu-wrap {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* آیتم‌های سطح سوم (هاور قرمز/پرایمری) */
.view-submenu .view-submenu>li>a.view-menu-link {
    color: #3C3C3C;
    background: transparent;
}

.view-submenu .view-submenu>li:hover>a.view-menu-link,
.view-submenu .view-submenu>li:focus-within>a.view-menu-link {
    background: var(--view-primary, #E63F66);
    color: #fff;
}

/* پلِ عمودی بین سطح 1 و پنل زیرمنو (شکاف 10px) */
.view-menu>li {
    position: relative;
}

.view-menu>li:hover::after {
    content: "";
    position: absolute;
    top: 100%;
    /* بلافاصله زیر آیتم سطح 1 */
    inset-inline-start: 0;
    width: 100%;
    /* به پهنای همان آیتم */
    height: 100px;
    z-index: 100;
    /* >= 10px شکاف + کمی بافر */
    /* background: transparent;  لازم نیست */
    /* هدف: نگه‌داشتن :hover روی li هنگام عبور موس */
}

.menu-text-wrapper {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

span.submenu-icon {
    display: flex;
    align-items: center;
    transition: all 300ms;
}


/* پلِ افقی بین سطح 2 و پنل سطح 3 (شکاف 12px) */
.view-submenu>li {
    position: relative;
}

.view-submenu>li::after {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 100%;
    /* کنارِ راست/چپ آیتم سطح 2 (RTL/LTR-safe) */
    width: 16px;
    /* >= 12px فاصله جانبی + بافر */
    height: 100%;
    /* transparent */
}

/* اگر زیرمنو را کمی دیرتر باز می‌کنی، این بافرِ کوچک هم کمک می‌کند */
.view-submenu-wrap {
    transition-delay: 0s;
}

.sub-menu.view-submenu.depth-0 li {
    line-height: 40px;
    padding: 0px 16px;
    transition: all 300ms;
}

.sub-menu.view-submenu.depth-0>li:hover {
    background: var(--view-primary);
}

.sub-menu.view-submenu.depth-0>li:hover span.submenu-icon {
    transform: rotate(90deg);
}

.sub-menu.view-submenu.depth-0>li:hover>a {
    color: #fff;
    font-weight: 700;
}

.sub-menu.view-submenu.depth-1>li:hover {
    background: var(--view-secondary);
}

.sub-menu.view-submenu.depth-1>li:hover>a {
    color: #fff;
    font-weight: 700;
}

.sub-menu.view-submenu.depth-0 a {
    text-decoration: none;
    color: #221f4780;
    display: block;
    width: 100%;
}


.view-mobile-header,
.view-mobile-header-cta {
    display: none;
}

.view-mobile-menu {
    display: none;
    transition: all 300ms;
    transform: translateX(100%);
    max-height: 100% !important;
}

.view-mobile-menu.is-open {
    transform: translateX(0);
    display: flex;
    border-radius: 0 0 0 32px;
}

body.menu-open {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
}


/* پیش‌فرض: غیرفعال را نشان بده، فعال را مخفی کن */
.post-action-like .like-svg--active {
    display: none;
}

.post-action-like .like-svg--inactive {
    display: inline-block;
}

.post-action-like.is-active .like-svg--active {
    display: inline-block;
}

.post-action-like.is-active .like-svg--inactive {
    display: none;
}

.post-action-like svg {
    vertical-align: middle;
    display: inline-block;
}

.post-action-btn.post-action-like {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    margin: 0;
}

article.view-card {
    background: var(--view-accent-50);
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    width: 293px;
}

article.view-card .view-card-overlay {
    padding: 12px 12px 24px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

article.view-card img.view-card-image.wp-post-image {
    width: 100%;
    height: 219px;
    object-fit: cover;
    display: block;
}

p.vcf-empty {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
}

article.view-card .view-card-overlay .view-card-title a {
    color: var(--view-accent);
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
}

article.view-card .view-card-overlay .view-card-chip {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

article.view-card .view-card-overlay .view-card-chip a.view-card-chip-text {
    color: var(--view-accent-500);
    text-decoration: none;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
}

article.view-card .view-card-overlay .view-card-chip button.view-card-chip-action {
    width: fit-content;
    height: fit-content;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    background: transparent;
}


@media screen and (max-width: 1024px) {

    .header-wrapper,
    .nav-container {
        display: none
    }

    .view-mobile-header {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 32px;
    }

    .view-mobile-logo,
    .view-mobile-logo img {
        width: 85px;
        padding: 0;
        margin: 0;
    }

    .view-mobile-toggle {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: transparent;
        border: none;
        outline: none;
    }

    .view-mobile-header-cta {
        padding: 9px 32px;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        background: var(--view-accent);
    }


    .view-mobile-header-cta .support {
        width: fit-content;
        margin: 0;
        padding: 0;
        gap: 10px;
        display: flex;
        align-items: center;
    }

    .view-mobile-header-cta .support .support-text {
        text-align: left;
    }

    .view-mobile-header-cta .support .support-text p {
        direction: ltr;
        margin: 0;
        font-weight: 700;
        font-size: 18px;
        color: #fff;
        line-height: 32px;
    }

    .view-mobile-header-cta .support .support-text span {
        font-weight: 300;
        font-size: 14px;
        color: #ffffff80;
    }

    .view-mobile-menu {
        display: none;
        flex-direction: column;
        background: var(--view-accent);
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        width: 95%;
        max-width: 500px;
        z-index: 10000;
    }

    .view-mobile-menu-logo,
    .view-mobile-menu-logo img {
        width: 85px;
        padding: 0;
        margin: 0;
    }

    .view-mobile-menu .view-cart {
        width: 50%;
    }

    .view-mobile-menu .view-mini-cart-btn {
        width: 100%;
        height: 42px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 8px;
        border: 1px solid rgb(255 255 255 / 10%);
        padding: 2px 2px 2px 12px;
        font-size: 14px;
        font-weight: 400;
        color: rgb(255 255 255 / 50%);
        text-decoration: none;
        background: rgb(255 255 255 / 10%);
    }

    .view-mobile-menu .view-mini-cart-btn .cart-count {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        background: rgb(255 255 255 / 10%);
        font-size: 18px;
        font-weight: 500;
        color: #fff;
    }

    .view-mobile-menu .view-dashboard-btn {
        width: 50%;
        height: 46px;
        gap: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    .sub-menu.view-submenu.depth-1>li:hover,
    .sub-menu.view-submenu.depth-0>li:hover {
        background: transparent !important;
    }

    .sub-menu.view-submenu.depth-0 a {
        color: rgba(239, 243, 254, 1);

    }

    .view-submenu>li::after {
        content: '';
        position: unset;
    }

    .sub-menu.view-submenu.depth-0 li {
        line-height: unset;
        padding: unset;
    }

    .menu-text-wrapper {
        justify-content: start;
    }

    .view-mobile-nav-menu {
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 32px;
    }

    /* آیتم‌های سطح اول */
    .view-mobile-nav-menu>li {
        position: relative;
    }

    .view-mobile-nav-menu>li>a {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #EFF3FE;
        text-decoration: none;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.8;
        padding: 12px 8px;
    }

    /* بولت سطح اول (سمت راست در RTL) */
    .view-mobile-nav-menu>li>a::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 2px;
        background: rgba(239, 243, 254, .1);
    }

    /* وقتی باز یا active شد، بولت پررنگ */
    .view-mobile-nav-menu>li.is-open>a::after,
    .view-mobile-nav-menu>li.current-menu-ancestor>a::before,
    .view-mobile-nav-menu>li.current-menu-item>a::before {
        background: var(--view-secondary);
        /* یا var(--view-primary) */
    }

    /* فلش داخل لینک والد (همان svg فعلی) */
    .view-mobile-nav-menu .submenu-icon {
        display: inline-flex;
        margin-inline-start: 6px;
        color: #EFF3FE;
    }

    .view-mobile-nav-menu a .submenu-icon svg {
        transition: transform .2s ease;
    }

    /* زیرمنوها: پیش‌فرض بسته */
    .view-mobile-nav-menu .sub-menu {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* وقتی والد باز است */
    .view-mobile-nav-menu li.is-open>.sub-menu {
        display: block;
    }

    /* سطح 1 (زیرمنو مستقیم) */
    .view-mobile-nav-menu .menu-item-level-1>a {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(239, 243, 254, .85);
        font-size: 16px;
        font-weight: 600;
        padding: 10px 28px 10px 8px;
        /* تورفتگی */
    }

    /* بولت سطح 1 قبل از متن */
    .view-mobile-nav-menu .menu-item-level-1>a::before {
        content: "";
    }

    /* سطح 2 (نوه‌ها) */
    .view-mobile-nav-menu .menu-item-level-2>a {
        color: rgba(239, 243, 254, .78);
        font-size: 15px;
        font-weight: 500;
        padding: 8px 44px 8px 8px;
        /* تورفتگی بیشتر */
    }

    .view-mobile-nav-menu .menu-item-level-2>a::before {
        content: "";
    }


    /* خنثی‌سازی قوانین دسکتاپ برای موبایل */
    .view-mobile-nav-menu .view-submenu-wrap {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        border: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }

    .view-mobile-nav-menu .view-submenu {
        min-width: 100% !important;
        background: transparent !important;
        border: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .view-mobile-nav-menu>li:hover::after {
        content: none !important;
    }

    .view-mobile-menu-footer {
        position: relative;
        bottom: 0;
        width: 100%;
        height: 60px;
        background-color: transparent;
        z-index: 0;
    }

    .view-mobile-menu-footer::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
        background: url("../image/mobile-pattern.png");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        mix-blend-mode: darken;
        z-index: 1;
    }

    .mobile-menu-nav {
        min-height: 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        height: 73vh;
    }

    .view-mobile-nav-menu {
        margin: 0;
    }

    .mobile-menu-nav {
        scrollbar-width: thin;
        scrollbar-color: var(--view-primary, #5B51D8) transparent;
    }

    .mobile-menu-nav::-webkit-scrollbar {
        width: 6px;
    }

    .mobile-menu-nav::-webkit-scrollbar-track {
        background: transparent;
    }

    .mobile-menu-nav::-webkit-scrollbar-thumb {
        background: var(--view-primary, #5B51D8);
        border-radius: 999px;
    }


}

/* وقتی مودال بازه، اسکرول صفحه قفل می‌شود */
body.view-modal-open {
    overflow: hidden;
}

/* پایه‌ی مودال */
.view-modal[hidden] {
    display: none;
}

.view-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.view-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.view-modal__dialog {
    position: relative;
    background: #fff;
    margin: 4vh auto 0;
    width: min(680px, 92vw);
    max-height: 92vh;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.view-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.view-modal__title {
    margin: 0;
    font-size: 16px;
}

.view-modal__close {
    border: 0;
    background: transparent;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.view-modal__body {
    padding: 12px 16px;
    overflow: auto;
}


/* موبایل: تمام‌صفحه + اسلایدآپ */
@media (max-width: 1024px) {
    .view-modal__dialog {
        margin: 0;
        width: 100%;
        max-height: none;
        height: 100%;
        border-radius: 0;
        transform: translateY(8%);
        transition: transform .25s ease;
    }

    .view-modal--open .view-modal__dialog {
        transform: translateY(0);
    }

    #view-live-search {
        position: unset !important;
    }

    .view-search-panel {
        max-height: 450px !important;

    }

    .view-search-btn.js-open-search.view-mobile-search {
        background: transparent;
        border: none;
        outline: none;
        opacity: 1;
    }
}


#faq-container {
    max-height: 375px;
}



.contact-form p {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.contact-form label {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form span.wpcf7-form-control-wrap {
    width: 100%;
    display: block;
}


.contact-form input.wpcf7-form-control.wpcf7-text {
    width: 100%;
    font-size: inherit;
    font-family: inherit;
    text-align: right;
    padding: 6px 16px 6px 16px;
    border-radius: 8px;
    background: var(--view-accent-50);
    outline: none;
    border: none;
}

.contact-form .view-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}


.contact-form.message label {
    width: 100%;
}

.contact-form.message textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
    width: 100%;
    padding: 6px 16px 6px 16px;
    background: var(--view-accent-50);
    border: none;
    outline: none;
    border-radius: 8px;
    height: 88px;
    font-size: inherit;
    font-family: inherit;
}


.contact-form p {
    margin: 0;
    font-size: inherit;
    font-family: inherit;
}

span.wpcf7-spinner {
    display: none;
}

.form-submit {
    padding: 0;
    margin: 0;
    width: 160px;
    height: 48px;
    position: absolute;
    left: 0px;
    bottom: -60px;
}

.form-submit p {
    padding: 0;
    margin: 0;
    width: 160px;
    height: 48px;
}

.form-submit input {
    width: 100%;
    height: 100%;
    border-radius: 56px;
    border: none;
    background: var(--view-secondary);
    color: #fff;
    font-size: 18px;
    font-family: inherit;
    box-shadow: 0px 26px 26px -20px #E1306C;
    transition: all 300ms;
}

.form-submit input:hover {
    background: var(--view-primary);
    box-shadow: 0px 26px 26px -20px #5B51D8;
}



.box-hover:hover span {
    color: #fff;
}

.box-hover:hover svg path,
.box-hover:hover svg circle {
    fill: #fff;
}

@media (max-width: 768px) {
    .mobile-count .vwps-grid .vwps-card:nth-last-child(-n+2) {
        display: none;
    }

    .mobile-count .view-posts-grid .view-posts-item:nth-last-child(-n+2) {
        display: none;
    }

    .contact-form p {
        display: flex;
        width: 100%;
        align-items: center;
        gap: 10px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-form label {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 16px;
    }


}

.wpcf7-form-control.wpcf7-submit.has-spinner {
    display: flex;
    align-items: center;
    outline: none;
    border: none;
    background: var(--view-secondary);
    color: #fff;
    border-radius: 999px;
    height: 48px;
    width: fit-content;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    text-align: center;
    left: 0;
    padding: 8px 16px 8px 8px;
    font-size: 16px;
    font-weight: 700;
    flex-direction: row;
    position: absolute;
}

.gradient-text {
    background: linear-gradient(113deg, #E1306C, #534CAD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}