:root {
    --promial-theme-primary: #f59e0b;
    --promial-theme-primary-dark: #d97706;
    --promial-theme-dark: #111827;
    --promial-theme-muted: #64748b;
    --promial-theme-border: #e5e7eb;
    --promial-theme-bg: #f4f5f7;
    --promial-theme-card: #ffffff;
    --promial-theme-radius: 5px;
    --promial-theme-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --promial-theme-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--promial-theme-dark);
    background: var(--promial-theme-bg);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.promial-theme-body {
    min-height: 100vh;
}

.promial-theme-site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.admin-bar .promial-theme-site-shell {
    min-height: calc(100vh - 32px);
}

.promial-theme-main {
    flex: 1 0 auto;
    width: 100%;
}

.promial-theme-footer-widgets,
.promial-theme-footer {
    flex-shrink: 0;
}

@supports (min-height: 100dvh) {
    body.promial-theme-body {
        min-height: 100dvh;
    }

    .promial-theme-site-shell {
        min-height: 100dvh;
    }

    .admin-bar .promial-theme-site-shell {
        min-height: calc(100dvh - 32px);
    }
}

@media screen and (max-width: 782px) {
    .admin-bar .promial-theme-site-shell {
        min-height: calc(100vh - 46px);
    }

    @supports (min-height: 100dvh) {
        .admin-bar .promial-theme-site-shell {
            min-height: calc(100dvh - 46px);
        }
    }
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--promial-theme-primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.promial-theme-container {
    width: min(var(--promial-theme-container), calc(100% - 40px));
    margin: 0 auto;
}

.promial-theme-skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: #fff;
    padding: 10px 14px;
    z-index: 9999;
}

.promial-theme-skip-link:focus {
    left: 10px;
}

.promial-theme-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.admin-bar .promial-theme-header {
    top: 32px;
}

.promial-theme-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.promial-theme-branding {
    min-width: 180px;
}

.promial-theme-branding img {
    max-height: 54px;
    width: auto;
}

.promial-theme-site-title {
    display: block;
    color: var(--promial-theme-primary);
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.promial-theme-site-description {
    margin: 4px 0 0;
    color: var(--promial-theme-muted);
    font-size: 12px;
}

.promial-theme-navigation {
    flex: 1;
}

.promial-theme-menu,
.promial-theme-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.promial-theme-menu {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.promial-theme-menu li {
    position: relative;
}

.promial-theme-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 13px;
    border-radius: var(--promial-theme-radius);
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
}

.promial-theme-menu a:hover,
.promial-theme-menu .current-menu-item > a,
.promial-theme-menu .current-menu-ancestor > a {
    background: var(--promial-theme-dark);
    color: #fff;
}

.promial-theme-menu .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    box-shadow: var(--promial-theme-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.18s ease;
}

.promial-theme-menu li:hover > .sub-menu,
.promial-theme-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.promial-theme-menu .sub-menu a {
    justify-content: flex-start;
    min-height: auto;
    padding: 10px 12px;
}

.promial-theme-menu-toggle,
.promial-theme-search-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    color: var(--promial-theme-dark);
    cursor: pointer;
}

.promial-theme-menu-toggle {
    display: none;
}

.promial-theme-menu-toggle svg,
.promial-theme-search-toggle svg,
.promial-theme-read-more svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.promial-theme-search-panel {
    padding: 0 0 20px;
}

.promial-theme-search-form {
    display: flex;
    gap: 8px;
    width: 100%;
}

.promial-theme-search-form label {
    flex: 1;
}

.promial-theme-search-field,
.promial-theme-search-submit {
    width: 100%;
    min-height: 46px;
    border-radius: var(--promial-theme-radius);
    border: 1px solid var(--promial-theme-border);
    padding: 10px 14px;
    font: inherit;
}

.promial-theme-search-submit {
    width: auto;
    min-width: 110px;
    border: 0;
    background: var(--promial-theme-dark);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.promial-theme-main {
    min-height: 0;
}

.promial-theme-page-header,
.promial-theme-single-header {
    padding: 72px 0 34px;
    text-align: center;
}

.promial-theme-page-header h1,
.promial-theme-single-header h1 {
    max-width: 920px;
    margin: 0 auto;
    color: #0f172a;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.promial-theme-eyebrow {
    margin: 0 0 12px;
    color: var(--promial-theme-primary-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.promial-theme-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    padding: 24px 0 70px;
}

.promial-theme-content {
    min-width: 0;
}

.promial-theme-page-content,
.promial-theme-entry-content,
.promial-theme-empty {
    background: #fff;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    padding: clamp(22px, 4vw, 44px);
    box-shadow: var(--promial-theme-shadow);
}

.promial-theme-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.promial-theme-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    box-shadow: var(--promial-theme-shadow);
}

.promial-theme-card-image {
    display: block;
    aspect-ratio: 1.35 / 1;
    background: #e5e7eb;
    overflow: hidden;
}

.promial-theme-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.promial-theme-card:hover .promial-theme-card-image img {
    transform: scale(1.04);
}

.promial-theme-card-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.promial-theme-card-body {
    padding: 18px;
}

.promial-theme-card-meta {
    margin-bottom: 8px;
    color: var(--promial-theme-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.promial-theme-card-title {
    margin: 0 0 10px;
    color: #111827;
    font-size: 22px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.promial-theme-card-excerpt {
    color: #475569;
    font-size: 14px;
}

.promial-theme-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--promial-theme-primary-dark);
    font-size: 14px;
    font-weight: 900;
}

.promial-theme-single-image {
    overflow: hidden;
    margin: 0 0 28px;
    border-radius: var(--promial-theme-radius);
    box-shadow: var(--promial-theme-shadow);
}

.promial-theme-single-image img {
    width: 100%;
}

.promial-theme-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.promial-theme-widget {
    background: #fff;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    padding: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.promial-theme-widget-title {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.15;
}

.promial-theme-footer-widgets {
    padding: 42px 0;
    background: #fff;
    border-top: 1px solid var(--promial-theme-border);
}

.promial-theme-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.promial-theme-footer {
    padding: 22px 0;
    background: #1f1f1f;
    color: #cbd5e1;
    font-size: 14px;
}

.promial-theme-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.promial-theme-footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.promial-theme-promial-business-content {
    padding: 38px 0 70px;
}

.promial-theme-business-single .promial-theme-page-header,
.promial-theme-business-single .promial-theme-single-header {
    display: none;
}

.navigation.pagination {
    margin-top: 30px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--promial-theme-radius);
    background: #fff;
    border: 1px solid var(--promial-theme-border);
    font-weight: 900;
}

.nav-links .current {
    background: var(--promial-theme-dark);
    color: #fff;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1024px) {
    .promial-theme-layout {
        grid-template-columns: 1fr;
    }

    .promial-theme-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 782px) {
    .admin-bar .promial-theme-header {
        top: 46px;
    }
}

@media (max-width: 760px) {
    .promial-theme-container {
        width: min(100% - 24px, var(--promial-theme-container));
    }

    .promial-theme-header-inner {
        min-height: 68px;
    }

    .promial-theme-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .promial-theme-navigation {
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 8px);
        display: none;
        background: #fff;
        border: 1px solid var(--promial-theme-border);
        border-radius: var(--promial-theme-radius);
        padding: 10px;
        box-shadow: var(--promial-theme-shadow);
    }

    .promial-theme-navigation.is-open {
        display: block;
    }

    .promial-theme-menu {
        display: block;
    }

    .promial-theme-menu a {
        justify-content: flex-start;
    }

    .promial-theme-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 0 14px;
    }

    .promial-theme-page-header,
    .promial-theme-single-header {
        padding: 42px 0 24px;
    }

    .promial-theme-post-grid,
    .promial-theme-footer-grid {
        grid-template-columns: 1fr;
    }

    .promial-theme-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.promial-theme-category-header {
    text-align: left;
}

.promial-theme-category-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.promial-theme-category-header .promial-theme-archive-description {
    max-width: 760px;
    margin-top: 12px;
    color: var(--promial-theme-muted);
}

.promial-theme-view-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.promial-theme-view-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: var(--promial-theme-radius);
    color: #475569;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.promial-theme-view-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.promial-theme-view-button.is-active,
.promial-theme-view-button:hover {
    background: var(--promial-theme-dark);
    color: #fff;
}

.promial-theme-post-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promial-theme-list-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    min-height: 168px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.promial-theme-list-card:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.promial-theme-list-card-image {
    position: relative;
    display: block;
    min-height: 168px;
    background: #e5e7eb;
    overflow: hidden;
}

.promial-theme-list-card-image img {
    width: 100%;
    height: 100%;
    min-height: 168px;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.promial-theme-list-card:hover .promial-theme-list-card-image img {
    transform: scale(1.04);
}

.promial-theme-list-card-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 168px;
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.promial-theme-list-card-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 6px 9px;
    border-radius: var(--promial-theme-radius);
    background: var(--promial-theme-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promial-theme-list-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 18px 20px 18px 0;
}

.promial-theme-list-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 6px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.promial-theme-list-card-meta a {
    color: var(--promial-theme-primary-dark);
}

.promial-theme-list-card-title {
    margin: 0;
    color: #111827;
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.promial-theme-list-card-title a:hover {
    color: var(--promial-theme-primary-dark);
}

.promial-theme-list-card-excerpt {
    margin-top: 10px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.promial-theme-list-card-excerpt p {
    margin: 0;
}

.promial-theme-list-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: var(--promial-theme-primary-dark);
    font-size: 13px;
    font-weight: 900;
}

.promial-theme-list-card-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 900px) {
    .promial-theme-category-header-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .promial-theme-list-card {
        grid-template-columns: 220px minmax(0, 1fr);
    }
}

@media (max-width: 620px) {
    .promial-theme-view-switcher,
    .promial-theme-view-button {
        width: 100%;
    }

    .promial-theme-view-button {
        flex: 1;
    }

    .promial-theme-list-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .promial-theme-list-card-image,
    .promial-theme-list-card-image img,
    .promial-theme-list-card-placeholder {
        min-height: 210px;
    }

    .promial-theme-list-card-body {
        padding: 18px;
    }
}

/* Single blog post modern layout */
.promial-theme-single-post .promial-theme-single-modern-header {
    padding: 76px 0 28px;
    text-align: center;
}

.promial-theme-single-modern-header h1 {
    max-width: 980px;
    margin: 12px auto 14px;
    color: #0f172a;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.promial-theme-single-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.promial-theme-single-categories a,
.promial-theme-single-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: var(--promial-theme-radius);
    background: rgba(245, 158, 11, 0.12);
    color: var(--promial-theme-primary-dark);
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.promial-theme-single-categories a:hover,
.promial-theme-single-tags a:hover {
    background: var(--promial-theme-primary);
    color: #111827;
}

.promial-theme-single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--promial-theme-muted);
    font-size: 14px;
    font-weight: 700;
}

