@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes petalFall {
    from { opacity: 1; transform: translateY(0) rotate(0deg); }
    to   { opacity: 0; transform: translateY(110px) rotate(50deg) scale(0.25); }
}
@keyframes shimmerBtn {
    from { background-position: -200% center; }
    to   { background-position:  200% center; }
}
@keyframes pulse {
    0%, 100% { transform: scale(1);   opacity: .5; }
    50%       { transform: scale(1.5); opacity: 0;  }
}
@keyframes popIn {
    0%   { transform: scale(.6); opacity: 0; }
    70%  { transform: scale(1.08); }
    100% { transform: scale(1);  opacity: 1; }
}
@keyframes sectionSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

*, *::before, *::after { box-sizing: border-box; }

.page-profile { font-size: 16px; }

.page-profile {
    font-family: 'Inter', system-ui, sans-serif;
    background: #FAF6F4;
    color: #1E1014;
    min-height: 100vh;
    -webkit-text-size-adjust: 100%;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #D9A8B8; border-radius: 99px; }

.profile-wrap {
    width: 100%;
    max-width: 580px;
    margin: 56px auto 80px;
    padding: 0 24px;
}

.profile-card,
.stats-card,
.orders-card,
.wishlist-card,
.delete-zone-card {
    background: #fff;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #EDE0E5;
    animation: fadeUp .45s ease both;
}

.stats-card        { animation-delay: .06s; }
.orders-card       { animation-delay: .10s; }
.wishlist-card     { animation-delay: .14s; }
.delete-zone-card  { animation-delay: .18s; }

.card-body { padding: 36px 40px; }

.profile-card h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: .02em;
    color: #1E1014;
    margin: 0 0 2px;
}

.profile-eyebrow {
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #C08098;
    margin: 0 0 32px;
}

.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid #F0E5EA; }
.info-table tr:last-child { border: none; }
.info-table td { padding: 13px 0; font-size: .85rem; vertical-align: middle; }
.info-table td:first-child {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #C08098;
    width: 72px;
}

.profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #F0E5EA;
}

.btn-ghost {
    display: inline-block;
    padding: 9px 20px;
    border: 1px solid #DDD0D6;
    border-radius: 3px;
    color: #5A3848;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: border-color .18s, background .18s, color .18s;
    touch-action: manipulation;
    min-height: 40px;
}
.btn-ghost:hover {
    border-color: #C08098;
    background: #FBF2F5;
    color: #1E1014;
}


.inline-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed #EDE0E5;
    animation: sectionSlide .3s ease both;
}

