/* ═══════════════════════════════════════
   JeAuto — Frontend Styles
   ═══════════════════════════════════════ */

.jeauto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.jeauto-page-header {
    text-align: center;
}

.jeauto-page-title {
    display: inline-block;
    margin: 10px auto 15px;
    text-align: center;
    font-family: 'PF Bague Sans Pro';
    position: relative;
    font-size: 40px;
}

.jeauto-page-title:after {
    content: "";
    height: 12px;
    position: absolute;
    background: #00FFA7;
    left: 0;
    right: 0;
    bottom: 11px;
    z-index: -1;
}

/* ── Breadcrumb ── */
.jeauto-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.jeauto-breadcrumb a {
    color: #0073aa;
    text-decoration: none;
}

.jeauto-breadcrumb a:hover {
    text-decoration: underline;
}

/* ── Brands grid ── */
.jeauto-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.jeauto-brand-card {
    background: #fff;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jeauto-brand-card:hover {
    background: var(--color_banner_gray);
}

.jeauto-brand-logo img {
    max-width: 80px;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

.jeauto-brand-name {
    font-size: 16px;
    margin: 0;
    font-family: "PF Bague Sans Pro 50", sans-serif;
    display: none;
}

/* ═══════════════════════════════════════
   BRAND PAGE — Tabbed Layout
   ═══════════════════════════════════════ */

.jb-brand-page {
    --jb-accent: #00FFA7;
    --jb-accent-hover: #00d68f;
    --jb-dark: #1a1a1a;
    --jb-dark-lighter: #2a2a2a;
    --jb-text-on-dark: #fff;
    --jb-text-muted: #b0b0b0;
    --jb-radius: 6px;
    margin: 0;
    padding: 0;
}

/* ── Dark Header ── */
.jb-header {
    background: linear-gradient(90deg, #000 0.42%, #00FFA7 306.54%);
    color: var(--jb-text-on-dark);
    padding: 30px 0 0;
    border-radius: 12px;
}

.jb-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.jb-header__content {
    flex: 1;
    min-width: 0;
}

.jb-header__name {
    font-size: 45px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 20px;
    font-family: "PF Bague Sans Pro", sans-serif;
    color: #00FFA7;
}

.jb-header__info {
    display: flex;
    gap: 48px;
}

.jb-header__info-col {
    flex: 0 0 auto;
}

.jb-header__row {
    display: flex;
    gap: 6px;
    font-size: 14px;
    line-height: 1.5;
    flex-wrap: wrap;
    font-weight: 300;
    margin-bottom: 10px;
    break-inside: avoid;
}

.jb-header__label {
    font-weight: 700;
    white-space: nowrap;
}

.jb-header__row a {
    color: var(--jb-text-on-dark);
    text-decoration: none;
}

.jb-header__row a:hover {
    text-decoration: underline;
}

.jb-header__logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.jb-header__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ── Tab Bar ── */
.jb-tabs {
    background: #000;
    margin-top: 30px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.jb-tabs__inner {
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;

    @media (min-width: 768px) {
        justify-content: center;
        max-width: 1200px;
        overflow-x: auto;
    }
}
.jm-model-page .jb-tabs .jb-tabs__inner.jb-tabs__inner-scrollable{
    @media (max-width: 768px){
        overflow-x: auto;
        justify-content: center;
    }
}

.jb-tabs__inner::-webkit-scrollbar {
    display: none;
}

.jb-tab {
    background: none;
    border: none;
    color: #999;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 14px 24px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color .2s;
    font-family: "PF Bague Sans Pro 60", sans-serif;
}

.jb-tab:hover {
    color: #ddd;
}

.jb-tab.active {
    color: #fff;
}

.jb-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: var(--jb-accent);
    border-radius: 3px 3px 0 0;
}

.jb-tab--mobile-only {
    display: none;
}

/* ── Info list (mobile info tab) ── */
.jb-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.jb-info-list__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.jb-info-list__item:last-child {
    border-bottom: none;
}

.jb-info-list__label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 16px;
}

.jb-info-list__value {
    text-align: right;
    font-size: 14px;
    color: #222;
    word-break: break-word;
}

.jb-info-list__value a {
    color: #000000;
    text-decoration: underline;
}

.jb-info-list__value a:hover {
    text-decoration: none;
}

/* ── Body (content + sidebar) ── */
.jb-body {
    background: #fff;
}

.jb-body__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 0 60px;
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.jb-main {
    flex: 1;
    width: 100%;
}

/* ── Panels ── */
.jb-panel {
    display: none;
}

.jb-panel.active {
    display: block;
}

.jb-section-title {
    font-size: 40px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-family: "PF Bague Sans Pro", sans-serif;
    color: var(--color_prime);
}

.jb-subtitle {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #222;
}

.jb-prose {
    font-size: 15px;
    line-height: 1.75;
    color: #333;
}

.jb-prose p {
    margin: 0 0 16px;
}

.jb-empty {
    color: #888;
    font-size: 15px;
    font-style: italic;
}

.jb-show-all-btn {
    margin-top: 16px;
    background: none;
    border: 2px solid var(--jb-accent);
    color: #111;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--jb-radius);
    cursor: pointer;
    transition: background .2s, color .2s;
}

.jb-show-all-btn:hover {
    background: var(--jb-accent);
    color: #000;
}

/* ── Models Grid ── */
.jb-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(700px, 1fr));
    gap: 24px;
}

