/* ========================================= */
/* ⭐️ JYOTHI TAILORS - PREMIUM PROFILE CSS ⭐️*/
/* ========================================= */

/* === 1. BASE STYLES & VARIABLES === */
:root {
    --primary-color: #3A1E58; 
    --secondary-color: #f43f7d; 
    --accent-color: #CBBF81; 
    --text-dark: #141726;
    --text-light: #666666;
    --bg-light: #fcfcfc;
    --white: #ffffff;
    --border-color: #E3E9EF;
    --transition: all 0.3s ease;
}
.profile-nav a {
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f1f5f9;
}
.profile-nav a:hover {
    background: #f8fafc;
}
.profile-nav a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Poppins', sans-serif; 
    -webkit-tap-highlight-color: transparent;
}

body { 
    background-color: var(--bg-light); 
    color: var(--text-dark); 
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.container { 
    max-width: 1450px; 
    margin: 0 auto; 
    padding: 0 20px; 
    width: 100%;
}

/* === 2. PREMIUM DESKTOP NAVBAR === */
header { 
    background-color: var(--white); 
    box-shadow: 0px 4px 16px rgba(43, 52, 69, 0.05); 
    position: sticky; 
    top: 0; 
    z-index: 9999; 
    border-bottom: 1px solid var(--border-color); 
}

.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 85px; 
    position: relative; 
}

.nav-left { display: none; } 

.logo {
    display: flex;
    align-items: center;
    margin-right: auto; 
}

.logo img { height: 65px; object-fit: contain; }

.nav-links { 
    display: flex; 
    gap: 2.8rem; 
    align-items: center; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    margin: 0; 
}

.nav-links a { 
    font-weight: 600; 
    font-size: 0.95rem; 
    color: var(--primary-color); 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    position: relative; 
    padding-bottom: 5px; 
}

.nav-links a::after { 
    content: ''; 
    position: absolute; 
    width: 100%; 
    height: 2px; 
    bottom: 0; 
    left: 0; 
    background-color: var(--secondary-color); 
    transform: scaleX(0); 
    transition: transform 0.3s ease-out; 
}

.nav-links a:hover::after, 
.nav-links a.active-link::after { 
    transform: scaleX(1); 
}

.nav-links a:hover, .nav-links a.active-link { 
    color: var(--secondary-color); 
}

.nav-icons { 
    display: flex; 
    gap: 1.8rem; 
    font-size: 1.4rem; 
    color: var(--primary-color); 
    align-items: center; 
}

.nav-icons i { cursor: pointer; transition: var(--transition); }
.nav-icons i:hover { color: var(--secondary-color); transform: translateY(-2px); }

.cart-wrapper { position: relative; display: flex; align-items: center; cursor: pointer; }

.cart-badge { 
    position: absolute; 
    top: -6px; 
    right: -8px; 
    background-color: var(--secondary-color); 
    color: white; 
    font-size: 0.65rem; 
    font-weight: 700; 
    height: 18px; 
    width: 18px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    border: 2px solid var(--white); 
}

.close-menu-btn, .mobile-bottom-nav { display: none; }

/* === 3. PAGE BANNER === */
.page-banner { 
    background-color: var(--accent-color); 
    padding: 1.5rem 20px; 
    margin-bottom: 3rem; 
    color: var(--primary-color); 
    text-align: center; 
}

.page-banner h1 { font-size: 2.8rem; margin-bottom: 0.5rem; letter-spacing: 1px; }
.page-banner p { font-size: 1.1rem; color: var(--primary-color); font-weight: 500; }

/* === 4. PROFILE DASHBOARD (STICKY DESKTOP LAYOUT) === */
.profile-section { padding-bottom: 0.5rem; flex-grow: 1; }

.profile-layout {
    display: grid;
    grid-template-columns: 300px 1fr; /* Optimized width for sidebar */
    gap: 3rem;
    align-items: start; /* CRITICAL FOR STICKY TO WORK */
}

/* --- ⭐️ LEFT SIDEBAR (STATIC DESKTOP) ⭐️ --- */
.sticky-sidebar {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 30px rgba(58, 30, 88, 0.05);
    border: 1px solid var(--border-color);
    
    /* ⭐️ THE MAGIC LOCK ⭐️ */
    position: sticky;
    top: 110px; 
    align-self: start; 
    height: max-content;
    z-index: 10;
}

.user-greeting-card { text-align: center; border-bottom: 1px solid var(--border-color); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }

