/* =============================================
   Aylemu Baby — Account Page
   Base: styles.css (same header/footer)
   ============================================= */

.acct-page-wrapper { min-height: calc(100vh - 64px - 200px); }

/* BREADCRUMB */
.acct-breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 10px 24px; }
.acct-breadcrumb__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-light); }
.acct-breadcrumb__inner a { color: var(--text-mid); transition: color 0.2s; }
.acct-breadcrumb__inner a:hover { color: var(--cta); }
.acct-breadcrumb__inner i.fa-chevron-right { font-size: 0.55rem; }
.acct-breadcrumb__inner span { color: var(--text); font-weight: 600; }

/* HERO */
.acct-hero { background: linear-gradient(135deg, var(--clay-light) 0%, var(--sage-light) 50%, var(--blush-light) 100%); padding: 18px 24px; }
.acct-hero__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.acct-hero__avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--cta), var(--blush)); color: var(--white); font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(196,114,92,0.2); }
.acct-hero__info { flex: 1; }
.acct-hero__info h1 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.acct-hero__info p { color: var(--text-mid); font-size: 0.78rem; margin: 0; }
.acct-hero__vip { display: flex; align-items: center; gap: 10px; background: rgba(17,24,39,0.9); color: var(--white); padding: 6px 14px; border-radius: var(--radius-full); font-size: 0.72rem; }
.acct-hero__vip-badge { font-weight: 700; display: flex; align-items: center; gap: 4px; }
.acct-hero__vip-badge i { color: #FCD34D; font-size: 0.65rem; }
.acct-hero__vip-pts { font-weight: 500; opacity: 0.8; }
.acct-hero--guest .acct-hero__vip { display: none; }

/* LAYOUT */
.acct-layout { max-width: 1100px; margin: 0 auto; padding: 24px 24px 48px; display: grid; grid-template-columns: 190px 1fr; gap: 28px; }

/* SIDEBAR */
.acct-sidebar { position: sticky; top: 84px; align-self: start; }
.acct-sidebar__nav { display: flex; flex-direction: column; gap: 2px; }
.acct-sidebar__divider { height: 1px; background: var(--border); margin: 6px 0; }
.acct-nav-item { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: 10px; font-size: 0.82rem; font-weight: 500; color: var(--text-mid); transition: all 0.2s; text-align: left; width: 100%; border: none; background: none; cursor: pointer; }
.acct-nav-item i { width: 16px; text-align: center; font-size: 0.8rem; }
.acct-nav-item:hover { background: var(--bg-alt); color: var(--text); }
.acct-nav-item.active { background: rgba(196,114,92,0.08); color: var(--cta); font-weight: 600; }
.acct-nav-item.active i { color: var(--cta); }
.acct-nav-item[data-section="profile"] i { color: var(--sage); }
.acct-nav-item[data-section="orders"] i { color: var(--cta); }
.acct-nav-item[data-section="wishlist"] i { color: var(--blush); }
.acct-nav-item[data-section="addresses"] i { color: var(--sage-dark); }
.acct-nav-item[data-section="referral"] i { color: #8B5CF6; }
.acct-nav-item[data-section="settings"] i { color: var(--text-light); }
.acct-nav-item--logout { color: #dc3545; }
.acct-nav-item--logout:hover { background: rgba(220,53,69,0.06); color: #dc3545; }
.acct-nav-item--logout i { color: #dc3545 !important; }

/* CONTENT */
.acct-content { min-height: 360px; min-width: 0; }
.acct-section { display: none; animation: acctFade 0.2s ease; }
.acct-section.active { display: block; }
@keyframes acctFade { from{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)} }

.acct-section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.acct-section__head h2 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }

/* EMPTY */
.acct-empty { text-align: center; padding: 36px 20px; background: var(--bg-alt); border-radius: 12px; }
.acct-empty__icon i { font-size: 1.5rem; color: var(--text-light); opacity: 0.4; }
.acct-empty h3 { font-family: var(--font-display); font-size: 0.9rem; margin: 8px 0 2px; }
.acct-empty p { color: var(--text-light); font-size: 0.78rem; margin-bottom: 12px; }

/* BUTTONS */
.acct-btn { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; border-radius: var(--radius-full); transition: all 0.2s; cursor: pointer; border: none; text-decoration: none; }
.acct-btn--primary { background: var(--cta); color: var(--white); box-shadow: 0 2px 8px rgba(196,114,92,0.2); }
.acct-btn--primary:hover { background: var(--cta-hover); transform: translateY(-1px); }
.acct-btn--outline { background: transparent; color: var(--text-mid); border: 1.5px solid var(--border); }
.acct-btn--outline:hover { border-color: var(--cta); color: var(--cta); }
.acct-btn--ghost { background: transparent; color: var(--text-mid); }
.acct-btn--danger { background: #dc3545; color: var(--white); }
.acct-btn--danger:hover { background: #c82333; }
.acct-btn--sm { padding: 7px 16px; font-size: 0.78rem; }
.acct-btn--xs { padding: 5px 12px; font-size: 0.72rem; }

/* PROFILE CARD */
.acct-profile-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }

/* FORM GRID */
.acct-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.acct-field--full { grid-column: 1/-1; }
.acct-field label { display: block; font-size: 0.68rem; font-weight: 600; color: var(--text-mid); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.acct-field input, .acct-field select { width: 100%; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.82rem; font-family: var(--font-body); outline: none; transition: border-color 0.2s; background: var(--bg); }
.acct-field input:focus, .acct-field select:focus { border-color: var(--cta); background: var(--white); }
.acct-form-actions { display: flex; gap: 8px; }

/* PHONE INPUT — searchable dropdown */
.acct-phone-input { display: flex; gap: 0; }
.acct-phone-input input { border-radius: 0 8px 8px 0 !important; flex: 1; }
.acct-phone-select { position: relative; flex-shrink: 0; }
.acct-phone-select__btn { display: flex; align-items: center; gap: 4px; padding: 8px 10px; border: 1.5px solid var(--border); border-right: none; border-radius: 8px 0 0 8px; background: var(--bg); font-size: 0.82rem; cursor: pointer; height: 100%; white-space: nowrap; font-family: var(--font-body); transition: border-color 0.2s; }
.acct-phone-select__btn:hover { border-color: var(--cta); }
.acct-phone-dropdown { position: absolute; top: calc(100% + 4px); left: 0; width: 280px; background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; box-shadow: 0 12px 32px rgba(0,0,0,0.12); z-index: 200; max-height: 300px; overflow: hidden; display: flex; flex-direction: column; animation: acctFade 0.15s ease; }
.acct-phone-search { width: 100%; padding: 10px 12px; border: none; border-bottom: 1px solid var(--border); font-size: 0.82rem; font-family: var(--font-body); outline: none; }
.acct-phone-list { overflow-y: auto; max-height: 250px; }
.acct-phone-item { display: flex; align-items: center; gap: 8px; width: 100%; padding: 8px 12px; border: none; background: none; cursor: pointer; font-size: 0.8rem; font-family: var(--font-body); text-align: left; transition: background 0.15s; }
.acct-phone-item:hover { background: var(--bg-alt); }

/* DOB ROW */
.acct-dob-row { display: flex; gap: 6px; }
.acct-dob-row select { flex: 1; padding: 8px 8px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 0.82rem; font-family: var(--font-body); background: var(--bg); outline: none; transition: border-color 0.2s; }
.acct-dob-row select:focus { border-color: var(--cta); background: var(--white); }

/* GENDER CARDS */
.acct-gender-row { display: flex; gap: 8px; flex-wrap: wrap; }
.acct-gender-card { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 10px; cursor: pointer; transition: all 0.2s; font-size: 0.8rem; font-weight: 500; background: var(--bg); }
.acct-gender-card:hover { border-color: var(--cta); background: var(--white); }
.acct-gender-card input { display: none; }
.acct-gender-card:has(input:checked) { border-color: var(--cta); background: rgba(196,114,92,0.06); color: var(--cta); font-weight: 600; box-shadow: 0 2px 8px rgba(196,114,92,0.1); }

/* OVERVIEW */
.acct-market-layout { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 16px; }
.acct-market-main { display: grid; gap: 14px; }
.acct-market-panel { background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 16px; box-shadow: 0 10px 30px rgba(31,41,55,0.04); }
.acct-market-panel__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.acct-market-panel__head span { display: block; color: var(--text-light); font-size: 0.64rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.acct-market-panel__head h3 { font-family: var(--font-display); font-size: 1.02rem; margin: 0; }
.acct-market-order { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border); }
.acct-market-order:first-of-type { border-top: none; }
.acct-market-order strong { display: block; font-family: var(--font-display); font-size: 0.9rem; }
.acct-market-order span { display: block; color: var(--text-mid); font-size: 0.76rem; margin-top: 2px; text-transform: capitalize; }
.acct-market-order__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.acct-market-side { display: grid; gap: 10px; align-content: start; }
.acct-market-action { display: flex; align-items: center; gap: 11px; min-height: 64px; padding: 12px; border: 1px solid var(--border); background: var(--white); border-radius: 16px; color: inherit; text-decoration: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; text-align: left; }
.acct-market-action:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(31,41,55,0.07); border-color: rgba(196,114,92,0.28); }
.acct-market-action i { width: 34px; height: 34px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(196,114,92,0.09); color: var(--cta); flex-shrink: 0; }
.acct-market-action span { display: block; color: var(--text-mid); font-size: 0.72rem; line-height: 1.35; }
.acct-market-action strong { display: block; color: var(--text); font-family: var(--font-display); font-size: 0.86rem; }
.acct-buy-again-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.acct-buy-again-item { display: grid; grid-template-columns: 64px minmax(0, 1fr); align-items: center; gap: 12px; min-width: 0; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-alt); padding: 10px; text-align: left; cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s; }
.acct-buy-again-item:hover { border-color: var(--cta); background: var(--white); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(196,114,92,0.16); }
.acct-buy-again-item__media { width: 64px; height: 64px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: var(--white); flex-shrink: 0; overflow: hidden; font-size: 1.25rem; }
.acct-buy-again-item__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.acct-buy-again-item__body { min-width: 0; }
.acct-buy-again-item strong { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 0.82rem; line-height: 1.3; color: var(--text); }
.acct-buy-again-item small { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 8px; color: var(--cta); font-weight: 800; font-size: 0.72rem; }
.acct-buy-again-item__cta { display: inline-flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 999px; background: var(--cta); color: var(--white); box-shadow: 0 6px 14px rgba(196,114,92,0.24); }
.acct-buy-again-item:hover .acct-buy-again-item__cta { background: var(--cta-hover); }
.acct-market-empty { border: 1px dashed var(--border); border-radius: 14px; padding: 14px; background: var(--bg-alt); }
.acct-market-empty strong { display: block; font-family: var(--font-display); font-size: 0.9rem; margin-bottom: 2px; }
.acct-market-empty span { display: block; color: var(--text-mid); font-size: 0.76rem; line-height: 1.4; }

.acct-overview-premium { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.55fr); gap: 16px; margin-bottom: 16px; }
.acct-overview-hero { position: relative; overflow: hidden; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(124,154,142,0.24); border-radius: 24px; padding: 22px; color: var(--text); background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(250,247,243,0.94)); box-shadow: 0 18px 48px rgba(31,41,55,0.08); }
.acct-overview-hero::after { content: ''; position: absolute; inset: auto -48px -70px auto; width: 220px; height: 220px; border-radius: 999px; background: radial-gradient(circle, rgba(124,154,142,0.16), rgba(124,154,142,0)); pointer-events: none; }
.acct-overview-hero__top { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.acct-overview-hero h3 { font-family: var(--font-display); font-size: clamp(1.35rem, 3vw, 2rem); line-height: 1.1; margin: 0; letter-spacing: -0.02em; }
.acct-overview-hero p { position: relative; z-index: 1; max-width: 560px; color: var(--text-mid); font-size: 0.88rem; line-height: 1.6; margin: 0 0 18px; }
.acct-overview-hero .acct-status { white-space: nowrap; box-shadow: 0 4px 12px rgba(31,41,55,0.06); }
.acct-overview-hero__meta { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-bottom: 18px; }
.acct-overview-hero__meta span { display: block; min-width: 0; padding: 10px 12px; border-radius: 14px; background: var(--white); border: 1px solid var(--border); color: var(--text-light); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.acct-overview-hero__meta strong { display: block; color: var(--text); font-size: 0.86rem; font-family: var(--font-display); margin-bottom: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-transform: none; letter-spacing: 0; }
.acct-overview-stack { display: grid; gap: 10px; }
.acct-overview-mini { appearance: none; display: flex; align-items: center; gap: 12px; min-height: 58px; border: 1px solid var(--border); background: var(--white); border-radius: 18px; padding: 12px 14px; text-align: left; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.acct-overview-mini:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31,41,55,0.08); border-color: rgba(196,114,92,0.32); }
.acct-overview-mini i { width: 36px; height: 36px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; background: rgba(196,114,92,0.09); color: var(--cta); flex-shrink: 0; }
.acct-overview-mini span { display: block; color: var(--text-mid); font-size: 0.72rem; line-height: 1.35; }
.acct-overview-mini strong { display: block; color: var(--text); font-family: var(--font-display); font-size: 0.95rem; line-height: 1.2; }
.acct-overview-focus { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--white); border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: 0 10px 30px rgba(31,41,55,0.05); }
.acct-overview-focus__eyebrow { display: inline-flex; color: var(--cta); background: rgba(196,114,92,0.08); border-radius: var(--radius-full); padding: 4px 10px; font-size: 0.64rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.acct-overview-hero .acct-overview-focus__eyebrow { position: relative; z-index: 1; color: var(--sage-dark); background: rgba(124,154,142,0.12); border: 1px solid rgba(124,154,142,0.18); align-self: flex-start; }
.acct-overview-hero .acct-overview-focus__actions { position: relative; z-index: 1; justify-content: flex-start; }
.acct-overview-hero .acct-btn--primary { background: var(--cta); color: var(--white); }
.acct-overview-hero .acct-btn--outline { border-color: var(--border); color: var(--text-mid); background: var(--white); }
.acct-overview-focus h3 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.acct-overview-focus p { color: var(--text-mid); font-size: 0.8rem; line-height: 1.5; margin: 0; }
.acct-overview-focus__actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }

/* ORDERS */
.acct-order-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 16px; margin-bottom: 14px; transition: box-shadow 0.2s, transform 0.2s; box-shadow: 0 8px 24px rgba(31,41,55,0.04); max-width: 100%; min-width: 0; overflow: hidden; box-sizing: border-box; }
.acct-order-card:hover { box-shadow: 0 14px 34px rgba(31,41,55,0.08); }
.acct-order-card--hero { border-color: rgba(196,114,92,0.22); box-shadow: 0 12px 32px rgba(196,114,92,0.1); }
.acct-order-card--hero:hover { transform: translateY(-1px); }
.acct-order-card--collapsed { padding: 0; overflow: hidden; }
.acct-order-card--collapsed:hover { transform: none; }
.acct-order-card__peek { width: 100%; display: block; text-align: left; border: none; background: transparent; padding: 14px 40px 14px 16px; cursor: pointer; position: relative; font-family: inherit; color: inherit; }
.acct-order-card__peek:hover { background: var(--bg-alt); }
.acct-order-card__peek-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.acct-order-card__peek-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.acct-order-card__peek-name { color: var(--text-mid); font-size: 0.78rem; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct-order-card__peek-name small { color: var(--text-light); font-weight: 700; }
.acct-order-card__peek-chevron { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 0.72rem; transition: transform 0.2s; }
.acct-order-card--collapsed.is-expanded .acct-order-card__peek-chevron { transform: translateY(-50%) rotate(180deg); }
.acct-order-card--collapsed .acct-order-card__detail { display: none; padding: 0 16px 16px; border-top: 1px solid var(--border); }
.acct-order-card--collapsed.is-expanded .acct-order-card__detail { display: block; }
.acct-order-card--collapsed.is-expanded .acct-order-card__detail .acct-order-card__header { padding-top: 14px; }
.acct-order-card__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; min-width: 0; }
.acct-order-card__id { font-family: var(--font-display); font-weight: 800; font-size: 0.96rem; letter-spacing: 0.01em; overflow-wrap: anywhere; }
.acct-order-card__body { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; padding: 12px 0; border-top: 1px solid var(--border); min-width: 0; width: 100%; }
.acct-order-card__date { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 4px; margin-top: 3px; }
.acct-order-card__date i { font-size: 0.65rem; }
.acct-order-card__total { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--cta); white-space: nowrap; }
.acct-order-products { display: flex; flex-direction: column; gap: 8px; min-width: 0; flex: 1; }
.acct-order-product { display: flex; align-items: flex-start; gap: 12px; min-width: 0; }
.acct-order-product--empty { color: var(--text-mid); font-size: 0.8rem; padding: 4px 0; }
.acct-order-product__media { width: 60px; height: 60px; border-radius: 12px; background: var(--bg-alt); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.acct-order-product__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.acct-order-product__media--emoji { font-size: 1.4rem; }
.acct-order-product__info { min-width: 0; flex: 1; }
.acct-order-product__name { font-weight: 700; font-size: 0.84rem; line-height: 1.35; color: var(--text); overflow-wrap: anywhere; word-break: break-word; }
.acct-order-product__variant { color: var(--text-mid); font-size: 0.74rem; line-height: 1.4; margin-top: 2px; overflow-wrap: anywhere; word-break: break-word; }
.acct-order-product__meta { color: var(--text-light); font-size: 0.72rem; font-weight: 700; margin-top: 4px; }
.acct-order-products__more { align-self: flex-start; border: none; background: transparent; color: var(--cta); font-size: 0.74rem; font-weight: 800; cursor: pointer; padding: 0; }
.acct-order-products__more:hover { text-decoration: underline; }
.acct-order-status-banner { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border-radius: 14px; background: linear-gradient(135deg, rgba(124,154,142,0.1), rgba(196,149,106,0.08)); border: 1px solid rgba(124,154,142,0.18); margin: 12px 0 0; }
.acct-order-status-banner--cancelled { background: rgba(254,226,226,0.5); border-color: rgba(220,53,69,0.18); }
.acct-order-status-banner--delivered { background: rgba(209,250,229,0.45); border-color: rgba(6,95,70,0.16); }
.acct-order-status-banner--shipped { background: rgba(124,154,142,0.12); border-color: rgba(124,154,142,0.22); }
.acct-order-status-banner__icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--white); color: var(--sage-dark); flex-shrink: 0; box-shadow: 0 4px 12px rgba(31,41,55,0.08); font-size: 0.9rem; }
.acct-order-status-banner--cancelled .acct-order-status-banner__icon { color: #dc3545; }
.acct-order-status-banner--delivered .acct-order-status-banner__icon { color: #065F46; }
.acct-order-status-banner__copy { min-width: 0; }
.acct-order-status-banner__copy strong { display: block; font-family: var(--font-display); font-size: 0.86rem; margin-bottom: 2px; overflow-wrap: anywhere; }
.acct-order-status-banner__copy span { display: block; color: var(--text-mid); font-size: 0.75rem; line-height: 1.45; overflow-wrap: anywhere; }
.acct-order-timeline { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; padding: 14px 0 10px; border-top: 1px solid var(--border); margin-top: 12px; }
.acct-order-step { position: relative; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; color: var(--text-light); font-size: 0.66rem; font-weight: 700; line-height: 1.25; }
.acct-order-step::before { content: ''; position: absolute; top: 12px; left: calc(-50% + 14px); width: calc(100% - 20px); height: 2px; background: var(--border); z-index: 0; }
.acct-order-step:first-child::before { display: none; }
.acct-order-step__dot { width: 24px; height: 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: var(--bg-alt); border: 1px solid var(--border); position: relative; z-index: 1; font-size: 0.68rem; }
.acct-order-step--done { color: var(--sage-dark); }
.acct-order-step--done::before { background: var(--sage); }
.acct-order-step--done .acct-order-step__dot { background: var(--sage); border-color: var(--sage); color: var(--white); }
.acct-order-step--active { color: var(--cta); }
.acct-order-step--active .acct-order-step__dot { background: rgba(196,114,92,0.12); border-color: var(--cta); color: var(--cta); box-shadow: 0 0 0 4px rgba(196,114,92,0.08); }
.acct-order-step--cancelled { color: #dc3545; }
.acct-order-step--cancelled .acct-order-step__dot { background: rgba(220,53,69,0.1); border-color: #dc3545; color: #dc3545; }
.acct-order-step__label { display: block; min-width: 0; overflow-wrap: anywhere; }
.acct-order-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 4px; }
.acct-order-actions__main { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; flex: 1; min-width: 0; }
.acct-order-actions__btn { text-decoration: none; }
.acct-order-more-wrap { position: relative; flex-shrink: 0; }
.acct-order-more-btn { width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--border); background: var(--white); color: var(--text-mid); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.acct-order-more-btn:hover { border-color: var(--cta); color: var(--cta); }
.acct-order-menu { position: absolute; right: 0; bottom: calc(100% + 6px); min-width: 168px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 16px 40px rgba(17,24,39,0.14); padding: 6px; z-index: 20; }
.acct-order-menu__item { width: 100%; display: flex; align-items: center; gap: 8px; border: none; background: transparent; color: var(--text-mid); font-size: 0.78rem; font-weight: 700; padding: 9px 10px; border-radius: 10px; cursor: pointer; text-decoration: none; text-align: left; font-family: inherit; }
.acct-order-menu__item:hover { background: var(--bg-alt); color: var(--cta); }
.acct-order-menu__item i { width: 14px; text-align: center; font-size: 0.72rem; }
.acct-status { padding: 2px 8px; border-radius: var(--radius-full); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; }
.acct-status--pending { background: #FEF3C7; color: #92400E; }
.acct-status--confirmed { background: #DBEAFE; color: #1E40AF; }
.acct-status--processing { background: #DBEAFE; color: #1E40AF; }
.acct-status--shipped { background: var(--sage-light); color: var(--sage-dark); }
.acct-status--delivered { background: #D1FAE5; color: #065F46; }
.acct-status--cancelled { background: #FEE2E2; color: #991B1B; }

.acct-detail-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.acct-detail-modal__overlay { position: absolute; inset: 0; background: rgba(17,24,39,0.48); backdrop-filter: blur(4px); }
.acct-detail-modal__card { position: relative; width: min(760px, 100%); max-height: 88vh; overflow-y: auto; background: var(--white); border-radius: 22px; padding: 22px; box-shadow: 0 24px 80px rgba(17,24,39,0.24); animation: acctFade 0.18s ease; }
.acct-detail-modal__close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 999px; border: 1px solid var(--border); background: var(--white); color: var(--text-mid); cursor: pointer; }
.acct-detail-modal__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding-right: 38px; margin-bottom: 16px; }
.acct-detail-modal__eyebrow { width: 100%; color: var(--cta); font-size: 0.64rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.acct-detail-modal__head h3 { font-family: var(--font-display); font-size: 1.18rem; margin: 0; }
.acct-detail-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 14px; margin-bottom: 14px; }
.acct-detail-panel { border: 1px solid var(--border); border-radius: 16px; padding: 14px; background: var(--bg-alt); }
.acct-detail-panel h4 { font-family: var(--font-display); font-size: 0.88rem; margin-bottom: 10px; }
.acct-detail-item { display: flex; align-items: flex-start; gap: 9px; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.acct-detail-item:last-child { border-bottom: none; }
.acct-detail-item strong { display: block; font-size: 0.8rem; line-height: 1.35; }
.acct-detail-item small { color: var(--text-light); font-size: 0.72rem; }
.acct-detail-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.78rem; }
.acct-detail-row span { color: var(--text-mid); }
.acct-detail-row strong { color: var(--text); text-align: right; }
.acct-detail-row--total { border-bottom: none; font-size: 0.92rem; font-weight: 800; }
.acct-detail-address, .acct-detail-muted { color: var(--text-mid); font-size: 0.8rem; line-height: 1.55; margin: 0; }
.acct-detail-actions { display: flex; justify-content: flex-end; gap: 8px; flex-wrap: wrap; margin-top: 14px; }

/* SERVICE HUB */
.acct-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.acct-service-card { display: block; color: inherit; text-decoration: none; border: 1px solid var(--border); border-radius: 18px; background: var(--white); padding: 16px; box-shadow: 0 10px 30px rgba(31,41,55,0.04); text-align: left; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.acct-service-card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(31,41,55,0.08); border-color: rgba(196,114,92,0.3); }
.acct-service-card--wide { grid-column: 1/-1; background: linear-gradient(135deg, rgba(124,154,142,0.08), rgba(255,255,255,0.98)); }
.acct-service-card__icon { width: 38px; height: 38px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(196,114,92,0.1); color: var(--cta); margin-bottom: 10px; }
.acct-service-card h3 { font-family: var(--font-display); font-size: 0.96rem; margin-bottom: 4px; }
.acct-service-card p { color: var(--text-mid); font-size: 0.78rem; line-height: 1.5; margin: 0; }
.acct-service-select { width: 100%; margin: 14px 0 12px; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 12px; background: var(--white); font-family: var(--font-body); }
.acct-service-actions { display: flex; flex-wrap: wrap; gap: 8px; }

/* REGISTRY HUB */
.acct-registry-hero { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 22px; border: 1px solid rgba(196,114,92,0.18); border-radius: 24px; background: linear-gradient(135deg, rgba(196,114,92,0.10), rgba(255,255,255,0.96) 55%, rgba(124,154,142,0.10)); box-shadow: 0 16px 42px rgba(31,41,55,0.06); }
.acct-registry-hero__icon { width: 58px; height: 58px; border-radius: 20px; display: inline-flex; align-items: center; justify-content: center; background: var(--white); color: var(--cta); box-shadow: 0 12px 30px rgba(196,114,92,0.12); font-size: 1.35rem; }
.acct-registry-hero__label { display: inline-block; margin-bottom: 5px; color: var(--cta); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; }
.acct-registry-hero h3 { font-family: var(--font-display); font-size: 1.22rem; margin: 0 0 4px; color: var(--text); }
.acct-registry-hero p { margin: 0; color: var(--text-mid); font-size: 0.86rem; }
.acct-registry-share { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; margin: 14px 0; }
.acct-registry-share input { border: 1px solid var(--border); border-radius: 999px; padding: 10px 14px; color: var(--text-mid); font-size: 0.82rem; }
.acct-registry-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.acct-registry-card { display: block; min-height: 148px; padding: 16px; border: 1px solid var(--border); border-radius: 20px; background: var(--white); color: inherit; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.acct-registry-card:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(31,41,55,0.08); border-color: rgba(196,114,92,0.32); }
.acct-registry-card span { width: 38px; height: 38px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px; background: rgba(196,114,92,0.1); color: var(--cta); }
.acct-registry-card strong { display: block; color: var(--text); font-size: 0.94rem; margin-bottom: 4px; }
.acct-registry-card small { display: block; color: var(--text-mid); font-size: 0.76rem; line-height: 1.45; }

/* WISHLIST DRAWER */
.wishlist-drawer__empty { text-align: center; padding: 34px 10px 22px; }
.wishlist-drawer__empty-icon { width: 64px; height: 64px; border-radius: 22px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; background: var(--blush-light); color: var(--cta); font-size: 1.6rem; }
.wishlist-drawer__empty h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 6px; }
.wishlist-drawer__empty p { color: var(--text-mid); font-size: 0.86rem; line-height: 1.5; max-width: 280px; margin: 0 auto 16px; }
.wishlist-drawer__actions { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
/* WISHLIST */
.acct-wishlist-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.acct-wishlist-grid > .acct-empty { width: 100%; }
.acct-wishlist-grid .p-card { width: 220px; max-width: 100%; flex-shrink: 0; }
.acct-wishlist-hub { width: 100%; display: grid; gap: 16px; }
.acct-wishlist-hero { text-align: center; padding: 34px 20px; border: 1px solid var(--border); border-radius: 22px; background: linear-gradient(135deg, rgba(212,145,142,0.09), rgba(255,255,255,0.98)); box-shadow: 0 14px 34px rgba(31,41,55,0.05); }
.acct-wishlist-hero h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 6px; }
.acct-wishlist-hero p { color: var(--text-mid); max-width: 440px; margin: 0 auto 16px; font-size: 0.9rem; line-height: 1.6; }
.acct-wishlist-panel { border: 1px solid var(--border); border-radius: 20px; background: var(--white); padding: 16px; box-shadow: 0 10px 30px rgba(31,41,55,0.04); }
.acct-wishlist-suggestions { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px; }
.acct-wishlist-summary { margin-bottom: 0; }
.acct-wishlist-list { display: block; }
.acct-wish-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 12px 10px; text-align: center; transition: all 0.2s; position: relative; }
.acct-wish-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.acct-wish-card__remove { position: absolute; top: 6px; right: 6px; width: 20px; height: 20px; border-radius: 50%; background: var(--bg-alt); color: var(--text-light); font-size: 0.55rem; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; transition: all 0.2s; }
.acct-wish-card__remove:hover { background: #e74c3c; color: #fff; }
.acct-wish-card__emoji { font-size: 1.8rem; margin-bottom: 4px; }
.acct-wish-card h4 { font-family: var(--font-display); font-size: 0.75rem; margin-bottom: 3px; line-height: 1.3; }
.acct-wish-card__price { color: var(--cta); font-weight: 700; font-size: 0.8rem; }

/* ADDRESSES */
.acct-addr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.acct-addr-grid > .acct-empty { grid-column: 1/-1; }
.acct-addr-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 14px; position: relative; transition: all 0.2s; box-shadow: 0 8px 22px rgba(31,41,55,0.035); }
.acct-addr-card:hover { box-shadow: var(--shadow-sm); }
.acct-addr-card--default { border-color: rgba(124,154,142,0.42); background: linear-gradient(135deg, rgba(124,154,142,0.08), rgba(255,255,255,0.96)); }
.acct-addr-card__label { font-weight: 700; font-size: 0.8rem; margin-bottom: 5px; padding-bottom: 5px; border-bottom: 1px solid var(--border); }
.acct-addr-default { display: inline-flex; margin-left: 6px; padding: 2px 7px; border-radius: var(--radius-full); background: rgba(124,154,142,0.14); color: var(--sage-dark); font-size: 0.58rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; vertical-align: middle; }
.acct-addr-card p { font-size: 0.75rem; color: var(--text-mid); margin-bottom: 1px; line-height: 1.4; }
.acct-addr-card p strong { color: var(--text); }
.acct-addr-card__del { position: absolute; top: 8px; right: 8px; color: var(--text-light); font-size: 0.7rem; padding: 3px; border: none; background: none; cursor: pointer; transition: color 0.2s; }
.acct-addr-card__del:hover { color: #e74c3c; }
.acct-addr-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.acct-addr-form { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 16px; margin-top: 12px; animation: acctFade 0.2s ease; }
.acct-addr-form h3 { font-family: var(--font-display); font-size: 0.9rem; margin-bottom: 12px; }

/* REFERRAL */
.acct-referral__banner { background: linear-gradient(135deg, var(--clay-light), var(--blush-light)); border-radius: 10px; padding: 16px 18px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.acct-referral__emoji { font-size: 1.8rem; flex-shrink: 0; }
.acct-referral__banner h3 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 2px; }
.acct-referral__banner p { color: var(--text-mid); font-size: 0.78rem; margin: 0; }
.acct-referral__code-row { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1.5px dashed var(--cta); border-radius: 10px; padding: 12px 16px; margin-bottom: 12px; }
.acct-referral__code-box { flex: 1; }
.acct-referral__label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 600; display: block; margin-bottom: 1px; }
.acct-referral__code { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--cta); letter-spacing: 2px; }
.acct-referral__steps { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--bg-alt); border-radius: 10px; padding: 12px; margin-bottom: 12px; }
.acct-step { display: flex; align-items: center; gap: 6px; }
.acct-step__num { width: 22px; height: 22px; border-radius: 50%; background: var(--cta); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; }
.acct-step span { font-size: 0.75rem; font-weight: 500; color: var(--text-mid); }
.acct-step-arrow { color: var(--text-light); font-size: 0.6rem; }
.acct-referral__share { display: flex; align-items: center; gap: 8px; justify-content: center; }
.acct-referral__share > span { font-size: 0.75rem; color: var(--text-mid); }
.acct-share-btn { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: #fff; transition: all 0.2s; border: none; cursor: pointer; }
.acct-share-btn:hover { transform: translateY(-2px); }
.acct-share--wa { background: #25D366; }
.acct-share--tw { background: #1DA1F2; }
.acct-share--fb { background: #1877F2; }
.acct-share--em { background: var(--cta); }

/* SETTINGS */
.acct-settings-block { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.acct-settings-block h3 { font-family: var(--font-display); font-size: 0.92rem; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.acct-settings-block h3 i { color: var(--text-light); font-size: 0.85rem; }
.acct-settings-block p { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 12px; }
.acct-settings-block--danger { border-color: rgba(220,53,69,0.2); }
.acct-settings-block--danger h3 i { color: #dc3545; }

/* TOGGLE SWITCH */
.acct-toggle { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.82rem; color: var(--text-mid); cursor: pointer; }
.acct-toggle input { display: none; }
.acct-toggle__slider { width: 36px; height: 20px; background: var(--border); border-radius: 20px; position: relative; transition: background 0.2s; flex-shrink: 0; }
.acct-toggle__slider::after { content: ''; position: absolute; width: 16px; height: 16px; border-radius: 50%; background: var(--white); top: 2px; left: 2px; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.15); }
.acct-toggle input:checked + .acct-toggle__slider { background: var(--cta); }
.acct-toggle input:checked + .acct-toggle__slider::after { transform: translateX(16px); }

.acct-nav-item--logout.hidden { display: none; }
.acct-sidebar--guest { display: none !important; }

/* TOAST */
.acct-toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(50px); background: var(--bg-dark); color: var(--white); padding: 10px 24px; border-radius: var(--radius-full); font-size: 0.82rem; font-weight: 600; z-index: 9999; transition: transform 0.3s, opacity 0.3s; opacity: 0; pointer-events: none; }
.acct-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

.acct-mobile-back {
    display: none;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    padding: 0;
    border: none;
    background: none;
    color: var(--cta);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .acct-layout { grid-template-columns: 1fr; padding: 16px 16px 32px; gap: 0; }
    .acct-sidebar {
        display: block;
        position: static;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: var(--shadow-sm);
        padding: 8px;
        margin-bottom: 16px;
    }
    .acct-sidebar__nav { gap: 0; }
    .acct-nav-item {
        padding: 14px 12px;
        font-size: 0.88rem;
        border-radius: 12px;
    }
    .acct-nav-item:not(.acct-nav-item--logout)::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        font-size: 0.62rem;
        color: var(--text-light);
        opacity: 0.7;
    }
    .acct-sidebar__divider { margin: 8px 4px; }
    .acct-layout--hub .acct-content { display: none; }
    .acct-layout:not(.acct-layout--hub) .acct-sidebar { display: none; }
    .acct-mobile-back { display: inline-flex; }
    .acct-section__head { flex-wrap: wrap; }
    body.acct-page .chat-bubble {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
        right: 16px;
    }
    body.acct-page .aylemu-chat-panel {
        bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }
    body.acct-page.cookie-banner-open .chat-bubble {
        bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    }
    body.acct-page.cookie-banner-open .aylemu-chat-panel {
        bottom: calc(164px + env(safe-area-inset-bottom, 0px));
    }
    body.acct-page .footer { padding-bottom: 72px; }
    .acct-hero__inner { flex-wrap: wrap; }
    .acct-hero__info h1 { font-size: 1rem; }
    .acct-form-grid { grid-template-columns: 1fr; }
    .acct-referral__steps { flex-direction: column; align-items: flex-start; }
    .acct-step-arrow { transform: rotate(90deg); margin-left: 20px; }
    .acct-market-layout { grid-template-columns: 1fr; }
    .acct-buy-again-list { grid-template-columns: 1fr; }
    .acct-market-order { align-items: flex-start; flex-direction: column; }
    .acct-market-order__actions { width: 100%; }
    .acct-market-order__actions .acct-btn { flex: 1; justify-content: center; }
    .acct-overview-premium { grid-template-columns: 1fr; }
    .acct-overview-hero { min-height: 230px; }
    .acct-overview-hero__meta { grid-template-columns: 1fr; }
    .acct-overview-focus { flex-direction: column; align-items: flex-start; }
    .acct-overview-focus__actions { width: 100%; justify-content: flex-start; }
    .acct-wishlist-grid { grid-template-columns: repeat(2,1fr); }
    .acct-addr-grid { grid-template-columns: 1fr; }
    #orders-list { min-width: 0; }
    .acct-order-card { padding: 14px; border-radius: 18px; margin-bottom: 12px; }
    .acct-order-card__header { flex-wrap: wrap; row-gap: 8px; }
    .acct-order-card__header > div { min-width: 0; flex: 1 1 180px; }
    .acct-order-card__header .acct-status { flex-shrink: 0; margin-left: auto; }
    .acct-order-card__body { flex-direction: column; align-items: stretch; gap: 10px; }
    .acct-order-card__total { align-self: stretch; text-align: right; padding-top: 10px; margin-top: 2px; border-top: 1px dashed var(--border); font-size: 1rem; }
    .acct-order-product__media { width: 56px; height: 56px; border-radius: 11px; }
    .acct-order-product__name { font-size: 0.82rem; line-height: 1.4; }
    .acct-order-status-banner { margin-top: 10px; padding: 11px 12px; }
    .acct-order-status-banner__icon { width: 32px; height: 32px; font-size: 0.82rem; }
    .acct-order-timeline { grid-template-columns: 1fr; gap: 0; padding: 12px 0 8px; margin-top: 10px; }
    .acct-order-step { flex-direction: row; align-items: flex-start; text-align: left; justify-content: flex-start; gap: 10px; padding: 7px 0; }
    .acct-order-step::before { top: -7px; left: 11px; width: 2px; height: 7px; }
    .acct-order-step__dot { width: 22px; height: 22px; font-size: 0.62rem; flex-shrink: 0; }
    .acct-order-step__label { padding-top: 2px; font-size: 0.74rem; line-height: 1.35; }
    .acct-order-actions { flex-direction: column; align-items: stretch; gap: 8px; }
    .acct-order-actions__main { width: 100%; flex-direction: column; }
    .acct-order-actions__btn { width: 100%; justify-content: center; }
    .acct-order-more-wrap { align-self: flex-end; }
    .acct-detail-grid { grid-template-columns: 1fr; }
    .acct-detail-modal { padding: 12px; align-items: flex-end; }
    .acct-detail-modal__card { max-height: 92vh; border-radius: 20px 20px 0 0; }
    .acct-detail-actions .acct-btn { width: 100%; justify-content: center; }
    .acct-service-grid { grid-template-columns: 1fr; }
    .acct-service-actions .acct-btn { width: 100%; justify-content: center; }
    .acct-registry-hero { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 20px 16px; }
    .acct-registry-share { grid-template-columns: 1fr; }
    .acct-registry-grid { grid-template-columns: 1fr; }
    .footer { margin-bottom: 0; }
    .acct-phone-dropdown { width: 250px; }
}

@media (max-width: 520px) {
    .acct-layout { padding: 12px 12px 28px; }
    .acct-overview-hero { padding: 18px; border-radius: 20px; }
    .acct-overview-focus__actions .acct-btn { width: 100%; justify-content: center; }
    .acct-order-card { padding: 12px; }
    .acct-order-card__date { font-size: 0.72rem; }
}
