/* ============================================================
   BloomCastle TrackMyOrder Pro™ – Front CSS v3
   Palette: Black · Charcoal · Animated Yellow · White
   Premium delivery-app aesthetic
   ============================================================ */

:root {
    --bc-yellow:     #f5c518;
    --bc-yellow-d:   #d4a800;
    --bc-yellow-l:   #fff8dc;
    --bc-yellow-x:   rgba(245,197,24,0.15);
    --bc-black:      #111111;
    --bc-charcoal:   #1e1e1e;
    --bc-dark:       #2a2a2a;
    --bc-mid:        #3d3d3d;
    --bc-muted:      #8a8a8a;
    --bc-border:     #e8e8e8;
    --bc-bg:         #f5f5f5;
    --bc-white:      #ffffff;
    --bc-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.bc-wrap { font-family: var(--bc-font); color: var(--bc-black); }
.bc-wrap *, .bc-wrap *:before, .bc-wrap *:after { box-sizing: border-box; }
.bc-wrap h1, .bc-wrap h2, .bc-wrap h3,
.bc-wrap p, .bc-wrap ul, .bc-wrap li { margin: 0; padding: 0; }

/* ── PAGE SHELL ─────────────────────────────────────────── */
.bc-page-shell { min-height: 60vh; background: var(--bc-bg); }

/* ── HERO ───────────────────────────────────────────────── */
.bc-hero {
    background: var(--bc-black);
    background: -webkit-linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 50%, #0d1a0d 100%);
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 50%, #0d1a0d 100%);
    padding: 48px 20px 72px;
    position: relative;
    overflow: hidden;
}

/* Animated yellow glow orb */
.bc-hero::before {
    content: '';
    position: absolute;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 70%);
    top: -80px; right: -60px;
    pointer-events: none;
    -webkit-animation: bc-orb 7s ease-in-out infinite;
    animation: bc-orb 7s ease-in-out infinite;
}

.bc-hero::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
    bottom: 20px; left: -40px;
    pointer-events: none;
    -webkit-animation: bc-orb 10s ease-in-out infinite reverse;
    animation: bc-orb 10s ease-in-out infinite reverse;
}

@-webkit-keyframes bc-orb {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(20px,-15px) scale(1.08); }
    66%      { transform: translate(-10px,10px) scale(0.95); }
}
@keyframes bc-orb {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(20px,-15px) scale(1.08); }
    66%      { transform: translate(-10px,10px) scale(0.95); }
}

.bc-hero-bottom-curve {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 44px;
    background: var(--bc-bg);
    border-radius: 44px 44px 0 0;
}

.bc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

/* ── HERO BADGE ─────────────────────────────────────────── */
.bc-hero-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(245,197,24,0.12);
    border: 1px solid rgba(245,197,24,0.35);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    color: var(--bc-yellow);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Pulsing dot inside badge */
.bc-live-dot {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--bc-yellow);
    margin-right: 6px;
    vertical-align: middle;
    -webkit-animation: bc-blink 1.4s ease-in-out infinite;
    animation: bc-blink 1.4s ease-in-out infinite;
}

@-webkit-keyframes bc-blink {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245,197,24,0.5); }
    50%      { opacity: 0.4; box-shadow: 0 0 0 4px rgba(245,197,24,0); }
}
@keyframes bc-blink {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245,197,24,0.5); }
    50%      { opacity: 0.4; box-shadow: 0 0 0 4px rgba(245,197,24,0); }
}

/* ── HERO HEADINGS ──────────────────────────────────────── */
.bc-hero-h1 {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.bc-hero-h1 em {
    font-style: normal;
    color: var(--bc-yellow);
}

.bc-hero-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
    line-height: 1.5;
}

/* ── SEARCH CARD ─────────────────────────────────────────── */
.bc-search-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    padding: 20px;
    text-align: left;
}

.bc-tab-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    background: rgba(0,0,0,0.4);
    border-radius: 10px;
    padding: 4px;
}

.bc-tab {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 9px 10px;
    border-radius: 7px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.4);
    font-family: var(--bc-font);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
    text-align: center;
    letter-spacing: 0.01em;
}

.bc-tab.active {
    background: var(--bc-yellow);
    color: var(--bc-black);
    box-shadow: 0 2px 10px rgba(245,197,24,0.4);
}

