/* START OF FILE static/css/styles.css */

/* --- Global Styles & Variables --- */
:root {
    --dark-bg: #111827;
    --dark-bg-secondary: #1f2937;
    --primary-accent: #a855f7;
    --secondary-accent: #ec4899;
    --light-text: #f3f4f6;
    --medium-text: #9ca3af;
    --card-bg: #ffffff;
    --card-border: #374151;
}

body {
    /* --- START OF MODIFICATION --- */
    font-family: 'Assistant', sans-serif; /* הוחלף מ-'Heebo' */
    /* --- END OF MODIFICATION --- */
    line-height: 1.6;
    padding: 0;
    direction: rtl;
    text-align: right;
    background-color: var(--dark-bg); /* New dark background */
    color: var(--light-text); /* New light text for dark bg */
    margin: 0;
}

#app-initial-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-bg);
    z-index: 2000;
    font-size: 1.2em;
    color: var(--light-text);
}


h2 {
    color: var(--light-text);
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

label {
    display: inline-block;
    margin-bottom: 5px;
    min-width: 80px;
    font-weight: 600;
    color: #4b5563; /* Darker text for light cards */
}

input[type="email"],
input[type="password"],
input[type="file"] {
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #d1d5db; /* Lighter border for inputs */
    border-radius: 6px;
    width: 280px;
    box-sizing: border-box;
    background-color: #f9fafb;
}

button {
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 50px; /* Rounded buttons */
    cursor: pointer;
    font-size: 0.8em;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-flex; /* Ensures icon and text align nicely */
    align-items: center;
    justify-content: center;
}
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
button:disabled {
    background: #4b5563; /* Dark gray for disabled */
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* --- Authentication Section (Light Theme) --- */
#auth-section {
     margin: 40px auto;
     max-width: 400px;
}
#login-section, #register-section, #verification-prompt {
    padding: 25px 30px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background-color: #ffffff; /* White background */
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    color: #111827; /* Dark text */
}
#login-section h2, #register-section h2, #verification-prompt h2 {
    color: #111827; /* Dark text */
    text-align: center;
    margin-bottom: 20px;
    border-bottom: none;
    font-weight: 900;
}
.google-signin-button {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 15px; border: 1px solid #ccc; border-radius: 50px; background-color: #fff; color: #444; font-size: 14px; cursor: pointer; transition: background-color 0.3s; margin-top: 15px; width: 100%;
}
.google-signin-button:hover { background-color: #f5f5f5; }
.separator { text-align: center; margin: 20px 0; color: #6b7280; }

.login-type-toggle label { margin-left: 8px; font-weight: 600; color: #374151; }
#login-section p, #register-section p, #verification-prompt p { color: #111827; }
#login-section label, #register-section label { color: #111827; }
#login-section a, #register-section a { color: #007bff; }
#login-section a:hover, #register-section a:hover { color: #0056b3; }
#business-code-container input { width: 100%; box-sizing: border-box; }

/* Password toggle button styles for login form */
#login-form .password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#login-form .password-input-wrapper input {
    padding-left: 45px;
    width: 100%;
}

#login-form .password-input-wrapper .toggle-password {
    position: absolute;
    left: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #111827; /* Dark icon */
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

#login-form .password-input-wrapper .toggle-password:hover {
    opacity: 0.7;
}

.required-mark {
    color: #dc3545;
    font-weight: bold;
}


/* --- Logged-in User Section --- */
#sticky-header-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 999;
}

.user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    background-color: var(--dark-bg-secondary);
    border-bottom: 1px solid var(--card-border);
}

.user-header .user-details-group {
    order: 3;
}
.user-header h1 {
    order: 2;
}
.user-header .header-actions {
    order: 1;
}

.user-header h1 {
    font-size: 1.8em;
    font-weight: 900;
    margin: 0;
    flex-grow: 1;
    text-align: center;
    color: white;
    border-bottom: none;
}

.user-header .user-details-group {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9em;
}

.user-header .user-details-group p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

#user-email {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 15ch;
}

#user-credits-display-container {
    display: inline-flex !important;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
}

.credits-label { display: none; }
#user-credits-value {
    color: var(--primary-accent);
    font-weight: 700;
    background: none;
    border: none;
    padding: 0;
}
#user-credits-value::before {
    content: '\f005'; /* FontAwesome star icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    color: #facc15;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Desktop - show language switcher in header-actions, hide in user-details */
.language-switcher-mobile {
    display: none;
}

.language-switcher-desktop {
    display: block;
}

/* Desktop - show credits inline in header-actions, hide mobile credits */
.credits-display-desktop {
    display: inline-block;
}

.credits-display-mobile {
    display: none;
}

