/* ======================================================
   AUTH
====================================================== */

.auth-page{
    padding:90px 0;
}

.auth-wrapper{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:70px;
    align-items:center;
}

.auth-brand{

    display:flex;
    flex-direction:column;
    justify-content:center;

}

.auth-overline{

    display:inline-block;
    margin-bottom:20px;

    font-size:.85rem;
    letter-spacing:.45em;
    text-transform:uppercase;

    color:#c8a96a;

}

.auth-title{

    font-size:4rem;
    line-height:1.05;
    margin-bottom:25px;

    color:#fff;

}

.auth-description{

    max-width:520px;

    font-size:1.1rem;
    line-height:1.9;

    color:#aaa;

}

.auth-benefits{

    margin-top:40px;

    display:grid;
    gap:18px;

}

.auth-benefit{

    display:flex;
    align-items:center;
    gap:14px;

    color:#ddd;

}

.auth-benefit::before{

    content:"✓";

    width:28px;
    height:28px;

    border-radius:50%;

    background:#d4af37;

    color:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-size:.8rem;

}

.auth-card{

    background:#121212;

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:55px;

    box-shadow:
        0 30px 70px rgba(0,0,0,.45);

}

.auth-card h2{

    color:#fff;

    margin-bottom:12px;

    font-size:2.2rem;

}

.auth-card p{

    color:#999;

    margin-bottom:35px;

}

.auth-card .checkout-field{

    margin-bottom:24px;

}

.auth-card label{

    display:block;

    margin-bottom:10px;

    color:#ddd;

    font-weight:500;

}

.auth-card .checkout-input{

    width:100%;

    height:58px;

    padding:0 20px;

    border-radius:16px;

    border:1px solid rgba(255,255,255,.08);

    background:#181818;

    color:#fff;

    transition:.25s;

}

.auth-card .checkout-input:focus{

    outline:none;

    border-color:#d4af37;

    box-shadow:
        0 0 0 4px rgba(212,175,55,.12);

}

.auth-button{

    width:100%;

    margin-top:10px;

    height:60px;

    border-radius:18px;

    font-size:1rem;

}

.auth-links{

    margin-top:28px;

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:12px;

}

.auth-links a{

    color:#c8a96a;

    text-decoration:none;

    transition:.25s;

}

.auth-links a:hover{

    color:#fff;

}

@media(max-width:992px){

.auth-wrapper{

grid-template-columns:1fr;

gap:45px;

}

.auth-brand{

text-align:center;

}

.auth-description{

margin:auto;

}

.auth-benefits{

max-width:420px;
margin:40px auto 0;

}

}

@media(max-width:768px){

.auth-page{

padding:50px 0;

}

.auth-title{

font-size:2.7rem;

}

.auth-card{

padding:30px;

border-radius:22px;

}

.auth-links{

flex-direction:column;
align-items:center;

}

}

/* ==========================================
   Auth JS
========================================== */

.auth-loaded .auth-card{
    animation:authFade .45s ease;
}

@keyframes authFade{

from{
opacity:0;
transform:translateY(20px);
}

to{
opacity:1;
transform:none;
}

}

.password-wrapper{
    position:relative;
}

.password-toggle{

    position:absolute;

    right:18px;
    top:50%;

    transform:translateY(-50%);

    border:none;

    background:none;

    cursor:pointer;

    font-size:1rem;

    color:#999;

}

.password-strength{

    margin-top:12px;

}

.password-strength-bar{

    width:0;

    height:6px;

    border-radius:50px;

    background:#444;

    transition:.3s;

    margin-bottom:8px;

}

.password-strength small{

    color:#999;

    font-size:.8rem;

}

/* ======================================================
   DASHBOARD
====================================================== */

.dashboard-grid{

display:grid;
grid-template-columns:320px 1fr;
gap:35px;
align-items:start;

}

.dashboard-sidebar{

padding:35px;
position:sticky;
top:100px;

}