.bc-tab-panel { display: none; }
.bc-tab-panel.active { display: block; }

.bc-field { margin-bottom: 12px; }

.bc-field-label {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.bc-field-input {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #ffffff;
    font-family: var(--bc-font);
    font-size: 14px;
    outline: none;
    -webkit-transition: border-color 0.2s, background 0.2s;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.bc-field-input:focus {
    border-color: var(--bc-yellow);
    background: rgba(255,255,255,0.1);
}

.bc-field-input::-webkit-input-placeholder { color: rgba(255,255,255,0.25); }
.bc-field-input::-moz-placeholder           { color: rgba(255,255,255,0.25); }
.bc-field-input::placeholder                 { color: rgba(255,255,255,0.25); }

/* ── PRIMARY BUTTON (yellow) ─────────────────────────────── */
.bc-btn-primary {
    width: 100%;
    padding: 14px 20px;
    background: var(--bc-yellow);
    border: none;
    border-radius: 12px;
    color: var(--bc-black);
    font-family: var(--bc-font);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(245,197,24,0.35);
    display: block;
    margin-top: 4px;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on hover */
.bc-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: -webkit-linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    -webkit-transition: left 0.4s ease;
    transition: left 0.4s ease;
}

.bc-btn-primary:hover::after { left: 140%; }
.bc-btn-primary:hover {
    background: #ffd000;
    box-shadow: 0 6px 24px rgba(245,197,24,0.5);
    transform: translateY(-1px);
}

/* ── CONTENT ─────────────────────────────────────────────── */
.bc-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 16px 60px;
}

/* ── ALERT ───────────────────────────────────────────────── */
.bc-alert {
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
}

.bc-alert-error   { background: #fff5f5; color: #c53030; border: 1px solid #fed7d7; }
.bc-alert-success { background: #fffff0; color: #744210; border: 1px solid #fef08a; }

/* ── REWARD BANNER ───────────────────────────────────────── */
.bc-reward {
    background: var(--bc-black);
    border: 1.5px solid var(--bc-yellow);
    border-radius: 14px;
    padding: 16px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    box-shadow: 0 0 24px rgba(245,197,24,0.15);
}

.bc-reward-emoji {
    font-size: 28px;
    -webkit-animation: bc-bounce .7s ease-in-out infinite alternate;
    animation: bc-bounce .7s ease-in-out infinite alternate;
}

@-webkit-keyframes bc-bounce {
    from { transform: translateY(0); }
    to   { transform: translateY(-5px); }
}
@keyframes bc-bounce {
    from { transform: translateY(0); }
    to   { transform: translateY(-5px); }
}

.bc-reward-msg { font-size: 15px; font-weight: 700; color: var(--bc-yellow); }

/* ── CARD ────────────────────────────────────────────────── */
.bc-card {
    background: var(--bc-white);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(0,0,0,0.04);
}

.bc-card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--bc-border);
}

.bc-order-num { font-size: 17px; font-weight: 800; color: var(--bc-black); }
.bc-order-awb { font-size: 11px; color: var(--bc-muted); margin-top: 2px; font-family: monospace; }

.bc-status-chip {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--bc-black);
    white-space: nowrap;
    background: var(--bc-yellow);
}

/* ── CARRIER STRIP ───────────────────────────────────────── */
.bc-carrier-strip {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fafafa;
    border-radius: 10px;
    border: 1px solid var(--bc-border);
    margin-bottom: 18px;
}

.bc-carrier-logo { height: 26px; width: auto; max-width: 70px; object-fit: contain; }
.bc-carrier-details { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 0; }
.bc-carrier-name { font-size: 13px; font-weight: 700; color: var(--bc-black); }
.bc-carrier-last { font-size: 11px; color: var(--bc-muted); margin-top: 2px; }

.bc-sync-btn {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 8px;
    border: 1.5px solid var(--bc-yellow);
    background: transparent;
    color: var(--bc-black);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: var(--bc-font);
}

.bc-sync-btn:hover { background: var(--bc-yellow); color: var(--bc-black); }
.bc-sync-icon { display: inline-block; }
.bc-syncing .bc-sync-icon {
    -webkit-animation: bc-spin 0.9s linear infinite;
    animation: bc-spin 0.9s linear infinite;
}