.inline-section-title {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #C08098;
    margin: 0 0 16px;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-label {
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #C08098;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #DDD0D6;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    color: #1E1014;
    background: #FAF6F4;
    transition: border-color .18s;
    outline: none;
}
.form-input:focus { border-color: #C08098; background: #fff; }

.form-hint {
    font-size: .65rem;
    color: #BBAAAF;
    margin: 0;
    line-height: 1.5;
}

.pwd-wrap {
    position: relative;
}
.pwd-wrap .form-input {
    padding-right: 44px;
}
.pwd-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C08098;
    transition: color .18s;
    touch-action: manipulation;
}
.pwd-toggle:hover { color: #B5556E; }

.btn-submit {
    align-self: flex-start;
    padding: 10px 26px;
    border: none;
    border-radius: 3px;
    background: #B5556E;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s;
    min-height: 40px;
    touch-action: manipulation;
}
.btn-submit:hover { background: #8C3350; }


.co-success {
    background:#166534 ;
    border: 1px solid #BBF7D0;
    border-radius: 3px;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: .8rem;
    color: #166534;
}
.co-success p { margin: 0; }


.stats-card {
    padding: 0;
    overflow: hidden;
}

.stats-grid {
    display: flex;
    align-items: stretch;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 12px;
    gap: 4px;
}

.stat-divider {
    width: 1px;
    background: #F0E5EA;
    flex-shrink: 0;
    margin: 16px 0;
}

.stat-value {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: #1E1014;
    line-height: 1.1;
    text-align: center;
    word-break: break-all;
}

.stat-label {
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #C08098;
    text-align: center;
}


.orders-card h2,
.wishlist-card h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1E1014;
    margin: 0;
    padding: 28px 40px 0;
    letter-spacing: .01em;
}

.orders-toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    padding: 18px 40px 20px;
    border-bottom: 1px solid #F0E5EA;
}

.filter-select {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #DDD0D6;
    border-radius: 3px;
    background: #FAF6F4;
    color: #5A3848;
    font-family: 'Inter', sans-serif;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .06em;
    padding: 7px 30px 7px 11px;
    cursor: pointer;
    transition: border-color .18s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath stroke='%23C08098' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    min-height: 36px;
    touch-action: manipulation;
}
.filter-select:hover,
.filter-select:focus { border-color: #C08098; outline: none; }

.orders-list { padding: 20px 40px 28px; }

.order-block {
    border-bottom: 1px solid #F0E5EA;
    padding: 20px 0;
}
.order-block:first-child { padding-top: 0; }
.order-block:last-child  { border-bottom: none; padding-bottom: 0; }
.order-block.hidden      { display: none; }

.order-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.order-meta { line-height: 1.4; }

.order-num {
    font-size: .82rem;
    font-weight: 700;
    color: #1E1014;
    letter-spacing: .01em;
}
.order-date {
    font-size: .72rem;
    color: #AAA;
    display: block;
    margin-top: 1px;
}

.order-badge {
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #B5556E;
    background: #F8EBF0;
    padding: 4px 11px;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}

.order-items { margin: 0; padding: 0; list-style: none; }
.order-items li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: .8rem;
    color: #5A3848;
    padding: 4px 0;
}
.order-item-name  { flex: 1; }
.order-item-sale  { color: #C08098; }
.order-item-price { color: #AAA; white-space: nowrap; }

.order-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #EDE0E5;
    font-size: .82rem;
    font-weight: 700;
    color: #1E1014;
}

.orders-empty {
    padding: 32px 40px;
    font-size: .82rem;
    color: #BBAAAF;
    text-align: center;
}

.show-more-wrap { padding: 0 40px 28px; display: none; }
.show-more-wrap.visible { display: block; }

.btn-show-more {
    width: 100%;
    padding: 11px;
    border: 1px dashed #DDD0D6;
    border-radius: 3px;
    background: transparent;
    color: #C08098;
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color .18s, background .18s, color .18s;
    min-height: 44px;
    touch-action: manipulation;
}
.btn-show-more:hover {
    border-color: #C08098;
    background: #FBF2F5;
    color: #1E1014;
}

.wishlist-list {
    padding: 16px 40px 28px;
}

.wishlist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #F0E5EA;
}
.wishlist-item:last-child { border-bottom: none; }

.wishlist-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.wishlist-name {
    font-size: .82rem;
    font-weight: 600;
    color: #1E1014;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .18s;
}
.wishlist-name:hover { color: #B5556E; }

.wishlist-price {
    font-size: .75rem;
    color: #B5556E;
    font-weight: 600;
}

.wishlist-date {
    font-size: .68rem;
    color: #BBAAAF;
    white-space: nowrap;
    flex-shrink: 0;
}

.wishlist-item--hidden { display: none; }

.wishlist-more-wrap { display: block; padding: 0 40px 28px; }

.delete-zone-card .card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 28px 40px;
}

.dz-title { font-size: .82rem; font-weight: 600; color: #1E1014; margin: 0 0 4px; }
.dz-desc  { font-size: .75rem; color: #AAA; margin: 0; line-height: 1.6; }

.btn-danger-ghost {
    padding: 9px 22px;
    border: 1px solid #E8CCCC;
    border-radius: 3px;
    background: transparent;
    color: #B5556E;
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color .18s, background .18s;
    min-height: 44px;
    touch-action: manipulation;
}
.btn-danger-ghost:hover {
    background: #FDF0F2;
    border-color: #B5556E;
}


.co-errors {
    background: #FFF5F5;
    border: 1px solid #FED7D7;
    border-radius: 3px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: .8rem;
    color: #9B2C2C;
}
.co-errors p { margin: 0 0 4px; }
.co-errors p:last-child { margin: 0; }


#modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(20, 8, 14, .6);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
#modal-backdrop.open { opacity: 1; pointer-events: all; }

#modal-card {
    position: relative;
    background: #fff;
    border-radius: 4px;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(20,8,14,.22);
    transform: translateY(24px);
    opacity: 0;
    transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .35s ease;
}
#modal-backdrop.open #modal-card { transform: translateY(0); opacity: 1; }

.modal-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, #D9A8B8, #B5556E, #D9A8B8);
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-inner { padding: 36px 36px 40px; }

.modal-close-btn {
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: #F5EEF1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #5A3848;
    font-size: .85rem;
    transition: background .18s;
    touch-action: manipulation;
    z-index: 2;
}
.modal-close-btn:hover { background: #ECD8E2; }

.modal-icon-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.modal-ring {
    position: relative;
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
}
.modal-ring::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(192,128,152,.15);
    animation: pulse 1.4s ease-out infinite;
}
.modal-icon-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #F8EBF0;
    border: 1px solid #ECD8E2;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    position: relative;
}

.modal-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 300;
    color: #1E1014;
    text-align: center;
    margin: 0 0 4px;
    letter-spacing: .02em;
}
.modal-sub {
    text-align: center;
    font-size: .63rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #C08098;
    margin: 0 0 26px;
}

