/* ──────────────────────────────────────────────────────────────────
   DROIX — My Account. Sidebar nav + section panels. Light DROIX
   surfaces, lime accents, purple price, Ubuntu/Inter. No rewards /
   tier UI by design.
   ────────────────────────────────────────────────────────────────── */
.acc-main { max-width: 1320px; margin: 0 auto; padding: 0 32px 72px; }
@media (max-width: 760px) { .acc-main { padding: 0 16px 56px; } }

.acc-crumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 13px; color: var(--fg-4); margin: 20px 0 14px; }
.acc-crumb a { color: var(--fg-4); text-decoration: none; }
.acc-crumb a:hover { color: var(--droix-green-dark); }
.acc-crumb .here { color: var(--fg-2); font-weight: 600; }

/* hero greeting */
.acc-hero { background: linear-gradient(150deg, var(--droix-green-tint), var(--bg-2) 70%); border: 1px solid var(--stroke-1); border-radius: var(--radius-2xl); padding: 26px 30px; margin-bottom: 26px; }
.acc-greet { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.acc-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--droix-green); color: #1c2400; font-family: var(--font-ui); font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.acc-greet h1 { font-family: var(--font-ui); font-weight: 700; font-size: 28px; color: var(--fg-1); margin: 0; letter-spacing: -0.01em; }
.acc-greet p { font-family: var(--font-body); font-size: 14px; color: var(--fg-4); margin: 4px 0 0; }
.acc-greet .acc-signout { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; height: 40px; padding: 0 16px; border-radius: var(--radius-md); border: 1px solid var(--stroke-2); background: #fff; cursor: pointer; font-family: var(--font-body); font-size: 13.5px; font-weight: 600; color: var(--fg-3); text-decoration: none; }
.acc-greet .acc-signout:hover { background: #fff; color: var(--danger); border-color: #f5c2c2; }

/* layout */
.acc-layout { display: grid; grid-template-columns: 248px 1fr; gap: 26px; align-items: start; }
.acc-nav { position: sticky; top: 16px; display: flex; flex-direction: column; gap: 3px; background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); padding: 10px; }
.acc-navlink { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: var(--radius-md); font-family: var(--font-ui); font-size: 14px; font-weight: 500; color: var(--fg-3); text-decoration: none; cursor: pointer; border: 0; background: transparent; width: 100%; text-align: left; }
.acc-navlink:hover { background: var(--bg-2); color: var(--fg-1); }
.acc-navlink.on { background: var(--droix-green-tint); color: var(--droix-green-dark); font-weight: 700; }
.acc-navlink .cnt { margin-left: auto; font-family: var(--font-body); font-size: 11.5px; font-weight: 700; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--bg-3); color: var(--fg-3); display: inline-flex; align-items: center; justify-content: center; }
.acc-navlink.on .cnt { background: var(--droix-green); color: #1c2400; }
.acc-navsep { height: 1px; background: var(--stroke-1); margin: 7px 4px; }
.acc-navlink.danger { color: var(--fg-4); }
.acc-navlink.danger:hover { background: #fdecec; color: var(--danger); }

@media (max-width: 880px) {
  .acc-layout { grid-template-columns: 1fr; }
  .acc-nav { position: static; flex-direction: row; overflow-x: auto; gap: 6px; padding: 8px; }
  .acc-navlink { white-space: nowrap; }
  .acc-navlink .cnt { margin-left: 6px; }
  .acc-navsep, .acc-navlink.danger { display: none; }
}

/* section heading */
.acc-stack { display: flex; flex-direction: column; gap: 24px; }
.acc-sec-h { font-family: var(--font-ui); font-weight: 700; font-size: 22px; color: var(--fg-1); margin: 0; letter-spacing: -0.01em; }
.acc-sec-eyebrow { font-family: var(--font-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--droix-green-dark); }

/* card */
.acc-card { background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); overflow: hidden; }
.acc-card-pad { padding: 24px; }
.acc-cardhd { display: flex; align-items: center; gap: 11px; padding: 16px 22px; border-bottom: 1px solid var(--stroke-1); }
.acc-cardhd .ic { width: 36px; height: 36px; border-radius: var(--radius-md); background: var(--droix-green-tint); color: var(--droix-green-dark); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.acc-cardhd h3 { font-family: var(--font-ui); font-weight: 700; font-size: 16px; color: var(--fg-1); margin: 0; }
.acc-cardhd .act { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--droix-green-dark); text-decoration: none; cursor: pointer; }

/* buttons */
.acc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 42px; padding: 0 18px; border-radius: var(--radius-md); border: 0; cursor: pointer; font-family: var(--font-ui); font-size: 13.5px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.acc-btn.primary { background: var(--droix-green); color: #1c2400; box-shadow: var(--shadow-cta); }
.acc-btn.primary:hover { background: var(--droix-green-dark); color: #fff; }
.acc-btn.secondary { background: #fff; color: var(--fg-2); border: 1px solid var(--stroke-3); }
.acc-btn.secondary:hover { background: var(--bg-2); }
.acc-btn.ghost { background: transparent; color: var(--droix-green-dark); }
.acc-btn.ghost:hover { background: var(--droix-green-tint); }

/* dashboard stats */
.acc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.acc-stat { display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); padding: 20px 22px; }
.acc-stat .ic { width: 46px; height: 46px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.acc-stat.green .ic { background: var(--droix-green-tint); color: var(--droix-green-dark); }
.acc-stat.blue .ic { background: #e7f1fb; color: var(--info); }
.acc-stat.purple .ic { background: #f7e6f2; color: var(--droix-purple); }
.acc-stat .n { font-family: var(--font-ui); font-weight: 700; font-size: 26px; color: var(--fg-1); line-height: 1; }
.acc-stat .l { font-family: var(--font-body); font-size: 13px; color: var(--fg-4); margin-top: 4px; }
@media (max-width: 620px) { .acc-stats { grid-template-columns: 1fr; } }

/* quick links */
.acc-quick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.acc-qlink { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--stroke-1); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 16px 18px; cursor: pointer; text-decoration: none; transition: border-color .16s ease, transform .16s ease; }
.acc-qlink:hover { border-color: var(--droix-green); transform: translateY(-2px); }
.acc-qlink .ic { width: 42px; height: 42px; border-radius: var(--radius-md); background: var(--droix-green-tint); color: var(--droix-green-dark); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.acc-qlink .t { font-family: var(--font-ui); font-weight: 700; font-size: 14.5px; color: var(--fg-1); }
.acc-qlink .s { font-family: var(--font-body); font-size: 12.5px; color: var(--fg-4); margin-top: 2px; }
.acc-qlink .arr { margin-left: auto; color: var(--fg-5); }
@media (max-width: 620px) { .acc-quick { grid-template-columns: 1fr; } }

/* status pill */
.acc-status { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: var(--radius-pill); }
.acc-status.transit { background: #e7f1fb; color: var(--info); }
.acc-status.processing { background: #fff5dd; color: #9a6b00; }
.acc-status.delivered { background: var(--droix-green-tint); color: var(--droix-green-dark); }
.acc-status.cancelled { background: #fdecec; color: var(--danger); }

/* order card */
.acc-order { padding: 0; }
.acc-ordhd { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--stroke-1); flex-wrap: wrap; }
.acc-ordhd .meta .o { font-family: var(--font-ui); font-weight: 700; font-size: 15px; color: var(--fg-1); }
.acc-ordhd .meta .d { display: block; font-family: var(--font-body); font-size: 12.5px; color: var(--fg-4); margin-top: 2px; }
.acc-ordhd .tot { margin-left: auto; text-align: right; }
.acc-ordhd .tot .v { font-family: var(--font-ui); font-weight: 700; font-size: 17px; color: var(--fg-1); }
.acc-ordhd .tot .l { font-family: var(--font-body); font-size: 11px; color: var(--fg-5); }
.acc-orditems { padding: 8px 22px; }
.acc-oitem { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--stroke-1); }
.acc-oitem:last-child { border-bottom: 0; }
.acc-othumb { width: 56px; height: 52px; border-radius: var(--radius-sm); background: var(--bg-2); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.acc-othumb img { max-width: 46px; max-height: 46px; object-fit: contain; }
.acc-oitem .nm { font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--fg-1); }
.acc-oitem .mt { font-family: var(--font-body); font-size: 12px; color: var(--fg-4); margin-top: 1px; }
.acc-oitem .qp { margin-left: auto; text-align: right; font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--fg-1); }
.acc-oitem .qp .q { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--fg-5); margin-top: 2px; }
.acc-ordfoot { display: flex; gap: 10px; flex-wrap: wrap; padding: 14px 22px; border-top: 1px solid var(--stroke-1); background: var(--bg-1); }

/* tracking strip */
.acc-track { margin: 0 22px 16px; background: var(--bg-dark); border-radius: var(--radius-lg); padding: 16px 18px; }
.acc-track-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.acc-track-top .car { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.acc-track-top .car .tn { font-weight: 500; color: rgba(255,255,255,0.6); }
.acc-track-top .eta { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.7); }
.acc-track-top .eta b { color: var(--droix-green); }
.acc-trackbar { display: flex; justify-content: space-between; position: relative; }
.acc-trackbar::before { content: ""; position: absolute; top: 13px; left: 8%; right: 8%; height: 2px; background: rgba(255,255,255,0.14); }
.acc-tstep { display: flex; flex-direction: column; align-items: center; gap: 7px; flex: 1; position: relative; z-index: 1; }
.acc-tstep .dot { width: 28px; height: 28px; border-radius: 50%; background: #2a3147; color: rgba(255,255,255,0.5); display: flex; align-items: center; justify-content: center; border: 2px solid var(--bg-dark); }
.acc-tstep .lab { font-family: var(--font-body); font-size: 11px; color: rgba(255,255,255,0.5); }
.acc-tstep.done .dot { background: var(--droix-green); color: #1c2400; }
.acc-tstep.done .lab { color: rgba(255,255,255,0.8); }
.acc-tstep.curr .dot { background: #fff; color: var(--bg-dark); box-shadow: 0 0 0 4px rgba(176,203,31,0.35); }
.acc-tstep.curr .lab { color: #fff; font-weight: 700; }

/* orders table */
.acc-otable { padding: 6px 8px 8px; }
.acc-orow { display: grid; grid-template-columns: 1.4fr 1fr 1fr 0.8fr auto; align-items: center; gap: 12px; padding: 14px; border-radius: var(--radius-md); }
.acc-orow:not(.head):hover { background: var(--bg-1); }
.acc-orow.head { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-5); padding: 8px 14px; }
.acc-orow .onum { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--fg-1); }
.acc-orow .ometa { font-family: var(--font-body); font-size: 12.5px; color: var(--fg-4); }
.acc-orow .oval { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--fg-1); }
@media (max-width: 720px) { .acc-orow { grid-template-columns: 1fr auto; } .acc-orow .ometa.date, .acc-orow .oval { display: none; } .acc-orow.head { display: none; } }

/* addresses */
.acc-addrgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.acc-addr { position: relative; border: 1px solid var(--stroke-2); border-radius: var(--radius-lg); padding: 20px; }
.acc-addr .tag { position: absolute; top: 16px; right: 16px; font-family: var(--font-body); font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; background: var(--droix-green-tint); color: var(--droix-green-dark); padding: 3px 8px; border-radius: var(--radius-xs); }
.acc-addr h4 { font-family: var(--font-ui); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fg-4); margin: 0 0 10px; }
.acc-addr .nm { font-family: var(--font-ui); font-weight: 700; font-size: 15px; color: var(--fg-1); margin-bottom: 6px; }
.acc-addr .ln { font-family: var(--font-body); font-size: 13.5px; line-height: 1.7; color: var(--fg-3); }
.acc-addr .edit { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--droix-green-dark); text-decoration: none; cursor: pointer; }
@media (max-width: 620px) { .acc-addrgrid { grid-template-columns: 1fr; } }

/* form */
.acc-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.acc-fld { display: flex; flex-direction: column; gap: 6px; }
.acc-fld.full { grid-column: 1 / -1; }
.acc-fld label { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--fg-3); }
.acc-inp { height: 46px; border: 1px solid var(--stroke-3); border-radius: var(--radius-md); padding: 0 14px; font-family: var(--font-body); font-size: 14px; color: var(--fg-1); background: #fff; outline: none; }
.acc-inp:focus { border-color: var(--droix-green); box-shadow: 0 0 0 3px var(--droix-green-tint); }
.acc-fieldset { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--stroke-1); }
.acc-fieldset .lab { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--fg-1); margin-bottom: 14px; }
@media (max-width: 620px) { .acc-form { grid-template-columns: 1fr; } }

/* returns / rma */
.acc-rma { display: flex; align-items: center; gap: 14px; padding: 16px 22px; border-bottom: 1px solid var(--stroke-1); flex-wrap: wrap; }
.acc-rma:last-child { border-bottom: 0; }
.acc-rma .wthumb { width: 52px; height: 50px; border-radius: var(--radius-sm); background: var(--bg-2); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.acc-rma .wthumb img { max-width: 44px; max-height: 44px; object-fit: contain; }
.acc-rma .nm { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--fg-1); }
.acc-rma .mt { font-family: var(--font-body); font-size: 12.5px; color: var(--fg-4); margin-top: 2px; }
.acc-rma .acc-rma-act { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.acc-r-status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 13px; color: var(--fg-3); }
.acc-rinfo { padding: 16px 22px; background: var(--droix-green-tint); border-top: 1px solid var(--stroke-1); font-family: var(--font-body); font-size: 13px; color: var(--fg-3); display: flex; align-items: center; gap: 10px; }

/* downloads / invoices table */
.acc-inv { display: grid; grid-template-columns: 1fr 1fr 0.8fr auto; align-items: center; gap: 12px; padding: 14px 22px; border-bottom: 1px solid var(--stroke-1); }
.acc-inv:last-child { border-bottom: 0; }
.acc-inv.head { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-5); }
.acc-inv .f { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--fg-1); display: inline-flex; align-items: center; gap: 9px; }
.acc-inv .f .fi { width: 32px; height: 32px; border-radius: var(--radius-sm); background: var(--droix-green-tint); color: var(--droix-green-dark); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.acc-inv .m { font-family: var(--font-body); font-size: 13px; color: var(--fg-4); }
.acc-dl { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 13px; border-radius: var(--radius-sm); border: 1px solid var(--stroke-2); background: #fff; cursor: pointer; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--fg-2); text-decoration: none; }
.acc-dl:hover { background: var(--bg-2); border-color: var(--droix-green); color: var(--droix-green-dark); }
@media (max-width: 720px) { .acc-inv { grid-template-columns: 1fr auto; } .acc-inv .m.amt, .acc-inv .m.date { display: none; } .acc-inv.head { display: none; } }

/* recommended / wishlist grid */
.acc-recgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1080px) { .acc-recgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .acc-recgrid { grid-template-columns: 1fr; } }

/* empty state */
.acc-empty { text-align: center; padding: 48px 24px; }
.acc-empty .ic { width: 72px; height: 72px; border-radius: var(--radius-2xl); background: var(--bg-2); color: var(--fg-4); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.acc-empty h3 { font-family: var(--font-ui); font-weight: 700; font-size: 19px; color: var(--fg-1); margin: 0 0 8px; }
.acc-empty p { font-family: var(--font-body); font-size: 14px; line-height: 1.55; color: var(--fg-4); margin: 0 auto 18px; max-width: 44ch; }

.acc-secbar { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.acc-secbar .grow { flex: 1; }

/* ════════════════════════════════════════════════════════════════
   DROIX theme port additions
   ════════════════════════════════════════════════════════════════ */

/* Server-rendered inline <svg> icons (droix_acc_icon emits 24×24) — size to design */
.acc-crumb svg { width: 14px; height: 14px; color: var(--fg-5); }
/* Fixed-width centred icon slot so every nav icon sits on one vertical line,
   regardless of the lucide glyph's intrinsic width (e.g. narrow person/shield). */
.acc-navicon { flex: 0 0 20px; width: 20px; display: inline-flex; align-items: center; justify-content: center; }
.acc-navlink svg { width: 18px; height: 18px; flex: 0 0 auto; }
.acc-cardhd .ic svg, .acc-stat .ic svg, .acc-qlink .ic svg { width: 22px; height: 22px; }
.acc-cardhd .act svg, .acc-btn svg, .acc-status svg, .acc-r-status svg, .acc-rinfo svg { width: 14px; height: 14px; flex: 0 0 auto; }
.acc-signout svg { width: 15px; height: 15px; }
.acc-track-top .car svg { width: 15px; height: 15px; color: var(--droix-green); }
.acc-tstep .dot svg { width: 14px; height: 14px; }
.acc-qlink .arr svg, .acc-addr .edit svg, .acc-dl svg, .acc-inv .f .fi svg { width: 15px; height: 15px; }
.acc-empty .ic svg { width: 28px; height: 28px; }
.acc-secbar .acc-btn svg, .acc-secbar a svg { width: 15px; height: 15px; }
/* orders-table action buttons sit on the right */
.acc-orow .oactions { display: flex; gap: 8px; justify-content: flex-end; align-items: center; }
.acc-orow .oactions .acc-btn { height: 34px; padding: 0 12px; font-size: 12.5px; }
@media (max-width: 720px) { .acc-orow .oactions .oact-rma span { display: none; } }

/* Warranty / repair modal (droix_acc_icon markup keeps the gpd-modal hook) */
.gpd-modal { position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center; padding: 24px; }
.gpd-modal.is-open { display: flex; }
.gpd-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.45); }
.gpd-modal-box { position: relative; width: 100%; max-width: 460px; max-height: 84vh; overflow-y: auto; background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 22px; }
.gpd-modal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.gpd-modal-head h3 { font-family: var(--font-ui); font-weight: 700; font-size: 18px; color: var(--fg-1); margin: 0; }
.gpd-modal-x { width: 32px; height: 32px; border: 0; border-radius: 8px; background: var(--bg-2); color: var(--fg-3); font-size: 20px; line-height: 1; cursor: pointer; }
.gpd-modal-x:hover { background: var(--bg-3); }
.gpd-modal-sub { font-family: var(--font-body); font-size: 13.5px; color: var(--fg-4); margin: 0 0 14px; }
.gpd-modal-list { display: flex; flex-direction: column; gap: 8px; }
.gpd-modal-order { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border: 1px solid var(--stroke-2); border-radius: var(--radius-md); text-decoration: none; color: var(--fg-1); }
.gpd-modal-order:hover { border-color: var(--droix-green); background: var(--droix-green-tint); }
.gpd-modal-order .ordno { font-family: var(--font-ui); font-weight: 700; font-size: 14px; }
.gpd-modal-order .orddate { font-family: var(--font-body); font-size: 12.5px; color: var(--fg-4); }
.gpd-modal-order svg { width: 16px; height: 16px; margin-left: auto; color: var(--fg-5); }
.gpd-modal-empty { font-family: var(--font-body); font-size: 14px; color: var(--fg-4); }

/* Login / OTP (logged-out account page) styling now lives in assets/css/auth.css
   (the designed split-panel login). Older basic-login rules were removed there. */

/* WooCommerce's default float/width on the nav wrapper shrinks it inside the
   acc-layout grid cell — force it to fill the 248px track. */
.acc-layout > .woocommerce-MyAccount-navigation { width: 100%; float: none; margin: 0; }
.acc-layout > .woocommerce-MyAccount-content { width: 100%; float: none; margin: 0; min-width: 0; }

/* Kill the theme's legacy right-floated ::before nav icons (acc-navlink already
   renders its own left icon) and undo the float on the login wrapper so the
   centred card actually centres. */
.acc-nav li a::before,
.acc-nav .acc-navlink::before { display: none !important; content: none !important; }
#customer_login.col2-set,
#customer_login { float: none !important; }