.promial-theme-single-meta span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-left: 14px;
    border-radius: 999px;
    background: #cbd5e1;
    vertical-align: middle;
}

.promial-theme-single-modern-image {
    position: relative;
    overflow: hidden;
    margin: 0 0 26px;
    border-radius: var(--promial-theme-radius);
    background: #e5e7eb;
    box-shadow: var(--promial-theme-shadow);
}

.promial-theme-single-modern-image--compact {
    aspect-ratio: 16 / 9;
    max-height: var(--promial-theme-single-image-max-height, 460px);
}

.promial-theme-single-modern-image--wide {
    aspect-ratio: 21 / 9;
    max-height: var(--promial-theme-single-image-max-height, 460px);
}

.promial-theme-single-modern-image--full {
    max-height: none;
}

.promial-theme-single-modern-image a,
.promial-theme-single-modern-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.promial-theme-single-modern-image img {
    object-fit: cover;
}

.promial-theme-single-modern-image--full img {
    height: auto;
    object-fit: contain;
}

.promial-theme-featured-lightbox-trigger {
    cursor: zoom-in;
}

.promial-theme-featured-lightbox-trigger::after {
    content: "↗";
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: var(--promial-theme-radius);
    background: rgba(15, 23, 42, 0.82);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.promial-theme-featured-lightbox-trigger:hover::after {
    opacity: 1;
}

.promial-theme-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(2, 6, 23, 0.9);
}

.promial-theme-lightbox.is-open {
    display: flex;
}

.promial-theme-lightbox img {
    max-width: min(100%, 1180px);
    max-height: 90vh;
    border-radius: var(--promial-theme-radius);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.promial-theme-lightbox button {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: var(--promial-theme-radius);
    background: #fff;
    color: #0f172a;
    font-size: 26px;
    font-weight: 900;
    cursor: pointer;
}

.promial-theme-single-modern-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    padding: 18px 0 72px;
}

.promial-theme-single-main {
    min-width: 0;
}

.promial-theme-single-modern-content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.promial-theme-single-share {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
}

.promial-theme-single-share a,
.promial-theme-author-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 36px;
    border-radius: var(--promial-theme-radius);
    color: #fff;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.promial-theme-single-share a:hover,
.promial-theme-author-socials a:hover {
    transform: translateY(-2px);
    color: #fff;
    opacity: 0.92;
}

.promial-theme-single-share svg,
.promial-theme-author-socials svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.promial-theme-share-facebook,
.promial-theme-author-socials a:nth-child(1) {
    background: #3b5998;
}

.promial-theme-share-x,
.promial-theme-author-socials a:nth-child(2) {
    background: #111827;
}

.promial-theme-share-linkedin,
.promial-theme-author-socials a:nth-child(3) {
    background: #0a66c2;
}

.promial-theme-share-copy,
.promial-theme-author-socials a:nth-child(4),
.promial-theme-author-socials a:nth-child(5) {
    background: var(--promial-theme-primary-dark);
}

.promial-theme-share-facebook svg,
.promial-theme-author-socials a[aria-label="Facebook"] svg {
    fill: currentColor;
    stroke: none;
}

.promial-theme-share-linkedin svg,
.promial-theme-author-socials a[aria-label="LinkedIn"] svg {
    fill: currentColor;
    stroke: none;
}

.promial-theme-share-copy.is-copied {
    background: #16a34a;
}

.promial-theme-single-tags {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 22px 0 28px;
    padding: 20px;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.04);
}

.promial-theme-single-tags > span {
    flex: 0 0 auto;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.promial-theme-single-tags > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.promial-theme-author-box {
    display: grid;
    grid-template-columns: 62px 110px minmax(0, 1fr);
    overflow: hidden;
    margin: 30px 0 34px;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    box-shadow: var(--promial-theme-shadow);
}

.promial-theme-author-socials {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    padding: 18px 10px;
    background: #f1f5f9;
}

.promial-theme-author-socials a {
    width: 38px;
    height: 38px;
    background: transparent;
    color: #0f172a;
}

.promial-theme-author-socials a:hover {
    background: #fff;
    color: var(--promial-theme-primary-dark);
}

.promial-theme-author-avatar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 28px 0 24px 24px;
}

.promial-theme-author-avatar img {
    width: 92px;
    height: 92px;
    border-radius: var(--promial-theme-radius);
    object-fit: cover;
}

.promial-theme-author-content {
    padding: 26px 30px 28px;
}

