        /* Loading Spinner Overlay */
        .loading-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(4px);
            z-index: 9999;
        }
        .spinner {
            width: 80px;
            height: 80px;
            border: 3px solid rgba(255, 119, 0, 0.1);
            border-top-color: #ff7700;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Profile page styles */
        /* Profile specific styles */
        .profile-hero {
            min-height: 40vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 60px;
            background: linear-gradient(135deg, var(--bg-dark) 0%, var(--panel-dark) 50%, var(--light-gray) 100%);
        }

        .profile-hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .profile-hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .profile-hero p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: var(--text-secondary);
        }

        .profile-content {
            padding: 60px 20px 80px;
            max-width: 1920px;
            margin: 0 auto;
        }

        .profile-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .profile-sidebar {
            flex: 0 0 350px;
        }

        .profile-main {
            flex: 1 1 520px;
            min-width: 0;
        }

        .profile-card {
            background: rgba(42, 42, 42, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 119, 0, 0.1);
            overflow: hidden;
        }

        .profile-sidebar {
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .profile-header {
            padding: 40px 24px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 119, 0, 0.1);
        }

        .profile-side-nav {
            padding: 16px 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            border-bottom: 1px solid rgba(255, 119, 0, 0.1);
        }

        .profile-side-nav .profile-nav-link {
            justify-content: center;
        }

        .profile-avatar {
            width: 96px;
            height: 96px;
            border-radius: 50%;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 119, 0, 0.2);
            border: 2px solid rgba(255, 119, 0, 0.2);
        }

        .profile-avatar svg {
            width: 48px;
            height: 48px;
            color: var(--accent);
        }

        .profile-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .profile-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .profile-title {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .profile-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(255, 119, 0, 0.2);
            color: var(--accent);
            border: 1px solid rgba(255, 119, 0, 0.3);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .profile-badge.active {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            border-color: rgba(34, 197, 94, 0.3);
        }

        .profile-actions {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .profile-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: 'Space Grotesk', Roboto, sans-serif;
        }

        .profile-btn-primary {
            background: var(--accent);
            color: #fff;
        }

        .profile-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
        }

        .profile-btn-outline {
            border: 2px solid var(--accent);
            color: var(--accent);
            background: transparent;
        }

        .profile-btn-outline:hover {
            background: var(--accent);
            color: #fff;
        }

        .profile-btn-danger {
            background: #dc3545;
            color: #fff;
            margin-top: 12px;
        }

        .profile-btn-danger:hover {
            background: #c82333;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
        }

        .profile-btn svg {
            width: 16px;
            height: 16px;
        }

        .profile-main {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .info-card {
            background: rgba(42, 42, 42, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            border: 1px solid rgba(255, 119, 0, 0.1);
            padding: 32px;
        }

        .info-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 119, 0, 0.1);
        }

        .info-card-header svg {
            width: 24px;
            height: 24px;
            color: var(--accent);
        }

        .info-card-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .info-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .info-grid > * {
            flex: 1 1 250px;
            min-width: 0;
        }

        .info-item label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .info-item p {
            font-size: 0.875rem;
            color: var(--text-primary);
        }

        .info-item-inline {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .verified-badge {
            display: inline-block;
            padding: 2px 8px;
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .quick-actions-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .quick-actions-grid > * {
            flex: 1 1 200px;
        }

        .quick-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: 'Space Grotesk', Roboto, sans-serif;
        }

        .quick-action-btn svg {
            width: 16px;
            height: 16px;
        }

        .quick-action-primary {
            background: var(--accent);
            color: #fff;
        }

        .quick-action-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
        }

        .quick-action-outline {
            border: 2px solid var(--accent);
            color: var(--accent);
            background: transparent;
        }

        .quick-action-outline:hover {
            background: var(--accent);
            color: #fff;
        }

        /* Edit Profile Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(4px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay.active {
            display: flex;
        }

        .edit-modal {
            background: var(--bg-dark);
            border-radius: 16px;
            border: 1px solid rgba(255, 119, 0, 0.2);
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            padding: 24px;
            border-bottom: 1px solid rgba(255, 119, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .modal-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .modal-header h2 svg {
            width: 24px;
            height: 24px;
            min-width: 24px;
            color: var(--accent);
        }

        .close-modal-btn {
            background: none;
            border: none;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .close-modal-btn:hover {
            background: rgba(255, 119, 0, 0.1);
            color: var(--accent);
        }

        .close-modal-btn svg {
            width: 20px;
            height: 20px;
        }

        .modal-body {
            padding: 24px;
        }

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

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .form-group input {
            width: 100%;
            padding: 12px 16px;
            background: rgba(42, 42, 42, 0.8);
            border: 1px solid rgba(255, 119, 0, 0.2);
            border-radius: 8px;
            color: var(--text-primary);
            font-size: 0.875rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.1);
        }

        .form-group input:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .modal-footer {
            padding: 24px;
            border-top: 1px solid rgba(255, 119, 0, 0.1);
            display: flex;
            gap: 12px;
            justify-content: flex-end;
        }

        .btn-modal {
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Space Grotesk', Roboto, sans-serif;
        }

        .btn-modal-cancel {
            background: transparent;
            border: 2px solid rgba(255, 119, 0, 0.3);
            color: var(--text-primary);
        }

        .btn-modal-cancel:hover {
            background: rgba(255, 119, 0, 0.1);
        }

        .btn-modal-save {
            background: var(--accent);
            color: #fff;
        }

        .btn-modal-save:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
        }

        .btn-modal-save:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Password Form Styles */
        .password-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .password-form .form-group {
            margin-bottom: 0;
        }

        .password-form label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .password-form .input-wrapper {
            position: relative;
        }

        .password-form input {
            width: 100%;
            padding: 14px 48px 14px 16px;
            border: 2px solid rgba(255, 119, 0, 0.2);
            border-radius: 12px;
            background: rgba(26, 26, 26, 0.6);
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-family: 'Space Grotesk', Roboto, sans-serif;
        }

        .password-form input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.15);
            background: rgba(26, 26, 26, 0.8);
        }

        .password-form input::placeholder {
            color: var(--muted);
        }

        .password-toggle-btn {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--muted);
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.3s ease;
        }

        .password-toggle-btn:hover {
            color: var(--accent);
        }

        .password-toggle-btn svg {
            width: 20px;
            height: 20px;
        }

        .password-form .form-hint {
            color: var(--text-secondary);
            font-size: 0.8rem;
            margin-top: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .password-form .form-hint svg {
            width: 14px;
            height: 14px;
            color: var(--accent);
            flex-shrink: 0;
        }

        .password-form button[type="submit"] {
            width: 100%;
            margin-top: 8px;
            padding: 14px 24px;
            border-radius: 12px;
            background: var(--accent);
            color: #fff;
            border: none;
            font-family: 'Space Grotesk', Roboto, sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .password-form button[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 119, 0, 0.4);
        }

        .password-form button[type="submit"]:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .password-form button[type="submit"] svg {
            width: 20px;
            height: 20px;
        }

        /* Password Strength Indicator */
        .strength-bar {
            flex: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .strength-bar.active-weak {
            background: #ef4444;
        }

        .strength-bar.active-fair {
            background: #f97316;
        }

        .strength-bar.active-good {
            background: #eab308;
        }

        .strength-bar.active-strong {
            background: #22c55e;
        }

        .alert-message {
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
            align-items: center;
            gap: 10px;
        }

        .alert-message.show {
            display: flex;
        }

        .alert-message svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .alert-success {
            background: rgba(34, 197, 94, 0.2);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #22c55e;
        }

        .alert-error {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }

        /* Orders Section */
        .orders-loading {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-secondary);
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(255, 119, 0, 0.2);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 16px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .orders-empty {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-secondary);
        }

        .orders-empty svg {
            width: 64px;
            height: 64px;
            margin-bottom: 16px;
            color: var(--muted);
        }

        .orders-empty h3 {
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .orders-empty a {
            display: inline-block;
            margin-top: 16px;
            padding: 10px 24px;
            background: var(--accent);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .orders-empty a:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
        }

        .view-all-orders-link {
            color: var(--accent);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .view-all-orders-link:hover {
            color: #ff9933;
        }

        .view-all-btn {
            display: inline-block;
            padding: 12px 28px;
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-2px);
        }

        .orders-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .order-card {
            background: rgba(42, 42, 42, 0.6);
            border-radius: 12px;
            border: 1px solid rgba(255, 119, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .order-card:hover {
            border-color: rgba(255, 119, 0, 0.3);
        }

        .order-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            background: rgba(255, 119, 0, 0.05);
            border-bottom: 1px solid rgba(255, 119, 0, 0.1);
            flex-wrap: wrap;
            gap: 12px;
        }

        .order-info {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .order-number {
            font-weight: 700;
            color: var(--accent);
        }

        .order-date {
            color: var(--text-secondary);
            font-size: 0.875rem;
        }

        .order-status {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .order-status.pending {
            background: rgba(234, 179, 8, 0.2);
            color: #eab308;
        }

        .order-status.confirmed, .order-status.processing {
            background: rgba(59, 130, 246, 0.2);
            color: #3b82f6;
        }

        .order-status.shipped {
            background: rgba(168, 85, 247, 0.2);
            color: #a855f7;
        }

        .order-status.delivered {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .order-status.cancelled, .order-status.refunded {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        .order-items {
            padding: 16px 20px;
        }

        .order-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 8px 0;
        }

        .order-item:not(:last-child) {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .order-item-image {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: rgba(42, 42, 42, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
        }

        .order-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .order-item-image svg {
            width: 20px;
            height: 20px;
            color: var(--muted);
        }

        .order-item-details {
            flex: 1;
        }

        .order-item-name {
            font-weight: 500;
            font-size: 0.9rem;
        }

        .order-item-quantity {
            color: var(--text-secondary);
            font-size: 0.8rem;
        }

        .order-item-price {
            font-weight: 600;
            color: var(--accent);
        }

        .order-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            background: rgba(255, 119, 0, 0.05);
            border-top: 1px solid rgba(255, 119, 0, 0.1);
        }

        .order-total {
            font-size: 1.1rem;
        }

        .order-total-label {
            color: var(--text-secondary);
            margin-right: 8px;
        }

        .order-total-value {
            font-weight: 700;
            color: var(--accent);
        }

        .order-payment {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .payment-status {
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .payment-status.paid {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
        }

        .payment-status.pending {
            background: rgba(234, 179, 8, 0.2);
            color: #eab308;
        }

        .payment-status.failed {
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
        }

        /* Responsive */
        @media (max-width: 991.98px) {
            .profile-grid {
                flex-direction: column;
            }

            .profile-sidebar {
                flex: 1 1 auto;
                width: 100%;
                position: static;
            }
        }

        @media (max-width: 767.98px) {
            .profile-hero {
                padding: 100px 20px 40px;
            }

            .profile-content {
                padding: 40px 20px 60px;
            }

            .info-card {
                padding: 24px 20px;
            }

            .info-grid {
                flex-direction: column;
            }

            .quick-actions-grid {
                flex-direction: column;
            }

            .order-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .order-footer {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }
        }

        /* Password Security Card Styles */
        .password-security-card {
            background: linear-gradient(135deg, rgba(42, 42, 42, 0.7) 0%, rgba(30, 30, 30, 0.9) 100%);
            border: 1px solid rgba(255, 119, 0, 0.15);
        }

        .password-change-section {
            padding: 8px 0;
        }

        .security-info-box {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: rgba(255, 119, 0, 0.08);
            border: 1px solid rgba(255, 119, 0, 0.15);
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .security-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent) 0%, #e56a00 100%);
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
        }

        .security-icon svg {
            width: 24px;
            height: 24px;
            color: white;
        }

        .security-content h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .security-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        .security-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 24px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
            flex-wrap: wrap;
        }

        .security-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-align: center;
        }

        .step-number {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 119, 0, 0.15);
            border: 2px solid rgba(255, 119, 0, 0.4);
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--accent);
        }

        .security-step span {
            font-size: 0.8rem;
            color: var(--text-secondary);
            max-width: 100px;
        }

        .step-arrow {
            color: rgba(255, 119, 0, 0.4);
        }

        .step-arrow svg {
            width: 20px;
            height: 20px;
        }

        .change-password-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            background: linear-gradient(135deg, var(--accent) 0%, #e56a00 100%);
            color: #fff;
            font-family: 'Space Grotesk', Roboto, sans-serif;
        }

        .change-password-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 119, 0, 0.4);
        }

        .change-password-btn svg {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 600px) {
            .security-info-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .security-steps {
                gap: 8px;
            }

            .step-arrow {
                display: none;
            }

            .security-step span {
                font-size: 0.75rem;
            }
        }

        /* Password Change Modal Styles */
        .pwd-modal-info {
            text-align: center;
            padding: 24px 16px;
            background: linear-gradient(135deg, rgba(255, 119, 0, 0.1) 0%, rgba(255, 119, 0, 0.05) 100%);
            border: 1px solid rgba(255, 119, 0, 0.2);
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .pwd-modal-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--accent) 0%, #e56a00 100%);
            border-radius: 14px;
            box-shadow: 0 4px 16px rgba(255, 119, 0, 0.3);
        }

        .pwd-modal-icon svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .pwd-modal-info h3 {
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .pwd-modal-info p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            margin: 0;
        }

        .pwd-modal-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
        }

        .pwd-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .pwd-step-num {
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 119, 0, 0.15);
            border: 2px solid rgba(255, 119, 0, 0.4);
            border-radius: 50%;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--accent);
        }

        .pwd-step-text {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }

        .pwd-step-divider {
            width: 24px;
            height: 2px;
            background: rgba(255, 119, 0, 0.3);
            margin-bottom: 20px;
        }

        .btn-modal-save {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
