/* ==========================================
   DASHBOARD PROFILE STYLES
   Çocuk ekleme modalı ile uyumlu tasarım
   ========================================== */

.profile-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 24px 16px 40px;
}

/* Sayfa Başlığı */
.profile-header {
    margin-bottom: 20px;
}

.profile-page-title {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #5B6AE8, #7B62ED, #A068F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-title-icon {
    font-size: 24px;
    filter: grayscale(15%);
    opacity: 0.85;
}

/* Profil Kartı */
.profile-card {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.72) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 12px 40px rgba(107, 120, 240, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 2px 0 rgba(255, 255, 255, 0.9),
        inset 0 -2px 0 rgba(0, 0, 0, 0.02);
    position: relative;
}

/* Profil Alanları */
.profile-field {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(107, 120, 240, 0.1);
    gap: 14px;
    transition: background 0.2s ease;
}

.profile-field:last-child {
    border-bottom: none;
}

.profile-field:not(.readonly):hover {
    background: rgba(107, 120, 240, 0.03);
}

.field-icon {
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(107, 120, 240, 0.12), rgba(148, 112, 245, 0.08));
    border-radius: 11px;
    flex-shrink: 0;
    filter: grayscale(15%);
    opacity: 0.85;
}

.field-content {
    flex: 1;
    min-width: 0;
}

.field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #243769;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.field-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #243769;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.field-value.password-dots {
    letter-spacing: 3px;
    opacity: 0.6;
}

/* Düzenle Butonu */
.field-edit-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(107, 120, 240, 0.1);
    color: #6b78f0;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.field-edit-btn:hover {
    background: rgba(107, 120, 240, 0.2);
    transform: scale(1.05);
}

.field-edit-btn:active {
    transform: scale(0.95);
}

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

/* Aksiyon Butonu (Şifre Değiştir) */
.field-action-btn {
    padding: 8px 14px;
    border: none;
    background: linear-gradient(135deg, #6b78f0, #9470f5);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(107, 120, 240, 0.3);
}

.field-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 120, 240, 0.4);
}

.field-action-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Abonelik */
.subscription-meta {
    font-size: 0.75rem;
    color: #243769;
    opacity: 0.6;
    margin-top: 2px;
}

.subscription-status-trial {
    color: #f59e0b;
}

.subscription-status-active {
    color: #22c55e;
}

.subscription-status-cancelled {
    color: #ef4444;
}

.subscription-status-expired {
    color: #6b7280;
}

.subscription-status-passive {
    color: #f97316;
}

/* Planlanan Değişiklik Satırı */
.subscription-scheduled-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
    padding: 10px 12px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    font-size: 0.72rem;
    color: #92400e;
}

.scheduled-text {
    line-height: 1.4;
}

.scheduled-cancel-btn {
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scheduled-cancel-btn:active {
    transform: scale(0.95);
}

.subscription-action-btn {
    white-space: nowrap;
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
}

/* Hesap Silme - Danger Row */
.profile-field.danger-row {
    border-bottom: none;
}

.field-icon.danger-icon {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.06));
}

.field-label.danger-label {
    color: #dc2626;
    text-transform: none;
    font-size: 0.92rem;
    letter-spacing: 0;
}

.delete-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #dc2626;
    background: rgba(239, 68, 68, 0.08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delete-btn:hover {
    background: rgba(239, 68, 68, 0.15);
}

.delete-btn:active {
    transform: scale(0.97);
}

/* Hesap Silme Modal */
.delete-modal-sheet {
    text-align: center;
}

.delete-modal-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.delete-modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #dc2626;
    margin: 0 0 10px;
}

.delete-modal-desc {
    font-size: 0.85rem;
    color: #243769;
    opacity: 0.75;
    line-height: 1.5;
    margin: 0 0 18px;
}

.delete-confirm-input {
    text-align: center;
    margin-bottom: 18px;
}

.delete-confirm-btn {
    background: #dc2626 !important;
    box-shadow: none !important;
}