.promial-theme-author-content h2 {
    margin: 0;
    color: var(--promial-theme-primary-dark);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.promial-theme-author-role {
    margin: 4px 0 16px;
    color: #111827;
    font-size: 18px;
    font-style: italic;
    line-height: 1.35;
}

.promial-theme-author-description {
    margin: 0 0 16px;
    color: #334155;
    font-size: 16px;
    line-height: 1.6;
}

.promial-theme-author-latest {
    display: inline-flex;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .promial-theme-single-modern-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .promial-theme-single-post .promial-theme-single-modern-header {
        padding: 44px 0 20px;
    }

    .promial-theme-single-modern-image--compact,
    .promial-theme-single-modern-image--wide {
        aspect-ratio: 4 / 3;
        max-height: 320px;
    }

    .promial-theme-single-modern-layout {
        padding-bottom: 48px;
    }

    .promial-theme-author-box {
        grid-template-columns: 1fr;
    }

    .promial-theme-author-socials {
        flex-direction: row;
        justify-content: center;
    }

    .promial-theme-author-avatar {
        padding: 22px 0 0;
    }

    .promial-theme-author-content {
        padding: 20px;
        text-align: center;
    }

    .promial-theme-single-tags {
        flex-direction: column;
    }
}

/* Promial Theme v1.4.0 - single post card header + related posts */
.promial-theme-single-post .promial-theme-single-modern-layout {
    padding-top: 58px;
}

.promial-theme-single-article-card {
    overflow: hidden;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    box-shadow: var(--promial-theme-shadow);
}

.promial-theme-single-post .promial-theme-single-article-card .promial-theme-single-modern-header {
    padding: 34px 34px 18px;
    background: #fff;
}

.promial-theme-single-post .promial-theme-single-article-card .promial-theme-single-modern-header h1 {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: clamp(34px, 4.2vw, 58px);
}

.promial-theme-single-post .promial-theme-single-article-card .promial-theme-single-modern-image {
    margin: 0 34px 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.promial-theme-single-post .promial-theme-single-article-card .promial-theme-single-share {
    margin: 0 34px 20px;
}

.promial-theme-single-post .promial-theme-single-article-card .promial-theme-single-modern-content {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding-top: 24px;
}

.promial-theme-related-posts {
    margin: 32px 0 42px;
}

.promial-theme-related-header {
    margin-bottom: 16px;
}

.promial-theme-related-header span {
    display: inline-flex;
    margin-bottom: 7px;
    color: var(--promial-theme-primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.promial-theme-related-header h2 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.promial-theme-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.promial-theme-related-card {
    overflow: hidden;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.promial-theme-related-card:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.42);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.promial-theme-related-image,
.promial-theme-related-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
    overflow: hidden;
}

.promial-theme-related-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.promial-theme-related-card:hover .promial-theme-related-image img {
    transform: scale(1.04);
}

.promial-theme-related-body {
    padding: 16px 16px 18px;
}

.promial-theme-related-body h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 19px;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.promial-theme-related-body h3 a:hover {
    color: var(--promial-theme-primary-dark);
}

.promial-theme-related-meta {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .promial-theme-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .promial-theme-single-post .promial-theme-single-modern-layout {
        padding-top: 28px;
    }

    .promial-theme-single-post .promial-theme-single-article-card .promial-theme-single-modern-header {
        padding: 24px 18px 16px;
    }

    .promial-theme-single-post .promial-theme-single-article-card .promial-theme-single-modern-image,
    .promial-theme-single-post .promial-theme-single-article-card .promial-theme-single-share {
        margin-left: 18px;
        margin-right: 18px;
    }
}


/* Promial Theme v1.5.2 - fixed author box layout */
.promial-theme-single-main .promial-theme-author-box {
    display: grid !important;
    grid-template-columns: 58px 104px minmax(0, 1fr) !important;
    align-items: center !important;
    overflow: hidden !important;
    margin: 30px 0 34px !important;
    border: 1px solid var(--promial-theme-border) !important;
    border-radius: var(--promial-theme-radius) !important;
    background: #fff !important;
    box-shadow: var(--promial-theme-shadow) !important;
    min-height: 190px !important;
}

.promial-theme-single-main .promial-theme-author-socials {
    align-self: stretch !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 14px 8px !important;
    background: #f1f5f9 !important;
}

.promial-theme-single-main .promial-theme-author-socials a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border: 1px solid #dbe3ef !important;
    border-radius: var(--promial-theme-radius) !important;
    background: #fff !important;
    color: #0f172a !important;
    box-shadow: none !important;
    transform: none !important;
}

.promial-theme-single-main .promial-theme-author-socials a:hover {
    background: var(--promial-theme-dark) !important;
    border-color: var(--promial-theme-dark) !important;
    color: #fff !important;
    opacity: 1 !important;
}

.promial-theme-single-main .promial-theme-author-socials svg {
    width: 17px !important;
    height: 17px !important;
    max-width: 17px !important;
    max-height: 17px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.promial-theme-single-main .promial-theme-author-socials a[aria-label="Facebook"] svg,
.promial-theme-single-main .promial-theme-author-socials a[aria-label="LinkedIn"] svg {
    fill: currentColor !important;
    stroke: none !important;
}

.promial-theme-single-main .promial-theme-author-avatar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 0 0 18px !important;
}

.promial-theme-single-main .promial-theme-author-avatar img {
    display: block !important;
    width: 82px !important;
    height: 82px !important;
    max-width: 82px !important;
    max-height: 82px !important;
    border-radius: var(--promial-theme-radius) !important;
    object-fit: cover !important;
}

.promial-theme-single-main .promial-theme-author-content {
    min-width: 0 !important;
    padding: 24px 28px !important;
    text-align: left !important;
}

.promial-theme-single-main .promial-theme-author-content h2 {
    margin: 0 0 4px !important;
    color: var(--promial-theme-primary-dark) !important;
    font-size: clamp(24px, 2.4vw, 32px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
}

.promial-theme-single-main .promial-theme-author-role {
    margin: 0 0 12px !important;
    color: #111827 !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-style: italic !important;
}

.promial-theme-single-main .promial-theme-author-description {
    margin: 0 0 14px !important;
    color: #334155 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.promial-theme-single-main .promial-theme-author-latest {
    display: inline-flex !important;
    align-items: center !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #0f172a !important;
    background: transparent !important;
    border: 0 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
}

@media (max-width: 680px) {
    .promial-theme-single-main .promial-theme-author-box {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
    }

    .promial-theme-single-main .promial-theme-author-socials {
        flex-direction: row !important;
        align-self: auto !important;
        padding: 12px !important;
    }

    .promial-theme-single-main .promial-theme-author-avatar {
        padding: 22px 0 0 !important;
    }

    .promial-theme-single-main .promial-theme-author-content {
        padding: 18px 20px 24px !important;
        text-align: center !important;
    }
}

/* Promial Theme v1.5.3 - horizontal silver author box */
.promial-theme-single-main .promial-theme-author-box {
    display: grid !important;
    grid-template-columns: 116px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 22px !important;
    min-height: 0 !important;
    padding: 24px 28px !important;
    overflow: hidden !important;
    margin: 30px 0 34px !important;
    border: 1px solid var(--promial-theme-border) !important;
    border-radius: var(--promial-theme-radius) !important;
    background: #fff !important;
    box-shadow: var(--promial-theme-shadow) !important;
}

.promial-theme-single-main .promial-theme-author-avatar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.promial-theme-single-main .promial-theme-author-avatar img {
    display: block !important;
    width: 96px !important;
    height: 96px !important;
    max-width: 96px !important;
    max-height: 96px !important;
    border-radius: var(--promial-theme-radius) !important;
    object-fit: cover !important;
}

.promial-theme-single-main .promial-theme-author-content {
    min-width: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

.promial-theme-single-main .promial-theme-author-content h2 {
    margin: 0 0 4px !important;
    color: var(--promial-theme-primary-dark) !important;
    font-size: clamp(24px, 2.4vw, 32px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em !important;
}

.promial-theme-single-main .promial-theme-author-role {
    margin: 0 0 8px !important;
    color: #111827 !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    font-style: normal !important;
}

.promial-theme-single-main .promial-theme-author-description {
    margin: 0 0 16px !important;
    color: #334155 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.promial-theme-single-main .promial-theme-author-description a {
    color: #2563eb !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

.promial-theme-single-main .promial-theme-author-description a:hover {
    color: var(--promial-theme-primary-dark) !important;
    text-decoration: underline !important;
}

.promial-theme-single-main .promial-theme-author-description b,
.promial-theme-single-main .promial-theme-author-description strong {
    color: #0f172a !important;
    font-weight: 900 !important;
}

.promial-theme-single-main .promial-theme-author-footer-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    width: 100% !important;
}

.promial-theme-single-main .promial-theme-author-socials {
    align-self: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex-direction: row !important;
    gap: 8px !important;
    padding: 0 !important;
    background: transparent !important;
}

.promial-theme-single-main .promial-theme-author-socials a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border: 1px solid #dbe3ef !important;
    border-radius: var(--promial-theme-radius) !important;
    background: #f8fafc !important;
    color: #94a3b8 !important;
    box-shadow: none !important;
    transform: none !important;
}

.promial-theme-single-main .promial-theme-author-socials a:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #64748b !important;
    opacity: 1 !important;
}

.promial-theme-single-main .promial-theme-author-socials svg {
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.promial-theme-single-main .promial-theme-author-socials a[aria-label="Facebook"] svg,
.promial-theme-single-main .promial-theme-author-socials a[aria-label="LinkedIn"] svg {
    fill: currentColor !important;
    stroke: none !important;
}

.promial-theme-single-main .promial-theme-author-latest {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: auto !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    color: #0f172a !important;
    background: transparent !important;
    border: 0 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
}

.promial-theme-single-main .promial-theme-author-latest:hover {
    color: var(--promial-theme-primary-dark) !important;
}

@media (max-width: 680px) {
    .promial-theme-single-main .promial-theme-author-box {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        padding: 22px 18px !important;
        text-align: center !important;
    }

    .promial-theme-single-main .promial-theme-author-content {
        text-align: center !important;
    }

    .promial-theme-single-main .promial-theme-author-footer-row {
        align-items: center !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 12px !important;
    }

    .promial-theme-single-main .promial-theme-author-socials {
        justify-content: center !important;
    }

    .promial-theme-single-main .promial-theme-author-latest {
        margin: 0 !important;
    }
}

/* Promial Theme v1.5.4 - WooCommerce single product page */
.woocommerce.single-product .promial-theme-main,
.single-product .promial-theme-main {
    background: var(--promial-theme-bg);
}

.promial-theme-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    padding: 42px 0 74px;
}

.promial-theme-product-main {
    min-width: 0;
}

.promial-theme-product-main .woocommerce-breadcrumb {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.promial-theme-product-main .woocommerce-breadcrumb a {
    color: var(--promial-theme-primary-dark);
    font-weight: 900;
}

.promial-theme-product-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    padding: 28px;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    box-shadow: var(--promial-theme-shadow);
}

.promial-theme-product-gallery {
    min-width: 0;
}

.promial-theme-product-gallery .woocommerce-product-gallery {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}

.promial-theme-product-gallery .woocommerce-product-gallery__wrapper {
    margin: 0;
}

.promial-theme-product-gallery .woocommerce-product-gallery__image {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: var(--promial-theme-radius);
    background: #f8fafc;
}

.promial-theme-product-gallery .woocommerce-product-gallery__image img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.promial-theme-product-gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    margin: 10px 0 0 !important;
    padding: 0 !important;
}

.promial-theme-product-gallery .flex-control-thumbs li {
    width: auto !important;
    float: none !important;
    list-style: none !important;
}

.promial-theme-product-gallery .flex-control-thumbs img {
    overflow: hidden;
    width: 100% !important;
    aspect-ratio: 1 / 1;
    border: 1px solid #e5e7eb;
    border-radius: var(--promial-theme-radius);
    object-fit: cover;
    opacity: 0.72;
    transition: opacity 0.18s ease, border-color 0.18s ease;
}

.promial-theme-product-gallery .flex-control-thumbs img.flex-active,
.promial-theme-product-gallery .flex-control-thumbs img:hover {
    border-color: var(--promial-theme-primary);
    opacity: 1;
}

.promial-theme-product-summary {
    min-width: 0;
    padding: 6px 0;
}

.promial-theme-product-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.promial-theme-product-cats a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: var(--promial-theme-radius);
    background: rgba(245, 158, 11, 0.12);
    color: var(--promial-theme-primary-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.promial-theme-product-cats a:hover {
    background: var(--promial-theme-primary);
    color: #111827;
}

.promial-theme-product-title {
    margin: 0 0 14px;
    color: #0f172a;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.promial-theme-product-rating {
    margin: 0 0 14px;
}

.promial-theme-product-rating .star-rating {
    float: none;
    color: var(--promial-theme-primary);
}

.promial-theme-product-price {
    margin: 0 0 18px;
}

.promial-theme-product-price .price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 900;
    line-height: 1;
}

.promial-theme-product-price del {
    color: #94a3b8;
    font-size: 0.72em;
    font-weight: 700;
}

.promial-theme-product-price ins {
    text-decoration: none;
}

.promial-theme-product-excerpt {
    margin: 0 0 22px;
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
}

.promial-theme-product-cart {
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: var(--promial-theme-radius);
    background: #f8fafc;
}

.promial-theme-product-cart form.cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 !important;
}

.promial-theme-product-cart .quantity .qty {
    width: 86px;
    min-height: 46px;
    border: 1px solid #dbe3ef;
    border-radius: var(--promial-theme-radius);
    background: #fff;
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
}

.promial-theme-product-cart .single_add_to_cart_button,
.woocommerce .promial-theme-product-cart button.button,
.woocommerce .promial-theme-product-cart .button {
    min-height: 46px;
    border: 0 !important;
    border-radius: var(--promial-theme-radius) !important;
    background: #111827 !important;
    color: #fff !important;
    padding: 0 22px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 46px !important;
    text-transform: none !important;
    transition: transform 0.18s ease, background 0.18s ease;
}

.promial-theme-product-cart .single_add_to_cart_button:hover,
.woocommerce .promial-theme-product-cart button.button:hover,
.woocommerce .promial-theme-product-cart .button:hover {
    background: var(--promial-theme-primary-dark) !important;
    transform: translateY(-1px);
}

.promial-theme-product-cart .variations {
    width: 100%;
    margin: 0 0 12px !important;
}

.promial-theme-product-cart .variations th,
.promial-theme-product-cart .variations td {
    display: block;
    padding: 0 0 8px !important;
    text-align: left;
}

.promial-theme-product-cart .variations select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #dbe3ef;
    border-radius: var(--promial-theme-radius);
    padding: 0 12px;
}