.avatar-circle {
    width: 90px; height: 90px;
    margin: 0 auto 15px; border-radius: 50%;
    overflow: hidden; border: 3px solid var(--border-color);
    background: #f1f5f9; display: flex; justify-content: center; align-items: center;
}

.avatar-circle img { width: 100%; height: 100%; object-fit: cover; }
.avatar-circle i { font-size: 3rem; color: var(--primary-color); }

.greeting-text h3 { font-size: 1.3rem; color: var(--primary-color); margin-bottom: 4px; }
.user-email-text { font-size: 0.85rem; color: var(--text-light); transition: var(--transition); }

/* ⭐️ NEW: User Stats Badge ⭐️ */
.user-stats { margin-top: 15px; }
.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px dashed #cbd5e1;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}
.stat-badge i { color: var(--secondary-color); font-size: 1rem; }
.stat-badge strong { color: var(--primary-color); font-size: 1.1rem; font-weight: 700; }

/* Sidebar Navigation */
.profile-nav-links { display: flex; flex-direction: column; gap: 8px; }

.profile-nav-links a, .logout-link {
    display: flex; align-items: center; gap: 15px; padding: 12px 20px;
    border-radius: 10px; color: var(--text-light); font-weight: 500;
    font-size: 1rem; transition: var(--transition); border: none;
    background: none; cursor: pointer; text-align: left; width: 100%;
}