@-webkit-keyframes bc-spin { to { -webkit-transform: rotate(360deg); } }
@keyframes bc-spin { to { transform: rotate(360deg); } }

/* ── SHIPPING ROUTE ──────────────────────────────────────── */
.bc-route {
    padding: 14px 0 18px;
    border-bottom: 1px solid var(--bc-border);
    margin-bottom: 18px;
}

.bc-route-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--bc-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.bc-route-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bc-route-point { text-align: center; }

.bc-route-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--bc-yellow);
    margin: 0 auto 6px;
    box-shadow: 0 0 0 3px var(--bc-yellow-x);
}

.bc-route-dot.dest {
    background: var(--bc-black);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.bc-route-city {
    font-size: 11px;
    font-weight: 600;
    color: var(--bc-black);
    max-width: 70px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bc-route-track {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 3px;
    background: var(--bc-border);
    position: relative;
    margin: 0 6px;
    top: -9px;
    border-radius: 3px;
}

.bc-route-track-fill {
    position: absolute;
    left: 0; top: 0; height: 100%;
    background: var(--bc-yellow);
    background: -webkit-linear-gradient(90deg, var(--bc-yellow) 0%, #ffd000 100%);
    background: linear-gradient(90deg, var(--bc-yellow) 0%, #ffd000 100%);
    border-radius: 3px;
    width: 0%;
    -webkit-transition: width 1.4s cubic-bezier(0.34,1.2,0.64,1);
    transition: width 1.4s cubic-bezier(0.34,1.2,0.64,1);
}

.bc-route-truck {
    position: absolute;
    top: -11px;
    font-size: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: left 1.4s cubic-bezier(0.34,1.2,0.64,1);
    transition: left 1.4s cubic-bezier(0.34,1.2,0.64,1);
}

/* ── PROGRESS STEPPER ────────────────────────────────────── */
.bc-stepper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.bc-stepper::-webkit-scrollbar { display: none; }

.bc-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 46px;
    position: relative;
    z-index: 1;
}

.bc-step-node {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bc-border);
    background: var(--bc-white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--bc-muted);
    margin-bottom: 7px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.bc-step.done .bc-step-node {
    background: var(--bc-black);
    border-color: var(--bc-black);
    color: var(--bc-yellow);
    font-size: 13px;
}

.bc-step.current .bc-step-node {
    background: var(--bc-yellow);
    border-color: var(--bc-yellow);
    color: var(--bc-black);
    font-weight: 900;
    box-shadow: 0 0 0 5px var(--bc-yellow-x);
    -webkit-animation: bc-pulse-y 2s ease-in-out infinite;
    animation: bc-pulse-y 2s ease-in-out infinite;
}

@-webkit-keyframes bc-pulse-y {
    0%,100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
}
@keyframes bc-pulse-y {
    0%,100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.5); }
    50%      { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
}

.bc-step-txt {
    font-size: 9px;
    font-weight: 700;
    color: var(--bc-muted);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.bc-step.done .bc-step-txt  { color: var(--bc-black); }
.bc-step.current .bc-step-txt { color: var(--bc-yellow-d); }

.bc-step-line {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 2px;
    background: var(--bc-border);
    margin: 15px -1px 0;
    z-index: 0;
    min-width: 6px;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
}

.bc-step-line.done { background: var(--bc-black); }

/* ── META ROW ────────────────────────────────────────────── */
.bc-meta-row {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--bc-border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bc-meta-item-label {
    font-size: 9px;
    color: var(--bc-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    margin-bottom: 3px;
}

.bc-meta-item-val { font-size: 12px; font-weight: 600; color: var(--bc-black); }

/* ── TIMELINE ────────────────────────────────────────────── */
.bc-timeline-head {
    font-size: 12px;
    font-weight: 800;
    color: var(--bc-black);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bc-border);
}

.bc-tl { position: relative; padding-left: 22px; }

.bc-tl:before {
    content: '';
    position: absolute;
    left: 5px; top: 0; bottom: 0;
    width: 1.5px;
    background: var(--bc-border);
}

.bc-tl-item { position: relative; padding: 0 0 16px 14px; }
.bc-tl-item:last-child { padding-bottom: 0; }

.bc-tl-dot {
    position: absolute;
    left: -17px; top: 3px;
    width: 11px; height: 11px;
    border-radius: 50%;
    background: var(--bc-yellow);
    border: 2px solid var(--bc-white);
    box-shadow: 0 0 0 3px var(--bc-yellow-x);
}

.bc-tl-item:not(:first-child) .bc-tl-dot {
    background: var(--bc-border);
    box-shadow: none;
}

.bc-tl-status { font-size: 13px; font-weight: 700; color: var(--bc-black); margin-bottom: 2px; }
.bc-tl-desc   { font-size: 12px; color: #555; margin-bottom: 4px; line-height: 1.4; }

.bc-tl-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 11px;
    color: var(--bc-muted);
}

/* ── EMPTY STATE ─────────────────────────────────────────── */
.bc-empty { text-align: center; padding: 40px 20px; }

.bc-empty-icon {
    width: 68px; height: 68px;
    border-radius: 18px;
    background: var(--bc-yellow-l);
    border: 1px solid rgba(245,197,24,0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 14px;
}

.bc-empty-h { font-size: 18px; font-weight: 800; color: var(--bc-black); margin-bottom: 8px; }
.bc-empty-p { font-size: 13px; color: var(--bc-muted); max-width: 300px; margin: 0 auto; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   THE PREMIUM "TrackMyOrder Pro™" BUTTON
   Used in: nav header, my account, order detail, hooks
   ══════════════════════════════════════════════════════════ */
.bc-tmo-btn {
    display: inline-block;
    padding: 9px 18px;
    background: var(--bc-black);
    border: 1.5px solid var(--bc-yellow);
    border-radius: 50px;
    color: var(--bc-white) !important;
    text-decoration: none !important;
    font-family: var(--bc-font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.28s;
    transition: all 0.28s;
    box-shadow: 0 2px 12px rgba(245,197,24,0.18);
}

/* Yellow sweep on hover */
.bc-tmo-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bc-yellow);
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%);
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    z-index: 0;
}

.bc-tmo-btn:hover::before {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.bc-tmo-btn:hover {
    color: var(--bc-black) !important;
    box-shadow: 0 4px 20px rgba(245,197,24,0.4);
    border-color: var(--bc-yellow);
}

.bc-tmo-btn-inner {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
}

/* Animated yellow dot inside button */
.bc-tmo-btn-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--bc-yellow);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    -webkit-animation: bc-blink 1.6s ease-in-out infinite;
    animation: bc-blink 1.6s ease-in-out infinite;
}

.bc-tmo-btn:hover .bc-tmo-btn-dot { background: var(--bc-black); }

.bc-tmo-btn-label { font-size: 12px; font-weight: 800; }

.bc-tmo-btn-pro {
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--bc-yellow);
    color: var(--bc-black);
    padding: 1px 5px;
    border-radius: 4px;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.bc-tmo-btn:hover .bc-tmo-btn-pro { background: var(--bc-black); color: var(--bc-yellow); }

/* NAV variant — slightly taller for header */
.bc-tmo-btn-nav {
    padding: 8px 16px;
    font-size: 12px;
    margin-left: 8px;
}

/* ── MY ACCOUNT LINK ─────────────────────────────────────── */
.bc-myaccount-link-native {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none !important;
    font-weight: 600;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.bc-myaccount-link-native:hover {
    color: var(--bc-yellow-d) !important;
    text-decoration: none !important;
}

.bc-myaccount-icon-wrap {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--bc-black);
    border: 1.5px solid var(--bc-yellow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--bc-yellow);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 16px;
}

.bc-myaccount-label-text { font-size: 14px; font-weight: 700; }

/* ── ORDER DETAIL HOOK WIDGET ────────────────────────────── */
.bc-order-widget {
    background: #fafafa;
    border: 1.5px solid var(--bc-yellow);
    border-left: 4px solid var(--bc-yellow);
    border-radius: 12px;
    padding: 16px 18px;
    margin: 16px 0;
}

.bc-order-widget-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--bc-black);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 480px) {
    .bc-hero { padding: 36px 14px 60px; }
    .bc-hero-h1 { font-size: 27px; }
    .bc-step { min-width: 40px; }
    .bc-step-txt { font-size: 8px; }
    .bc-content { padding: 20px 12px 50px; }
    .bc-card { padding: 16px; }
    .bc-tmo-btn-nav { display: none; }
}