.promial-theme-product-meta {
    margin-top: 18px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.promial-theme-product-meta .product_meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.promial-theme-product-meta a {
    color: var(--promial-theme-primary-dark);
    font-weight: 900;
}

.promial-theme-product-details-card,
.promial-theme-product-related {
    margin-top: 26px;
    padding: 28px;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    box-shadow: var(--promial-theme-shadow);
}

.promial-theme-product-details-card .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px !important;
    padding: 0 !important;
    border: 0 !important;
}

.promial-theme-product-details-card .woocommerce-tabs ul.tabs::before,
.promial-theme-product-details-card .woocommerce-tabs ul.tabs li::before,
.promial-theme-product-details-card .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.promial-theme-product-details-card .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: var(--promial-theme-radius) !important;
    background: #f8fafc !important;
    padding: 0 !important;
}

.promial-theme-product-details-card .woocommerce-tabs ul.tabs li.active {
    background: #111827 !important;
    border-color: #111827 !important;
}

.promial-theme-product-details-card .woocommerce-tabs ul.tabs li a {
    display: inline-flex !important;
    padding: 11px 14px !important;
    color: #0f172a !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

.promial-theme-product-details-card .woocommerce-tabs ul.tabs li.active a {
    color: #fff !important;
}

.promial-theme-product-details-card .panel {
    margin: 0 !important;
    color: #334155;
    line-height: 1.75;
}

.promial-theme-product-related > .related > h2 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.promial-theme-product-related ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px !important;
    margin: 0 !important;
}

.promial-theme-product-related ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: var(--promial-theme-radius);
    background: #fff;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.promial-theme-product-related ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
    padding: 12px 12px 0;
}

.promial-theme-product-related ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--promial-theme-radius);
    object-fit: cover;
}

.promial-theme-product-related ul.products li.product .woocommerce-loop-product__title {
    padding: 12px 12px 0 !important;
    color: #0f172a;
    font-size: 16px !important;
    font-weight: 900;
    line-height: 1.2;
}

.promial-theme-product-related ul.products li.product .price {
    display: block;
    padding: 6px 12px 12px;
    color: var(--promial-theme-primary-dark) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
}