.profile-nav-links a:hover { background: #f8fafc; color: var(--primary-color); }
.profile-nav-links a.active-tab { background: var(--primary-color); color: var(--white); box-shadow: 0 5px 15px rgba(58, 30, 88, 0.2); font-weight: 600;}
.profile-nav-links i { font-size: 1.1rem; width: 24px; text-align: center; }

.logout-link { color: #ef4444; margin-top: 1rem; }
.logout-link:hover { background: #fef2f2; color: #dc2626; }

/* --- ⭐️ RIGHT CONTENT (FORM CARD - SCROLLS) ⭐️ --- */
.profile-content { min-height: 100px; } /* Ensures this side takes up space to allow scrolling */

.form-card {
    background: var(--white); padding: 3rem; border-radius: 16px;
    box-shadow: 0 10px 30px rgba(58, 30, 88, 0.05); border: 1px solid var(--border-color);
}

.form-card h2 { font-size: 1.8rem; margin-bottom: 5px; }
.form-subtitle { color: var(--text-light); font-size: 0.95rem; border-bottom: 1px solid var(--border-color); padding-bottom: 1.5rem; margin-bottom: 2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group.full-width { grid-column: 1 / -1; }

.input-group label { display: block; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; font-size: 0.9rem; }
.input-group input, .input-group textarea {
    width: 100%; padding: 12px 15px; border: 1px solid var(--border-color);
    border-radius: 8px; font-size: 1rem; outline: none; transition: var(--transition);
    font-family: 'Poppins', sans-serif; color: var(--text-dark); background: #ffffff;
}

.input-group input:focus, .input-group textarea:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(58, 30, 88, 0.1); }
.input-group textarea { resize: vertical; min-height: 100px; }

.text-right { text-align: right; margin-top: 2rem; }

.save-changes-btn {
    background: var(--secondary-color); color: var(--white); border: none;
    padding: 12px 30px; border-radius: 8px; font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: var(--transition); display: inline-flex;
    align-items: center; gap: 10px;
}
.save-changes-btn:hover { background: #d12b63; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(244, 63, 125, 0.2); }

/* === 5. PREMIUM FOOTER === */
footer { background-color: var(--white); padding: 0.5rem 0.5rem 0.5rem; border-top: 1px solid var(--border-color); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; max-width: 1400px; margin: 0 auto; }
.footer-col h4 { color: var(--primary-color); font-size: 1.1rem; margin-bottom: 1.5rem; font-weight: 700; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--text-light); transition: var(--transition); font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--primary-color); font-weight: 500; }
.footer-bottom { text-align: center; padding-top: 2rem; margin-top: 3rem; border-top: 1px solid var(--border-color); color: var(--text-light); font-size: 0.9rem; }

/* === 6. TOAST NOTIFICATIONS (BOTTOM CENTER) === */
.toast-container { 
    position: fixed; 
    bottom: 30px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 100001; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.custom-toast { 
    background: var(--primary-color); 
    color: var(--white); 
    padding: 12px 25px; 
    border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
    margin-top: 10px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-weight: 500; 
    animation: popUp 0.4s ease forwards;
}

@keyframes popUp { 
    from { transform: translateY(100px); opacity: 0;} 
    to { transform: translateY(0); opacity: 1;} 
}

/* ========================================= */
/* 💻 TABLET ENGINE (Between 769px and 992px) */
/* ========================================= */
@media (max-width: 992px) {
    .profile-layout { grid-template-columns: 1fr; gap: 2rem; }
    .sticky-sidebar { position: static; height: auto; display: flex; align-items: center; gap: 20px; padding: 1.5rem; flex-wrap: wrap; z-index: auto; }
    .user-greeting-card { border-bottom: none; padding-bottom: 0; margin-bottom: 0; display: flex; align-items: center; gap: 15px; border-right: 1px solid var(--border-color); padding-right: 20px; text-align: left; }
    .avatar-circle { margin: 0; width: 70px; height: 70px; }
    
    /* Reposition stats for tablet */
    .user-stats { margin-top: 5px; }
    
    .profile-nav-links { flex-direction: row; flex-wrap: wrap; flex: 1; align-items: center; }
    .profile-nav-links a, .logout-link { width: auto; margin-top: 0; padding: 8px 15px; }
}

/* ========================================= */
/* ⭐️ 7. ORDERS PAGE STYLES ⭐️ */
/* ========================================= */
.orders-container { display: flex; flex-direction: column; gap: 24px; margin-top: 10px; }
.order-card { background: #ffffff; border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; box-shadow: 0 5px 15px rgba(58, 30, 88, 0.03); transition: var(--transition); }
.order-card:hover { box-shadow: 0 12px 25px rgba(58, 30, 88, 0.08); transform: translateY(-2px); }
.order-card-header { background-color: #f8fafc; border-bottom: 1px solid var(--border-color); padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.header-info-group { display: flex; gap: 40px; flex-wrap: wrap; }
.header-block { display: flex; flex-direction: column; gap: 4px; }
.header-label { font-size: 0.75rem; text-transform: uppercase; color: var(--text-light); font-weight: 600; letter-spacing: 0.5px; }
.header-value { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; }
.order-id-block { text-align: right; }
.order-id-link { color: var(--primary-color); font-weight: 700; font-size: 0.95rem; }
.order-card-body { padding: 24px; }
.delivery-status-banner { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; padding-bottom: 15px; border-bottom: 1px dashed var(--border-color); }
.banner-Pending { color: #d97706; }
.banner-Processing { color: #2563eb; }
.banner-Completed { color: #10b981; }
.banner-Cancelled { color: #ef4444; }
.order-content-split { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; }
.ordered-items-list { display: flex; flex-direction: column; gap: 16px; flex: 1; }
.ordered-item-row { display: flex; align-items: center; gap: 16px; }
.item-thumbnail { width: 70px; height: 90px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border-color); flex-shrink: 0; }
.item-info { display: flex; flex-direction: column; gap: 4px; }
.item-name { font-weight: 600; color: var(--text-dark); font-size: 1.05rem; }
.item-qty-price { color: var(--text-light); font-size: 0.85rem; font-weight: 500; }
.order-actions { display: flex; flex-direction: column; gap: 12px; min-width: 200px; }
.btn-enterprise { width: 100%; padding: 10px 16px; border-radius: 8px; font-size: 0.95rem; font-weight: 600; text-align: center; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; border: none; }
.btn-cancel { background-color: #fff; color: #ef4444; border: 1px solid #fca5a5; }
.btn-cancel:hover { background-color: #fef2f2; border-color: #ef4444; }
.btn-track { background-color: #f8fafc; color: var(--text-dark); border: 1px solid var(--border-color); }
.btn-track:hover { background-color: #f1f5f9; border-color: #94a3b8; }
.empty-orders { text-align: center; padding: 60px 20px; background: #fff; border-radius: 16px; border: 1px dashed #cbd5e1; color: var(--text-light); }

/* ========================================= */
/* ⭐️ 8. WISHLIST PAGE STYLES ⭐️ */
/* ========================================= */
.wishlist-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 15px; }
.wishlist-card { background: var(--white); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.03); transition: var(--transition); position: relative; display: flex; flex-direction: column; }
.wishlist-card:hover { box-shadow: 0 10px 20px rgba(58, 30, 88, 0.08); transform: translateY(-4px); }
.wishlist-img-wrapper { position: relative; height: 250px; width: 100%; background: #f8fafc; }
.wishlist-img-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.remove-wishlist-btn { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.9); border: none; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ef4444; font-size: 1rem; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: var(--transition); z-index: 10; }
.remove-wishlist-btn:hover { background: #fee2e2; transform: scale(1.1); }
.wishlist-details { padding: 15px; display: flex; flex-direction: column; flex-grow: 1; }
.wishlist-details h4 { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wishlist-category { font-size: 0.75rem; color: var(--secondary-color); font-weight: 600; margin-bottom: 10px; }
.price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.wishlist-price { font-weight: 700; color: var(--primary-color); font-size: 1.1rem; }
.move-to-cart-btn { background: var(--primary-color); color: var(--white); border: none; padding: 8px 12px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.move-to-cart-btn:hover { background: var(--secondary-color); box-shadow: 0 4px 10px rgba(244, 63, 125, 0.2); }
.empty-wishlist { text-align: center; padding: 60px 20px; background: #fff; border-radius: 16px; border: 1px dashed #cbd5e1; color: var(--text-light); }
.shop-now-btn { display: inline-block; margin-top: 15px; padding: 12px 30px; background: var(--primary-color); color: white; border-radius: 8px; font-weight: 600; transition: var(--transition); }

/* ========================================= */
/* ⭐️ 9. SECURITY PAGE STYLES ⭐️ */
/* ========================================= */
.security-cards-wrapper { display: flex; flex-direction: column; gap: 30px; }
.danger-zone { border: 1px solid #fca5a5; background-color: #fef2f2; }
.danger-zone h2 { color: #ef4444; }
.danger-zone .form-subtitle { border-bottom-color: #fca5a5; color: #b91c1c; }
.btn-danger { background-color: #fff; color: #ef4444; border: 2px solid #ef4444; padding: 10px 25px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-danger:hover { background-color: #ef4444; color: #fff; }
.password-wrapper { position: relative; }
.toggle-password { position: absolute; right: 15px; top: 42px; color: var(--text-light); cursor: pointer; transition: var(--transition); }
.toggle-password:hover { color: var(--primary-color); }

/* Orders & Wishlist Mobile Fixes */
@media (max-width: 768px) {
    .order-content-split { flex-direction: column; }
    .order-actions { width: 100%; flex-direction: row; flex-wrap: wrap; }
    .btn-enterprise { flex: 1; min-width: 140px; }
    .header-info-group { gap: 20px; width: 100%; justify-content: space-between;}
    .order-id-block { text-align: left; width: 100%; margin-top: 10px; border-top: 1px solid #e2e8f0; padding-top: 10px;}
    .wishlist-container { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .wishlist-img-wrapper { height: 180px; }
    .wishlist-details { padding: 10px; }
    .wishlist-details h4 { font-size: 0.85rem; }
    .wishlist-category { font-size: 0.65rem; margin-bottom: 8px; }
    .wishlist-price { font-size: 0.95rem; }
    .move-to-cart-btn { padding: 6px 8px; font-size: 0.75rem; width: 100%; justify-content: center; }
    .price-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ========================================= */
/* 📱 NATIVE APP MOBILE ENGINE (Under 768px) */
/* ========================================= */
@media (max-width: 768px) {
    
    body { padding-bottom: 80px; } 

    /* Header */
    .navbar { display: flex !important; align-items: center !important; padding: 10px 20px !important; height: 65px !important; }
    .nav-left { display: flex !important; flex: 1; justify-content: flex-start; }
    .logo { display: flex; flex: 1; justify-content: center; position: static; margin: 0; }
    .nav-icons { display: flex !important; flex: 1; justify-content: flex-end; gap: 1rem; }
    .logo img { height: 50px !important; } 
    .desktop-only { display: none !important; }

    .mobile-menu-toggle { background: none; border: none; font-size: 1.6rem; color: var(--primary-color); cursor: pointer; }

    /* Menu */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important; 
        width: 75vw !important; 
        height: 100vh !important;
        background: #ffffff !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 80px 30px !important;
        box-shadow: 5px 0 15px rgba(0,0,0,0.3) !important;
        transition: left 0.3s ease !important;
        z-index: 100000 !important;
        gap: 25px !important;
        transform: none !important; /* Removes desktop centering */
    }
    .nav-links.active { left: 0 !important; }
    .close-menu-btn { display: block !important; position: absolute; top: 30px; right: 30px; background: none; border: none; font-size: 1.8rem; color: var(--primary-color); }

    .page-banner { padding: 1.5rem 10px; margin-bottom: 1.5rem; }
    .page-banner h1 { font-size: 1.8rem; }
    .page-banner p { font-size: 0.9rem; }


    .social-icons { display: flex; gap: 1.2rem; margin-top: 1rem; }
.social-icons i { font-size: 1.5rem; color: var(--primary-color); cursor: pointer; transition: var(--transition); }
.social-icons i:hover { color: var(--secondary-color); transform: scale(1.1); }
    /* ⭐️ PROFILE MOBILE LAYOUT (SANA AFZAL STYLE) ⭐️ */
    .profile-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .sticky-sidebar { 
        position: static; 
        padding: 1.5rem; 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        z-index: auto;
    }
    
    .user-greeting-card { 
        border-right: none; 
        padding-right: 0; 
        border-bottom: none;
        padding-bottom: 1rem; 
        margin-bottom: 0.5rem; 
        width: 100%; 
        justify-content: center; 
        flex-direction: column; 
        text-align: center;
    }

    .avatar-circle { margin: 0 auto 10px; width: 85px; height: 85px; }
    
    /* Email Pill Design */
    .user-email-text {
        background: #f1f5f9;
        color: var(--primary-color);
        padding: 6px 16px;
        border-radius: 50px;
        display: inline-block;
        margin-top: 8px;
        font-weight: 500;
        font-size: 0.8rem;
    }

    /* Mobile Orders Placed Badge */
    .user-stats { margin-top: 15px; }
    .stat-badge { font-size: 0.8rem; padding: 6px 12px; }
    
    /* Elegant Vertical List Menu */
    .profile-nav-links { 
        flex-direction: column; 
        width: 100%; 
        gap: 0; 
    }
    
    .profile-nav-links a, .logout-link { 
        width: 100%; 
        padding: 18px 5px; 
        font-size: 1rem; 
        margin-top: 0; 
        background: transparent; 
        border-radius: 0; 
        border-bottom: 1px solid var(--border-color);
        color: var(--text-dark);
        justify-content: flex-start;
    }

    .logout-link { 
        border-bottom: none; 
        border-top: 1px solid var(--border-color); 
        margin-top: 5px;
        justify-content: flex-start;
        padding-left: 5px;
    }
    
    /* Adds the Right Chevron arrow (>) */
    .profile-nav-links a::after {
        content: '\f054'; 
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto; 
        color: #94a3b8;
        font-size: 0.85rem;
    }

    .profile-nav-links a.active-tab { 
        background: transparent; 
        color: var(--primary-color); 
        box-shadow: none;
        font-weight: 700;
    }
    
    .profile-nav-links a.active-tab::after { color: var(--primary-color); }
    .logout-link { background: transparent; color: #ef4444; }

    /* Form Adjustments */
    .form-card { padding: 1.5rem; }
    .form-card h2 { font-size: 1.4rem; }
    .form-grid { grid-template-columns: 1fr; gap: 1rem; }
    
    .input-group input, .input-group textarea { padding: 10px 12px; font-size: 0.95rem; }
    
    .text-right { text-align: center; }
    .save-changes-btn { width: 100%; justify-content: center; padding: 12px; }

    /* ⭐️ THE TOAST MOBILE OVERRIDE ENGAGED ⭐️ */
    .toast-container { 
        bottom: 70px !important; 
        width: 90%; 
        left: 50%;
        transform: translateX(-50%);
    }
    
    .custom-toast { 
        width: 70%; 
        justify-content: center; 
        text-align: center; 
        font-size: 0.85rem; 
        padding: 10px 15px; 
    }

    /* Bottom Nav */
    .mobile-bottom-nav {
        display: flex !important; justify-content: space-around; align-items: center;
        position: fixed; bottom: 0; left: 0; width: 100%;
        background: var(--white); box-shadow: 0 -4px 15px rgba(0,0,0,0.08); padding: 10px 0 15px 0; z-index: 99999;
    }

    .mobile-bottom-nav .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-light); font-size: 0.65rem; gap: 4px; font-weight: 500; }
    .mobile-bottom-nav .nav-item i { font-size: 1.2rem; }
    .mobile-bottom-nav .nav-item.active { color: var(--primary-color); font-weight: 700; }
}