.jb-model-card {
    background: #fff;
    border-top: 3px solid var(--jb-accent);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, transform .15s;
}

.jb-model-card__img {
    position: relative;
    overflow: hidden;
}

.jb-model-card__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform .3s;
    aspect-ratio: 1.85;
}

.jb-model-card:hover .jb-model-card__img img {
    transform: scale(1.03);
}

.jb-model-card__name {
    padding: 14px 16px;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    background: var(--color_banner_gray);
}

/* ── Articles List (uses theme card-article template part) ── */
.jb-articles-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.jb-articles-list--single-col {
    grid-template-columns: 1fr;
    gap: 0;
}

.jb-articles-list__item {
    display: flex;
}

.jb-articles-list__item .card {
    width: 100%;
}

@media (max-width: 991px) {
    .jb-articles-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .jb-articles-list {
        grid-template-columns: 1fr;
    }
}

/* ── Sidebar ── */
.jb-sidebar {
    flex-shrink: 0;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: sticky;
    top: 94px;
}

.jb-sidebar-btn {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding: 14px 15px;
    background: var(--jb-accent);
    color: #000;
    border: none;
    border-radius: var(--jb-radius);
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s, transform .1s;
    text-align: left;
    font-family: "PF Bague Sans Pro 60", sans-serif;
}

.jb-sidebar-btn:hover {
    background: #000;
    color: var(--jb-accent);
}

.jb-sidebar-btn:active {
    transform: scale(.97);
}

.jb-sidebar-btn__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.jb-sidebar-btn__icon svg {
    width: 25px;
    height: 25px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
    .jb-body__inner {
        flex-direction: column;
        padding-top: 20px;
    }

    .jb-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        position: static;
    }

    .jb-sidebar-btn {
        flex: 1 1 auto;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .jb-header__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .jb-header__name {
        font-size: 24px;
        margin: 0 0 5px;
    }

    .jb-brand-page:not(.jm-model-page) .jb-header__info {
        display: none;
    }

    .jb-tab--mobile-only {
        display: inline-flex;
    }

    #jb-panel-info.active {
        display: block;
    }

    .jb-header__logo {
        width: 90px;
        height: 90px;
    }

    .jb-tab {
        padding: 12px 16px;
        font-size: 12px;
    }

    .jb-section-title {
        font-size: 22px;
    }

    .jb-models-grid {
        grid-template-columns: 1fr;
    }

    .jb-sidebar {
        flex-direction: column;
    }

    .jb-sidebar-btn {
        min-width: auto;
    }
}

/* ═══════════════════════════════════════
   MODEL PAGE — Single Model Layout
   ═══════════════════════════════════════ */

.jm-hero {
    line-height: 0;
}

.jm-hero img {
    width: 100%;
    height: calc(100vh - 145px);
    display: block;
    object-fit: cover;
}

.jb-header.jm-header {
    border-radius: 0;
    padding-top: 24px;
    background: #000;
}

.jm-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.jm-header__left {
    flex: 1;
    min-width: 0;
}

.jm-header__name {
    font-size: 32px;
    font-weight: 900;
    line-height: normal;
    margin: 0;
    font-family: "PF Bague Sans Pro", sans-serif;
    color: #fff;
}

/* ── Info pills ── */
.jm-header__pills {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 30px 30px;
}