#user-credits-value-mobile::before {
    content: '\f005'; /* FontAwesome star icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    color: #facc15;
}

/* Desktop - hide mobile logout, show desktop logout */
.logout-mobile {
    display: none;
}

.logout-desktop {
    display: inline-flex;
}

#logout-button,
#logout-button-desktop {
    background: var(--dark-bg);
    color: var(--medium-text);
    padding: 8px 16px;
    border: 1px solid var(--card-border);
    gap: 8px;
    border-radius: 50px;
    align-items: center;
}
#logout-button:hover,
#logout-button-desktop:hover {
    background-color: var(--card-border);
    color: white;
}

/* --- Tab Navigation Styles --- */
.tab-navigation {
    display: flex;
    justify-content: center;
    background-color: var(--dark-bg);
    padding: 0 20px;
    border-bottom: 1px solid var(--card-border);
    margin-top: -8px;
}

.tab-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}

.tab-navigation a {
    display: block;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    color: var(--medium-text);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease, border-color 0.2s ease;
    border: none;
    border-bottom: 3px solid transparent;
}

.tab-navigation a:hover {
    color: white;
}
.tab-navigation a.active {
    color: white;
    font-weight: 700;
    border-bottom: 3px solid var(--primary-accent);
}

/* --- Tab Content Base Styles --- */
#tab-content-wrapper { padding: 0; }
.tab-content { display: none; }
.tab-content.active { display: block; }


/* --- General Message Styles --- */
.status-message {
    font-weight: 500;
    margin: 15px auto;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95em;
    max-width: 600px;
}
.error, .status-message.error { color: #000000; background-color: #fca5a5; border-color: #dc2626; font-weight: 500; }
.success, .status-message.success { color: #4ade80; background-color: #14532d; border-color: #166534; }
.info, .status-message.info { color: #60a5fa; background-color: #1e3a8a; border-color: #1e40af; }
.warning, .status-message.warning { color: #facc15; background-color: #78350f; border-color: #92400e; }

#global-error-message { margin: 15px auto; }
#upload-status, #login-error, #register-error, #resend-status, #reset-status { margin-top: 15px; }


/* --- MODAL STYLES - COMPLETE FIX --- */
.modal {
    /* הגדרות מיקום וגודל - הכרחי למודאל */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;

    /* מרכוז המודאל */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;

    /* עיצוב הרקע */
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(5px);
}

.modal-dialog {
    background-color: var(--dark-bg-secondary);
    color: var(--light-text);
    border-radius: 12px;
    border: 1px solid var(--card-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);

    /* הגדרות גודל ותצוגה */
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 25px;
    position: relative;
}

.modal-dialog h3 {
    color: white;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 15px;
    margin-bottom: 20px;
    margin-top: 0;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--medium-text);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    padding: 0;
    width: auto;
    height: auto;
}

.modal-close:hover {
    color: white;
    transform: none;
    box-shadow: none;
}

/* מודאל בקשת התיקון */
.request-fix-modal-dialog {
    max-width: 600px;
}

.fix-reason-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.05);
}

.fix-reason-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.fix-reason-item label {
    margin: 0;
    color: var(--light-text);
    cursor: pointer;
    flex: 1;
}

/* שדות טופס במודאל */
.modal-dialog .form-group {
    margin-bottom: 20px;
}

.modal-dialog .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-text);
    font-weight: 600;
}

.modal-dialog textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    background-color: var(--dark-bg);
    color: var(--light-text);
    resize: vertical;
    font-family: inherit;
    box-sizing: border-box;
}

/* כפתורים במודאל */
.modal-dialog button {
    margin-top: 10px;
}

/* Primary/Secondary action buttons used in the auth partial */
.auth-action-buttons .primary-action {
    background: linear-gradient(90deg, var(--primary-accent), #7c3aed);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    width: 100%;
}
.auth-action-buttons .secondary-action {
    background: transparent;
    color: var(--medium-text);
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
}
.auth-action-buttons { flex-direction: column; }

/* מודאלים ספציפיים - שמירה על העיצוב הקיים */
#imageModal {
    display: block; /* explicit non-empty rule to avoid empty-rule lint */
}

#imageModal .modal-dialog {
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

#imageModal .modal-content {
    border: 3px solid var(--medium-text);
    border-radius: 4px;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#imageModal .modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

/* Mobile optimization for image modal */
@media (max-width: 768px) {
    #imageModal .modal-dialog {
        width: 95%;
        max-width: 95%;
    }

    #imageModal .modal-content {
        border: 2px solid var(--medium-text);
        max-width: 95vw;
        max-height: 85vh;
    }

    #imageModal .modal-content img {
        max-height: 85vh;
        width: auto;
        height: auto;
    }
}

#shareTryonModal .modal-dialog {
    background-color: var(--card-bg);
    color: #111827;
}

