/* Wasla storefront UI-kit styles — token-driven recreation of the Blade storefront. */
* { box-sizing: border-box; }
body { margin: 0; }
.wk-root { font-family: var(--font-brand); background: var(--surface-page); color: var(--text-strong); min-height: 100vh; }
.wk-container { max-width: var(--container-max); margin: 0 auto; padding: 0 16px; }
a { cursor: pointer; }

/* Announcement */
.wk-announce { background: var(--brand); color: #fff; text-align: center; padding: .45rem 0; font-size: .8rem; letter-spacing: .3px; min-height: 1.9rem; display: flex; align-items: center; justify-content: center; }
.wk-announce__txt { animation: wkFade .45s var(--ease); }
@keyframes wkFade { from { opacity: 0; } to { opacity: 1; } }

/* Navbar */
.wk-nav { background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 40; }
.wk-nav__inner { display: flex; align-items: center; gap: 18px; padding-top: .75rem; padding-bottom: .75rem; }
.wk-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.wk-brand__mark { width: 30px; height: 30px; }
.wk-brand__wm { font-weight: 800; font-size: 1.25rem; letter-spacing: -.5px; color: var(--brand); }
.wk-brand__ar { font-size: .95rem; font-weight: 700; }
.wk-nav__links { display: flex; gap: 4px; margin-inline-start: 14px; }
.wk-nav__link { font-family: var(--font-ui); color: var(--text-body); font-weight: 500; font-size: .92rem; padding: .35rem .85rem; text-decoration: none; border-bottom: 2px solid transparent; }
.wk-nav__link:hover { color: var(--brand); }
.wk-nav__link--active { color: var(--brand); border-bottom-color: var(--brand); }
.wk-nav__actions { display: flex; align-items: center; gap: 8px; margin-inline-start: auto; }
.wk-lang { font-family: var(--font-ui); font-size: .8rem; font-weight: 600; border: 1px solid var(--border); background: #fff; border-radius: 8px; padding: .35rem .7rem; cursor: pointer; color: var(--text-body); display: inline-flex; align-items: center; gap: .35em; }
.wk-lang:hover { border-color: var(--brand); color: var(--brand); }
@media (max-width: 640px) { .wk-hide-sm { display: none; } }
.wk-cartbtn { position: relative; font-family: var(--font-ui); font-size: .82rem; font-weight: 500; border: 1px solid var(--border); background: #fff; border-radius: 8px; padding: .35rem .85rem; cursor: pointer; color: var(--text-body); }
.wk-cartbtn:hover { background: var(--surface-sunken); }
.wk-cartbadge { position: absolute; top: -6px; inset-inline-end: -8px; background: var(--brand); color: #fff; border-radius: 50%; width: 19px; height: 19px; font-size: .6rem; display: flex; align-items: center; justify-content: center; font-weight: 700; border: 2px solid #fff; }

/* Buttons */
.wk-btn { font-family: var(--font-ui); font-weight: 600; font-size: .82rem; border-radius: var(--radius-md); padding: .42rem 1rem; cursor: pointer; border: 1.5px solid transparent; transition: background var(--transition-fast), color var(--transition-fast), transform .1s; }
.wk-btn:active { transform: translateY(1px); }
.wk-btn--brand { background: var(--brand); color: #fff; }
.wk-btn--brand:hover { background: var(--brand-dark); }
.wk-btn--brand-outline { background: #fff; color: var(--brand); border-color: var(--brand); }
.wk-btn--brand-outline:hover { background: var(--brand); color: #fff; }
.wk-btn--light { background: #fff; color: var(--brand); }
.wk-btn--lg { font-size: .95rem; padding: .7rem 1.6rem; }

/* Hero */
.wk-hero { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; border-radius: var(--radius-2xl); padding: 56px 32px; text-align: center; margin: 28px 0; }
.wk-hero h1 { font-size: 2rem; font-weight: 800; margin: 0 0 10px; letter-spacing: -.02em; }
.wk-hero p { font-size: 1.05rem; opacity: .9; margin: 0 0 22px; }

/* Search */
.wk-searchrow { display: flex; justify-content: center; margin-bottom: 26px; }
.wk-search { display: flex; align-items: center; width: 100%; max-width: 580px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-pill); overflow: hidden; box-shadow: var(--shadow-sm); }
.wk-search:focus-within { border-color: var(--brand); box-shadow: var(--ring-brand); }
.wk-search__icon { padding-inline-start: 18px; color: var(--text-subtle); }
.wk-search__input { flex: 1; border: 0; outline: none; font-size: 1rem; padding: .8rem .9rem; color: var(--text-strong); font-family: var(--font-brand); }
.wk-search__btn { border: 0; background: var(--brand); color: #fff; font-family: var(--font-ui); font-weight: 600; padding: 0 1.6rem; align-self: stretch; cursor: pointer; }
.wk-search__btn:hover { background: var(--brand-dark); }

/* Category pills */
.wk-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.wk-pill { font-family: var(--font-brand); display: inline-flex; align-items: center; padding: .4rem .95rem; border-radius: var(--radius-pill); border: 1.5px solid var(--border); background: #fff; color: var(--text-body); font-size: .85rem; font-weight: 500; cursor: pointer; transition: all var(--transition-fast); }
.wk-pill:hover { border-color: var(--brand); color: var(--brand); }
.wk-pill--active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: 0 2px 8px rgba(var(--brand-rgb), .25); }

/* Product grid */
.wk-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding-bottom: 40px; }
@media (max-width: 900px) { .wk-grid { grid-template-columns: repeat(2, 1fr); } }
.wk-pc { position: relative; display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.wk-pc:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.wk-pc__sale { position: absolute; top: 10px; inset-inline-start: 10px; z-index: 1; background: var(--brand); color: #fff; font-family: var(--font-ui); font-size: .72rem; font-weight: 700; padding: .3rem .55rem; border-radius: var(--radius-sm); }
.wk-pc__img { height: 200px; background: var(--surface-sunken); overflow: hidden; cursor: pointer; }
.wk-pc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.wk-pc:hover .wk-pc__img img { transform: scale(1.05); }
.wk-pc__body { display: flex; flex-direction: column; flex: 1; padding: 14px; }
.wk-pc__title { font-size: .9rem; font-weight: 600; line-height: 1.4; margin: 0; color: var(--text-strong); cursor: pointer; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5em; }
.wk-pc__title:hover { color: var(--brand); }
.wk-pc__foot { margin-top: auto; padding-top: 10px; }
.wk-pc__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 10px; font-family: var(--font-ui); }
.wk-pc__now { font-size: 1rem; font-weight: 700; color: var(--text-strong); }
.wk-pc__now--sale { color: var(--brand); }
.wk-pc__cur { font-size: .72rem; font-weight: 500; color: var(--text-muted); }
.wk-pc__was { font-size: .8rem; color: var(--text-subtle); text-decoration: line-through; }
.wk-pc__stock--low { font-family: var(--font-ui); font-size: .68rem; font-weight: 600; color: var(--warning-fg); background: var(--warning-bg); display: inline-block; padding: .15rem .5rem; border-radius: var(--radius-sm); margin-bottom: 8px; }
.wk-pc__btn { width: 100%; border: 0; border-radius: var(--radius-md); background: var(--brand); color: #fff; font-family: var(--font-ui); font-weight: 600; font-size: .82rem; padding: .5rem; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: .4em; transition: background var(--transition-fast); }
.wk-pc__btn:hover { background: var(--brand-dark); }
.wk-pc__btn:disabled { background: var(--border-strong); color: var(--text-muted); cursor: not-allowed; }
.wk-empty { text-align: center; padding: 60px 0; color: var(--text-muted); }
.wk-empty i { font-size: 2.5rem; opacity: .3; }

/* Product detail */
.wk-pdp { padding-top: 28px; padding-bottom: 48px; }
.wk-crumb { font-family: var(--font-ui); font-size: .78rem; color: var(--text-muted); margin-bottom: 22px; display: flex; gap: 8px; align-items: center; }
.wk-crumb a { color: var(--text-muted); text-decoration: none; }
.wk-crumb a:hover { color: var(--brand); }
.wk-crumb b { color: var(--text-strong); }
.wk-cap { text-transform: capitalize; }
.wk-pdp__grid { display: grid; grid-template-columns: 5fr 7fr; gap: 40px; align-items: start; }
@media (max-width: 800px) { .wk-pdp__grid { grid-template-columns: 1fr; } }
.wk-pdp__gallery { position: relative; background: var(--surface-sunken); border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.wk-pdp__gallery img { width: 100%; height: 100%; object-fit: cover; }
.wk-pdp__badge { position: absolute; top: 12px; inset-inline-start: 12px; background: var(--brand); color: #fff; font-family: var(--font-ui); font-size: .72rem; font-weight: 700; padding: .3rem .65rem; border-radius: var(--radius-sm); }
.wk-pdp__cat { font-family: var(--font-ui); display: inline-block; background: var(--brand-light); color: var(--orange-700); border: 1px solid var(--orange-200); font-size: .72rem; font-weight: 600; padding: .3rem .7rem; border-radius: var(--radius-sm); text-transform: capitalize; }
.wk-pdp__title { font-size: 1.55rem; font-weight: 800; line-height: 1.2; margin: 12px 0 14px; }
.wk-pdp__price { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; font-family: var(--font-ui); }
.wk-pdp__now { font-size: 2rem; font-weight: 800; color: var(--text-strong); }
.wk-pdp__now small { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.wk-pdp__now--sale { color: var(--brand); }
.wk-pdp__was { font-size: 1.1rem; color: var(--text-subtle); text-decoration: line-through; }
.wk-pdp__save { background: var(--brand-light); color: var(--orange-700); border: 1px solid var(--orange-200); font-size: .75rem; font-weight: 700; border-radius: var(--radius-sm); padding: .2rem .55rem; }
.wk-pdp__stockline { margin-bottom: 16px; }
.wk-status { font-family: var(--font-ui); font-size: .78rem; font-weight: 600; padding: .35rem .8rem; border-radius: var(--radius-pill); }
.wk-status--ok { background: var(--success-bg); color: var(--success-fg); }
.wk-status--warn { background: var(--warning-bg); color: var(--warning-fg); }
.wk-status--danger { background: var(--danger-bg); color: var(--danger-fg); }
.wk-pdp__desc { color: var(--text-body); line-height: 1.75; font-size: .93rem; margin-bottom: 22px; max-width: 520px; }
.wk-pdp__sizes { margin-bottom: 22px; }
.wk-pdp__sizelabel { font-family: var(--font-ui); font-size: .82rem; font-weight: 600; color: var(--text-body); margin-bottom: 8px; }
.wk-pdp__sizelabel span { color: var(--text-muted); font-weight: 400; }
.wk-pdp__sizebtns { display: flex; gap: 8px; flex-wrap: wrap; }
.wk-size { font-family: var(--font-ui); min-width: 44px; height: 40px; padding: 0 .75rem; border: 2px solid var(--border); border-radius: var(--radius-md); background: #fff; color: var(--text-body); font-weight: 600; font-size: .84rem; cursor: pointer; transition: all var(--transition-fast); }
.wk-size:hover { border-color: var(--brand); color: var(--brand); }
.wk-size--on { border-color: var(--brand); background: var(--brand); color: #fff; }
.wk-pdp__buy { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; flex-wrap: wrap; }
.wk-qty { display: flex; align-items: center; gap: 8px; }
.wk-qty button { width: 38px; height: 40px; border: 1px solid var(--border); background: var(--surface-sunken); border-radius: var(--radius-md); font-size: 1.1rem; font-weight: 600; cursor: pointer; color: var(--text-body); }
.wk-qty button:hover { background: var(--border); }
.wk-qty input { width: 52px; height: 40px; text-align: center; font-family: var(--font-ui); font-weight: 600; border: 1px solid var(--border); border-radius: var(--radius-md); }
.wk-add { background: var(--brand); color: #fff; border: 0; border-radius: var(--radius-lg); padding: .7rem 2rem; font-family: var(--font-ui); font-size: .95rem; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: .5em; transition: background var(--transition-fast), transform .1s; }
.wk-add:hover { background: var(--brand-dark); transform: translateY(-1px); }
.wk-add:disabled { background: var(--border-strong); color: var(--text-muted); cursor: not-allowed; transform: none; }
.wk-add--block { width: 100%; justify-content: center; }
.wk-trust { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.wk-trust span { font-family: var(--font-ui); font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .4em; }
.wk-trust i { color: var(--brand); }

/* Footer */
.wk-footer { background: var(--slate-900); color: var(--slate-400); margin-top: 40px; padding: 44px 0 0; }
.wk-footer__cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; padding-bottom: 28px; }
@media (max-width: 700px) { .wk-footer__cols { grid-template-columns: 1fr; } }
.wk-footer__brand { color: #f9fafb; font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 8px; }
.wk-footer__p { font-size: .85rem; line-height: 1.8; margin: 0 0 14px; }
.wk-footer__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.wk-chip { font-family: var(--font-ui); background: var(--slate-800); color: var(--slate-300); font-size: .72rem; padding: .4rem .75rem; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: .35em; }
.wk-footer__h { color: #f3f4f6; font-family: var(--font-ui); font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.wk-footer__link { display: flex; align-items: center; gap: .5em; color: var(--slate-400); text-decoration: none; font-size: .85rem; padding: 4px 0; }
.wk-footer__link:hover { color: var(--brand); }
.wk-footer__bar { border-top: 1px solid var(--slate-800); padding-top: 18px; padding-bottom: 18px; font-size: .8rem; }

/* Cart drawer */
.wk-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.45); opacity: 0; pointer-events: none; transition: opacity var(--transition); z-index: 50; }
.wk-scrim--on { opacity: 1; pointer-events: all; }
.wk-cart { position: fixed; top: 0; inset-inline-end: 0; height: 100%; width: 380px; max-width: 90vw; background: #fff; box-shadow: var(--shadow-pop); transform: translateX(100%); transition: transform var(--transition); z-index: 60; display: flex; flex-direction: column; }
[dir="rtl"] .wk-cart { transform: translateX(-100%); }
.wk-cart--on { transform: translateX(0); }
.wk-cart__hd { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--border); font-family: var(--font-ui); font-weight: 700; font-size: 1rem; }
.wk-cart__hd button { background: none; border: 0; color: var(--text-muted); cursor: pointer; font-size: 1rem; }
.wk-cart__hd span { display: flex; align-items: center; gap: .5em; }
.wk-cart__body { flex: 1; overflow-y: auto; padding: 14px 20px; }
.wk-cart__empty { text-align: center; color: var(--text-muted); padding: 50px 0; }
.wk-cart__empty i { font-size: 2.2rem; opacity: .3; display: block; margin-bottom: 8px; }
.wk-cart__row { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--surface-sunken); }
.wk-cart__row img { width: 54px; height: 54px; border-radius: var(--radius-md); object-fit: cover; flex-shrink: 0; }
.wk-cart__meta { flex: 1; min-width: 0; }
.wk-cart__name { font-size: .85rem; font-weight: 600; line-height: 1.35; }
.wk-cart__q { font-family: var(--font-ui); font-size: .75rem; color: var(--text-muted); }
.wk-cart__price { font-family: var(--font-ui); font-weight: 700; font-size: .85rem; white-space: nowrap; }
.wk-cart__foot { border-top: 1px solid var(--border); padding: 18px 20px; }
.wk-cart__total { display: flex; justify-content: space-between; font-family: var(--font-ui); margin-bottom: 12px; }
.wk-cart__total b { font-size: 1.15rem; }
.wk-cart__note { font-family: var(--font-ui); font-size: .72rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* Toast */
.wk-toast { position: fixed; top: 80px; inset-inline-end: 20px; z-index: 70; display: flex; gap: 12px; align-items: flex-start; background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-pop); border-inline-start: 4px solid var(--success); padding: 14px 16px; width: 290px; animation: wkSlide .2s var(--ease); }
@keyframes wkSlide { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
.wk-toast__ic { width: 36px; height: 36px; border-radius: 50%; background: var(--green-50); color: var(--success); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wk-toast__t { font-family: var(--font-ui); font-size: .72rem; font-weight: 700; text-transform: uppercase; color: var(--success-fg); margin-bottom: 3px; }
.wk-toast__m { font-size: .83rem; color: var(--text-strong); line-height: 1.4; }


/* ════════ BUYER JOURNEY — shared ════════ */
.wk-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.wk-card__hd { padding: 14px 18px; border-bottom: 1px solid var(--surface-sunken); font-family: var(--font-ui); font-weight: 700; font-size: .9rem; }
.wk-card__bd { padding: 18px; }
.wk-opt { color: var(--text-subtle); font-weight: 400; font-size: .85em; }
.wk-pillbadge { font-family: var(--font-ui); font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: var(--radius-pill); display: inline-flex; align-items: center; gap: .35em; }
.wk-pillbadge--green { background: var(--success-bg); color: var(--success-fg); }
.wk-pillbadge--blue  { background: var(--info-bg); color: var(--info); }
.wk-pillbadge--amber { background: var(--warning-bg); color: var(--warning-fg); }
.wk-sumrow { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--surface-sunken); font-size: .85rem; }
.wk-sumrow__n { font-weight: 600; }
.wk-sumrow__q { color: var(--text-muted); font-weight: 400; }
.wk-sumrow__p { font-family: var(--font-ui); font-weight: 700; white-space: nowrap; }
.wk-sumline { display: flex; justify-content: space-between; font-family: var(--font-ui); font-size: .85rem; color: var(--text-muted); padding: 5px 0; }
.wk-sumline--disc { color: var(--success); font-weight: 600; }
.wk-sumtotal { display: flex; justify-content: space-between; font-family: var(--font-ui); font-weight: 800; font-size: 1.05rem; padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--border); }

/* ════════ CHECKOUT ════════ */
.wk-co { padding-top: 24px; padding-bottom: 48px; }
.wk-co__back { background: none; border: 0; color: var(--text-muted); font-family: var(--font-ui); font-size: .82rem; cursor: pointer; display: inline-flex; align-items: center; gap: .4em; padding: 0; margin-bottom: 12px; }
.wk-co__back:hover { color: var(--brand); }
.wk-co__back .bi { display: inline-block; }
[dir="rtl"] .wk-co__back .bi { transform: scaleX(-1); }
.wk-co__h1 { font-size: 1.6rem; font-weight: 800; margin: 0 0 22px; letter-spacing: -.02em; }
.wk-co__grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
@media (min-width: 900px) { .wk-co__grid { grid-template-columns: 1.4fr 1fr; gap: 28px; } .wk-co__sum { position: sticky; top: 80px; } }
.wk-frow { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .wk-frow { grid-template-columns: 1fr 1fr; } }
.wk-f { margin-bottom: 14px; }
.wk-f:last-child { margin-bottom: 0; }
.wk-f label { display: block; font-family: var(--font-ui); font-size: .82rem; font-weight: 600; color: var(--text-body); margin-bottom: 6px; }
.wk-f input, .wk-f textarea { width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-family: var(--font-brand); font-size: .92rem; color: var(--text-strong); padding: .6rem .75rem; background: #fff; resize: vertical; }
.wk-f input:focus, .wk-f textarea:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring-brand); }
.wk-f input::placeholder, .wk-f textarea::placeholder { color: var(--text-subtle); }
.wk-coupon { display: flex; gap: 8px; }
.wk-coupon input { flex: 1; min-width: 0; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-family: var(--font-mono); font-size: .85rem; padding: .6rem .75rem; text-transform: uppercase; }
.wk-coupon input:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring-brand); }
.wk-coupon__btn { flex-shrink: 0; border: 1.5px solid var(--border-strong); background: var(--surface-sunken); color: var(--text-body); border-radius: var(--radius-md); font-family: var(--font-ui); font-weight: 600; font-size: .82rem; padding: 0 1rem; cursor: pointer; }
.wk-coupon__btn:hover { border-color: var(--brand); color: var(--brand); }
.wk-fhint { font-family: var(--font-ui); font-size: .74rem; color: var(--text-muted); margin-top: 5px; }
.wk-fmsg { font-family: var(--font-ui); font-size: .76rem; font-weight: 600; margin-top: 6px; display: flex; align-items: center; gap: .35em; }
.wk-fmsg--ok { color: var(--success-fg); }
.wk-fmsg--bad { color: var(--danger); }
.wk-pay { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 14px; cursor: pointer; margin-bottom: 10px; font-family: var(--font-brand); transition: border-color var(--transition-fast), background var(--transition-fast); }
.wk-pay:last-child { margin-bottom: 0; }
.wk-pay--on { border-color: var(--brand); background: var(--brand-light); }
.wk-pay input { width: 18px; height: 18px; accent-color: var(--brand); flex-shrink: 0; }
.wk-pay__ic { font-size: 1.15rem; }
.wk-pay__hint { color: var(--text-muted); font-size: .85rem; }

/* ════════ ORDER CONFIRMATION ════════ */
.wk-cf { max-width: 720px; margin: 0 auto; padding-top: 32px; padding-bottom: 48px; }
.wk-cf__hero { text-align: center; margin-bottom: 28px; }
.wk-cf__check { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: var(--success); color: #fff; font-size: 2rem; margin-bottom: 16px; box-shadow: 0 8px 24px rgba(34,197,94,.35); }
.wk-cf__hero h1 { font-size: 1.6rem; font-weight: 800; margin: 0 0 8px; }
.wk-cf__hero p { color: var(--text-muted); margin: 0; line-height: 1.6; }
.wk-cf__cardhd { display: flex; align-items: center; justify-content: space-between; }
.wk-cf__info { display: grid; grid-template-columns: 1fr; gap: 16px; padding: 18px; border-top: 1px solid var(--surface-sunken); font-size: .85rem; }
@media (min-width: 560px) { .wk-cf__info { grid-template-columns: repeat(3, 1fr); } }
.wk-cf__lbl { font-family: var(--font-ui); font-size: .7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text-subtle); margin-bottom: 5px; }
.wk-cf__strong { font-weight: 700; }
.wk-cf__muted { color: var(--text-muted); }
.wk-cf__note { display: flex; align-items: center; gap: .5em; background: var(--surface-sunken); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 14px; font-size: .85rem; color: var(--text-muted); margin-top: 16px; }
.wk-cf__note i { color: var(--info); }
.wk-cf__cta { display: flex; gap: 12px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }

/* ════════ ORDER TRACKING ════════ */
.wk-tr { max-width: 680px; margin: 0 auto; padding-top: 32px; padding-bottom: 48px; }
.wk-tr__h1 { font-size: 1.6rem; font-weight: 800; margin: 0 0 6px; letter-spacing: -.02em; }
.wk-tr__sub { color: var(--text-muted); margin: 0 0 22px; }
.wk-tr__search { display: flex; align-items: center; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-pill); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.wk-tr__search:focus-within { border-color: var(--brand); box-shadow: var(--ring-brand); }
.wk-tr__icon { padding-inline-start: 16px; color: var(--text-subtle); }
.wk-tr__search input { flex: 1; border: 0; outline: none; font-family: var(--font-mono); font-size: .9rem; padding: .7rem .8rem; }
.wk-tr__search button { border: 0; background: var(--brand); color: #fff; font-family: var(--font-ui); font-weight: 600; padding: 0 1.5rem; align-self: stretch; cursor: pointer; }
.wk-tr__search button:hover { background: var(--brand-dark); }
.wk-tr__result { padding: 6px 0; }
.wk-tr__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--surface-sunken); flex-wrap: wrap; }
.wk-tr__order { font-family: var(--font-mono); font-weight: 700; font-size: 1rem; color: var(--brand); }
.wk-tr__cur { font-family: var(--font-ui); font-size: .82rem; color: var(--text-muted); margin-top: 3px; }
.wk-tr__cur b { color: var(--text-strong); }
.wk-timeline { padding: 22px 20px 8px; }
.wk-tl { display: flex; gap: 14px; }
.wk-tl__rail { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.wk-tl__dot { width: 34px; height: 34px; border-radius: 50%; background: var(--surface-sunken); color: var(--text-subtle); display: flex; align-items: center; justify-content: center; font-size: .85rem; border: 2px solid var(--border); flex-shrink: 0; transition: all var(--transition); }
.wk-tl__line { width: 2px; flex: 1; min-height: 26px; background: var(--border); margin: 2px 0; }
.wk-tl--done .wk-tl__dot { background: var(--brand); color: #fff; border-color: var(--brand); }
.wk-tl--done .wk-tl__line { background: var(--brand); }
.wk-tl--current .wk-tl__dot { box-shadow: 0 0 0 4px var(--brand-light); }
.wk-tl__body { padding-bottom: 22px; padding-top: 5px; }
.wk-tl:last-child .wk-tl__body { padding-bottom: 0; }
.wk-tl__label { font-family: var(--font-ui); font-weight: 600; font-size: .92rem; color: var(--text-subtle); }
.wk-tl--done .wk-tl__label { color: var(--text-strong); }
.wk-tl--current .wk-tl__label { color: var(--brand); font-weight: 700; }
.wk-tl__time { font-family: var(--font-ui); font-size: .76rem; color: var(--text-muted); margin-top: 2px; }
.wk-tr__foot { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-top: 1px solid var(--surface-sunken); font-size: .85rem; flex-wrap: wrap; }