.jm-header__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: #333;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    white-space: nowrap;
    font-family: "PF Bague Sans Pro 50", sans-serif;
    flex: 1;
    border-top: 2px solid var(--color_secondary);
}

.jm-header__pill-label {
    font-family: "PF Bague Sans Pro 80", sans-serif;
}

/* ── EURO NCAP badge ── */
.jm-ncap {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--jb-accent, #00FFA7);
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: background 0.2s;
    white-space: nowrap;
}

a.jm-ncap:hover {
    background: rgba(0, 255, 167, 0.1);
    color: #fff;
}

a.jm-ncap:hover .jm-ncap__star.is-filled {
    color: var(--jb-accent, #00FFA7);
}

.jm-ncap__label {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
}

.jm-ncap__stars {
    display: inline-flex;
    gap: 2px;
}

.jm-ncap__star {
    font-size: 20px;
    line-height: 1;
    color: rgba(0, 0, 0, .2);
}

.jm-ncap__star.is-filled {
    color: #000;
}

/* ── Gallery Preview (Home tab) ── */
.jm-gallery-preview {
    margin-bottom: 32px;
}

.jm-gallery-preview__hero {
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
}

.jm-gallery-preview__hero img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.jm-gallery-preview__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.jm-gallery-preview__thumb {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.jm-gallery-preview__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.jm-gallery-preview__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--jb-accent, #00FFA7);
    border: none;
    cursor: pointer;
    padding: 20px;
    text-align: center;
    transition: background .2s;
    margin-top: 0;
    border-radius: 0;
    aspect-ratio: 4 / 3;
}

.jm-gallery-preview__cta:hover {
    background: var(--jb-accent-hover, #00d68f);
}

.jm-gallery-preview__cta-text {
    font-family: "PF Bague Sans Pro 80", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.78px;
}

.jm-gallery-preview__arrow {
    display: block;
    font-size: 28px;
    line-height: 1;
}

@media (max-width: 600px) {
    .jm-gallery-preview__row {
        grid-template-columns: repeat(2, 1fr);
    }
    .jm-gallery-preview__cta-text {
        font-size: 14px;
    }
}

/* ── Gallery Full Grid (Gallery tab) ── */
.jm-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.jm-gallery-item {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    text-decoration: none;
}

.jm-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}

.jm-gallery-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .jm-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .jm-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Lightbox ── */
.jm-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .92);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}

.jm-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.jm-lightbox__img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jm-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    user-select: none;
    transition: opacity .2s;
}

.jm-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 8px;
    opacity: .7;
    transition: opacity .2s;
}

.jm-lightbox__close:hover {
    opacity: 1;
}

.jm-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    z-index: 10;
    padding: 16px;
    line-height: 1;
    opacity: .6;
    transition: opacity .2s;
    user-select: none;
}

.jm-lightbox__nav:hover {
    opacity: 1;
}

.jm-lightbox__prev {
    left: 10px;
}

.jm-lightbox__next {
    right: 10px;
}

.jm-lightbox__counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    font-family: "PF Bague Sans Pro 50", sans-serif;
    letter-spacing: .05em;
}

@media (max-width: 768px) {
    .jm-lightbox__nav {
        font-size: 32px;
        padding: 10px;
    }
    .jm-lightbox__close {
        top: 10px;
        right: 10px;
        font-size: 28px;
    }
}

/* ── Spec sections (Home tab) ── */
.jm-spec-section {
    margin-bottom: 40px;
}

.jm-spec-section__wrapper {
  background: var(--color_prime);
}

.jm-spec-section__image {
}

.jm-spec-section__image img {
    width: 100%;
    height: auto;
}

.jm-spec-list {
    list-style: none;
    padding: 10px 25px 15px;
    margin: 0;
}

.jm-spec-list__item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 6px 0;
    font-size: 15px;
    line-height: 1.6;
}