#shareTryonModal h3 {
    color: #111827;
    border-bottom: 1px solid #e5e7eb;
}

#shareTryonForm label {
    color: #4b5563;
}

#shareGarmentPreviewName {
    color: #111827;
}

#generatedLinkArea .link-copy-container input[type="text"] {
    background-color: var(--dark-bg);
    color: white;
    border-color: var(--card-border);
}

#copyShareLinkButton {
    background-color: #4b5563;
}

/* Responsive עבור מובייל */
@media (max-width: 767px) {
    .modal-dialog {
        width: 95%;
        padding: 20px;
        margin: 10px;
    }

    .request-fix-modal-dialog {
        max-width: none;
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }
}
/* --- START OF MODIFICATION --- */
/* --- RESPONSIVE ADJUSTMENTS for Mobile Header --- */
@media (max-width: 767px) {
    /* Main header layout using CSS Grid for precise centering */
    .user-header {
        padding: 10px 15px;
        display: grid;
        grid-template-columns: 1fr auto 1fr; /* Left, Center, Right columns */
        align-items: start; /* Align items to the top of their cells */
        gap: 10px;
    }

    /* Reset flex properties from desktop view */
    .user-header > *, .user-header .user-details-group, .user-header .header-actions {
        flex-basis: auto;
        order: initial; /* Reset order for mobile grid layout */
    }

    /* Center: Logo */
    .user-header h1 {
        grid-column: 2 / 3;
        text-align: center;
        margin: 0;
        padding-top: 5px; /* Small adjustment for vertical alignment */
        font-size: 1.5rem;
    }

    /* Right Column: User Name and Language Switcher */
    .user-header .user-details-group {
        grid-column: 3 / 4; /* CORRECTED: Move to the right column */
        justify-self: end; /* Align group to the end (right) */
        display: flex;
        flex-direction: column;
        align-items: flex-end; /* Align content inside to the right */
        gap: 8px;
        width: auto;
    }

    .user-header .user-details-group p {
        margin: 0;
        display: flex;
        justify-content: flex-end;
    }

    /* Hide the mobile versions of logout/credits which are in the wrong container */
    .user-details-group .logout-mobile,
    .user-details-group .credits-display-mobile {
        display: none !important;
    }

    /* Left Column: Logout Button and Credits */
    .header-actions {
        grid-column: 1 / 2; /* CORRECTED: Move to the left column */
        justify-self: start; /* Align group to the start (left) */
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Align content inside to the left */
        gap: 8px;
        width: auto;
    }

    /* Un-hide the desktop logout button and style it for mobile */
    .header-actions .logout-desktop {
        display: inline-flex !important;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Un-hide the desktop credits display and style it for mobile */
    .header-actions .credits-display-desktop {
        display: block !important;
        font-size: 0.8rem;
        text-align: left;
    }

    /* Ensure desktop language switcher remains hidden on mobile */
    .header-actions .language-switcher-desktop {
        display: none !important;
    }

    /* Tab navigation למובייל - תיקון אופקי עם גלילה */
    .tab-navigation {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-accent) transparent;
        padding: 0 10px;
    }

    .tab-navigation::-webkit-scrollbar {
        height: 4px;
    }

    .tab-navigation::-webkit-scrollbar-track {
        background: transparent;
    }

    .tab-navigation::-webkit-scrollbar-thumb {
        background-color: var(--primary-accent);
        border-radius: 4px;
    }

    .tab-navigation ul {
        display: flex;
        flex-wrap: nowrap;
        min-width: min-content;
        gap: 0;
    }

    .tab-navigation li {
        margin: 0;
    }

    .tab-navigation a {
        white-space: nowrap;
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        display: inline-block;
    }
}
/* --- END OF MODIFICATION --- */


/* --- Floating Action Buttons (FABs) Styling --- */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    /* --- Position on the LEFT side of screen --- */
    left: 20px;
    right: auto;
    /* --- END --- */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-fab i {
    line-height: 1;
}

/* Stacking Accessibility Widget Above WhatsApp */
div[data-uw-w-id] {
    bottom: 100px !important;
    /* --- Position on the LEFT side of screen --- */
    left: 20px !important;
    right: auto !important;
    transform-origin: bottom left !important;
    /* --- END --- */
    transition: bottom 0.3s ease-in-out;
}


/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

/* תיקון תצוגת Header למובייל - להוסיף ב-styles.css */

/* החלף את כל הקוד בתוך @media (max-width: 767px) עבור ה-header */