.dashboard-avatar{

width:90px;
height:90px;
border-radius:50%;
margin:auto;
margin-bottom:20px;

display:flex;
align-items:center;
justify-content:center;

font-size:2rem;
font-weight:700;

background:linear-gradient(135deg,#d4af37,#f5d97d);
color:#111;

}

.dashboard-sidebar h3{

margin:0;
text-align:center;
color:#fff;

}

.dashboard-sidebar p{

margin:8px 0 25px;
text-align:center;
color:#aaa;
font-size:.95rem;

}

.dashboard-sidebar hr{

border:none;
height:1px;
background:rgba(255,255,255,.08);
margin:25px 0;

}

.dashboard-link{

display:block;
padding:14px 18px;
margin-bottom:12px;

border-radius:14px;

text-decoration:none;
color:#ddd;

transition:.25s;

background:rgba(255,255,255,.03);

}

.dashboard-link:hover{

background:#d4af37;
color:#111;
transform:translateX(5px);

}

.dashboard-link.logout{

    margin-top:30px;

    background:rgba(200,176,139,.08);

    color:var(--lux-gold);

    border:1px solid rgba(200,176,139,.28);

}

.dashboard-link.logout:hover{

    background:var(--lux-gold);

    color:var(--lux-black);

    transform:translateX(5px);

}

.dashboard-main{

display:flex;
flex-direction:column;
gap:30px;

}

.dashboard-cards{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

}

.dashboard-stat{

padding:28px;

}

.dashboard-stat span{

display:block;
color:#999;
font-size:.9rem;
margin-bottom:10px;

}

.dashboard-stat h2{

margin:0;
font-size:2rem;
color:#fff;

}

.dashboard-orders{

padding:35px;

}

.dashboard-orders h2{

margin-bottom:25px;
color:#fff;

}

.dashboard-table{

width:100%;
border-collapse:collapse;

}

.dashboard-table th{

text-align:left;
padding:16px;
font-size:.85rem;
letter-spacing:1px;
text-transform:uppercase;
color:#999;

border-bottom:1px solid rgba(255,255,255,.08);

}

.dashboard-table td{

padding:18px 16px;
color:#ddd;
border-bottom:1px solid rgba(255,255,255,.05);

}

.dashboard-table tr:hover{

background:rgba(255,255,255,.03);

}

.empty-orders{

text-align:center;
padding:60px 20px;

}

.empty-orders p{

margin-bottom:25px;
color:#aaa;

}

/* Mobile */

@media(max-width:992px){

.dashboard-grid{

grid-template-columns:1fr;

}

.dashboard-sidebar{

position:relative;
top:auto;

}

.dashboard-cards{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.dashboard-orders{

overflow-x:auto;

}

.dashboard-table{

min-width:650px;

}

}

/* ==========================================
   Dashboard Hero
========================================== */

.dashboard-hero{

    margin:40px 0;

    background:
    linear-gradient(
        135deg,
        rgba(200,176,139,.12),
        rgba(18,18,18,.96)
    );

    border:1px solid rgba(200,176,139,.25);

}

.dashboard-hero-content{

    display:flex;

    align-items:center;

    gap:35px;

}

.dashboard-avatar-large{

    width:110px;
    height:110px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        var(--lux-gold),
        #f5d97d
    );

    color:#111;

    font-size:2.6rem;

    font-weight:700;

    flex-shrink:0;

}

.dashboard-member{

    display:inline-block;

    margin-bottom:10px;

    letter-spacing:.28em;

    font-size:.75rem;

    color:var(--lux-gold);

    text-transform:uppercase;

}

.dashboard-hero h2{

    margin-bottom:12px;

    color:var(--lux-cream);

}

.dashboard-hero p{

    max-width:650px;

}

@media(max-width:768px){

.dashboard-hero-content{

flex-direction:column;

text-align:center;

}

}

/* ======================================================
   DASHBOARD 3.0
====================================================== */

/* ---------- HERO ---------- */

.dashboard-member-hero{

    position:relative;

    overflow:hidden;

    margin-bottom:3rem;

    border-radius:36px;

    background:
    linear-gradient(
        135deg,
        rgba(200,176,139,.12),
        rgba(16,16,16,.98) 40%,
        rgba(8,8,8,.99)
    );

    border:1px solid rgba(200,176,139,.18);

    box-shadow:
        0 35px 80px rgba(0,0,0,.45);

}

.dashboard-member-overlay{

    position:absolute;
    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(200,176,139,.16),
        transparent 45%
    );

}

.dashboard-member-content{

    position:relative;

    display:flex;

    align-items:center;

    gap:2.5rem;

    padding:4rem;

}

.dashboard-member-avatar{

    width:120px;
    height:120px;

    border-radius:50%;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:3rem;
    font-weight:700;

    color:#050505;

    background:
    linear-gradient(
        135deg,
        var(--lux-gold),
        #f3d59f
    );

}

.dashboard-member-label{

    display:inline-block;

    margin-bottom:1rem;

    color:var(--lux-gold);

    letter-spacing:.35em;

    text-transform:uppercase;

    font-size:.72rem;

}

.dashboard-member-title{

    margin-bottom:1rem;

    color:var(--lux-cream);

    font-size:clamp(2.8rem,5vw,4.8rem);

    line-height:.95;

}

.dashboard-member-description{

    max-width:650px;

    color:var(--text-secondary);

    line-height:1.9;

}

