/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 30 2026 | 05:54:29 */
.ee-tabs-wrapper {
    position: relative;
    overflow: visible !important;
}

.ee-tab-titles {
    position: relative;
    overflow: visible !important;
}

.ee-tab-titles li {
    position: relative;
    overflow: visible !important;
    padding-right: 70px !important;
}

.ee-tab-titles li::after,
.ee-tab-titles li::before {
    display: none !important;
    content: none !important;
}

/* ── Popup-row <li> inserted between tabs on mobile/tablet ── */
.ee-tab-titles li.tab-popup-row {
    padding: 0 !important;
    padding-right: 0 !important;
    background: transparent !important;
    cursor: default !important;
    pointer-events: none;
    display: none;
}

.ee-tab-titles li.tab-popup-row:has(.tab-inline-popup.active) {
    display: block;
    pointer-events: auto;
}

.tab-arrow-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #d73b02 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: none !important;
    z-index: 1001;
    opacity: 1 !important;
    font-size: 24px;
    color: #ffffff !important;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin: 0;
    padding: 0;
}

.tab-arrow-btn::after {
    content: "→";
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-1px);
}

.tab-arrow-btn:hover {
    background: #d73b02 !important;
    opacity: 1 !important;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.ee-tab-titles li:has(.tab-arrow-btn:hover) {
    z-index: 99999 !important;
}

/* ── Desktop popup (>912px): absolute, floats to the side ── */
.tab-inline-popup {
    display: none;
    position: absolute;
    left: calc(100% + 16px);
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    min-height: 90px;

    /* Match sc-stack-card popup style */
    background-color: #ffffff;
    background-image: linear-gradient(rgba(215, 59, 2, 0.1), rgba(215, 59, 2, 0.1));
    border: 3px solid #d73b02;
    border-radius: 15px;
    padding: 12px 20px;

    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 99999;
    box-sizing: border-box;
    animation: tabPopupFadeIn 0.2s ease;
}

.tab-inline-popup.popup-left {
    left: auto;
    right: calc(100% + 16px);
}

.tab-inline-popup.active {
    display: flex;
}

.tab-inline-popup p {
    font-size: 16px;
    font-weight: 600;
    color: #d73b02;
    margin: 0;
    word-break: break-word;
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

@keyframes tabPopupFadeIn {
    from { opacity: 0; transform: translateY(-50%) scale(0.93); }
    to   { opacity: 1; transform: translateY(-50%) scale(1); }
}

/*
 * ── Mobile + Tablet breakpoint (≤912px) ──
 * Covers all target devices:
 *   Samsung Galaxy A51/71        412px
 *   Galaxy Z Fold 5 (folded)     375px
 *   Galaxy Z Fold 5 (unfolded)   673px
 *   Surface Duo                  540px
 *   iPad Air                     820px
 *   Asus Zenbook Fold            853px
 *   Surface Pro 7                912px
 * Desktop/laptop starts at 913px+
 */
@media (max-width: 912px) {
    .ee-tab-titles li {
        padding-right: 60px !important;
    }

    .tab-arrow-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .tab-arrow-btn::after {
        font-size: 18px;
        transform: translateY(0px);
    }

    /*
     * Inside .tab-popup-row the popup is in normal document flow —
     * it sits between tabs and pushes subsequent tabs down, no overlap.
     */
    .tab-popup-row .tab-inline-popup {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        transform: none;

        display: none;
        width: 100%;
        min-height: 70px;
        margin: 0;
        box-sizing: border-box;

        /* Match sc-stack-card popup style */
        background-color: #ffffff;
        background-image: linear-gradient(rgba(215, 59, 2, 0.1), rgba(215, 59, 2, 0.1));
        border: 3px solid #d73b02;
        border-radius: 15px;
        padding: 16px 20px;

        align-items: center;
        justify-content: center;
        text-align: center;

        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        animation: tabPopupFadeInMobile 0.2s ease;
    }

    .tab-popup-row .tab-inline-popup.active {
        display: flex;
    }

    @keyframes tabPopupFadeInMobile {
        from { opacity: 0; transform: scale(0.97); }
        to   { opacity: 1; transform: scale(1); }
    }
}

/* ── Small phones ── */
@media (max-width: 480px) {
    .tab-arrow-btn {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .tab-arrow-btn::after {
        font-size: 15px;
        transform: translateY(0px);
    }

    .tab-inline-popup p {
        font-size: 14px;
    }
}