.modal-warning-box {
    background: #FAF6F4;
    border-left: 2px solid #D9A8B8;
    padding: 14px 16px;
    margin-bottom: 22px;
    font-size: .75rem;
    color: #5A3848;
    line-height: 1.7;
}
.modal-warning-box p { margin: 0 0 5px; }
.modal-warning-box p:last-child { margin: 0; }
.modal-warning-box strong { color: #1E1014; }

.modal-check-label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
    margin-bottom: 24px;
}
.custom-check { display: none; }
.check-box {
    width: 22px; height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
    border: 1.5px solid #DDD0D6;
    border-radius: 2px;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .18s, background .18s;
}
.custom-check:checked + .check-box {
    border-color: #B5556E;
    background: #B5556E;
}
.check-icon {
    opacity: 0;
    transform: scale(0);
    transition: opacity .15s, transform .2s ease;
    width: 12px; height: 12px;
    color: #fff;
}
.custom-check:checked + .check-box .check-icon { opacity: 1; transform: scale(1); }
.check-label-text { font-size: .74rem; color: #5A3848; line-height: 1.6; }
.check-label-text strong { color: #1E1014; }

.shimmer-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 3px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    background: linear-gradient(110deg, #B5556E 0%, #D9A8B8 45%, #B5556E 60%, #8C3350 100%);
    background-size: 300% 100%;
    transition: opacity .2s;
    min-height: 48px;
    touch-action: manipulation;
}
.shimmer-btn:not(:disabled):hover { animation: shimmerBtn 1.6s linear infinite; }
.shimmer-btn:disabled {
    background: #DDD0D6;
    cursor: not-allowed;
    color: #AAA;
}

.modal-cancel-text {
    text-align: center;
    font-size: .7rem;
    color: #C0AAB2;
    margin-top: 14px;
}
.modal-cancel-text button {
    background: none;
    border: none;
    cursor: pointer;
    color: #C08098;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: inherit;
    padding: 4px;
    transition: color .18s;
    touch-action: manipulation;
}
.modal-cancel-text button:hover { color: #B5556E; }

#success-state { display: none; }
#success-state.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 0;
}
.success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: #F8EBF0;
    border: 1px solid #ECD8E2;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 22px;
    animation: popIn .5s ease both;
}
.success-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #1E1014;
    margin: 0 0 4px;
}
.success-sub {
    font-size: .63rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #C08098;
    margin: 0 0 18px;
}
.success-desc {
    font-size: .8rem;
    color: #5A3848;
    line-height: 1.7;
    max-width: 270px;
    margin: 0 auto 26px;
}
.success-home-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    border-radius: 3px;
    background: #B5556E;
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .18s;
    min-height: 44px;
}
.success-home-btn:hover { background: #8C3350; }


#petal-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 60;
    overflow: hidden;
}
.petal-el {
    position: absolute;
    border-radius: 60% 10% 60% 10%;
    opacity: 0;
    animation: petalFall var(--dur) ease-out var(--delay) forwards;
}