.delete-confirm-btn:hover {
    background: #b91c1c !important;
    transform: none !important;
}

.delete-confirm-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ==========================================
   MODAL STYLES (Çocuk ekleme ile uyumlu)
   ========================================== */

.edit-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.edit-modal.active {
    opacity: 1;
    visibility: visible;
}

.edit-modal .modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal-sheet {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    border-radius: 24px;
    padding: 24px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.edit-modal.active .modal-sheet {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #243769;
    margin: 0;
}

.modal-close-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(107, 120, 240, 0.1);
    color: #6b78f0;
    font-size: 20px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(107, 120, 240, 0.2);
}

/* Form Stilleri (Çocuk ekleme ile aynı) */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #243769;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.9rem;
    color: #243769;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(107, 120, 240, 0.2);
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
}

.form-input:focus {
    border-color: #6b78f0;
    box-shadow: 0 0 0 4px rgba(107, 120, 240, 0.1);
}

.form-input::placeholder {
    color: rgba(25, 18, 60, 0.4);
}

/* Şifre Input Wrapper */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .form-input {
    padding-right: 46px;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #6b78f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.password-toggle:hover {
    background: rgba(107, 120, 240, 0.1);
    opacity: 1;
}

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

.password-hint {
    font-size: 0.75rem;
    color: #243769;
    margin: 4px 0 16px;
    opacity: 0.6;
}

/* Doğrulama Modalı */
.verify-info {
    font-size: 0.9rem;
    color: #243769;
    margin-bottom: 16px;
    line-height: 1.5;
}

.verify-info strong {
    color: #6b78f0;
    word-break: break-all;
}

.verification-code-input {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 8px;
    padding: 14px 16px;
}

.verification-code-input::placeholder {
    letter-spacing: normal;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Tekrar Kod Gönder */
.resend-code-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.resend-text {
    font-size: 0.85rem;
    color: #243769;
    opacity: 0.7;
}

.resend-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b78f0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.resend-link:hover:not(:disabled) {
    color: #9470f5;
    text-decoration: underline;
}

.resend-link:disabled {
    color: #243769;
    opacity: 0.4;
    cursor: not-allowed;
}

.resend-countdown {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b78f0;
    opacity: 0.8;
}

/* Kilitlenme Modalı */
.lockout-sheet {
    text-align: center;
    padding: 28px 24px;
}

.lockout-icon {
    font-size: 48px;
    margin-bottom: 12px;
    filter: grayscale(15%);
    opacity: 0.9;
}

.lockout-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #243769;
    margin: 0 0 12px;
}

.lockout-description {
    font-size: 0.9rem;
    color: #243769;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0 0 20px;
}

.lockout-time-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg, rgba(107, 120, 240, 0.1), rgba(148, 112, 245, 0.06));
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.lockout-time-icon {
    font-size: 24px;
    filter: grayscale(15%);
    opacity: 0.85;
}

.lockout-time-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.lockout-time-label {
    font-size: 0.75rem;
    color: #243769;
    opacity: 0.7;
}

.lockout-time-value {
    font-size: 1rem;
    font-weight: 600;
    color: #6b78f0;
}

.lockout-support {
    font-size: 0.8rem;
    color: #243769;
    opacity: 0.7;
    margin-bottom: 16px;
}

.lockout-support a {
    color: #6b78f0;
    font-weight: 600;
    text-decoration: none;
}

.lockout-support a:hover {
    text-decoration: underline;
}

.lockout-btn {
    width: 100%;
}