.promial-theme-product-related ul.products li.product .button {
    margin: 0 12px 14px !important;
    border-radius: var(--promial-theme-radius) !important;
    background: #111827 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

@media (max-width: 1050px) {
    .promial-theme-product-layout,
    .promial-theme-product-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .promial-theme-product-layout {
        padding: 24px 0 48px;
    }

    .promial-theme-product-card,
    .promial-theme-product-details-card,
    .promial-theme-product-related {
        padding: 18px;
    }

    .promial-theme-product-related ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* Promial Theme v1.5.5 - WooCommerce shop and product category archives */
.woocommerce.post-type-archive-product .promial-theme-main,
.woocommerce.tax-product_cat .promial-theme-main,
.woocommerce.tax-product_tag .promial-theme-main {
    background: var(--promial-theme-bg);
}

.promial-theme-shop-header .promial-theme-archive-description p:last-child {
    margin-bottom: 0;
}

.promial-theme-shop-layout {
    align-items: start;
}

.promial-theme-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding: 16px 18px;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.promial-theme-shop-result-count .woocommerce-result-count,
.woocommerce .promial-theme-shop-result-count .woocommerce-result-count {
    float: none;
    margin: 0;
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.promial-theme-shop-ordering .woocommerce-ordering,
.woocommerce .promial-theme-shop-ordering .woocommerce-ordering {
    float: none;
    margin: 0;
}

.promial-theme-shop-ordering select {
    min-height: 42px;
    min-width: 210px;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    padding: 8px 12px;
    color: #0f172a;
    font-weight: 800;
}

.promial-theme-shop-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promial-theme-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.promial-theme-product-archive-card {
    overflow: hidden;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.promial-theme-product-archive-card:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.promial-theme-shop-list .promial-theme-product-archive-card {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    min-height: 178px;
}

.promial-theme-shop-grid .promial-theme-product-archive-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.promial-theme-product-archive-image {
    position: relative;
    display: block;
    min-height: 178px;
    background: #e5e7eb;
    overflow: hidden;
}

.promial-theme-shop-grid .promial-theme-product-archive-image {
    aspect-ratio: 1 / 1;
    min-height: 0;
}

.promial-theme-product-archive-image img {
    width: 100%;
    height: 100%;
    min-height: 178px;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.promial-theme-shop-grid .promial-theme-product-archive-image img {
    min-height: 0;
}

.promial-theme-product-archive-card:hover .promial-theme-product-archive-image img {
    transform: scale(1.04);
}

.promial-theme-product-archive-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 178px;
    background: linear-gradient(135deg, #e2e8f0, #f8fafc);
}

.promial-theme-product-archive-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 6px 9px;
    border-radius: var(--promial-theme-radius);
    background: var(--promial-theme-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.promial-theme-product-archive-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.promial-theme-shop-list .promial-theme-product-archive-body {
    justify-content: center;
    padding: 18px 20px 18px 0;
}

.promial-theme-shop-grid .promial-theme-product-archive-body {
    flex: 1;
    padding: 18px;
}

.promial-theme-product-archive-cats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--promial-theme-primary-dark);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.promial-theme-product-archive-cats a {
    color: var(--promial-theme-primary-dark);
}

.promial-theme-product-archive-title {
    margin: 0;
    color: #111827;
    font-size: clamp(20px, 2.4vw, 30px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.promial-theme-shop-grid .promial-theme-product-archive-title {
    font-size: 21px;
    line-height: 1.12;
}

.promial-theme-product-archive-title a:hover {
    color: var(--promial-theme-primary-dark);
}

.promial-theme-product-archive-excerpt {
    margin-top: 10px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
}

.promial-theme-product-archive-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
}

.promial-theme-shop-grid .promial-theme-product-archive-footer {
    margin-top: auto;
    padding-top: 14px;
}

.promial-theme-product-archive-price {
    color: var(--promial-theme-primary-dark);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.promial-theme-product-archive-price del {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
}

.promial-theme-product-archive-price ins {
    text-decoration: none;
}

.woocommerce .promial-theme-product-archive-button .button,
.promial-theme-product-archive-button .button,
.promial-theme-product-archive-button a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 0;
    border-radius: var(--promial-theme-radius);
    background: var(--promial-theme-dark);
    color: #fff;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.woocommerce .promial-theme-product-archive-button .button:hover,
.promial-theme-product-archive-button .button:hover,
.promial-theme-product-archive-button a.button:hover {
    background: var(--promial-theme-primary);
    color: #111827;
}

.promial-theme-shop-empty {
    text-align: center;
}

.woocommerce nav.woocommerce-pagination,
.promial-theme-shop-layout nav.woocommerce-pagination {
    margin-top: 28px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border: 0;
    margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--promial-theme-border);
    border-radius: var(--promial-theme-radius);
    background: #fff;
    color: #0f172a;
    font-weight: 900;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--promial-theme-dark);
    color: #fff;
}

@media (max-width: 1024px) {
    .promial-theme-shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .promial-theme-shop-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .promial-theme-shop-ordering select {
        width: 100%;
    }

    .promial-theme-shop-list .promial-theme-product-archive-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .promial-theme-shop-list .promial-theme-product-archive-body {
        padding: 18px;
    }

    .promial-theme-product-archive-image,
    .promial-theme-product-archive-image img,
    .promial-theme-product-archive-placeholder {
        min-height: 220px;
    }
}

@media (max-width: 560px) {
    .promial-theme-shop-grid {
        grid-template-columns: 1fr;
    }

    .promial-theme-product-archive-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Promial Theme v1.5.7 - Product archive quantity cart button */
.promial-theme-quantity-cart {
    display: inline-grid;
    grid-template-columns: 34px 36px 34px;
    align-items: center;
    width: 104px;
    min-height: 40px;
    padding: 3px;
    border: 2px solid #e8ded7;
    border-radius: 999px;
    background: #f2f3f3;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: opacity 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.promial-theme-quantity-cart.is-loading {
    opacity: 0.68;
    pointer-events: none;
}

.promial-theme-quantity-cart.has-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.promial-theme-quantity-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.promial-theme-quantity-button:hover {
    transform: translateY(-1px);
    background: #111827;
    color: #fff;
}

.promial-theme-quantity-button:disabled {
    cursor: wait;
    transform: none;
}

.promial-theme-quantity-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    color: #111827;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.promial-theme-product-archive-button {
    flex: 0 0 auto;
}

.promial-theme-shop-grid .promial-theme-product-archive-footer {
    align-items: center;
}

@media (max-width: 520px) {
    .promial-theme-quantity-cart {
        width: 100px;
        grid-template-columns: 32px 34px 32px;
    }
}

/* Promial Theme v1.5.8 - wider editable product quantity control */
.promial-theme-quantity-cart {
    grid-template-columns: 38px 58px 38px !important;
    width: 142px !important;
    min-width: 142px !important;
    min-height: 42px !important;
    padding: 4px !important;
}

.promial-theme-quantity-button {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    padding: 0 !important;
}

.promial-theme-quantity-value {
    width: 58px !important;
    min-width: 58px !important;
    height: 34px !important;
    min-height: 34px !important;
    padding: 0 6px !important;
    border: 0 !important;
    outline: 0 !important;
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 34px !important;
    text-align: center !important;
    appearance: textfield !important;
    -moz-appearance: textfield !important;
    font-variant-numeric: tabular-nums !important;
    box-shadow: none !important;
}

.promial-theme-quantity-value:focus {
    background: #fff !important;
    border-radius: 999px !important;
    box-shadow: inset 0 0 0 1px #cbd5e1 !important;
}

.promial-theme-quantity-value::-webkit-outer-spin-button,
.promial-theme-quantity-value::-webkit-inner-spin-button {
    margin: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

@media (max-width: 520px) {
    .promial-theme-quantity-cart {
        grid-template-columns: 36px 54px 36px !important;
        width: 134px !important;
        min-width: 134px !important;
    }

    .promial-theme-quantity-value {
        width: 54px !important;
        min-width: 54px !important;
    }
}

/* Promial Theme v1.6.9 - latest posts layout + product wishlist cleanup */
.promial-theme-card-media,
.promial-theme-list-card-media,
.promial-theme-product-archive-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #e5e7eb;
}

.promial-theme-card-media .promial-theme-card-image,
.promial-theme-list-card-media .promial-theme-list-card-image,
.promial-theme-product-archive-media .promial-theme-product-archive-image {
    display: block;
    width: 100%;
    height: 100%;
}

.promial-theme-card-media {
    aspect-ratio: 1.35 / 1;
}

.promial-theme-card-media .promial-theme-card-image {
    aspect-ratio: auto;
}

.promial-theme-list-card-media {
    min-height: 168px;
}

.promial-theme-list-card-media .promial-theme-list-card-image,
.promial-theme-list-card-media .promial-theme-list-card-image img,
.promial-theme-list-card-media .promial-theme-list-card-placeholder {
    min-height: 168px;
}

.promial-theme-shop-list .promial-theme-product-archive-media {
    min-height: 260px;
}

.promial-theme-shop-grid .promial-theme-product-archive-media,
.promial-theme-product-archive-media {
    aspect-ratio: 1 / 1;
}

.promial-theme-product-archive-media .promial-theme-product-archive-image {
    aspect-ratio: auto;
}

.promial-theme-list-card-image img,
.promial-theme-card-image img,
.promial-theme-product-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 620px) {
    .promial-theme-list-card-media,
    .promial-theme-list-card-media .promial-theme-list-card-image,
    .promial-theme-list-card-media .promial-theme-list-card-image img,
    .promial-theme-list-card-media .promial-theme-list-card-placeholder {
        min-height: 210px;
    }
}

.promial-theme-product-archive-media > button.promial-theme-wishlist-toggle {
    all: unset !important;
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    bottom: auto !important;
    z-index: 30 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,.88) !important;
    border-radius: 5px !important;
    background: rgba(255,255,255,.96) !important;
    color: #e11d48 !important;
    box-shadow: 0 12px 26px rgba(15,23,42,.20) !important;
    cursor: pointer !important;
    text-align: center !important;
    line-height: 1 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-sizing: border-box !important;
    transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease !important;
}

.promial-theme-product-archive-media > button.promial-theme-wishlist-toggle::before {
    content: "♡" !important;
    display: block !important;
    color: currentColor !important;
    font-size: 25px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    transform: translateY(-1px) !important;
}

.promial-theme-product-archive-media > button.promial-theme-wishlist-toggle svg {
    display: none !important;
}

.promial-theme-product-archive-media > button.promial-theme-wishlist-toggle:hover {
    transform: translateY(-1px) !important;
    background: #fff !important;
    border-color: #fecdd3 !important;
    color: #e11d48 !important;
}

.promial-theme-product-archive-media > button.promial-theme-wishlist-toggle.is-active {
    background: #e11d48 !important;
    border-color: #e11d48 !important;
    color: #fff !important;
}

.promial-theme-product-archive-media > button.promial-theme-wishlist-toggle.is-active::before {
    content: "♥" !important;
}

/* Promial Theme v1.6.4 - WooCommerce single product polish */
.promial-theme-product-cart .promial-theme-single-quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.promial-theme-product-cart .promial-theme-single-quantity-cart {
    margin: 0;
}

.promial-theme-product-details-card .woocommerce-tabs ul.tabs,
.promial-theme-product-details-card .woocommerce-tabs ul.tabs li,
.promial-theme-product-details-card .woocommerce-tabs ul.tabs li.active,
.promial-theme-product-details-card .woocommerce-tabs ul.tabs li::marker {
    list-style: none !important;
}

.promial-theme-product-details-card .woocommerce-tabs ul.tabs li {
    display: inline-flex !important;
}

.promial-theme-product-details-card .woocommerce-tabs .woocommerce-Tabs-panel > h2:first-child,
.promial-theme-product-details-card .woocommerce-tabs .woocommerce-Tabs-panel--description > h2:first-child {
    display: none !important;
}

.promial-theme-product-gallery .flex-direction-nav,
.promial-theme-product-gallery .flex-direction-nav li,
.promial-theme-product-gallery .flex-direction-nav a {
    display: none !important;
    list-style: none !important;
}

.promial-theme-product-related-title {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.promial-theme-product-related .promial-theme-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promial-theme-product-related .promial-theme-product-archive-card {
    min-height: 100%;
}

.woocommerce .promial-theme-product-archive-button .promial-theme-view-product-button,
.promial-theme-product-archive-button .promial-theme-view-product-button {
    min-height: 38px;
    border-radius: var(--promial-theme-radius);
}

@media (max-width: 760px) {
    .promial-theme-product-related .promial-theme-shop-grid {
        grid-template-columns: 1fr;
    }
}


/* Promial Theme v1.6.15 — Structural Layout Reset
   Stable Astra-like document flow without JavaScript footer hacks. */
html {
    min-height: 100%;
    height: auto;
}

body.promial-theme-body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

@supports (min-height: 100dvh) {
    body.promial-theme-body {
        min-height: 100dvh;
    }
}

body.promial-theme-body > .promial-theme-site-shell {
    width: 100%;
    min-height: 0 !important;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

body.promial-theme-body .promial-theme-header,
body.promial-theme-body .promial-theme-footer-widgets,
body.promial-theme-body .promial-theme-footer,
body.promial-theme-body .elementor-location-footer,
body.promial-theme-body .ekit-template-content-footer,
body.promial-theme-body .elementskit-template-content-footer,
body.promial-theme-body .elementskit-footer-builder,
body.promial-theme-body [data-elementor-type="footer"],
body.promial-theme-body .elementor[data-elementor-type="footer"],
body.promial-theme-body footer[role="contentinfo"] {
    flex: 0 0 auto;
    flex-shrink: 0;
}

body.promial-theme-body .promial-theme-main,
body.promial-theme-body #primary {
    flex: 1 0 auto;
    width: 100%;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
}

body.promial-theme-body > .elementor-location-footer,
body.promial-theme-body > .ekit-template-content-footer,
body.promial-theme-body > .elementskit-template-content-footer,
body.promial-theme-body > .elementskit-footer-builder,
body.promial-theme-body > [data-elementor-type="footer"],
body.promial-theme-body > .elementor[data-elementor-type="footer"] {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Keep business pages in the same controlled content width used before the footer experiments. */
body.promial-theme-business-single .promial-theme-promial-business-content,
body.single-promial_business .promial-theme-promial-business-content,
body.single-promial_place .promial-theme-promial-business-content,
body.promial-theme-business-single .promial-business-page,
body.single-promial_business .promial-business-page,
body.single-promial_place .promial-business-page,
body.promial-theme-business-single .promial-theme-main > .promial-business-page,
body.single-promial_business .promial-theme-main > .promial-business-page,
body.single-promial_place .promial-theme-main > .promial-business-page {
    width: min(var(--promial-theme-container), calc(100% - 40px));
    max-width: var(--promial-theme-container);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

body.promial-theme-business-single .promial-business-page > *,
body.single-promial_business .promial-business-page > *,
body.single-promial_place .promial-business-page > * {
    max-width: 100%;
}

@media (max-width: 900px) {
    body.promial-theme-business-single .promial-theme-promial-business-content,
    body.single-promial_business .promial-theme-promial-business-content,
    body.single-promial_place .promial-theme-promial-business-content,
    body.promial-theme-business-single .promial-business-page,
    body.single-promial_business .promial-business-page,
    body.single-promial_place .promial-business-page,
    body.promial-theme-business-single .promial-theme-main > .promial-business-page,
    body.single-promial_business .promial-theme-main > .promial-business-page,
    body.single-promial_place .promial-theme-main > .promial-business-page {
        width: min(100% - 24px, var(--promial-theme-container));
    }
}

/* Promial Theme v1.6.16 — Viewport Main Height Footer Fix */
:root {
    --promial-theme-viewport-height: 100vh;
    --promial-theme-header-height: 0px;
    --promial-theme-footer-height: 0px;
    --promial-theme-adminbar-height: 0px;
    --promial-theme-main-min-height: auto;
}

body.promial-theme-body {
    min-height: var(--promial-theme-viewport-height, 100vh);
    display: block;
    overflow-x: hidden;
}

body.promial-theme-body > .promial-theme-site-shell {
    width: 100%;
    min-height: 0 !important;
    display: block !important;
    flex: none !important;
}

body.promial-theme-body .promial-theme-main,
body.promial-theme-body #primary {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    min-height: var(
        --promial-theme-main-min-height,
        calc(
            var(--promial-theme-viewport-height, 100vh)
            - var(--promial-theme-header-height, 0px)
            - var(--promial-theme-footer-height, 0px)
            - var(--promial-theme-adminbar-height, 0px)
        )
    );
}

body.promial-theme-body .promial-theme-footer-widgets,
body.promial-theme-body .promial-theme-footer,
body.promial-theme-body .elementor-location-footer,
body.promial-theme-body .ekit-template-content-footer,
body.promial-theme-body .elementskit-template-content-footer,
body.promial-theme-body .elementskit-footer-builder,
body.promial-theme-body [data-elementor-type="footer"],
body.promial-theme-body .elementor[data-elementor-type="footer"],
body.promial-theme-body footer[role="contentinfo"] {
    width: 100%;
    flex: none !important;
    flex-shrink: 0 !important;
}

body.promial-theme-business-single .promial-theme-promial-business-content,
body.single-promial_business .promial-theme-promial-business-content,
body.single-promial_place .promial-theme-promial-business-content,
body.promial-theme-business-single .promial-business-page,
body.single-promial_business .promial-business-page,
body.single-promial_place .promial-business-page,
body.promial-theme-business-single .promial-theme-main > .promial-business-page,
body.single-promial_business .promial-theme-main > .promial-business-page,
body.single-promial_place .promial-theme-main > .promial-business-page {
    width: min(var(--promial-theme-container), calc(100% - 40px));
    max-width: var(--promial-theme-container);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    body.promial-theme-business-single .promial-theme-promial-business-content,
    body.single-promial_business .promial-theme-promial-business-content,
    body.single-promial_place .promial-theme-promial-business-content,
    body.promial-theme-business-single .promial-business-page,
    body.single-promial_business .promial-business-page,
    body.single-promial_place .promial-business-page,
    body.promial-theme-business-single .promial-theme-main > .promial-business-page,
    body.single-promial_business .promial-theme-main > .promial-business-page,
    body.single-promial_place .promial-theme-main > .promial-business-page {
        width: min(100% - 24px, var(--promial-theme-container));
    }
}


/* Promial Theme v1.6.17 — Main 100vh Footer Fallback
   Deliberately ignores footer height to force short pages to reserve at least one viewport for content.
   This is a conservative fallback for external ElementsKit footers that are injected outside the theme flow. */
body.promial-theme-body {
    min-height: 100vh !important;
    display: block !important;
    overflow-x: hidden;
}

body.promial-theme-body > .promial-theme-site-shell {
    width: 100%;
    min-height: auto !important;
    display: block !important;
    flex: none !important;
}

body.promial-theme-body .promial-theme-main,
body.promial-theme-body #primary {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    min-height: 100vh !important;
}

@supports (min-height: 100dvh) {
    body.promial-theme-body {
        min-height: 100dvh !important;
    }

    body.promial-theme-body .promial-theme-main,
    body.promial-theme-body #primary {
        min-height: 100dvh !important;
    }
}

body.promial-theme-body .promial-theme-footer-widgets,
body.promial-theme-body .promial-theme-footer,
body.promial-theme-body .elementor-location-footer,
body.promial-theme-body .ekit-template-content-footer,
body.promial-theme-body .elementskit-template-content-footer,
body.promial-theme-body .elementskit-footer-builder,
body.promial-theme-body [data-elementor-type="footer"],
body.promial-theme-body .elementor[data-elementor-type="footer"],
body.promial-theme-body footer[role="contentinfo"] {
    width: 100%;
    flex: none !important;
    flex-shrink: 0 !important;
}

body.promial-theme-business-single .promial-theme-promial-business-content,
body.single-promial_business .promial-theme-promial-business-content,
body.single-promial_place .promial-theme-promial-business-content,
body.promial-theme-business-single .promial-business-page,
body.single-promial_business .promial-business-page,
body.single-promial_place .promial-business-page,
body.promial-theme-business-single .promial-theme-main > .promial-business-page,
body.single-promial_business .promial-theme-main > .promial-business-page,
body.single-promial_place .promial-theme-main > .promial-business-page {
    width: min(var(--promial-theme-container), calc(100% - 40px));
    max-width: var(--promial-theme-container);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    body.promial-theme-business-single .promial-theme-promial-business-content,
    body.single-promial_business .promial-theme-promial-business-content,
    body.single-promial_place .promial-theme-promial-business-content,
    body.promial-theme-business-single .promial-business-page,
    body.single-promial_business .promial-business-page,
    body.single-promial_place .promial-business-page,
    body.promial-theme-business-single .promial-theme-main > .promial-business-page,
    body.single-promial_business .promial-theme-main > .promial-business-page,
    body.single-promial_place .promial-theme-main > .promial-business-page {
        width: min(100% - 24px, var(--promial-theme-container));
    }
}


/* Promial Theme v1.6.28 — Header dropdown / wishlist isolation fix */
body .promial-theme-header,
body .elementor-location-header,
body [data-elementor-type="header"],
body .elementor[data-elementor-type="header"],
body .ekit-template-content-header,
body .elementskit-template-content-header,
body .elementskit-header-builder{
    position:relative!important;
    z-index:2147482000!important;
    overflow:visible!important;
    isolation:isolate!important;
}
body .promial-theme-header .promial-theme-container,
body .promial-theme-header .promial-theme-header-inner,
body .elementor-location-header .elementor-section,
body .elementor-location-header .elementor-container,
body .elementor-location-header .elementor-widget-wrap,
body [data-elementor-type="header"] .elementor-section,
body [data-elementor-type="header"] .elementor-container,
body [data-elementor-type="header"] .elementor-widget-wrap,
body .ekit-template-content-header,
body .elementskit-template-content-header{
    overflow:visible!important;
}
body .promial-theme-menu .sub-menu{
    z-index:2147482600!important;
}
body .promial-header-actions,
body .promial-header-add-menu,
body .promial-header-account-menu,
body .promial-header-language-switcher,
body .promial-theme-header .promial-header-actions,
body .elementor-location-header .promial-header-actions,
body [data-elementor-type="header"] .promial-header-actions{
    position:relative!important;
    z-index:2147482700!important;
    overflow:visible!important;
    isolation:isolate!important;
}
body .promial-header-add-dropdown,
body .promial-header-account-dropdown,
body .promial-header-language-dropdown,
body .promial-header-actions .promial-header-add-dropdown,
body .promial-header-actions .promial-header-account-dropdown,
body .elementor-location-header .promial-header-add-dropdown,
body .elementor-location-header .promial-header-account-dropdown,
body [data-elementor-type="header"] .promial-header-add-dropdown,
body [data-elementor-type="header"] .promial-header-account-dropdown{
    position:absolute!important;
    z-index:2147483000!important;
    overflow:visible!important;
    isolation:isolate!important;
    transform:translateZ(0)!important;
    backface-visibility:hidden!important;
    contain:none!important;
}
body .promial-header-add-menu.is-open,
body .promial-header-account-menu.is-open,
body .promial-header-add-menu[aria-expanded="true"],
body .promial-header-account-menu[aria-expanded="true"]{
    z-index:2147483000!important;
}
body .promial-header-add-menu.is-open .promial-header-add-dropdown,
body .promial-header-account-menu.is-open .promial-header-account-dropdown,
body .promial-header-add-dropdown[aria-hidden="false"],
body .promial-header-account-dropdown[aria-hidden="false"]{
    display:block!important;
    visibility:visible!important;
    opacity:1!important;
    pointer-events:auto!important;
}
body .promial-header-add-dropdown > *,
body .promial-header-account-dropdown > *,
body .promial-header-add-dropdown a,
body .promial-header-account-dropdown a{
    position:relative!important;
    z-index:2147483001!important;
}
body .promial-header-add-dropdown .promial-wishlist-toggle,
body .promial-header-account-dropdown .promial-wishlist-toggle,
body .promial-header-add-dropdown .promial-post-wishlist-toggle,
body .promial-header-account-dropdown .promial-post-wishlist-toggle,
body .promial-header-add-dropdown .promial-product-wishlist-toggle,
body .promial-header-account-dropdown .promial-product-wishlist-toggle,
body .promial-header-add-dropdown [data-promial-wishlist-toggle],
body .promial-header-account-dropdown [data-promial-wishlist-toggle],
body .promial-header-add-dropdown [data-promial-post-wishlist-toggle],
body .promial-header-account-dropdown [data-promial-post-wishlist-toggle],
body .promial-header-add-dropdown [data-promial-product-wishlist-toggle],
body .promial-header-account-dropdown [data-promial-product-wishlist-toggle],
body .promial-header-actions .promial-header-add-dropdown button[class*="wishlist"],
body .promial-header-actions .promial-header-account-dropdown button[class*="wishlist"],
body .promial-header-actions .promial-header-add-dropdown a[class*="wishlist"],
body .promial-header-actions .promial-header-account-dropdown a[class*="wishlist"]{
    display:none!important;
    visibility:hidden!important;
    opacity:0!important;
    pointer-events:none!important;
}
body .promial-header-actions > .promial-wishlist-toggle,
body .promial-header-actions > [data-promial-wishlist-toggle],
body .promial-header-actions > a.promial-header-action-wishlist,
body .promial-header-actions > button.promial-header-action-wishlist,
body .promial-header-actions > .promial-header-action.promial-header-action-wishlist{
    display:inline-flex!important;
    visibility:visible!important;
    opacity:1!important;
    pointer-events:auto!important;
}
body .promial-card .promial-wishlist-toggle,
body .promial-card-modern .promial-wishlist-toggle,
body .promial-listing-card .promial-wishlist-toggle,
body .promial-marketplace-card .promial-wishlist-toggle,
body article.post.promial-has-auto-wishlist > .promial-post-wishlist-toggle,
body .elementor-post.promial-has-auto-wishlist > .promial-post-wishlist-toggle,
body .woocommerce ul.products li.product > .promial-product-wishlist-toggle,
body .woocommerce-page ul.products li.product > .promial-product-wishlist-toggle{
    z-index:40!important;
}
body .promial-business-filter-card,
body .promial-filter-card,
body .promial-search-card,
body .promial-modern-select,
body .promial-custom-select,
body .promial-select-wrap,
body .promial-directory-filter,
body [data-promial-filter],
body [data-promial-select]{
    overflow:visible!important;
}
body .promial-modern-select.is-open,
body .promial-custom-select.is-open,
body .promial-select-wrap.is-open,
body [data-promial-select].is-open,
body [data-promial-filter] .is-open{
    z-index:2147481000!important;
}
body .promial-modern-select.is-open .promial-select-dropdown,
body .promial-custom-select.is-open .promial-select-dropdown,
body .promial-select-wrap.is-open .promial-select-dropdown,
body .promial-select-dropdown,
body .promial-dropdown-menu,
body [data-promial-select-dropdown]{
    z-index:2147481100!important;
}
@media(max-width:760px){
    body .promial-header-add-dropdown,
    body .promial-header-account-dropdown{
        max-width:calc(100vw - 28px)!important;
    }
}


/* Promial Theme v1.6.29 — Header dropdown top layer above plugin overlays */
body .promial-theme-header,
body .promial-site-header,
body .site-header,
body header,
body .elementor-location-header,
body .elementor-sticky,
body .elementor-section.elementor-sticky,
body .elementor-widget-promial_header_actions,
body .promial-header-actions,
body .promial-header-add-menu,
body .promial-header-account-menu{
  position:relative!important;
  z-index:2147482000!important;
  overflow:visible!important;
  transform:none!important;
  isolation:isolate!important;
}
body .promial-header-add-dropdown,
body .promial-header-account-dropdown,
body .promial-header-language-dropdown,
body .promial-header-dropdown,
body .elementor-nav-menu--dropdown,
body .elementor-nav-menu .sub-menu{
  position:absolute!important;
  z-index:2147483000!important;
  overflow:visible!important;
}
body .promial-header-add-menu.is-open,
body .promial-header-account-menu.is-open{
  z-index:2147483000!important;
}
body .elementor-location-header .elementor-container,
body .elementor-location-header .elementor-column,
body .elementor-location-header .elementor-widget-wrap,
body .elementor-location-header .e-con,
body .elementor-location-header .e-con-inner{
  overflow:visible!important;
}


/* Promial Theme v1.6.30 — Header dropdown fixed layer and clickability fix */
body .promial-theme-main,
body #primary,
body .site-main,
body main,
body .promial-theme-page-header,
body .promial-theme-single-header,
body .promial-theme-category-header,
body .elementor-location-single,
body .elementor-location-archive,
body .elementor-location-main,
body [data-elementor-type="single"],
body [data-elementor-type="archive"]{
  position:relative!important;
  z-index:1!important;
  isolation:auto!important;
}
body .promial-theme-header,
body .promial-site-header,
body .site-header,
body header,
body .elementor-location-header,
body [data-elementor-type="header"],
body .elementor[data-elementor-type="header"],
body .ekit-template-content-header,
body .elementskit-template-content-header,
body .elementskit-header-builder{
  position:sticky!important;
  z-index:1000000!important;
  overflow:visible!important;
  transform:none!important;
  contain:none!important;
  isolation:auto!important;
}
body .promial-theme-navigation,
body .promial-theme-menu,
body .promial-theme-menu li,
body .elementor-location-header .elementor-section,
body .elementor-location-header .elementor-container,
body .elementor-location-header .elementor-column,
body .elementor-location-header .elementor-widget-wrap,
body .elementor-location-header .e-con,
body .elementor-location-header .e-con-inner,
body [data-elementor-type="header"] .elementor-section,
body [data-elementor-type="header"] .elementor-container,
body [data-elementor-type="header"] .elementor-column,
body [data-elementor-type="header"] .elementor-widget-wrap,
body [data-elementor-type="header"] .e-con,
body [data-elementor-type="header"] .e-con-inner{
  overflow:visible!important;
  transform:none!important;
  contain:none!important;
}
body .promial-theme-menu .sub-menu,
body .promial-header-add-dropdown,
body .promial-header-account-dropdown,
body .promial-header-language-dropdown,
body .promial-header-dropdown,
body .elementor-nav-menu--dropdown,
body .elementor-nav-menu .sub-menu{
  z-index:1000010!important;
  pointer-events:auto!important;
  contain:none!important;
}
body .promial-theme-menu .sub-menu.promial-theme-dropdown-fixed,
body .promial-header-add-dropdown.promial-theme-dropdown-fixed,
body .promial-header-account-dropdown.promial-theme-dropdown-fixed,
body .promial-header-language-dropdown.promial-theme-dropdown-fixed,
body .promial-header-dropdown.promial-theme-dropdown-fixed,
body .elementor-nav-menu--dropdown.promial-theme-dropdown-fixed,
body .elementor-nav-menu .sub-menu.promial-theme-dropdown-fixed{
  position:fixed!important;
  top:var(--promial-theme-dropdown-top, 80px)!important;
  left:var(--promial-theme-dropdown-left, 20px)!important;
  right:auto!important;
  bottom:auto!important;
  z-index:1000010!important;
  max-height:calc(100vh - var(--promial-theme-dropdown-top, 80px) - 16px)!important;
  min-width:var(--promial-theme-dropdown-min-width, 190px)!important;
  overflow-y:auto!important;
  overflow-x:hidden!important;
  pointer-events:auto!important;
  transform:none!important;
  visibility:visible!important;
  opacity:1!important;
}
body .promial-header-add-dropdown.promial-theme-dropdown-fixed,
body .promial-header-account-dropdown.promial-theme-dropdown-fixed,
body .promial-header-language-dropdown.promial-theme-dropdown-fixed{
  display:block!important;
}
body .promial-header-language-dropdown.promial-theme-dropdown-fixed a,
body .promial-header-language-dropdown.promial-theme-dropdown-fixed button,
body .promial-header-language-dropdown.promial-theme-dropdown-fixed [role="menuitem"],
body .promial-header-add-dropdown.promial-theme-dropdown-fixed a,
body .promial-header-account-dropdown.promial-theme-dropdown-fixed a{
  pointer-events:auto!important;
  cursor:pointer!important;
}
body .promial-searchbar,
body .promial-searchbar-wrapper,
body .promial-searchbar-results,
body [data-promial-searchbar],
body .promial-searchbar-results-wrap{
  z-index:900000!important;
}
body.promial-theme-header-dropdown-open .promial-searchbar-results,
body.promial-theme-header-dropdown-open .promial-searchbar-results-wrap{
  pointer-events:none!important;
}


/* Promial Theme v1.6.31 — WordPress admin bar top layer fix */
html body.admin-bar #wpadminbar,
html body.admin-bar #wpadminbar *,
html body.admin-bar #wpadminbar .ab-top-menu,
html body.admin-bar #wpadminbar .ab-top-secondary,
html body.admin-bar #wpadminbar .quicklinks,
html body.admin-bar #wpadminbar .menupop,
html body.admin-bar #wpadminbar .ab-sub-wrapper,
html body.admin-bar #wpadminbar .ab-submenu,
html body.admin-bar #wpadminbar .ab-item{
  z-index:2147483647!important;
}
html body.admin-bar #wpadminbar{
  position:fixed!important;
  overflow:visible!important;
  transform:none!important;
  contain:none!important;
  isolation:isolate!important;
}
html body.admin-bar #wpadminbar .ab-sub-wrapper,
html body.admin-bar #wpadminbar .ab-submenu{
  position:absolute!important;
  display:block;
  overflow:visible!important;
  pointer-events:auto!important;
}
html body.admin-bar #wpadminbar .menupop:not(:hover) > .ab-sub-wrapper,
html body.admin-bar #wpadminbar .menupop:not(.hover) > .ab-sub-wrapper{
  display:none;
}
html body.admin-bar #wpadminbar .menupop:hover > .ab-sub-wrapper,
html body.admin-bar #wpadminbar .menupop.hover > .ab-sub-wrapper{
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
}


