@charset "UTF-8";
/* דקה 99 - page 9306. Lifted out of the Elementor custom-HTML
   widget, where it was inline on every request. Brand primaries now
   resolve to tokens.css; neutrals were left as authored.
   Loaded only on this page. */

    /* עיצוב הקונטיינר */
    #breadcrumbs-wrapper {
        font-family: 'Heebo', 'Rubik', sans-serif;
        direction: rtl;
        text-align: right;
        padding: 10px 20px;
        background-color: #f9f9f9; /* רקע עדין להפרדה */
        border-bottom: 1px solid #eee;
        font-size: 0.9rem;
        margin-bottom: 0; /* צמוד ל-Hero שמתחתיו */
    }

    /* רשימת הפירורים */
    .breadcrumb-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        flex-wrap: wrap; /* שבירת שורה במובייל אם ארוך */
    }

    .breadcrumb-item {
        display: inline-flex;
        align-items: center;
    }

    /* קישור לדף הבית */
    .breadcrumb-item a {
        text-decoration: none;
        color: var(--dk-trust); /* כחול פספורט */
        font-weight: 500;
        transition: color 0.2s;
    }

    .breadcrumb-item a:hover {
        color: var(--dk-brand); /* אדום בהובר */
        text-decoration: underline;
    }

    .breadcrumb-item i {
        margin-left: 6px; /* רווח בין אייקון הבית לטקסט */
    }

    /* המפריד (החץ הקטן) */
    .breadcrumb-separator {
        margin: 0 10px;
        color: #999;
        font-size: 0.8rem;
    }

    /* הדף הנוכחי (לא לחיץ) */
    .breadcrumb-item.active {
        color: #555;
        font-weight: normal;
        pointer-events: none; /* מונע לחיצה */
    }

    /* התאמה למובייל */
    @media (max-width: 600px) {
        #breadcrumbs-wrapper {
            font-size: 0.85rem;
            padding: 10px 15px;
        }
    }



    /* הגדרות עיצוב כלליות לקומפוננטה */
    #hero-passport-wrapper {
        font-family: 'Heebo', 'Rubik', sans-serif;
        direction: rtl;
        text-align: right;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 40px 20px;
        background-color: #f9f9f9;
        border-radius: 15px;
        box-sizing: border-box;
    }

    /* צד ימין - טקסט ומחשבון */
    .hero-content {
        flex: 1;
        min-width: 300px;
    }

    /* צד שמאל - תמונה */
    .hero-image {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    /* כותרות */
    #hero-passport-wrapper h1 {
        font-size: 2.5rem;
        color: #1a1a2e;
        margin-bottom: 10px;
        line-height: 1.2;
        font-weight: 800;
    }

    #hero-passport-wrapper h2 {
        font-size: 1.3rem;
        color: #555;
        margin-bottom: 25px;
        font-weight: 500;
        line-height: 1.4;
    }

    /* תגית תאריך מעוצבת */
    .date-badge {
        display: inline-block;
        background-color: #e6f4ea;
        color: #1e8e3e;
        padding: 5px 12px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: bold;
        margin-bottom: 15px;
        border: 1px solid #ceead6;
    }

    /* עיצוב המחשבון */
    .calc-container {
        background: #ffffff;
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        border: 1px solid #e0e0e0;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        font-size: 0.9rem;
        color: #333;
    }

    .form-select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 1rem;
        background-color: #fff;
    }

    .checkbox-group {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }

    .checkbox-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.9rem;
        cursor: pointer;
        /* Measured 2026-09-03 at 393px: the box was 13x13 and the label that wraps
           it 88.5x14.4, so the real touch area was 47x16. The label is the target. */
        min-height: 44px;
    }

    .checkbox-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin: 0;
        flex: 0 0 auto;
    }

    /* אזור התוצאה */
    .result-box {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px dashed #ccc;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 15px;
    }

    .price-display {
        font-size: 1.1rem;
        color: #333;
    }

    .price-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--dk-trust);
    }

    .cta-button {
        background-color: var(--dk-brand);
        color: white;
        text-decoration: none;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: bold;
        font-size: 1.1rem;
        transition: transform 0.2s, background-color 0.2s;
        box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
        border: none;
        cursor: pointer;
        display: inline-block;
    }

    .cta-button:hover {
        background-color: #d62d24;
        transform: translateY(-2px);
    }

    /* התאמה למובייל */
    @media (max-width: 768px) {
        #hero-passport-wrapper {
            flex-direction: column-reverse; 
            text-align: center;
        }
        
        #hero-passport-wrapper h1 {
            font-size: 1.8rem;
        }

        #hero-passport-wrapper h2 {
            font-size: 1.1rem;
        }
        
        .checkbox-group {
            justify-content: center;
        }

        .result-box {
            flex-direction: column;
            text-align: center;
        }
    }



    /* איפוס אגרסיבי לווידג'ט של אלמנטור */
    #passport-pricing-master {
        font-family: 'Heebo', 'Rubik', sans-serif;
        direction: rtl;
        text-align: right;
        width: 100%;
        display: block; /* מבטיח שהקונטיינר יתפוס רוחב מלא */
        box-sizing: border-box;
    }

    /* --- סגנון הטאבים --- */
    .pp-tabs-nav {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 25px;
        flex-wrap: wrap;
        width: 100%;
    }

    .pp-tab-btn {
        background: #f4f6f8;
        border: 1px solid #e0e0e0;
        padding: 12px 30px;
        border-radius: 50px;
        font-size: 1.1rem;
        cursor: pointer;
        font-weight: 700;
        color: #555;
        transition: all 0.2s ease;
        flex: 0 1 auto; /* מונע מתיחה מוזרה של הכפתורים */
    }

    .pp-tab-btn.active {
        background: var(--dk-trust);
        color: white;
        border-color: var(--dk-trust);
        box-shadow: 0 4px 10px rgba(0, 115, 230, 0.3);
    }

    /* --- קונטיינר הטבלה --- */
    .pp-tab-content {
        display: none;
        width: 100%; /* חובה */
        animation: ppFadeIn 0.4s;
    }

    .pp-tab-content.active {
        display: block; /* חובה כדי שהרוחב יחול */
    }

    /* העיצוב הקריטי לטבלה באלמנטור */
    table.pp-pricing-table {
        width: 100% !important; /* דורס את אלמנטור */
        min-width: 100% !important;
        border-collapse: collapse;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        table-layout: fixed; /* מחלק את העמודות שווה בשווה */
        margin: 0; /* איפוס מרג'ין חיצוני */
    }

    /* כותרות הטבלה */
    table.pp-pricing-table th {
        background-color: #1a2b3c;
        color: white;
        padding: 18px 10px;
        font-size: 1.1rem;
        text-align: center;
        border: none;
        width: 33.33%; /* חלוקה שלישים מדוייקת */
    }

    /* תאי הטבלה */
    table.pp-pricing-table td {
        padding: 18px 10px;
        text-align: center;
        border-bottom: 1px solid #eee;
        color: #333;
        font-size: 1.05rem;
        vertical-align: middle;
    }

    /* שורת ההדגשה */
    table.pp-pricing-table tr.highlight-row {
        background-color: #f0fdf4;
    }
    
    table.pp-pricing-table tr.highlight-row td {
        font-weight: bold;
        color: #1e8e3e;
    }

    .pp-badge {
        display: inline-block;
        background: var(--dk-brand);
        color: white;
        font-size: 0.75rem;
        padding: 4px 8px;
        border-radius: 4px;
        margin-right: 6px;
        vertical-align: middle;
        line-height: 1;
    }

    /* --- התאמה למובייל (מתחת ל-768px) --- */
    @media (max-width: 768px) {
        table.pp-pricing-table thead { display: none; }
        
        table.pp-pricing-table tr {
            display: block;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 10px;
        }

        table.pp-pricing-table td {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            border-bottom: 1px dashed #eee;
            width: 100%;
            box-sizing: border-box;
        }
        
        table.pp-pricing-table td:last-child { border-bottom: none; }

        table.pp-pricing-table td::before {
            content: attr(data-label);
            font-weight: bold;
            color: #777;
        }
    }

    /* --- גריד תוספות --- */
    .pp-addons-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .pp-addon-card {
        background: white;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        position: relative;
    }
    
    .pp-addon-icon { font-size: 2rem; color: var(--dk-trust); margin-bottom: 10px; }
    .pp-addon-title { font-weight: bold; margin-bottom: 5px; font-size: 1rem; }
    .pp-addon-price { color: #1e8e3e; font-weight: 800; font-size: 1.2rem; }
    
    @keyframes ppFadeIn { from { opacity: 0; } to { opacity: 1; } }



    /* הגדרה כללית למניעת גלישה */
    #upsell-trust-wrapper * {
        box-sizing: border-box;
    }

    #upsell-trust-wrapper {
        font-family: 'Heebo', 'Rubik', sans-serif;
        direction: rtl;
        text-align: right;
        width: 100%;
        max-width: 100%;
        margin: 50px auto 0;
        background-color: var(--dk-brand-soft);
        padding: 30px;
        border-radius: 20px;
        border: 1px solid #ffe0e0;
    }

    /* --- כותרת --- */
    .upsell-title {
        font-size: 2rem;
        color: #1a2b3c;
        margin-bottom: 20px;
        text-align: center;
        font-weight: 800;
        line-height: 1.2;
    }

    .upsell-title span {
        color: var(--dk-brand);
        display: inline-block; /* מונע שבירת מילה באמצע */
    }

    .upsell-subtitle {
        text-align: center;
        margin-bottom: 40px;
        color: #666;
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    /* --- הגרף --- */
    .chart-container {
        display: flex;
        justify-content: space-around;
        align-items: flex-end;
        height: 280px; /* הגבהתי מעט כדי לתת מקום לטקסט */
        background: white;
        border-radius: 15px;
        padding: 20px 10px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        margin-bottom: 50px; /* מרווח תחתון גדול יותר לטקסט ציר X */
        position: relative;
    }

    .chart-grid-line {
        position: absolute;
        width: 100%;
        border-top: 1px dashed #eee;
        z-index: 0;
        left: 0;
    }

    .group-label {
        position: absolute;
        bottom: -45px; /* הורדתי למטה כדי לא לעלות על הברים */
        width: 120%; /* רוחב רחב יותר כדי שהטקסט לא יישבר */
        left: -10%; /* מירכוז יחסי */
        text-align: center;
        font-weight: bold;
        color: #555;
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .bar-group {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
        width: 30%;
        position: relative;
        z-index: 1;
    }

    .bars-wrapper {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        gap: 4px; /* רווח קטן בין העמודות */
    }

    .bar {
        width: 35px; /* מעט צר יותר להתאמה למובייל */
        border-radius: 5px 5px 0 0;
        position: relative;
        display: flex;
        justify-content: center;
    }

    .bar-label {
        position: absolute;
        top: -25px;
        font-size: 0.8rem;
        font-weight: bold;
        white-space: nowrap; /* מונע שבירת שורות במחיר */
    }

    .bar-daily {
        background: #ff5252;
    }
    
    .bar-annual {
        background: #388e3c;
    }

    /* --- תיבת אמון ו-CTA --- */
    .trust-cta-box {
        background: white;
        border: 2px solid #ffcdd2;
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(211, 47, 47, 0.05);
    }

    .official-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #ffebee;
        color: #c62828;
        padding: 8px 15px;
        border-radius: 50px;
        font-weight: bold;
        margin-bottom: 15px;
        border: 1px solid #ffcdd2;
        font-size: 0.9rem;
    }

    .official-badge i { margin-left: 8px; }

    /* --- קבוצת הכפתורים --- */
    .cta-group {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .cta-phone-btn, .cta-web-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 700;
        padding: 15px 20px;
        border-radius: 50px;
        transition: transform 0.2s;
        flex: 1;
        min-width: 200px;
        color: white;
    }

    .cta-phone-btn {
        background-color: var(--dk-brand);
        box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    }
    .cta-phone-btn:hover { background-color: #b71c1c; transform: scale(1.02); }

    .cta-web-btn {
        background-color: var(--dk-trust);
        box-shadow: 0 4px 15px rgba(0, 115, 230, 0.3);
        animation: pulse-blue 2s infinite;
    }
    .cta-web-btn:hover { background-color: #005bb5; transform: scale(1.02); }

    .cta-subtext {
        margin-top: 15px;
        font-size: 0.9rem;
        color: #555;
    }

    @keyframes pulse-blue {
        0% { box-shadow: 0 0 0 0 rgba(0, 115, 230, 0.7); }
        70% { box-shadow: 0 0 0 15px rgba(0, 115, 230, 0); }
        100% { box-shadow: 0 0 0 0 rgba(0, 115, 230, 0); }
    }

    /* --- התאמה למובייל (שיפורים) --- */
    @media (max-width: 600px) {
        #upsell-trust-wrapper {
            padding: 20px 15px; /* פחות שוליים חיצוניים */
            margin-top: 30px;
        }

        .upsell-title { 
            font-size: 1.6rem; /* כותרת קטנה יותר */
        }

        /* התאמת הגרף */
        .chart-container { 
            height: 240px; 
            padding: 15px 5px;
        }
        
        .bar { 
            width: 20px; /* עמודות צרות יותר */
        }
        
        .bar-label { 
            font-size: 0.7rem; /* מחיר קטן יותר */
        }

        .group-label {
            font-size: 0.8rem; /* טקסט ציר X קטן יותר */
            bottom: -50px; /* הורדה למניעת חפיפה */
        }

        .group-label small {
            font-size: 0.7rem;
            display: block; /* שבירת שורה יזומה בתיאור הימים */
            margin-top: 2px;
        }

        /* התאמת כפתורים */
        .cta-group {
            flex-direction: column;
        }
        
        .cta-phone-btn, .cta-web-btn {
            width: 100%;
            margin-bottom: 5px;
            font-size: 1.1rem;
            padding: 12px; /* כפתור קצת פחות גבוה */
        }

        .trust-cta-box {
            padding: 20px 15px;
        }
    }



    /* הגדרה קריטית למניעת חריגה מהרוחב */
    #faq-section-wrapper * {
        box-sizing: border-box;
    }

    #faq-section-wrapper {
        font-family: 'Heebo', 'Rubik', sans-serif;
        direction: rtl;
        text-align: right;
        width: 100%; /* שינוי: רוחב מלא */
        max-width: 800px;
        margin: 60px auto;
        padding: 0 20px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .faq-header h3 {
        font-size: 2rem;
        color: #1a2b3c;
        font-weight: 800;
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .faq-header p {
        color: #666;
        font-size: 1.1rem;
    }

    /* עיצוב האקורדיון */
    .faq-item {
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }

    .faq-item.active {
        border-color: var(--dk-trust);
        box-shadow: 0 5px 15px rgba(0, 115, 230, 0.1);
    }

    .faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 20px;
        text-align: right;
        font-size: 1.1rem;
        font-weight: 700;
        color: #333;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        outline: none;
    }

    .faq-question:hover {
        background-color: #f9f9f9;
    }

    .faq-question i {
        color: var(--dk-trust);
        transition: transform 0.3s ease;
        flex-shrink: 0; /* מונע מהאייקון להתכווץ */
        margin-right: 10px; /* רווח מהטקסט */
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background-color: #fdfdfd;
        border-top: 1px solid transparent;
    }

    .faq-item.active .faq-answer {
        border-top-color: #f0f0f0;
    }

    .faq-content {
        padding: 20px;
        color: #555;
        line-height: 1.6;
        font-size: 1rem;
    }

    /* --- התאמה אגרסיבית למובייל --- */
    @media (max-width: 600px) {
        #faq-section-wrapper {
            margin: 30px auto; /* פחות רווח מלמעלה/למטה */
            padding: 0 15px; /* פחות רווח בצדדים */
            width: 100%;
        }

        .faq-header h3 { 
            font-size: 1.5rem; 
        }
        
        .faq-header p {
            font-size: 1rem;
        }

        .faq-question { 
            font-size: 1rem; 
            padding: 15px; /* כפתורים קומפקטיים יותר */
        }
        
        .faq-content {
            padding: 15px;
            font-size: 0.95rem;
        }
    }



    /* קונטיינר לטבלה - מאפשר גלילה במובייל */
    .addons-table-wrapper {
        font-family: 'Heebo', 'Rubik', sans-serif;
        direction: rtl;
        text-align: right;
        overflow-x: auto; /* גלילה אופקית במובייל */
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        border: 1px solid #e0e0e0;
        background: #fff;
        margin: 30px 0;
    }

    /* עיצוב הטבלה */
    .addons-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; /* רוחב מינימלי כדי לשמור על קריאות */
    }

    /* כותרות */
    .addons-table th {
        background-color: #1a2b3c; /* כחול כהה */
        color: #ffffff;
        padding: 15px;
        font-size: 1.05rem;
        font-weight: 700;
        text-align: right;
        white-space: nowrap; /* מונע שבירת שורות בכותרת */
    }

    /* תאים */
    .addons-table td {
        padding: 12px 15px;
        border-bottom: 1px solid #f0f0f0;
        color: #333;
        font-size: 0.95rem;
        vertical-align: middle;
    }

    /* הדגשת עמודת המחיר */
    .addons-table td:nth-child(2) {
        font-weight: 800;
        color: var(--dk-trust); /* כחול מותג */
        background-color: #fcfcfc;
    }

    /* זברה (שורות מתחלפות) */
    .addons-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    /* אפקט ריחוף */
    .addons-table tr:hover {
        background-color: #f0f7ff;
    }

    /* הערות קטנות בתוך הטבלה */
    .table-note {
        display: block;
        font-size: 0.8rem;
        color: #777;
        margin-top: 4px;
    }



    /* הוספתי הגבלת רוחב ומירכוז לכל גוש הטקסט כדי שייראה טוב יותר */
    .article-content-wrapper {
        font-family: 'Heebo', 'Rubik', sans-serif;
        direction: rtl;
        text-align: right;
        line-height: 1.6;
        color: #333;
        margin: 30px auto; /* מירכוז */
        max-width: 800px; /* הגבלת רוחב הטקסט */
        padding: 0 20px; /* ריווח בצדדים למובייל */
        font-size: 1.05rem;
    }

    .article-content-wrapper h3 {
        color: #1a2b3c;
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 20px;
        border-right: 5px solid var(--dk-trust);
        padding-right: 15px;
    }

    .article-content-wrapper p {
        margin-bottom: 20px;
    }

    .article-content-wrapper a {
        color: var(--dk-trust);
        font-weight: bold;
        text-decoration: underline;
        text-underline-offset: 4px;
        transition: color 0.2s;
    }

    .article-content-wrapper a:hover {
        color: var(--dk-brand);
    }

    /* --- עיצוב התמונה המתוקן --- */
    .mobile-optimized-img {
        /* הגדרות ברירת מחדל לדסקטופ - גודל קבוע */
        width: 600px;
        height: 600px;
        object-fit: cover; /* חיתוך לריבוע בלי עיוות */
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        margin: 30px auto; /* מירכוז התמונה */
        display: block;
        border: 1px solid #eee;
    }

    /* הגדרות מיוחדות למובייל (מסכים צרים מ-640px) */
    @media (max-width: 640px) {
        .mobile-optimized-img {
            width: 100%; /* במובייל תתפוס את כל הרוחב הזמין */
            height: auto;  /* הגובה יתאים את עצמו */
            aspect-ratio: 1 / 1; /* שמירה על צורה ריבועית */
        }
    }



    .daka90-content-section {
        font-family: 'Heebo', 'Rubik', sans-serif;
        direction: rtl;
        text-align: right;
        line-height: 1.8;
        color: #333;
        margin: 40px auto;
        max-width: 900px;
        padding: 0 15px;
    }

    .daka90-content-section h3 {
        font-size: 1.5rem;
        color: #ed1c24; /* הצבע האדום המזוהה עם דקה 90/מבצעים */
        margin-top: 35px;
        margin-bottom: 15px;
        font-weight: 800;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 8px;
        display: inline-block;
    }

    .daka90-content-section p {
        margin-bottom: 18px;
        font-size: 1.05rem;
    }

    .daka90-content-section ul {
        margin-bottom: 25px;
        padding-right: 20px;
    }

    .daka90-content-section li {
        margin-bottom: 10px;
    }

    /* קופסת טיפ מותאמת */
    .smart-tip-box {
        background-color: #fff8e1; /* צהבהב עדין */
        border-right: 5px solid #ffc107;
        padding: 20px;
        margin: 30px 0;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }



    /* עיצוב תיבת מחבר (Author Box) - מותאם אישית */
    #author-box.author-box {
        --primary-color: #1e293b; /* כחול כהה */
        --accent-color: #dc2626; /* אדום פספורטכארד */
        --text-main: #334155;
        --border-soft: rgba(220, 38, 38, 0.15);
        
        max-width: 1180px;
        margin: 60px auto;
        padding: clamp(24px, 4vw, 36px);
        border-radius: 24px;
        background: #ffffff !important;
        border: 1px solid var(--border-soft);
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(20px, 4vw, 40px);
        font-family: 'Heebo', 'Rubik', sans-serif;
        position: relative;
        overflow: hidden;
        text-align: right;
        direction: rtl;
    }

    /* פס עיצובי בצד ימין בצבע המותג */
    #author-box.author-box::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 6px;
        height: 100%;
        background: var(--accent-color) !important;
    }

    .author-box__text {
        flex: 1;
        z-index: 1;
    }

    /* כותרת השם */
    #author-box .author-box__title {
        margin: 0 0 10px !important;
        font-size: clamp(20px, 2.5vw, 26px) !important;
        color: var(--primary-color) !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
    }

    /* טקסט התיאור */
    .author-box__desc {
        margin: 0 0 16px !important;
        font-size: 16px !important;
        line-height: 1.8 !important;
        color: var(--text-main) !important;
        max-width: 820px;
    }

    #author-box .author-box__desc strong {
        color: var(--primary-color) !important;
        font-weight: 700 !important;
    }

    #author-box .author-box__desc a {
        color: #2563eb !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-bottom: 1px solid transparent !important;
        transition: all 0.2s ease !important;
    }

    #author-box .author-box__desc a:hover {
        color: var(--accent-color) !important;
        border-bottom-color: var(--accent-color) !important;
    }

    /* כפתורי סושיאל / יצירת קשר */
    .author-box__social {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
    }

    #author-box .author-box__social-link {
        display: inline-flex;
        align-items: center;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none !important;
        border: 1px solid #e2e8f0;
        background: #f8fafc !important;
        color: var(--primary-color) !important;
        transition: all 0.25s ease;
    }

    #author-box .author-box__social-link:hover {
        background: var(--primary-color) !important;
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* תמונת המחבר */
    .author-box__icon img {
        width: 240px;
        height: 240px;
        object-fit: cover;
        border-radius: 50%;
        border: 8px solid #f1f5f9 !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        display: block;
    }

    /* התאמות מובייל */
    @media (max-width: 767px) {
        #author-box.author-box {
            flex-direction: column-reverse;
            text-align: center;
            padding: 30px 20px;
        }
        
        #author-box.author-box::before {
            width: 100%;
            height: 6px;
            top: 0;
            right: 0;
        }

        .author-box__icon img {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
        }
        
        .author-box__social {
            justify-content: center;
        }
        
        .author-box__title {
            font-size: 22px !important;
        }
    }