@media (max-width: 374px) {
    html { font-size: 14px; }

    .profile-wrap { margin-top: 20px; padding: 0 12px; }

    .card-body { padding: 20px 16px; }

    .orders-card h2,
    .wishlist-card h2          { padding: 20px 16px 0; }
    .orders-toolbar            { padding: 14px 16px 16px; flex-direction: column; align-items: stretch; gap: 8px; }
    .filter-select             { width: 100%; }
    .orders-list               { padding: 16px 16px 20px; }
    .orders-empty              { padding: 24px 16px; }
    .show-more-wrap            { padding: 0 16px 20px; }
    .wishlist-list             { padding: 12px 16px 20px; }
    .wishlist-more-wrap        { padding: 0 16px 20px; }
    .delete-zone-card .card-body { padding: 20px 16px; flex-direction: column; align-items: flex-start; }

    .profile-card h1   { font-size: 1.5rem; }
    .profile-actions   { flex-direction: column; gap: 8px; }
    .btn-ghost         { width: 100%; text-align: center; }
    .btn-submit        { align-self: stretch; text-align: center; }

    .stats-grid        { flex-direction: column; }
    .stat-divider      { width: auto; height: 1px; margin: 0 16px; }
    .stat-item         { padding: 14px 16px; flex-direction: row; justify-content: space-between; align-items: center; }
    .stat-value        { font-size: 1.2rem; }

    .order-head        { flex-direction: column; gap: 8px; }
    .order-badge       { align-self: flex-start; }
    .order-items li    { flex-direction: column; gap: 2px; }
    .order-item-price  { font-size: .72rem; }

    .wishlist-item     { flex-direction: column; align-items: flex-start; gap: 4px; }
    .wishlist-date     { align-self: flex-end; }

    .btn-danger-ghost  { width: 100%; text-align: center; }

    .modal-inner       { padding: 20px 16px 28px; }
    .modal-title       { font-size: 1.35rem; }
    .modal-warning-box { font-size: .7rem; }
}

@media (min-width: 375px) and (max-width: 479px) {
    .profile-wrap { margin-top: 24px; padding: 0 16px; }

    .card-body { padding: 24px 20px; }

    .orders-card h2,
    .wishlist-card h2 { padding: 22px 20px 0; }
    .orders-toolbar   { padding: 14px 20px 16px; flex-direction: column; align-items: stretch; gap: 8px; }
    .filter-select    { width: 100%; }
    .orders-list      { padding: 16px 20px 22px; }
    .orders-empty     { padding: 26px 20px; }
    .show-more-wrap   { padding: 0 20px 22px; }
    .wishlist-list    { padding: 14px 20px 22px; }
    .wishlist-more-wrap { padding: 0 20px 22px; }
    .delete-zone-card .card-body { padding: 22px 20px; flex-direction: column; align-items: flex-start; }

    .profile-actions  { flex-direction: column; gap: 8px; }
    .btn-ghost        { width: 100%; text-align: center; }
    .btn-submit       { align-self: stretch; text-align: center; }

    .stats-grid       { flex-direction: column; }
    .stat-divider     { width: auto; height: 1px; margin: 0 20px; }
    .stat-item        { padding: 14px 20px; flex-direction: row; justify-content: space-between; align-items: center; }

    .order-head       { flex-direction: column; gap: 8px; }
    .order-badge      { align-self: flex-start; }

    .wishlist-item    { flex-direction: column; align-items: flex-start; gap: 4px; }
    .wishlist-date    { align-self: flex-end; }

    .btn-danger-ghost { width: 100%; text-align: center; }
    .modal-inner      { padding: 24px 20px 32px; }
}