/* Promial Theme v1.6.32 — WordPress admin bar submenu opacity/background fix */
html body.admin-bar #wpadminbar,
html body.admin-bar #wpadminbar .ab-top-menu,
html body.admin-bar #wpadminbar .ab-top-secondary,
html body.admin-bar #wpadminbar .quicklinks{
  opacity:1!important;
  filter:none!important;
  backdrop-filter:none!important;
  mix-blend-mode:normal!important;
}
html body.admin-bar #wpadminbar .ab-sub-wrapper,
html body.admin-bar #wpadminbar .ab-submenu,
html body.admin-bar #wpadminbar .ab-submenu li,
html body.admin-bar #wpadminbar .ab-submenu li a,
html body.admin-bar #wpadminbar .menupop .ab-sub-wrapper{
  opacity:1!important;
  filter:none!important;
  backdrop-filter:none!important;
  mix-blend-mode:normal!important;
  box-shadow:none!important;
}
html body.admin-bar #wpadminbar .ab-sub-wrapper,
html body.admin-bar #wpadminbar .menupop .ab-sub-wrapper{
  background:#2c3338!important;
  border:0!important;
}
html body.admin-bar #wpadminbar .ab-submenu{
  background:#2c3338!important;
}
html body.admin-bar #wpadminbar .ab-submenu .ab-item,
html body.admin-bar #wpadminbar .ab-submenu a,
html body.admin-bar #wpadminbar .ab-submenu li,
html body.admin-bar #wpadminbar .ab-submenu li:hover,
html body.admin-bar #wpadminbar .ab-submenu li.hover,
html body.admin-bar #wpadminbar .ab-submenu li.current{
  background:#2c3338!important;
  color:#c3c4c7!important;
  opacity:1!important;
}
html body.admin-bar #wpadminbar .ab-submenu .ab-item:hover,
html body.admin-bar #wpadminbar .ab-submenu a:hover,
html body.admin-bar #wpadminbar .ab-submenu li:hover > .ab-item,
html body.admin-bar #wpadminbar .ab-submenu li.hover > .ab-item{
  background:#1d2327!important;
  color:#72aee6!important;
  opacity:1!important;
}
html body.admin-bar #wpadminbar .ab-sub-wrapper:before,
html body.admin-bar #wpadminbar .ab-sub-wrapper:after,
html body.admin-bar #wpadminbar .ab-submenu:before,
html body.admin-bar #wpadminbar .ab-submenu:after{
  opacity:1!important;
  filter:none!important;
  backdrop-filter:none!important;
  mix-blend-mode:normal!important;
}