.dashboard-member-meta{

    display:flex;

    flex-wrap:wrap;

    gap:1rem;

    margin-top:2rem;

}

.dashboard-member-meta span{

    padding:.8rem 1.3rem;

    border-radius:999px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    color:var(--lux-gold);

    font-size:.72rem;

    letter-spacing:.14em;

    text-transform:uppercase;

}

/* ---------- STATS ---------- */

.dashboard-stats{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:1.5rem;

    margin-bottom:3rem;

}

.dashboard-stat-card{

    padding:2rem;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        rgba(18,18,18,.98),
        rgba(8,8,8,.99)
    );

    border:1px solid rgba(200,176,139,.15);

}

.dashboard-stat-label{

    display:block;

    color:var(--text-muted);

    letter-spacing:.18em;

    text-transform:uppercase;

    font-size:.72rem;

    margin-bottom:1rem;

}

.dashboard-stat-card h2{

    font-size:2.6rem;

    color:var(--lux-gold);

}

/* ---------- ACTIONS ---------- */

.dashboard-actions-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:1.5rem;

    margin-bottom:4rem;

}

.dashboard-action-card{

    padding:2rem;

    border-radius:28px;

    background:
    rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.dashboard-action-card span{

    font-size:2rem;

}

.dashboard-action-card h3{

    margin:1.2rem 0 .75rem;

    color:#fff;

}

.dashboard-action-card p{

    color:var(--text-secondary);

}

.dashboard-action-card:hover{

    transform:translateY(-8px);

    border-color:var(--lux-gold);

}

.dashboard-action-logout{

    border-color:
    rgba(200,176,139,.25);

}

.dashboard-action-logout:hover{

    background:var(--lux-gold);

    color:#050505;

}

.dashboard-action-logout:hover h3,

.dashboard-action-logout:hover p{

    color:#050505;

}

/* ---------- ORDERS ---------- */

.dashboard-order-grid{

    display:grid;

    gap:1.5rem;

}

.dashboard-order-card{

    padding:2rem;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        rgba(18,18,18,.98),
        rgba(8,8,8,.99)
    );

    border:1px solid rgba(255,255,255,.08);

}

.dashboard-order-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:2rem;

}

.dashboard-order-label{

    display:block;

    color:var(--text-muted);

    letter-spacing:.18em;

    font-size:.72rem;

    text-transform:uppercase;

    margin-bottom:.5rem;

}

.dashboard-status{

    padding:.55rem 1rem;

    border-radius:999px;

    background:
    rgba(200,176,139,.12);

    color:var(--lux-gold);

    font-size:.75rem;

}

.dashboard-order-info{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:2rem;

}

.dashboard-order-info small{

    display:block;

    margin-bottom:.5rem;

    color:var(--text-muted);

}

.dashboard-order-info strong{

    color:#fff;

}

/* ---------- EMPTY ---------- */

.dashboard-empty{

    padding:5rem 2rem;

    text-align:center;

}

.dashboard-empty-icon{

    font-size:4rem;

    margin-bottom:1.5rem;

}

/* ---------- RESPONSIVE ---------- */

@media(max-width:992px){

.dashboard-member-content{

flex-direction:column;

text-align:center;

}

.dashboard-member-meta{

justify-content:center;

}

.dashboard-stats{

grid-template-columns:1fr;

}

.dashboard-actions-grid{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.dashboard-actions-grid{

grid-template-columns:1fr;

}

.dashboard-order-top{

flex-direction:column;

align-items:flex-start;

gap:1rem;

}

.dashboard-order-info{

grid-template-columns:1fr;

}

.dashboard-member-content{

padding:2rem;

}

.dashboard-member-avatar{

width:90px;

height:90px;

font-size:2.2rem;

}

}

.dashboard-progress{

    margin-top:2rem;

}

.dashboard-progress-bar{

    height:8px;

    border-radius:999px;

    overflow:hidden;

    background:rgba(255,255,255,.06);

}

.dashboard-progress-fill{

    height:100%;

    background:
    linear-gradient(
        90deg,
        var(--lux-gold),
        #f3d59f
    );

}

.dashboard-progress small{

    display:block;

    margin-top:.75rem;

    color:var(--text-muted);

    letter-spacing:.12em;

    text-transform:uppercase;

}

/* ======================================================
   MEMBER HUB
====================================================== */

.dashboard-hub{

    margin:4rem 0;

}

.dashboard-hub-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:1.5rem;

}