.jm-spec-list__item::before {
    content: "■";
    color: var(--jb-accent, #00FFA7);
    font-size: 12px;
    flex-shrink: 0;
    position: relative;
    top: -2px;
}

.jm-spec-list__label {
    font-weight: 400;
    color: #fff;
    font-family: "PF Bague Sans Pro 80", sans-serif;
}

.jm-spec-list__value {
    color: #ffffff;
    font-family: "PF Bague Sans Pro 50", sans-serif;
}

.jm-spec-list__value a {
    color: #0073aa;
    word-break: break-all;
}

/* ── Info table (Info tab) ── */
.jm-info-table {
    margin-bottom: 24px;
}

.jm-info-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.jm-info-row:last-child {
    border-bottom: none;
}

.jm-info-row__label {
    font-weight: 600;
    min-width: 220px;
    color: #555;
}

.jm-info-row__value {
    color: #111;
}

.jm-info-row__value a {
    color: #0073aa;
    word-break: break-all;
}

/* Legacy model card classes (kept for archive/model pages) */
.jeauto-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.jeauto-model-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}

.jeauto-model-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.jeauto-model-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.jeauto-model-card h3 {
    padding: 12px 16px;
    margin: 0;
    font-size: 1.1em;
}

/* ── Model detail ── */
.jeauto-model-header {
    text-align: center;
    margin-bottom: 30px;
}

.jeauto-model-hero {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.jeauto-model-brand {
    color: #666;
    font-size: 1.1em;
}

.jeauto-model-brand a {
    color: #0073aa;
    text-decoration: none;
}

/* ── Specs ── */
.jeauto-model-specs {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.jeauto-spec-group {
    margin-bottom: 20px;
}

.jeauto-spec-group h3 {
    color: #0073aa;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.jeauto-spec-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.jeauto-spec-row:last-child {
    border-bottom: none;
}

.jeauto-spec-label {
    font-weight: 600;
    min-width: 220px;
    color: #555;
}

.jeauto-spec-value a {
    color: #0073aa;
    word-break: break-all;
}

/* ── Related posts ── */
.jeauto-related-posts {
    margin-top: 30px;
}

.jeauto-related-posts ul {
    list-style: none;
    padding: 0;
}

.jeauto-related-posts li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.jeauto-related-posts li:last-child {
    border-bottom: none;
}

.jeauto-related-posts a {
    color: #0073aa;
    text-decoration: none;
}

.jeauto-related-posts a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════
   AUTO SEARCH WIDGET — [auto_search]
   ═══════════════════════════════════════ */

.jas-wrap {
    --jas-accent: #00ffa7;
    --jas-accent-hover: #00b396;
    --jas-accent-light: rgba(0, 201, 167, .08);
    --jas-gray-100: #f5f6f8;
    --jas-gray-200: #e8eaef;
    --jas-gray-300: #d1d5db;
    --jas-gray-500: #6b7280;
    --jas-gray-700: rgba(0, 0, 0, 0.71);
    --jas-radius: 5px;
    background: #fff;
    border: 1px solid var(--color_prime);
    overflow: hidden;
}

.jas-inner {
    padding: 28px 32px 32px;
}

.jas-inner__header {
    margin: -28px 0 30px;
    background: var(--color_prime);
    margin-inline: -32px;
    padding: 28px 32px 32px;
}

.jas-inner__header p {
    text-align: center;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
}

/* Title */
.jas-title {
    text-align: center;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color_secondary);
    margin: 0 0 8px;
    font-family: var(--font-title);
}

/* ── Logo carousel ── */
.jas-logos-wrap {
    position: relative;
    margin-bottom: 24px;
}

.jas-logos-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 36px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.jas-logos-track::-webkit-scrollbar {
    display: none;
}

.jas-logo-item {
    flex: 0 0 auto;
    width: 90px;
    height: 75px;
    border-radius: 8px;
    border: 1px solid var(--jas-gray-200);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, transform .15s;
    padding: 0;
    outline: none;
}

.jas-logo-item:hover {
    border-color: var(--jas-accent);
    transform: scale(1.05);
}

.jas-logo-item.active {
    border-color: var(--jas-accent);
    box-shadow: 0 0 0 3px var(--jas-accent-light), 0 2px 8px rgba(0, 201, 167, .18);
    transform: scale(1.05);
}

.jas-logo-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.jas-logo-letter {
    font-size: 20px;
    font-weight: 700;
    color: var(--jas-gray-500);
    line-height: 1;
}

/* Arrows */
.jas-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #00ffa7;
    background: #0000007d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background .2s, box-shadow .2s;
    padding: 0;
}

.jas-arrow:hover {
    background: var(--jas-accent-hover);
    box-shadow: 0 3px 10px rgba(0, 201, 167, .4);
}

.jas-arrow-left {
    left: 0;
}

.jas-arrow-right {
    right: 0;
}

