
        :root {
            --brand: #bd1323;
            --brand-dark: #8b1a1f;
        }

        /* Sidebar */
        .ps-btn {
            display: block;
            width: 100%;
            text-align: left;
            background: #fff;
            border: 1px solid #e5e7eb;
            color: #374151;
            font-size: 12px;
            font-weight: 600;
            padding: 12px 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: all .18s;
            margin-bottom: 8px;
            text-decoration: none;
        }

        .ps-btn:hover {
            border-color: #111;
            color: #111;
        }

        .ps-btn.active {
            background: var(--brand);
            color: #fff !important;
            border-color: var(--brand);
        }

        /* Fields */
        .f-label {
            font-size: 11px;
            font-weight: 700;
            color: #111;
            text-transform: uppercase;
            letter-spacing: .04em;
            margin-bottom: 6px;
            display: block;
        }

        .f-input {
            width: 100%;
            background: #f5f5f5;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 13px 16px;
            font-size: 12px;
            color: #555;
            font-weight: 500;
            outline: none;
            transition: all .18s;
        }

        .f-input[readonly] {
            cursor: default;
        }

        .f-input:not([readonly]) {
            background: #fff;
            border-color: #d1d5db;
            color: #111;
        }

        .f-input:not([readonly]):focus {
            border-color: var(--brand);
        }

        .f-input.is-invalid {
            border-color: #dc3545 !important;
        }

        .f-err {
            font-size: 11px;
            color: #dc3545;
            margin-top: 3px;
        }

        /* Buttons */
        .btn-red {
            background: var(--brand);
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 10px 22px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: background .18s;
            white-space: nowrap;
        }

        .btn-red:hover {
            background: var(--brand-dark);
        }

        .btn-ghost {
            background: #fff;
            color: #111;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 10px 22px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all .18s;
            white-space: nowrap;
        }

        .btn-ghost:hover {
            background: #111;
            color: #fff;
            border-color: #111;
        }

        .btn-logout {
            background: #fff;
            color: var(--brand);
            border: 1px solid #fecaca;
            border-radius: 10px;
            padding: 10px 18px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all .18s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .btn-logout:hover {
            background: #fef2f2;
            border-color: var(--brand);
        }

        .sec-title {
            font-size: 12px;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: #111;
            padding-bottom: 14px;
            border-bottom: 1px solid #f0f0f0;
            margin-bottom: 22px;
        }

        hr.div {
            border: none;
            border-top: 1px solid #f0f0f0;
            margin: 22px 0;
        }

        /* Avatar */
        .avatar-wrap {
            position: relative;
            display: inline-block;
            cursor: pointer;
        }

        .avatar-wrap img,
        .avatar-init {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            object-fit: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            font-weight: 800;
            color: #fff;
            background-color: var(--brand);
            flex-shrink: 0;
        }

        .avatar-overlay {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: rgba(0, 0, 0, .45);
            display: none;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
        }

        .avatar-wrap:hover .avatar-overlay {
            display: flex;
        }
.order-card{
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:20px;
    background:#fff;
}
.order-status{
    font-size:15px;
    font-weight:700;
}

.order-status span{
    color:#16a34a;
}

.order-image{
    width:80px;
    height:80px;
}

.order-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
}

.order-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:4px;
}

.order-brand{
    font-size:12px;
    color:#9ca3af;
    margin-bottom:10px;
    text-transform:uppercase;
}

.order-meta{
    display:flex;
    gap:16px;
    font-size:13px;
    color:#6b7280;
}

.order-actions{
    margin-top:15px;
    display:flex;
    justify-content:flex-end;
    gap:10px;
}

.btn-order-outline{
    border:1px solid #d1d5db;
    background:#fff;
    color:#111;
    border-radius:10px;
    padding:8px 22px;
    text-decoration:none;
    font-weight:600;
}

.btn-order-red{
    border:none;
    background:#c1121f;
    color:#fff;
    border-radius:10px;
    padding:8px 22px;
    font-weight:600;
}
.order-divider{
    height:1px;
    background:#e5e7eb;
    margin:12px 0;
}
.profile-order-section{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:24px;
    margin-bottom:20px;
}