/* Promial Theme v1.6.33 — Native article wishlist placement */
.promial-theme-post-wishlist-host,
.promial-theme-list-card-media,
.promial-theme-card-media,
.promial-theme-related-media,
.promial-theme-single-modern-image{
    position:relative!important;
}

.promial-theme-post-wishlist-toggle{
    position:absolute!important;
    top:14px!important;
    right:14px!important;
    left:auto!important;
    bottom:auto!important;
    z-index:60!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:44px!important;
    height:44px!important;
    min-width:44px!important;
    min-height:44px!important;
    padding:0!important;
    margin:0!important;
    border:1px solid var(--promial-border,#e2e8f0)!important;
    border-radius:5px!important;
    background:var(--promial-surface,#fff)!important;
    color:var(--promial-danger,#dc2626)!important;
    box-shadow:0 12px 30px rgba(15,23,42,.14)!important;
    cursor:pointer!important;
    line-height:1!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
}

.promial-theme-post-wishlist-toggle:hover,
.promial-theme-post-wishlist-toggle:focus-visible{
    border-color:var(--promial-danger,#dc2626)!important;
    color:var(--promial-danger,#dc2626)!important;
}

.promial-theme-post-wishlist-toggle svg{
    display:block!important;
    width:21px!important;
    height:21px!important;
    min-width:21px!important;
    min-height:21px!important;
    fill:none!important;
    stroke:currentColor!important;
    stroke-width:2.25!important;
}

.promial-theme-post-wishlist-toggle.is-active,
.promial-theme-post-wishlist-toggle[aria-pressed="true"]{
    background:var(--promial-danger,#dc2626)!important;
    border-color:var(--promial-danger,#dc2626)!important;
    color:#fff!important;
}

.promial-theme-post-wishlist-toggle.is-active svg,
.promial-theme-post-wishlist-toggle[aria-pressed="true"] svg{
    fill:#fff!important;
    stroke:#fff!important;
}

.promial-theme-list-card-media > .promial-theme-post-wishlist-toggle,
.promial-theme-card-media > .promial-theme-post-wishlist-toggle,
.promial-theme-related-media > .promial-theme-post-wishlist-toggle,
.promial-theme-single-modern-image > .promial-theme-post-wishlist-toggle{
    display:inline-flex!important;
}

@media (max-width:760px){
    .promial-theme-post-wishlist-toggle{
        top:10px!important;
        right:10px!important;
        width:40px!important;
        height:40px!important;
        min-width:40px!important;
        min-height:40px!important;
    }
}

/* Promial Theme v1.6.34 — Force native article wishlist above legacy plugin hide rules */
body article.post .promial-theme-post-wishlist-host > .promial-theme-post-wishlist-toggle,
body article.post .promial-theme-post-wishlist-host > [data-promial-post-wishlist-toggle],
body .promial-theme-list-card .promial-theme-post-wishlist-host > .promial-theme-post-wishlist-toggle,
body .promial-theme-list-card .promial-theme-post-wishlist-host > [data-promial-post-wishlist-toggle],
body .promial-theme-card .promial-theme-post-wishlist-host > .promial-theme-post-wishlist-toggle,
body .promial-theme-card .promial-theme-post-wishlist-host > [data-promial-post-wishlist-toggle],
body .promial-theme-related-card .promial-theme-post-wishlist-host > .promial-theme-post-wishlist-toggle,
body .promial-theme-related-card .promial-theme-post-wishlist-host > [data-promial-post-wishlist-toggle],
body.single-post .promial-theme-single-modern-image.promial-theme-post-wishlist-host > .promial-theme-post-wishlist-toggle,
body.single-post .promial-theme-single-modern-image.promial-theme-post-wishlist-host > [data-promial-post-wishlist-toggle]{
    display:inline-flex!important;
    opacity:1!important;
    visibility:visible!important;
    pointer-events:auto!important;
    position:absolute!important;
    top:14px!important;
    right:14px!important;
    left:auto!important;
    bottom:auto!important;
    z-index:1005!important;
}


/* Promial Theme v1.6.35 — Native article wishlist interaction fix */
body [data-promial-post-wishlist-toggle].promial-theme-post-wishlist-toggle,
body .promial-theme-post-wishlist-host > [data-promial-post-wishlist-toggle],
body .promial-post-wishlist-host > [data-promial-post-wishlist-toggle]{
    pointer-events:auto!important;
    touch-action:manipulation!important;
    user-select:none!important;
    -webkit-user-select:none!important;
    cursor:pointer!important;
    z-index:2147483000!important;
    isolation:isolate!important;
}
body [data-promial-post-wishlist-toggle].promial-theme-post-wishlist-toggle svg,
body .promial-theme-post-wishlist-host > [data-promial-post-wishlist-toggle] svg,
body .promial-post-wishlist-host > [data-promial-post-wishlist-toggle] svg{
    pointer-events:none!important;
}

/* Promial Theme v1.6.36 — Mobile navigation color and stable footer document flow */
@media (max-width:760px) {
  .promial-theme-menu-toggle {
    color:#ffffff!important;
    background:#F97316!important;
    border-color:#F97316!important;
    box-shadow:0 8px 22px rgba(249,115,22,.24)!important;
  }
  .promial-theme-menu-toggle svg {
    color:#ffffff!important;
    stroke:#ffffff!important;
  }
  .promial-theme-navigation {
    padding:8px!important;
  }
  .promial-theme-menu {
    gap:2px!important;
  }
  .promial-theme-menu a {
    min-height:38px!important;
    padding:8px 10px!important;
    font-size:15px!important;
    line-height:1.2!important;
  }
  .promial-theme-menu .sub-menu {
    margin:3px 0!important;
    padding:4px!important;
    border:1px solid var(--promial-theme-border)!important;
    background:#f8fafc!important;
    border-radius:5px!important;
  }
}

/* Final footer layout authority: short pages push the footer to the viewport bottom,
   long pages keep the footer after content. This intentionally overrides the old
   v1.6.16/v1.6.17 experimental 100vh main-height rules. */
html {
  min-height:100%!important;
}
body.promial-theme-body {
  min-height:100vh!important;
  margin:0!important;
  display:flex!important;
  flex-direction:column!important;
  overflow-x:hidden!important;
}
@supports (min-height:100dvh) {
  body.promial-theme-body {
    min-height:100dvh!important;
  }
}
body.promial-theme-body > .promial-theme-site-shell {
  width:100%!important;
  min-height:0!important;
  flex:1 0 auto!important;
  display:flex!important;
  flex-direction:column!important;
}
body.promial-theme-body .promial-theme-main,
body.promial-theme-body #primary {
  width:100%!important;
  min-width:0!important;
  min-height:0!important;
  flex:1 0 auto!important;
  box-sizing:border-box!important;
}
body.promial-theme-body .promial-theme-footer-widgets,
body.promial-theme-body .promial-theme-footer,
body.promial-theme-body .elementor-location-footer,
body.promial-theme-body .ekit-template-content-footer,
body.promial-theme-body .elementskit-template-content-footer,
body.promial-theme-body .elementskit-footer-builder,
body.promial-theme-body [data-elementor-type="footer"],
body.promial-theme-body .elementor[data-elementor-type="footer"],
body.promial-theme-body footer[role="contentinfo"] {
  flex:0 0 auto!important;
  flex-shrink:0!important;
  margin-top:0!important;
}
body.promial-theme-body > .elementor-location-footer,
body.promial-theme-body > .ekit-template-content-footer,
body.promial-theme-body > .elementskit-template-content-footer,
body.promial-theme-body > .elementskit-footer-builder,
body.promial-theme-body > [data-elementor-type="footer"],
body.promial-theme-body > .elementor[data-elementor-type="footer"] {
  width:100%!important;
  flex:0 0 auto!important;
}


/* Promial Theme v1.6.42 — Native Ultimate Addons / HFE sticky footer contract.
   HFE is rendered by header.php/footer.php inside .promial-theme-site-shell.
   This block intentionally has final authority over legacy footer experiments. */
html {
    min-height:100%!important;
    height:auto!important;
}
body.promial-theme-body {
    min-height:100vh!important;
    height:auto!important;
    margin:0!important;
    display:block!important;
    overflow-x:hidden!important;
}
body.promial-theme-body > .promial-theme-site-shell {
    width:100%!important;
    min-width:0!important;
    min-height:100vh!important;
    height:auto!important;
    margin:0!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:stretch!important;
    flex:none!important;
    box-sizing:border-box!important;
}
@supports (min-height:100dvh) {
    body.promial-theme-body,
    body.promial-theme-body > .promial-theme-site-shell {
        min-height:100dvh!important;
    }
}
body.admin-bar.promial-theme-body > .promial-theme-site-shell {
    min-height:calc(100vh - 32px)!important;
}
@supports (min-height:100dvh) {
    body.admin-bar.promial-theme-body > .promial-theme-site-shell {
        min-height:calc(100dvh - 32px)!important;
    }
}
@media screen and (max-width:782px) {
    body.admin-bar.promial-theme-body > .promial-theme-site-shell {
        min-height:calc(100vh - 46px)!important;
    }
    @supports (min-height:100dvh) {
        body.admin-bar.promial-theme-body > .promial-theme-site-shell {
            min-height:calc(100dvh - 46px)!important;
        }
    }
}
body.promial-theme-body > .promial-theme-site-shell > .promial-theme-main,
body.promial-theme-body > .promial-theme-site-shell > #primary {
    width:100%!important;
    min-width:0!important;
    min-height:0!important;
    height:auto!important;
    flex:1 0 auto!important;
    box-sizing:border-box!important;
}
body.promial-theme-body > .promial-theme-site-shell > header#masthead,
body.promial-theme-body > .promial-theme-site-shell > .promial-theme-header,
body.promial-theme-body > .promial-theme-site-shell > .hfe-before-footer-wrap,
body.promial-theme-body > .promial-theme-site-shell > footer#colophon,
body.promial-theme-body > .promial-theme-site-shell > .promial-theme-footer-widgets,
body.promial-theme-body > .promial-theme-site-shell > .promial-theme-footer {
    width:100%!important;
    min-width:0!important;
    flex:0 0 auto!important;
    flex-shrink:0!important;
    box-sizing:border-box!important;
}
body.promial-theme-body > .promial-theme-site-shell > footer#colophon,
body.promial-theme-body > .promial-theme-site-shell > .promial-theme-footer {
    margin-top:auto!important;
}
body.promial-theme-body > .promial-theme-site-shell > footer#colophon > .footer-width-fixer,
body.promial-theme-body > .promial-theme-site-shell > .hfe-before-footer-wrap > .footer-width-fixer {
    width:100%!important;
    max-width:none!important;
    margin:0!important;
    box-sizing:border-box!important;
}
body.ehf-footer.promial-theme-body > footer#colophon,
body.ehf-footer.promial-theme-body > .footer-width-fixer,
body.ehf-footer.promial-theme-body > .elementor-location-footer {
    display:none!important;
}

/* Promial Theme v1.6.49 — Header Search Portal contract */
html body [data-promial-header-search-portal][hidden]{
  display:none!important;
  visibility:hidden!important;
  opacity:0!important;
  pointer-events:none!important;
}
html body [data-promial-header-search-portal]:not([hidden]){
  display:block!important;
  visibility:visible!important;
  opacity:1!important;
  pointer-events:auto!important;
}
html body [data-promial-header-search-portal]{
  position:fixed!important;
  z-index:1000020!important;
  isolation:isolate!important;
  transform:none!important;
  contain:none!important;
  box-sizing:border-box!important;
}