/* ── Controls row ── */
.jas-controls {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.jas-select-group {
    flex: 1;
    min-width: 0;
    width: 100%;
}

.jas-label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 6px;
    font-family: "PF Bague Sans Pro 60", sans-serif;
}

.jas-select-wrap {
    position: relative;
}

.jas-select {
    width: 100%;
    padding: 10px 36px 10px 14px;
    border: none;
    border-radius: var(--jas-radius);
    background: var(--color_banner_gray);
    font-size: 16px;
    font-family: "PF Bague Sans Pro 60", sans-serif;
    color: var(--jas-gray-700);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
}

.jas-select:focus {
    outline: none;
    border-color: var(--jas-accent);
    box-shadow: 0 0 0 3px var(--jas-accent-light);
}

.jas-select:disabled {
    background-color: var(--color_banner_gray);
    color: var(--jas-gray-500);
    cursor: not-allowed;
}

/* Search button */
.jas-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 28px;
    background: var(--jas-accent);
    color: #000;
    border: none;
    border-radius: var(--jas-radius);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, box-shadow .2s, transform .1s;
    width: 100%;
    font-family: "PF Bague Sans Pro 60", sans-serif;
}

.jas-search-btn:hover {
    background: var(--jas-accent-hover);
    box-shadow: 0 4px 14px rgba(0, 201, 167, .3);
}

.jas-search-btn:active {
    transform: scale(.97);
}

.section.jm-section {
    padding-top: 0;
    margin-top: -50px;
}