/* Modal Butonları */
.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.btn-cancel,
.btn-save {
    flex: 1;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel {
    background: rgba(107, 120, 240, 0.1);
    color: #6b78f0;
}

.btn-cancel:hover {
    background: rgba(107, 120, 240, 0.15);
}

.btn-save {
    background: linear-gradient(135deg, #6b78f0, #9470f5);
    color: white;
    box-shadow: 0 2px 10px rgba(107, 120, 240, 0.3);
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 120, 240, 0.4);
}

.btn-save:active {
    transform: translateY(0);
}

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

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */

.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    color: #243769;
    padding: 12px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(107, 120, 240, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2000;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast.success .toast-icon {
    color: #22c55e;
}

.toast.error .toast-icon {
    color: #ef4444;
}

.toast-icon {
    font-size: 16px;
}

/* ==========================================
   DARK MODE
   ========================================== */

body.dark .profile-page-title {
    background: linear-gradient(135deg, #8B9CF8, #B890FC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.dark .profile-card {
    background: linear-gradient(
        145deg,
        rgba(25, 18, 60, 0.7) 0%,
        rgba(15, 10, 45, 0.85) 100%
    );
    border-color: rgba(148, 112, 245, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.08),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body.dark .profile-field {
    border-bottom-color: rgba(148, 112, 245, 0.15);
}

body.dark .profile-field:not(.readonly):hover {
    background: rgba(148, 112, 245, 0.05);
}

body.dark .field-icon {
    background: linear-gradient(145deg, rgba(148, 112, 245, 0.18), rgba(107, 120, 240, 0.12));
    filter: grayscale(10%);
    opacity: 0.9;
}

body.dark .field-label {
    color: rgba(255, 255, 255, 0.75);
    opacity: 1;
}

body.dark .field-value {
    color: rgba(255, 255, 255, 0.95);
}

body.dark .field-value.password-dots {
    opacity: 0.7;
}

body.dark .field-edit-btn {
    background: rgba(148, 112, 245, 0.2);
    color: #a78bfa;
}

body.dark .field-edit-btn:hover {
    background: rgba(148, 112, 245, 0.3);
}

body.dark .modal-sheet {
    background: linear-gradient(
        145deg,
        rgba(25, 18, 60, 0.98) 0%,
        rgba(15, 10, 45, 1) 100%
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

body.dark .modal-title {
    color: rgba(255, 255, 255, 0.95);
}

body.dark .modal-close-btn {
    background: rgba(148, 112, 245, 0.2);
    color: #a78bfa;
}

body.dark .form-label {
    color: rgba(255, 255, 255, 0.9);
}

body.dark .form-input {
    background: rgba(25, 18, 60, 0.5);
    border-color: rgba(148, 112, 245, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

body.dark .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

body.dark .form-input:focus {
    border-color: #9470f5;
    box-shadow: 0 0 0 4px rgba(148, 112, 245, 0.15);
}

body.dark .password-toggle {
    color: #a78bfa;
}

body.dark .password-hint {
    color: rgba(255, 255, 255, 0.65);
    opacity: 1;
}

body.dark .verify-info {
    color: rgba(255, 255, 255, 0.9);
}

body.dark .verify-info strong {
    color: #a78bfa;
}

body.dark .resend-text {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

body.dark .resend-link {
    color: #a78bfa;
}

body.dark .resend-link:hover:not(:disabled) {
    color: #c4b5fd;
}

body.dark .resend-link:disabled {
    color: rgba(255, 255, 255, 0.4);
}

body.dark .resend-countdown {
    color: #a78bfa;
    opacity: 1;
}

body.dark .lockout-title {
    color: rgba(255, 255, 255, 0.95);
}

body.dark .lockout-description {
    color: rgba(255, 255, 255, 0.8);
    opacity: 1;
}

body.dark .lockout-time-box {
    background: linear-gradient(145deg, rgba(148, 112, 245, 0.15), rgba(107, 120, 240, 0.1));
}

body.dark .lockout-time-label {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

body.dark .lockout-time-value {
    color: #a78bfa;
}

body.dark .lockout-support {
    color: rgba(255, 255, 255, 0.7);
    opacity: 1;
}

body.dark .lockout-support a {
    color: #a78bfa;
}

body.dark .btn-cancel {
    background: rgba(148, 112, 245, 0.2);
    color: #a78bfa;
}

body.dark .btn-cancel:hover {
    background: rgba(148, 112, 245, 0.3);
}

body.dark .subscription-meta {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

body.dark .subscription-status-trial { color: #fbbf24; }
body.dark .subscription-status-active { color: #4ade80; }
body.dark .subscription-status-cancelled { color: #f87171; }
body.dark .subscription-status-expired { color: #9ca3af; }
body.dark .subscription-status-passive { color: #fb923c; }

body.dark .subscription-scheduled-row {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

body.dark .scheduled-cancel-btn {
    color: #fca5a5;
    background: rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.2);
}

body.dark .field-icon.danger-icon {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.1));
}

body.dark .field-label.danger-label {
    color: #f87171;
}

body.dark .delete-btn {
    color: #f87171;
    background: rgba(239, 68, 68, 0.12);
}

body.dark .delete-btn:hover {
    background: rgba(239, 68, 68, 0.18);
}

body.dark .delete-modal-title {
    color: #f87171;
}

body.dark .delete-modal-desc {
    color: rgba(255, 255, 255, 0.75);
    opacity: 1;
}

body.dark .toast {
    background: linear-gradient(
        145deg,
        rgba(25, 18, 60, 0.98) 0%,
        rgba(15, 10, 45, 1) 100%
    );
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Orta Ekranlar - Tablet */
@media (min-width: 640px) {
    .profile-container {
        padding: 32px 24px 48px;
    }

}

/* Büyük Ekranlar - Tablet ve Desktop */
@media (min-width: 768px) {
    .profile-container {
        max-width: 560px;
        padding: 36px 28px 52px;
    }

    .profile-header {
        margin-bottom: 24px;
    }

    .profile-title-icon {
        font-size: 28px;
    }

    .profile-card {
        border-radius: 24px;
        box-shadow: 0 6px 28px rgba(107, 120, 240, 0.12);
    }

    .profile-field {
        padding: 20px 24px;
        gap: 16px;
    }

    .field-icon {
        width: 48px;
        height: 48px;
        font-size: 22px;
        border-radius: 14px;
    }

    .field-label {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .field-value {
        font-size: 1.02rem;
    }

    .field-edit-btn {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .field-edit-btn svg {
        width: 18px;
        height: 18px;
    }

    .field-action-btn {
        padding: 10px 18px;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    /* Modal büyük ekran */
    .modal-sheet {
        max-width: 440px;
        padding: 28px;
        border-radius: 28px;
    }

    .modal-header {
        margin-bottom: 24px;
    }

    .modal-title {
        font-size: 1.35rem;
    }

    .modal-close-btn {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

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

    .form-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .password-input-wrapper .form-input {
        padding-right: 50px;
    }

    .password-toggle {
        width: 36px;
        height: 36px;
    }

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

    .verification-code-input {
        font-size: 1.6rem;
        padding: 16px 18px;
    }

    .modal-buttons {
        gap: 12px;
        margin-top: 12px;
    }

    .btn-cancel,
    .btn-save {
        padding: 14px 22px;
        font-size: 0.95rem;
        border-radius: 14px;
    }

    /* Toast büyük ekran */
    .toast {
        padding: 14px 24px;
        font-size: 0.95rem;
        border-radius: 16px;
    }

    .toast-icon {
        font-size: 18px;
    }
}

/* Çok Büyük Ekranlar - Desktop */
@media (min-width: 1024px) {
    .profile-container {
        max-width: 620px;
        padding: 44px 36px 60px;
    }

    .profile-header {
        margin-bottom: 28px;
    }

    .profile-card {
        box-shadow: 0 8px 36px rgba(107, 120, 240, 0.14);
    }

    .profile-field {
        padding: 22px 28px;
    }
}

/* Küçük Ekranlar */
@media (max-width: 380px) {
    .profile-field {
        padding: 14px 16px;
        gap: 12px;
    }

    .field-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .field-value {
        font-size: 0.9rem;
    }

    .field-action-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}