.dashboard-hub-card{

    display:flex;

    flex-direction:column;

    padding:2rem;

    min-height:230px;

    border-radius:30px;

    background:
    linear-gradient(
        180deg,
        rgba(18,18,18,.96),
        rgba(8,8,8,.98)
    );

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.dashboard-hub-card:hover{

    transform:translateY(-8px);

    border-color:var(--lux-gold);

    box-shadow:
        0 20px 50px rgba(0,0,0,.35);

}

.dashboard-hub-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    margin-bottom:1.5rem;

    font-size:2rem;

    background:
    rgba(200,176,139,.12);

}

.dashboard-hub-card h3{

    margin-bottom:.75rem;

    color:var(--lux-cream);

}

.dashboard-hub-card p{

    color:var(--text-secondary);

    line-height:1.8;

    margin-bottom:auto;

}

.dashboard-hub-card span{

    margin-top:2rem;

    color:var(--lux-gold);

    font-size:.85rem;

    letter-spacing:.12em;

    text-transform:uppercase;

}

.dashboard-hub-logout{

    border-color:
    rgba(200,176,139,.22);

}

.dashboard-hub-logout:hover{

    background:var(--lux-gold);

}

.dashboard-hub-logout:hover h3,

.dashboard-hub-logout:hover p,

.dashboard-hub-logout:hover span{

    color:#050505;

}

@media(max-width:1100px){

.dashboard-hub-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.dashboard-hub-grid{

grid-template-columns:1fr;

}

}

/* ======================================================
   LUXURY ORDERS
====================================================== */

.dashboard-orders-grid{

display:grid;

gap:1.5rem;

margin-top:2rem;

}

.dashboard-order{

background:
linear-gradient(
180deg,
rgba(18,18,18,.96),
rgba(8,8,8,.99)
);

border:1px solid rgba(200,176,139,.14);

border-radius:30px;

padding:2rem;

transition:.35s;

}

.dashboard-order:hover{

transform:translateY(-6px);

border-color:var(--lux-gold);

}

.dashboard-order-header{

display:flex;

justify-content:space-between;

align-items:flex-start;

margin-bottom:2rem;

}

.dashboard-order-overline{

display:block;

margin-bottom:.6rem;

font-size:.72rem;

letter-spacing:.25em;

text-transform:uppercase;

color:var(--lux-gold);

}

.dashboard-status{

padding:.6rem 1rem;

border-radius:999px;

background:
rgba(200,176,139,.12);

border:
1px solid rgba(200,176,139,.18);

color:var(--lux-gold);

font-size:.75rem;

letter-spacing:.08em;

text-transform:uppercase;

}

.dashboard-order-body{

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:2rem;

padding:2rem 0;

border-top:
1px solid rgba(255,255,255,.05);

border-bottom:
1px solid rgba(255,255,255,.05);

}

.dashboard-order-item small{

display:block;

margin-bottom:.6rem;

color:var(--text-muted);

text-transform:uppercase;

letter-spacing:.12em;

font-size:.72rem;

}

.dashboard-order-item strong{

font-size:1.05rem;

color:var(--lux-cream);

}

.dashboard-order-footer{

padding-top:1.5rem;

display:flex;

justify-content:space-between;

align-items:center;

color:var(--text-secondary);

font-size:.9rem;

}

@media(max-width:768px){

.dashboard-order-header{

flex-direction:column;

gap:1rem;

}

.dashboard-order-body{

grid-template-columns:1fr;

gap:1.25rem;

}

}

/* ======================================================
   CURATED
====================================================== */

.dashboard-curated{

    margin-top:5rem;

}

.dashboard-concierge{

    margin-top:5rem;

    border-radius:36px;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        rgba(200,176,139,.10),
        rgba(12,12,12,.98)
    );

    border:
    1px solid rgba(200,176,139,.18);

}

.dashboard-concierge-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:2rem;

    padding:4rem;

}

.dashboard-concierge h2{

    margin:1rem 0;

    font-size:2.6rem;

    color:var(--lux-cream);

}

.dashboard-concierge p{

    max-width:650px;

    color:var(--text-secondary);

    line-height:1.9;

}

@media(max-width:768px){

.dashboard-concierge-content{

flex-direction:column;

text-align:center;

padding:2rem;

}

.dashboard-concierge .btn{

width:100%;

}

}

/* ==========================================
   Wishlist 2.0
========================================== */

.wishlist-product{

    display:flex;

    flex-direction:column;

    gap:1rem;

}

.wishlist-remove-form{

    width:100%;

}

.wishlist-remove-btn{

    width:100%;

    min-height:52px;

    border-radius:16px;

    border:1px solid rgba(200,176,139,.22);

    background:rgba(255,255,255,.03);

    color:var(--lux-gold);

    transition:.3s;

}

.wishlist-remove-btn:hover{

    background:var(--lux-gold);

    color:var(--lux-black);

}