.jm-model-page .jb-tabs {
    background: var(--color_banner_gray);
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.jm-model-page .jb-tab {
    color: #00000099;
}
.jm-model-page .jb-tabs .jb-tab.active {
    color: #000000;
}




/* ── Responsive ── */
@media (max-width: 768px) {

    .jb-header.jm-header
    {
        margin-inline: -1rem;
    }

    .jm-model-page .jb-tabs {
        margin-inline: -1rem;
        margin-top: 0;
    }
    .jm-model-page .jb-tabs .jb-tabs__inner {
        justify-content: left;
        padding: 0 4px;
    }



    .section.jm-section {
        margin-top: 0;
    }
    .jas-title {
        font-size: 23px;
        line-height: normal;
    }

    .jeauto-page-title {
        font-size: 32px;
        margin-top: 0;
    }

    .jas-inner__header p {
        font-size: 14px;
    }

    .jm-hero img {
        aspect-ratio: 16 / 9;
        height: auto;

    }

    .jm-header__inner {
        align-items: stretch;
        padding: 0 20px 20px;
    }

    .jm-header__name {
        font-size: 24px;
    }

    .jm-header__pills {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px 20px;
    }

    .jm-ncap {
        align-self: flex-start;
        flex-direction: column;
        gap: 3px;
        padding: 5px;
        align-items: baseline;
    }

    .jm-ncap__label {
        font-weight: 500;
        font-size: 11px;
    }

    .jm-ncap__stars {
        gap: 5px;
    }

    .jm-ncap__star {
        font-size: 13px;
    }

    .jm-spec-list__item {
        flex-wrap: wrap;
    }

    .jm-info-row {
        flex-direction: column;
        gap: 2px;
    }

    .jm-info-row__label {
        min-width: auto;
    }

    .jeauto-page-title:after {
        height: 9px;
        bottom: 9px;
    }

    .jeauto-brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .jeauto-models-grid {
        grid-template-columns: 1fr;
    }

    .jeauto-info-row {
        flex-direction: column;
        gap: 2px;
    }

    .jeauto-spec-row {
        flex-direction: column;
        gap: 2px;
    }

    .jeauto-spec-label,
    .jeauto-info-label {
        min-width: auto;
    }

    .jas-inner {
        padding: 20px 16px 24px;
    }

    .jas-controls {
        flex-direction: column;
        gap: 20px;
    }

    .jas-select-group-btn {
        width: 100%;
    }

    .jas-search-btn {
        width: 100%;
    }

    .jas-logo-item {
        width: 60px;
        height: 60px;
    }

    .jas-logo-item img {
        width: 41px;
        height: 41px;
    }

    .jas-logos-track {
        gap: 10px;
    }

    .jas-logos-wrap {
        margin-bottom: 16px;
    }

    .jas-select-group.jas-select-group-btn .jas-label {
        display: none;
    }

}

/* ═══════════════════════════════════════
   CAR CONFIGURATOR — [car_configurator]
   ═══════════════════════════════════════ */

.jcfg {
    background: #000 linear-gradient(157deg, #00FFA7 -86.24%, rgba(0, 255, 167, 0.00) 54.46%);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.jcfg button.splide__arrow
{
    display: block !important;
}

.jcfg::before,
.jcfg::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.jcfg::before {
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgyIiBoZWlnaHQ9IjY2IiB2aWV3Qm94PSIwIDAgMTgyIDY2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMCA2NS40MTg5SDExNS45MzVMMTgxIDAuMzUzNTE2IiBzdHJva2U9IndoaXRlIiBzdHJva2Utb3BhY2l0eT0iMC40Ii8+Cjwvc3ZnPgo=");
    width: 182px;
    height: 66px;
}

.jcfg::after {
    bottom: 0;
    right: 0;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgyIiBoZWlnaHQ9IjY2IiB2aWV3Qm94PSIwIDAgMTgyIDY2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMTgxLjM1NCAwLjUwMDA3MUw2NS40MTg5IDAuNTAwMDgxTDAuMzUzNTQ4IDY1LjU2NTQiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1vcGFjaXR5PSIwLjQiLz4KPC9zdmc+Cg==");
    width: 182px;
    height: 66px;
}

.jcfg__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.jcfg__inner:before,
.jcfg__inner:after {
    content: "";
    position: absolute;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNDciIHZpZXdCb3g9IjAgMCA2MCA0NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGxpbmUgeTE9IjAuNSIgeDI9IjU5LjUiIHkyPSIwLjUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1vcGFjaXR5PSIwLjQiLz4KPGxpbmUgeTE9IjExLjc1NjgiIHgyPSI1OS41IiB5Mj0iMTEuNzU2OCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLW9wYWNpdHk9IjAuNCIvPgo8bGluZSB5MT0iMjMuMDEzNyIgeDI9IjU5LjUiIHkyPSIyMy4wMTM3IiBzdHJva2U9IndoaXRlIiBzdHJva2Utb3BhY2l0eT0iMC40Ii8+CjxsaW5lIHkxPSIzNC4yNzA1IiB4Mj0iNTkuNSIgeTI9IjM0LjI3MDUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1vcGFjaXR5PSIwLjQiLz4KPGxpbmUgeTE9IjQ1LjUyNzMiIHgyPSI1OS41IiB5Mj0iNDUuNTI3MyIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLW9wYWNpdHk9IjAuNCIvPgo8L3N2Zz4K");
    width: 60px;
    height: 47px;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.jcfg__inner:after {
    right: 50px;
    left: unset;
}

.jcfg__title {
    font-family: "PF Bague Sans Pro", sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 32px;
    letter-spacing: 0.04em;
}

.jcfg__subtitle {
    font-size: 18px;
    color: #fff;
    margin: 28px auto 0;
    max-width: 480px;
    line-height: 28px;
    font-weight: 200;
}

/* Slider */
.jcfg__slider {
    position: relative;
    padding: 0 24px;
    max-width: 634px;
    margin: 0 auto;
}

/* Cards */
.jcfg__card {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(155deg, rgba(255, 255, 255) -12.32%, rgba(255, 255, 255) 124.3%);
}

.jcfg__card:hover img {
    transform: scale(1.15);
}

.jcfg__card img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease-in-out;
}

.jcfg__letter {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    font-family: "PF Bague Sans Pro", sans-serif;
}

/* Splide arrow overrides */
.jcfg .splide__arrow {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #00ffa7;
    width: 36px;
    height: 36px;
    opacity: 1;
}

.jcfg .splide__arrow svg {
    fill: #fff;
    width: 12px;
    height: 12px;
}

.jcfg .splide__arrow:hover {
    background: rgba(0, 255, 167, 0.2);
}

.jcfg button.splide__arrow.splide__arrow--prev {
    left: -3rem;
}

.jcfg button.splide__arrow.splide__arrow--next {
    right: -3rem;
}

@media (max-width: 768px) {
    .jcfg {
        padding: 32px 0;
    }

    .jcfg::before,
    .jcfg::after {
        width: 118px;
        height: 42px;
        background-size: contain;
    }

    .jcfg__inner {
        padding: 40px 10px;
    }

    .jcfg__inner:before
    {
        content: none;
    }

    .jcfg__inner:after {
        background-size: contain;
        width: 29px;
        height: 22px;
        left: unset;
        right: 20px;
        top: -12px;
        transform: none;
    }

    .jcfg__title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .jcfg__subtitle {
        font-size: 14px;
        line-height: 24px;
        margin-top: 24px;
        padding: 0 10px;
    }

    .jcfg__slider {
        padding: 0 20px;
    }

    .jcfg .splide__arrow {
        width: 32px;
        height: 32px;
    }

    .jcfg button.splide__arrow.splide__arrow--prev {
        left: 0;
    }

    .jcfg button.splide__arrow.splide__arrow--next {
        right: 0;
    }
}

/* ═══════════════════════════════════════
   POPUP (Warranties etc.)
   ═══════════════════════════════════════ */

.jm-popup {
    position: fixed;
    inset: 0;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}

.jm-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.jm-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
}

.jm-popup__content {
    position: relative;
    background: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
    transform: translateY(20px);
    transition: transform .25s;
}

.jm-popup.is-open .jm-popup__content {
    transform: translateY(0);
}

.jm-popup__close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color .2s;
}