@media (min-width: 480px) and (max-width: 767px) {
    .profile-wrap { margin-top: 32px; padding: 0 20px; }

    .card-body { padding: 28px 24px; }

    .orders-card h2,
    .wishlist-card h2 { padding: 24px 24px 0; }
    .orders-toolbar   { padding: 14px 24px 18px; }
    .orders-list      { padding: 18px 24px 24px; }
    .orders-empty     { padding: 28px 24px; }
    .show-more-wrap   { padding: 0 24px 24px; }
    .wishlist-list    { padding: 14px 24px 24px; }
    .wishlist-more-wrap { padding: 0 24px 24px; }
    .delete-zone-card .card-body { padding: 24px; flex-direction: column; align-items: flex-start; }

    .btn-danger-ghost { align-self: flex-start; }
    .modal-inner      { padding: 28px 24px 36px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .profile-wrap { max-width: 620px; margin-top: 40px; }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .profile-wrap { max-width: 600px; }
}

@media (min-width: 1440px) {
    html { font-size: 17px; }
    .profile-wrap { max-width: 640px; margin-top: 64px; }
    .card-body { padding: 40px 48px; }
    .orders-card h2, .wishlist-card h2 { padding: 32px 48px 0; }
    .orders-toolbar,
    .orders-list,
    .orders-empty,
    .show-more-wrap,
    .wishlist-list,
    .wishlist-more-wrap { padding-left: 48px; padding-right: 48px; }
    .delete-zone-card .card-body { padding: 32px 48px; }
}

@media (min-width: 2560px) {
    html { font-size: 20px; }
    .profile-wrap { max-width: 780px; margin-top: 80px; margin-bottom: 100px; }
    .card-body { padding: 48px 56px; }
    .orders-card h2, .wishlist-card h2 { padding: 36px 56px 0; font-size: 1.6rem; }
    .orders-toolbar,
    .orders-list,
    .orders-empty,
    .show-more-wrap,
    .wishlist-list,
    .wishlist-more-wrap { padding-left: 56px; padding-right: 56px; }
    .delete-zone-card .card-body { padding: 36px 56px; }
    .profile-card h1 { font-size: 2.4rem; }
    .profile-card,
    .stats-card,
    .orders-card,
    .wishlist-card,
    .delete-zone-card { border-radius: 6px; margin-bottom: 24px; }
    #modal-card { max-width: 520px; }
    .modal-inner { padding: 44px 44px 52px; }
    .stat-value { font-size: 1.8rem; }
}

@media (min-width: 3840px) {
    html { font-size: 28px; }
    .profile-wrap { max-width: 1000px; margin-top: 100px; margin-bottom: 120px; }
    .card-body { padding: 56px 64px; }
    .orders-card h2, .wishlist-card h2 { padding: 40px 64px 0; font-size: 1.8rem; }
    .orders-toolbar,
    .orders-list,
    .orders-empty,
    .show-more-wrap,
    .wishlist-list,
    .wishlist-more-wrap { padding-left: 64px; padding-right: 64px; }
    .delete-zone-card .card-body { padding: 40px 64px; }
    .profile-card h1 { font-size: 2.8rem; }
    .profile-card,
    .stats-card,
    .orders-card,
    .wishlist-card,
    .delete-zone-card { border-radius: 8px; margin-bottom: 28px; border-width: 2px; }
    #modal-card { max-width: 680px; }
    .modal-inner { padding: 52px 52px 60px; }
    .modal-icon-circle { width: 80px; height: 80px; font-size: 2rem; }
    .modal-ring { width: 80px; height: 80px; }
    .modal-title { font-size: 2.2rem; }
    .check-box { width: 28px; height: 28px; }
    .stat-value { font-size: 2rem; }
    ::-webkit-scrollbar { width: 6px; }
}

@media (min-width: 7680px) {
    html { font-size: 52px; }
    .profile-wrap { max-width: 1600px; margin-top: 140px; margin-bottom: 160px; }
    .card-body { padding: 72px 80px; }
    .orders-card h2, .wishlist-card h2 { padding: 52px 80px 0; font-size: 2rem; }
    .orders-toolbar,
    .orders-list,
    .orders-empty,
    .show-more-wrap,
    .wishlist-list,
    .wishlist-more-wrap { padding-left: 80px; padding-right: 80px; }
    .delete-zone-card .card-body { padding: 52px 80px; }
    .profile-card h1 { font-size: 3rem; }
    .profile-card,
    .stats-card,
    .orders-card,
    .wishlist-card,
    .delete-zone-card { border-radius: 12px; margin-bottom: 36px; border-width: 2px; }
    #modal-card { max-width: 1000px; }
    .modal-inner { padding: 72px 72px 84px; }
    .modal-icon-circle { width: 120px; height: 120px; font-size: 3rem; }
    .modal-ring { width: 120px; height: 120px; }
    .modal-title { font-size: 3rem; }
    .check-box { width: 40px; height: 40px; }
    .check-icon { width: 22px; height: 22px; }
    .modal-accent-bar { height: 5px; }
    .stat-value { font-size: 2.6rem; }
    ::-webkit-scrollbar { width: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}