/* ═══════════════════════════════════════════════════════════════════
   ACCOUNT AREA — Advanced dashboard + auth forms
   ═══════════════════════════════════════════════════════════════════ */

.account-body { background: var(--ivory, #fbf8f2); }

.account-main {
    min-height: 60vh;
    padding: 40px 20px 80px;
}

.account-container {
    max-width: 720px;
    margin: 0 auto;
}

.account-container-wide {
    max-width: 1140px;
    margin: 0 auto;
}

/* Breadcrumb */
.account-breadcrumb {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2a2a2a;
    font-family: 'Jost', sans-serif;
    margin-bottom: 30px;
}
.account-breadcrumb a { color: #9a7b4f; text-decoration: none; }
.account-breadcrumb span { color: #2a2a2a; }

/* ═══════════════════════════════════════════════════════════════════
   MEMBER HERO
   ═══════════════════════════════════════════════════════════════════ */
.member-hero {
    background: linear-gradient(135deg, #fffdf8 0%, #f5ede0 100%);
    border: 0.5px solid #d4af7a;
    border-radius: 12px;
    padding: 40px 48px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.member-hero::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(212, 175, 122, 0.25) 0%, transparent 70%);
    pointer-events: none;
}
.member-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.member-hero-text .eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9a7b4f;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin-bottom: 8px;
}
.member-greeting {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 1;
    color: #0d0d0d;
    margin: 0 0 14px 0;
}
.member-greeting em { font-style: italic; color: #9a7b4f; }

.member-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    flex-wrap: wrap;
}
.member-tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #9a7b4f;
    color: #fbf8f2;
    border-radius: 20px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}
.member-tier-badge i { font-size: 12px; }
.member-since {
    font-size: 11px;
    color: #666;
    font-family: 'Jost', sans-serif;
    letter-spacing: 1px;
}

.member-hero-points {
    text-align: center;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 0.5px solid #d4af7a;
    flex-shrink: 0;
}
.member-hero-points .points-value {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 42px;
    color: #9a7b4f;
    line-height: 1;
    margin-bottom: 6px;
}
.member-hero-points .points-label {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #666;
    font-family: 'Jost', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════
   DASHBOARD STATS GRID (4-col)
   ═══════════════════════════════════════════════════════════════════ */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.dash-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background: #fff;
    border: 0.5px solid #e8d5b0;
    border-radius: 8px;
    text-decoration: none;
    color: #0d0d0d;
    transition: all 0.3s;
    text-align: center;
}
.dash-stat:hover {
    border-color: #9a7b4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(154, 123, 79, 0.1);
}
.dash-stat i {
    font-size: 24px;
    color: #9a7b4f;
    margin-bottom: 12px;
}
.dash-stat .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 32px;
    color: #0d0d0d;
    line-height: 1;
    margin-bottom: 6px;
}
.dash-stat .stat-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}
.dash-stat-ltv {
    background: linear-gradient(135deg, #fffdf8, #faf2e4);
    border-color: #d4af7a;
}
.dash-stat-ltv .stat-value { font-size: 24px; color: #9a7b4f; }

/* ═══════════════════════════════════════════════════════════════════
   DASHBOARD SECTIONS (shared)
   ═══════════════════════════════════════════════════════════════════ */
.dashboard-section {
    background: #fff;
    border: 0.5px solid #e8d5b0;
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid #f0e4cc;
}
.section-head .eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9a7b4f;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}
.section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 28px;
    color: #0d0d0d;
    margin: 0;
    line-height: 1;
}
.section-head h2 em { font-style: italic; color: #9a7b4f; }

.section-view-all {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a7b4f;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.section-view-all:hover { color: #0d0d0d; gap: 10px; }
.section-view-all i { font-size: 11px; }

/* Empty state */
.empty-section {
    text-align: center;
    padding: 30px 20px;
    color: #888;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
}
.empty-section i {
    font-size: 36px;
    color: #d4af7a;
    display: block;
    margin-bottom: 14px;
}
.empty-section p { margin: 0; line-height: 1.7; }
.empty-section a {
    color: #9a7b4f;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.empty-section a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   RECENT ORDERS
   ═══════════════════════════════════════════════════════════════════ */
.orders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.order-preview-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fbf8f2;
    border: 0.5px solid #f0e4cc;
    border-radius: 6px;
    text-decoration: none;
    color: #0d0d0d;
    transition: all 0.3s;
    align-items: center;
}
.order-preview-card:hover {
    background: #fff;
    border-color: #9a7b4f;
    transform: translateX(4px);
}
.order-preview-img {
    width: 60px; height: 76px;
    border-radius: 4px;
    overflow: hidden;
    background: #f5ede0;
    flex-shrink: 0;
}
.order-preview-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.order-preview-img-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #d4af7a; font-size: 22px;
}
.order-preview-info { flex: 1; min-width: 0; }
.order-preview-number {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: #0d0d0d;
    margin-bottom: 2px;
}
.order-preview-date {
    font-size: 11px;
    color: #888;
    font-family: 'Jost', sans-serif;
    margin-bottom: 4px;
}
.order-preview-meta {
    font-size: 12px;
    color: #2a2a2a;
    font-family: 'Jost', sans-serif;
}
.order-status-pill {
    padding: 4px 10px;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   WISHLIST PREVIEW (4-col grid)
   ═══════════════════════════════════════════════════════════════════ */
.wishlist-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.wishlist-preview-card {
    text-decoration: none;
    color: #0d0d0d;
    display: block;
}
.wl-preview-img {
    aspect-ratio: 3/4;
    background: #f5ede0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}
.wl-preview-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.wishlist-preview-card:hover .wl-preview-img img { transform: scale(1.05); }
.wl-preview-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #d4af7a; font-size: 32px;
}
.wl-remove-btn {
    position: absolute;
    top: 8px; right: 8px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #c0392b;
    font-size: 14px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
}
.wl-remove-btn:hover { background: #fff; transform: scale(1.1); }
.wl-preview-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: #0d0d0d;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wl-preview-price {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: #0d0d0d;
    font-weight: 500;
}
.wl-preview-mrp {
    color: #888;
    text-decoration: line-through;
    font-size: 11px;
    margin-left: 6px;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════════════════════
   RECENTLY VIEWED (horizontal scroll)
   ═══════════════════════════════════════════════════════════════════ */
.recently-viewed-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: thin;
}
.recently-viewed-scroll::-webkit-scrollbar { height: 6px; }
.recently-viewed-scroll::-webkit-scrollbar-track { background: #f5ede0; border-radius: 3px; }
.recently-viewed-scroll::-webkit-scrollbar-thumb { background: #d4af7a; border-radius: 3px; }

.rv-card {
    flex-shrink: 0;
    width: 160px;
    text-decoration: none;
    color: #0d0d0d;
    scroll-snap-align: start;
}
.rv-img {
    width: 160px;
    height: 200px;
    background: #f5ede0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}
.rv-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rv-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: #d4af7a; font-size: 28px;
}
.rv-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 3px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rv-price {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    color: #9a7b4f;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   TWO-COLUMN SECTION (Appointments + Tailoring)
   ═══════════════════════════════════════════════════════════════════ */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}
.two-col-section .dashboard-section { margin-bottom: 0; }

/* Appointments */
.appointments-list { display: flex; flex-direction: column; gap: 10px; }
.appointment-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fbf8f2;
    border: 0.5px solid #f0e4cc;
    border-radius: 6px;
}
.appointment-date-block {
    background: #9a7b4f;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    text-align: center;
    min-width: 60px;
}
.apt-day {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    line-height: 1;
}
.apt-month {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 3px;
}
.appointment-info { flex: 1; min-width: 0; }
.apt-purpose {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: #0d0d0d;
    margin-bottom: 4px;
}
.apt-time, .apt-stylist {
    font-size: 11px;
    color: #666;
    font-family: 'Jost', sans-serif;
    margin-top: 2px;
}
.apt-time i, .apt-stylist i { color: #9a7b4f; margin-right: 4px; }
.apt-status {
    padding: 3px 8px;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    flex-shrink: 0;
}
.apt-status-pending { background: #fff3cd; color: #856404; }
.apt-status-confirmed { background: #d4edda; color: #155724; }

/* Tailoring requests */
.tailoring-list { display: flex; flex-direction: column; gap: 10px; }
.tailoring-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fbf8f2;
    border: 0.5px solid #f0e4cc;
    border-radius: 6px;
}
.tailor-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #9a7b4f;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.tailor-info { flex: 1; min-width: 0; }
.tailor-occasion {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: #0d0d0d;
}
.tailor-date {
    font-size: 11px;
    color: #666;
    font-family: 'Jost', sans-serif;
    margin-top: 2px;
}
.tailor-status {
    padding: 3px 8px;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    flex-shrink: 0;
}
.tailor-status-inquiry { background: #fff3cd; color: #856404; }
.tailor-status-quoted, .tailor-status-advance_paid { background: #d1ecf1; color: #0c5460; }
.tailor-status-in_production { background: #cce5ff; color: #004085; }
.tailor-status-fitting { background: #d4edda; color: #155724; }

/* ═══════════════════════════════════════════════════════════════════
   DEFAULT ADDRESS CARD
   ═══════════════════════════════════════════════════════════════════ */
.address-preview-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #fbf8f2;
    border: 0.5px solid #f0e4cc;
    border-radius: 6px;
}
.addr-icon {
    width: 48px; height: 48px;
    background: #9a7b4f;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.addr-content { flex: 1; }
.addr-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a7b4f;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin-bottom: 4px;
}
.addr-default {
    display: inline-block;
    background: #9a7b4f;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 8px;
    letter-spacing: 1.5px;
    margin-left: 8px;
}
.addr-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: #0d0d0d;
    margin-bottom: 6px;
}
.addr-lines {
    font-size: 13px;
    color: #2a2a2a;
    line-height: 1.6;
    font-family: 'Jost', sans-serif;
    margin-bottom: 8px;
}
.addr-phone {
    font-size: 12px;
    color: #666;
    font-family: 'Jost', sans-serif;
}
.addr-phone i { color: #9a7b4f; margin-right: 4px; }

/* ═══════════════════════════════════════════════════════════════════
   ACCOUNT NAV GRID (replaces simple menu)
   ═══════════════════════════════════════════════════════════════════ */
.account-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.nav-grid-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fbf8f2;
    border: 0.5px solid #e8d5b0;
    border-radius: 6px;
    text-decoration: none;
    color: #0d0d0d;
    transition: all 0.3s;
}
.nav-grid-item:hover {
    background: #fff;
    border-color: #9a7b4f;
    transform: translateY(-1px);
}
.nav-grid-item > i {
    font-size: 20px;
    color: #9a7b4f;
    width: 32px;
    flex-shrink: 0;
}
.nav-grid-item > div { flex: 1; }
.nav-grid-item strong {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 3px;
}
.nav-grid-item span {
    display: block;
    font-size: 11px;
    color: #666;
    font-family: 'Jost', sans-serif;
}
.nav-grid-logout {
    grid-column: 1 / -1;
    background: #fff;
    border: 0.5px solid #f0d5d0;
}
.nav-grid-logout > i { color: #c0392b; }
.nav-grid-logout strong { color: #c0392b; }

/* ═══════════════════════════════════════════════════════════════════
   AUTH FORMS (login / register)
   ═══════════════════════════════════════════════════════════════════ */
.auth-hero, .account-hero {
    text-align: center;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.auth-hero .eyebrow, .account-hero .eyebrow {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9a7b4f;
    margin-bottom: 12px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}
.auth-title, .account-greeting {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.1;
    color: #0d0d0d;
    margin: 0 0 12px 0;
}
.auth-title em, .account-greeting em { font-style: italic; color: #9a7b4f; }
.auth-sub {
    font-size: 14px;
    color: #666;
    max-width: 440px;
    margin: 0 auto;
    line-height: 1.6;
}

.auth-wrapper { max-width: 720px; margin: 0 auto; }

.auth-tabs {
    display: flex;
    gap: 0;
    max-width: 440px;
    margin: 0 auto 32px;
    border-bottom: 0.5px solid #d4af7a;
}
.auth-tab {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}
.auth-tab.active { color: #0d0d0d; }
.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px; background: #9a7b4f;
}
.auth-tab:hover:not(.active) { color: #2a2a2a; }

.auth-form { max-width: 440px; margin: 0 auto; display: none; }
.auth-form.active { display: block; }

.auth-form label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2a2a2a;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin: 14px 0 6px;
}
.auth-form label:first-child { margin-top: 0; }
.auth-form .label-hint {
    text-transform: none;
    letter-spacing: 0.5px;
    color: #999;
    font-weight: 400;
    font-size: 11px;
}
.auth-form input {
    width: 100%;
    padding: 12px 16px;
    border: 0.5px solid #d4af7a;
    background: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #0d0d0d;
    border-radius: 4px;
    transition: all 0.2s;
    box-sizing: border-box;
}
.auth-form input:focus {
    outline: none;
    border-color: #9a7b4f;
    box-shadow: 0 0 0 2px rgba(154, 123, 79, 0.1);
}

.auth-forgot {
    display: block;
    text-align: right;
    font-size: 11px;
    color: #9a7b4f;
    text-decoration: none;
    margin: 10px 0 18px;
    letter-spacing: 1px;
}
.auth-forgot:hover { text-decoration: underline; }

.auth-terms {
    font-size: 11px;
    color: #666;
    line-height: 1.5;
    margin: 16px 0;
}
.auth-terms a { color: #9a7b4f; text-decoration: none; }

.auth-btn {
    width: 100%;
    padding: 14px 20px;
    background: #0d0d0d;
    color: #fbf8f2;
    border: 1px solid #0d0d0d;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    margin-top: 8px;
}
.auth-btn:hover { background: #9a7b4f; border-color: #9a7b4f; transform: translateY(-1px); }

.auth-btn-outline {
    background: transparent;
    color: #0d0d0d;
    border: 1px solid #0d0d0d;
}
.auth-btn-outline:hover { background: #0d0d0d; color: #fbf8f2; }

.auth-switch {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
}
.auth-switch a {
    color: #9a7b4f;
    text-decoration: none;
    font-weight: 500;
}
.auth-switch a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════════
   SUB-PAGE SHARED STYLES (orders, addresses, profile)
   ═══════════════════════════════════════════════════════════════════ */
.empty-account-state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border: 0.5px dashed #d4af7a;
    border-radius: 8px;
}
.empty-account-state i { font-size: 48px; color: #d4af7a; margin-bottom: 20px; }
.empty-account-state h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 28px;
    margin: 0 0 10px 0;
    color: #0d0d0d;
}
.empty-account-state p { color: #666; margin: 0; }

.orders-list { display: flex; flex-direction: column; gap: 14px; }
.order-card {
    display: flex;
    flex-direction: column;
    padding: 20px 22px;
    background: #fff;
    border: 0.5px solid #d4af7a;
    border-radius: 8px;
    text-decoration: none;
    color: #0d0d0d;
    transition: all 0.3s;
}
.order-card:hover { border-color: #9a7b4f; box-shadow: 0 4px 14px rgba(154, 123, 79, 0.1); }
.order-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}
.order-number {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: #0d0d0d;
    margin-bottom: 4px;
}
.order-date { font-size: 12px; color: #666; font-family: 'Jost', sans-serif; }
.order-status {
    display: inline-block;
    padding: 4px 10px;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    white-space: nowrap;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-confirmed, .status-processing { background: #d1ecf1; color: #0c5460; }
.status-shipped { background: #cce5ff; color: #004085; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

.order-card-body {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 0.5px solid #f0e4cc;
    border-bottom: 0.5px solid #f0e4cc;
    margin-bottom: 10px;
}
.order-items-count { font-size: 13px; color: #666; font-family: 'Jost', sans-serif; }
.order-total {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: #0d0d0d;
}
.order-card-foot {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a7b4f;
    font-family: 'Jost', sans-serif;
}

.address-form-card {
    background: #fff;
    border: 0.5px solid #d4af7a;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 24px;
}
.address-form-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    margin: 0 0 20px 0;
    color: #0d0d0d;
}
.address-form-card label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2a2a2a;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    margin: 14px 0 6px;
}
.address-form-card input {
    width: 100%;
    padding: 11px 14px;
    border: 0.5px solid #d4af7a;
    background: #fbf8f2;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: #0d0d0d;
    border-radius: 4px;
    box-sizing: border-box;
    transition: all 0.2s;
}
.address-form-card input:focus { outline: none; border-color: #9a7b4f; background: #fff; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

.addresses-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
    margin-top: 16px;
}
.address-card {
    background: #fff;
    border: 0.5px solid #d4af7a;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}
.address-card.is-default { border: 1.5px solid #9a7b4f; background: #fffdf8; }
.address-default-badge {
    position: absolute; top: 12px; right: 12px;
    background: #9a7b4f; color: #fff;
    font-size: 8px; letter-spacing: 1.5px;
    padding: 3px 8px; border-radius: 3px;
    text-transform: uppercase; font-weight: 500;
}
.address-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a7b4f;
    font-weight: 500;
    margin-bottom: 6px;
}
.address-name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    color: #0d0d0d;
    margin-bottom: 10px;
}
.address-text {
    font-size: 13px;
    color: #2a2a2a;
    line-height: 1.7;
    font-family: 'Jost', sans-serif;
}
.address-actions {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 0.5px solid #f0e4cc;
    display: flex; gap: 14px;
}
.address-actions a {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #9a7b4f;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}
.address-actions a:hover { color: #0d0d0d; }

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 13px;
    font-family: 'Jost', sans-serif;
    border: 0.5px solid;
}
.alert-success { background: #d4edda; color: #155724; border-color: #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .wishlist-preview-grid { grid-template-columns: repeat(3, 1fr); }
    .two-col-section { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .account-main { padding: 30px 16px 60px; }
    .member-hero { padding: 28px 20px; border-radius: 8px; }
    .member-hero-content { flex-direction: column; align-items: flex-start; gap: 20px; }
    .member-greeting { font-size: 38px; }
    .member-hero-points { padding: 14px 20px; align-self: stretch; text-align: center; }

    .dashboard-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .dash-stat { padding: 18px 8px; }
    .dash-stat i { font-size: 20px; }
    .dash-stat .stat-value { font-size: 24px; }
    .dash-stat-ltv .stat-value { font-size: 18px; }

    .dashboard-section { padding: 20px; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
    .section-head h2 { font-size: 24px; }

    .wishlist-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .wl-preview-name { font-size: 13px; }

    .account-nav-grid { grid-template-columns: 1fr; }
    .nav-grid-item { padding: 14px 16px; }

    .orders-grid .order-preview-card { padding: 12px; gap: 10px; }
    .order-preview-img { width: 50px; height: 62px; }
    .order-status-pill { font-size: 8px; padding: 3px 7px; }

    .auth-title, .account-greeting { font-size: 34px; }
    .form-row-2, .form-row-3 { grid-template-columns: 1fr; gap: 0; }
    .address-form-card { padding: 20px; }
    .addresses-list { grid-template-columns: 1fr; }
}