.jm-popup__close:hover {
    color: #000;
}

.jm-popup__title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 24px;
    font-family: "PF Bague Sans Pro", sans-serif;
    color: var(--color_prime, #1a1a1a);
    text-transform: uppercase;
}

.jm-popup__section {
    margin-bottom: 28px;
}

.jm-popup__section:last-child {
    margin-bottom: 0;
}

.jm-popup__section h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #333;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--jb-accent, #00FFA7);
}

@media (max-width: 600px) {
    .jm-popup__content {
        width: 95%;
        padding: 28px 20px;
    }
    .jm-popup__title {
        font-size: 20px;
    }
}

/* ── Brand History Card ── */
.jb-history-card {
    background: var(--color_prime);
    padding: 54px 40px 40px;
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.jb-history-card:before {
    content: "";
    position: absolute;
    width: 105px;
    height: 22px;
    background: #00ffa7;
    left: 0;
    top: 0;
}

.jb-history-card__logo {
    margin: 0 auto 28px;
    background: #ffffff;
}

.jb-history-card__logo img {
    height: 250px;
    object-fit: contain;
}

.jb-history-card__title {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    color: #fff;
    margin: 0 0 15px;
    font-family: "PF Bague Sans Pro", sans-serif;
}

.jb-history-card__text {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.7;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.jb-history-card__text p {
    margin: 0 0 12px;
}

.jb-history-card__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {

    .jb-tabs__inner
    {
        justify-content: left;
        padding: 0;
        gap: 0;
    }

    .jb-history-card {
        padding: 36px 20px 20px;
    }

    .jb-history-card:before {
        width: 68px;
        height: 14px;
    }

    .jb-history-card__logo img {
        height: 100px;
    }
    .jb-history-card__title {
        font-size: 22px;
    }
    .jb-history-card__text {
        font-size: 14px;
    }
}

/* ── Pricelist Bar (Τιμοκατάλογος) ── */
.jb-pricelist-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f0f0;
    padding: 14px 24px;
    text-decoration: none;
    color: #222;
    transition: background 0.2s;
}

.jb-pricelist-bar:hover {
    background: #e6e6e6;
    text-decoration: none;
    color: #222;
}

.jb-pricelist-bar__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.jb-pricelist-bar__logo {
    width: 63px;
    height: 63px;
    object-fit: contain;
    background: #fff;
}

.jb-pricelist-bar__title {
    font-weight: 400;
    font-family: "PF Bague Sans Pro 80" , 'sans-serif';
    font-size: 24px;
    color: #000;
}

.jb-pricelist-bar__right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jb-pricelist-bar__label {
    font-size: 13px;
    color: var(--color_prime);
}

.jb-pricelist-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #00FFA7;
    border-radius: 6px;
    color: #000;
}

@media (max-width: 600px) {
    .jb-pricelist-bar {
        padding: 12px 16px;
    }
    .jb-pricelist-bar__logo {
        width: 44px;
        height: 44px;
    }
    .jb-pricelist-bar__title {
        font-size: 15px;
    }
    .jb-pricelist-bar__label {
        display: none;
    }
}

/* ═══════════════════════════════════════
   WIDGET — CTA (popup modal)
   ═══════════════════════════════════════ */