@media (max-width: 767px) {
    /* אותו מבנה כמו דסקטופ - Flexbox עם 3 אזורים */
    .user-header {
        padding: 12px 15px;
        display: flex; /* שינוי מ-grid ל-flex */
        justify-content: space-between;
        align-items: flex-start; /* יישור לראש - כולם באותו גובה */
        gap: 10px;
    }

    /* איפוס order מהגרסה הדסקטופית */
    .user-header > * {
        order: initial;
    }

    /* שמאל: התנתק + קרדיטים */
    .header-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        order: 1; /* שמאל */
    }

    /* מרכז: לוגו TryLa */
    .user-header h1 {
        order: 2; /* מרכז */
        text-align: center;
        margin: 0;
        font-size: 2.11rem; /* גדול ב-25% נוסף (1.69 * 1.25) */
        flex-grow: 0; /* לא תופס מקום נוסף */
    }

    /* ימין: אימייל + מחליף שפה */
    .user-header .user-details-group {
        order: 3; /* ימין */
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
        justify-content: flex-start; /* יישור לראש */
        margin-top: -8px !important; /* הזזת כל הקבוצה למעלה */
    }

    /* שם המשתמש באותה גובה של כפתור התנתקות */
    .user-header .user-details-group p {
        margin: 0 !important;
        line-height: 1.2;
        padding: 0 !important;
        display: flex;
        align-items: center;
        min-height: 32px; /* אותו גובה כמו כפתור */
        transform: translateY(-3px); /* הזזה נוספת למעלה */
    }

    #user-email {
        display: inline-flex;
        align-items: center;
    }

    /* הצגת כפתור התנתקות דסקטופ */
    .header-actions .logout-desktop {
        display: inline-flex !important;
        padding: 6px 12px;
        font-size: 0.60rem;
    }

    /* הצגת קרדיטים דסקטופ */
    .header-actions .credits-display-desktop {
        display: block !important;
        font-size: 1.17rem !important; /* גדול ב-30% נוסף (0.9 * 1.3) */
    }

    /* הגדלת תצוגת מספר הקרדיטים */
    .header-actions .credits-display-desktop #user-credits-value {
        font-size: 1.3em !important; /* גדול עוד יותר */
        padding: 4px 8px !important;
    }

    /* הגדלת הכוכב */
    .header-actions .credits-display-desktop #user-credits-value::before {
        font-size: 1.2em !important;
    }

    /* הסתרת גרסת מובייל של logout */
    .user-details-group .logout-mobile {
        display: none !important;
    }

    /* הסתרת גרסת מובייל של credits */
    .user-details-group .credits-display-mobile {
        display: none !important;
    }

    /* הסתרת language switcher דסקטופ מ-header-actions */
    .header-actions .language-switcher-desktop {
        display: none !important;
    }

    /* הצגת language switcher במובייל בצד ימין */
    .user-details-group .language-switcher-mobile {
        display: block !important;
    }

    /* הקטנת כפתור השפה במובייל */
    .user-details-group .language-switcher-mobile select,
    .user-details-group .language-switcher-mobile button {
        font-size: 0.7rem;
        padding: 4px 8px;
        min-height: auto;
    }

    /* אימייל קומפקטי יותר */
    #user-email {
        font-size: 1.2rem; /* אותו גודל כמו כפתור התנתקות */
        max-width: 12ch;
    }
/* שינוי כיוון הכפתורים לעמודה */
    .landing-nav-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: flex-end !important;
    }

    /* תיקון ה-wrapper הפנימי שעוטף את הכפתורים */
    .landing-nav-buttons > div {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: flex-end !important;
}
/* Progress Indicator Styles for Registration Flow */
.progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.875rem;
    text-align: center;
    color: #666;
    font-weight: 500;
}

/* Default step styles */
.progress-step .step-number {
    background-color: #e0e0e0;
    color: #999;
    border: 2px solid #e0e0e0;
}

/* Active step styles */
.progress-step.active .step-number {
    background-color: #4a90e2;
    color: white;
    border: 2px solid #4a90e2;
}

.progress-step.active .step-label {
    color: #4a90e2;
    font-weight: 600;
}

/* Completed step styles */
.progress-step.completed .step-number {
    background-color: #4caf50;
    color: white;
    border: 2px solid #4caf50;
}

.progress-step.completed .step-label {
    color: #4caf50;
    font-weight: 600;
}

/* Progress line between steps */
.progress-line {
    flex: 1;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 1rem;
    position: relative;
    top: -20px; /* Align with step numbers */
}

.progress-line.completed {
    background-color: #4caf50;
}

/* Step description styles */
.step-description {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

/* Responsive design for progress indicator */
@media (max-width: 480px) {
    .progress-indicator {
        margin: 1rem 0;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .progress-line {
        margin: 0 0.5rem;
    }
}

/* תיקון כפתור שפות במובייל - פשוט וקל */

/* דף הנחיתה */
@media (max-width: 767px) {
    .landing-nav-buttons-wrapper {
        flex-direction: column !important;
        align-items: flex-end !important;
    }
}