.jw-cta {
    border: 1px solid var(--color_stroke);
    margin: 20px 0;
    overflow: hidden;
}

.jw-cta-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    cursor: pointer;
    transition: background .2s;
}

.jw-cta-header:hover {
    background: #f9fafb;
}

.jw-cta-title {
    font-size: 19px;
    font-weight: 500;
    font-family: "PF Bague Sans Pro 60";
    color: #000000;
}

.jw-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color_stroke);
    border-radius: 50%;
    color: #000000;
    transition: all .2s;
    flex-shrink: 0;
}

.jw-cta-header:hover .jw-cta-icon {
    color: #00FFA7;
    border-color: #00FFA7;
}

/* CTA Modal */
.jw-cta-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.jw-cta-modal--open {
    display: flex;
}

.jw-cta-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(3px);
    animation: jwCtaFadeIn .2s ease;
}

.jw-cta-modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    width: 520px;
    max-width: 92vw;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
    animation: jwCtaScaleIn .25s cubic-bezier(.16, 1, .3, 1);
}

.jw-cta-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #9ca3af;
    font-size: 22px;
    line-height: 1;
    transition: all .2s;
}

.jw-cta-modal-close:hover {
    background: #f3f4f6;
    color: #000000;
}

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

@keyframes jwCtaScaleIn {
    from { opacity: 0; transform: scale(.92); }
    to   { opacity: 1; transform: scale(1); }
}

.jw-cta-body-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px;
}

.jw-cta-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jw-cta-content li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.jw-cta-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #00FFA7;
    border-radius: 2px;
}

.jw-cta-content p {
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
    margin: 0 0 8px;
}

/* ═══════════════════════════════════════
   WIDGET — FAQ (accordion)
   ═══════════════════════════════════════ */

.jw-faq {
    margin: 20px 0;
}

.jw-faq-item {
    border: 1px solid var(--color_stroke);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s;
}


.jw-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    cursor: pointer;
    list-style: none;
    font-size: 19px;
    font-weight: 400;
    color: #000000;
    transition: background .2s;
    font-family: "PF Bague Sans Pro 60";
}

.jw-faq-question::-webkit-details-marker {
    display: none;
}

.jw-faq-question:hover {
    background: #f9fafb;
}

.jw-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    font-weight: 400;
    color: #15CD8D;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.jw-faq-toggle::after {
    content: '+';
}

.jw-faq-item[open] .jw-faq-toggle::after {
    content: '\2013';
}

.jw-faq-answer {
    padding: 0 12px 8px;
}

.jw-faq-answer p {
    margin: 0 0 8px;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.jw-faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jw-faq-answer li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.jw-faq-answer li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #00FFA7;
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   WIDGET — Section (title bar + content)
   ═══════════════════════════════════════ */

.jw-section {
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid var(--color_stroke);
}

.jw-section-header {
    background: #000000;
    padding: 18px 24px;
    text-align: center;
}

.jw-section-title {
    margin: 0 !important;
    font-size: 21px !important;
    font-weight: 700;
    color: var(--color_secondary) !important;
}

.jw-section-title h3 {
    color: var(--color_secondary);
    font-family: var(--font-title);
}

.jw-section-body {
    padding: 20px 24px;
    background: #fff;
}

.jw-section-body p {
    margin: 0 0 8px;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

.jw-section-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jw-section-body li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #000000;
    line-height: 1.6;
}

.jw-section-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #00FFA7;
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   WIDGET — Links (action button grid)
   ═══════════════════════════════════════ */

.jw-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 20px 0;
}

.jw-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    background: #00FFA7;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s;
}

.jw-link-card:hover {
    background: #00e69a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 167, .35);
    color: #000;
    text-decoration: none;
}

.jw-link-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

.jw-link-icon svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 600px) {
    .jw-links {
        grid-template-columns: 1fr;
    }
    .jw-link-card {
        padding: 14px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .jb-tabs {

        .splide__arrows {
            button.splide__arrow {
                display: block !important;
                width: 20px;
                height: 20px;
                padding: 0;
                background: rgba(255, 255, 255, 0.30);
                border: rgba(255, 255, 255, 0.30);;
            }

            button.splide__arrow--next {
                right: 8.5px;

            }

            button.splide__arrow--prev {
                left: 8.5px;
                width: 20px;
                height: 20px;
            }
        }

        .splide__track{
            margin-inline: 40px;
        }

    }

}