/* ================================================================
   MEME Client — Offers
   صفحات: تصفح العروض + Wizard الطلب + المتابعة
   ================================================================ */


/* ── صفحة تصفح العروض ──────────────────────────────────── */

.offers-page {
    padding: 32px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.offers-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(30,107,94,.05), rgba(212,165,116,.06));
    border-radius: 20px;
    border: 1px solid rgba(30,107,94,.08);
}

.offers-hero h1 {
    font-size: 32px;
    font-weight: 900;
    color: #1a3530;
    margin: 0 0 10px;
    line-height: 1.4;
}

.offers-hero h1 span {
    background: linear-gradient(135deg, #d4a574, #e8a35a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offers-hero p {
    font-size: 15px;
    color: #64748b;
    margin: 0 auto;
    max-width: 480px;
    line-height: 1.8;
}


/* ── شبكة البطاقات ────────────────────────────────────────── */

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.offers-empty {
    text-align: center;
    padding: 80px 20px;
    color: #94a3b8;
}

.offers-empty i {
    font-size: 52px;
    margin-bottom: 14px;
    display: block;
    color: #d4a574;
}

.offers-empty p {
    font-size: 15px;
    margin-bottom: 20px;
}

.offers-empty a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1e6b5e, #3a9b8f);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all .3s;
}

.offers-empty a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,107,94,.3);
    color: #fff;
}

.offers-loading {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.offers-loading i {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}


/* ── بطاقة العرض ─────────────────────────────────────────── */

.offer-card-client {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e8f0ee;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}

.offer-card-client:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30,107,94,.1);
}

.offer-card-client__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.offer-card-client__body {
    padding: 20px;
}

.offer-card-client__title {
    font-size: 18px;
    font-weight: 800;
    color: #1a3530;
    margin: 0 0 10px;
    line-height: 1.5;
}

.offer-card-client__desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-card-client__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.offer-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(30,107,94,.06);
    color: #1e6b5e;
    font-size: 12px;
    font-weight: 600;
}

.offer-meta-chip i {
    font-size: 11px;
    color: #d4a574;
}

/* Progress */
.offer-progress {
    margin-bottom: 16px;
}

.offer-progress__header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 5px;
    font-weight: 600;
}

.offer-progress__bar {
    height: 6px;
    background: #e8f0ee;
    border-radius: 999px;
    overflow: hidden;
}

.offer-progress__fill {
    height: 100%;
    background: linear-gradient(90deg, #1e6b5e, #3a9b8f);
    border-radius: 999px;
    transition: width .5s ease;
}

.offer-progress__fill.full {
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

/* العاملات */
.offer-card-workers {
    display: flex;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 16px;
    border-top: 1px solid #f0f5f3;
}

.offer-worker-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,.1);
    margin-left: -8px;
    transition: transform .2s;
}

.offer-worker-avatar:hover {
    transform: scale(1.15);
    z-index: 2;
}

.offer-workers-more {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e6b5e, #3a9b8f);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    border: 2px solid #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,.1);
}

/* زر الطلب */
.offer-card-client__cta {
    display: block;
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #1e6b5e, #3a9b8f);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    border-radius: 12px;
    transition: all .3s;
    box-shadow: 0 4px 14px rgba(30,107,94,.2);
}

.offer-card-client__cta:hover {
    background: linear-gradient(135deg, #3a9b8f, #56bfb1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,107,94,.3);
    color: #fff;
}

.offer-card-client__cta i {
    margin-left: 8px;
}

/* شارة المتبقي */
.offer-remaining-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    z-index: 2;
}


/* ================================================================
   Wizard — طلب العرض
================================================================ */

.wiz-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 0;
}

.page-header-back {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.page-header-back .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all .2s;
    white-space: nowrap;
}

.page-header-back .back-link:hover {
    color: #1e6b5e;
    border-color: #1e6b5e;
}

.page-header-back h1 {
    font-size: 20px;
    font-weight: 800;
    color: #1a3530;
    margin: 0;
}

.page-header-back h1 i {
    color: #d4a574;
    margin-left: 8px;
}


/* Steps */
.wiz-steps {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    direction: rtl;
}

.wiz-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.wiz-step__num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2.5px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #94a3b8;
    z-index: 1;
    transition: all .3s;
}

.wiz-step.active .wiz-step__num {
    background: linear-gradient(135deg, #1e6b5e, #3a9b8f);
    border-color: #1e6b5e;
    color: #fff;
    box-shadow: 0 4px 12px rgba(30,107,94,.25);
}

.wiz-step.done .wiz-step__num {
    background: rgba(30,107,94,.08);
    border-color: #1e6b5e;
    color: #1e6b5e;
}

.wiz-step__label {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 8px;
    font-weight: 600;
    text-align: center;
    transition: color .2s;
}

.wiz-step.active .wiz-step__label {
    color: #1e6b5e;
    font-weight: 700;
}

.wiz-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -50%;
    width: 100%;
    height: 2.5px;
    background: #e2e8f0;
    z-index: 0;
    border-radius: 3px;
}

.wiz-step.done:not(:last-child)::after {
    background: linear-gradient(90deg, #1e6b5e, #3a9b8f);
}


/* Panels */
.wiz-panel {
    display: none;
}

.wiz-panel.active {
    display: block;
    animation: wizIn .3s ease;
}

@keyframes wizIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #e8f0ee;
    box-shadow: 0 2px 16px rgba(0,0,0,.03);
    margin-bottom: 16px;
}

.panel-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a3530;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(30,107,94,.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-title i {
    color: #d4a574;
    font-size: 15px;
}


/* ── اختيار العاملات ──────────────────────────────────────── */

.workers-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.ws-worker-card {
    border: 2px solid #e8f0ee;
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}

.ws-worker-card:hover {
    border-color: rgba(30,107,94,.25);
    background: rgba(30,107,94,.02);
}

.ws-worker-card.selected {
    border-color: #1e6b5e;
    background: rgba(30,107,94,.04);
    box-shadow: 0 4px 14px rgba(30,107,94,.1);
}

.ws-worker-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1e6b5e, #3a9b8f);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(30,107,94,.35);
}

.ws-worker-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px;
    border: 2.5px solid #e8f0ee;
    transition: border-color .2s;
}

.ws-worker-card.selected img {
    border-color: #1e6b5e;
}

.ws-worker-card__name {
    font-size: 13px;
    font-weight: 700;
    color: #1a3530;
    margin: 0;
}

.ws-worker-card__job {
    font-size: 11px;
    color: #94a3b8;
    margin: 3px 0 0;
}

/* شريط العدد */
.selected-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: rgba(30,107,94,.05);
    border-radius: 10px;
    margin-top: 14px;
    font-size: 13px;
    color: #1e6b5e;
    font-weight: 600;
}

.selected-bar strong {
    font-size: 17px;
    color: #d4a574;
}


/* ── الخطوة 2: المواعيد ────────────────────────────────────── */

.schedule-card {
    background: #fafcfc;
    border: 1px solid #e8f0ee;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 12px;
}

.schedule-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8f0ee;
}

.schedule-card__header img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1e6b5e;
}

.schedule-card__header span {
    font-weight: 700;
    color: #1a3530;
    font-size: 14px;
}

.period-options {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.period-opt {
    flex: 1;
    padding: 9px 6px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    transition: all .2s;
    user-select: none;
}

.period-opt:hover {
    border-color: rgba(30,107,94,.3);
    color: #1e6b5e;
}

.period-opt.selected {
    border-color: #1e6b5e;
    background: rgba(30,107,94,.06);
    color: #1e6b5e;
}

.period-opt i {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

.schedule-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sched-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
}

.sched-field input {
    width: 100%;
    padding: 9px 10px;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: #1f2937;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.sched-field input:focus {
    outline: none;
    border-color: #1e6b5e;
    box-shadow: 0 0 0 3px rgba(30,107,94,.08);
}


/* ── الخطوة 3: بيانات العميل ──────────────────────────────── */

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


/* ── الخطوة 3: بيانات العميل ──────────────────────────────── */

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

.fg {
    margin-bottom: 4px;
}

.fg label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 6px;
}

.fg label .req {
    color: #dc2626;
    font-size: 14px;
}

.fg input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Cairo', sans-serif;
    color: #1f2937;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.fg input:focus {
    border-color: #1e6b5e;
    box-shadow: 0 0 0 3px rgba(30,107,94,.1);
}

.fg input[readonly] {
    background: #f3f4f6;
    border-color: #e2e8f0;
    color: #6b7280;
    cursor: default;
}

.fg input::placeholder {
    color: #b0b8c3;
}

.fg.full {
    grid-column: 1 / -1;
}

/* حقل أيقونة التحقق من الأعمدة */
.fg .field-error {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220,38,38,.12) !important;
    animation: shakeField .4s ease;
}

@keyframes shakeField {
    0%, 100% { transform: translateX(0); }
    10%, 30% { transform: translateX(-6px); }
    20%, 50% { transform: translateX(5px); }
    40%, 60% { transform: translateX(-4px); }
    50%, 70% { transform: translateX(2px); }
    60%, 90% { transform: translateX(-1px); }
    70%, 100% { transform: translateX(0); }
}

/* تأثيرات إضافية للحقول */
.fg.has-error input {
    background: #fef2f2 !important;
    border-color: #dc2626 !important;
}

.fg.has-error label {
    color: #dc2626 !important;
}

/* تلميح خفيفي */
.fg .info-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(30,107,94,.06);
    border-radius: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: #1e6b5e;
}

.fg .info-hint i {
    font-size: 13px;
}

/* تحسين حقول رقم الجوال */
.fg .phone-field {
    direction: ltr;
    text-align: left;
}

.fg .phone-field input {
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

/* تحسين حقول العنوان */
.fg .address-field input {
    resize: none;
    min-height: 44px;
}

/* تحسين حقول الخرائط */
.fg .maps-field {
    position: relative;
}

.fg .maps-field .maps-clear-btn {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    font-size: 14px;
    transition: color .2s;
}

.fg .maps-field .maps-clear-btn:hover {
    color: #dc2626;
}

/* ملاحظة الزائر */
.fg .logged-in-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(30,107,94,.06), rgba(30,107,94,.02));
    border: 1px solid rgba(30,107,94,.12);
    border-radius: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #1e6b5e;
}

.fg .logged-in-note i {
    font-size: 14px;
    color: #16a34a;
}
.fg.full {
    grid-column: 1 / -1;
}


/* ── أزرار التنقل ──────────────────────────────────────────── */

.wiz-nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #f0f5f3;
}

.btn-wiz-prev,
.btn-wiz-next,
.btn-wiz-submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    font-family: 'Cairo', sans-serif;
}

.btn-wiz-prev {
    background: #fff;
    color: #64748b;
    border: 1.5px solid #d1d5db;
}

.btn-wiz-prev:hover {
    border-color: #1e6b5e;
    color: #1e6b5e;
}

.btn-wiz-next {
    background: linear-gradient(135deg, #1e6b5e, #3a9b8f);
    color: #fff;
    box-shadow: 0 3px 12px rgba(30,107,94,.2);
}

.btn-wiz-next:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(30,107,94,.3);
}

.btn-wiz-next:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-wiz-submit {
    background: linear-gradient(135deg, #d4a574, #e8a35a);
    color: #fff;
    box-shadow: 0 3px 12px rgba(212,165,116,.3);
}

.btn-wiz-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(212,165,116,.4);
}


/* ── صفحة النجاح ──────────────────────────────────────────── */

.success-card {
    text-align: center;
    padding: 40px 24px;
    border: 2px solid #bbf7d0;
}

.success-icon {
    font-size: 56px;
    margin-bottom: 14px;
    animation: popIn .4s cubic-bezier(.68,-.55,.265,1.55);
}

@keyframes popIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-card h2 {
    font-size: 22px;
    font-weight: 900;
    color: #166534;
    margin: 0 0 10px;
}

.success-card p {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 16px;
    line-height: 1.7;
}

.track-link-box {
    display: flex;
    gap: 6px;
    max-width: 480px;
    margin: 0 auto 16px;
}

.track-input {
    flex: 1;
    padding: 10px 12px;
    border: 1.5px solid rgba(30,107,94,.15);
    border-radius: 8px;
    font-size: 12px;
    font-family: monospace;
    direction: ltr;
    text-align: left;
    color: #1e6b5e;
    background: #fafcfc;
}

.btn-copy {
    padding: 10px 14px;
    background: linear-gradient(135deg, #1e6b5e, #3a9b8f);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: transform .2s;
}

.btn-copy:hover {
    transform: scale(1.05);
}

.success-note {
    font-size: 12px !important;
    color: #94a3b8 !important;
    background: rgba(212,165,116,.05);
    padding: 8px 14px;
    border-radius: 8px;
    display: inline-block;
}

.btn-browse-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 24px;
    border: 1.5px solid rgba(30,107,94,.15);
    border-radius: 10px;
    color: #1e6b5e;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}

.btn-browse-more:hover {
    background: rgba(30,107,94,.04);
    border-color: #1e6b5e;
    color: #1e6b5e;
}


/* ================================================================
   صفحة المتابعة — Track
================================================================ */

.track-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.track-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 28px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 6px 32px rgba(0,0,0,.05);
    border: 1px solid #e8f0ee;
    text-align: center;
}

.track-status-icon {
    font-size: 56px;
    margin-bottom: 14px;
}

.track-title {
    font-size: 21px;
    font-weight: 800;
    color: #1a3530;
    margin: 0 0 6px;
}

.track-sub {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 20px;
}

.track-details {
    text-align: start;
    margin-top: 18px;
    padding: 16px;
    background: #fafcfc;
    border-radius: 12px;
    border: 1px solid #f0f5f3;
}

.track-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f0f5f3;
    font-size: 13px;
}

.track-row:last-child {
    border-bottom: none;
}

.track-label {
    color: #94a3b8;
    font-weight: 600;
}

.track-value {
    color: #1a3530;
    font-weight: 700;
}

.track-guest {
    font-size: 10px;
    color: #94a3b8;
}

.track-workers {
    margin-top: 14px;
    text-align: start;
}

.track-worker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #f0f5f3;
}

.track-worker-item:last-child {
    border-bottom: none;
}

.track-worker-item img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #1e6b5e;
    flex-shrink: 0;
}

.track-worker-info {
    flex: 1;
    min-width: 0;
}

.track-worker-name {
    font-weight: 700;
    color: #1a3530;
    font-size: 13px;
}

.track-worker-sched {
    font-size: 11px;
    color: #64748b;
}

.track-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #1e6b5e, #3a9b8f);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

.track-rejection {
    margin-top: 14px;
    padding: 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #991b1b;
    font-size: 13px;
    text-align: start;
}

.track-rejection strong {
    display: block;
    margin-bottom: 3px;
}

.track-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 10px 22px;
    border: 1.5px solid rgba(30,107,94,.15);
    border-radius: 10px;
    color: #1e6b5e;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    font-size: 13px;
}

.track-back-link:hover {
    background: rgba(30,107,94,.04);
    border-color: #1e6b5e;
    color: #1e6b5e;
}


/* ── Toast ──────────────────────────────────────────────────── */

.client-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    z-index: 99999;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 6px 24px rgba(0,0,0,.18);
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
}

.client-toast.show {
    transform: translateX(-50%) translateY(0);
}

.client-toast.success {
    background: linear-gradient(135deg, #1e6b5e, #3a9b8f);
}

.client-toast.error {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}


/* ── Loading ────────────────────────────────────────────────── */

.offers-loading {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
}

.offers-loading i {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}


/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {
    .offers-hero h1 { font-size: 24px; }
    .offers-hero { padding: 28px 16px; }
    .offers-grid { grid-template-columns: 1fr; gap: 18px; }
    .workers-select-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ws-worker-card { padding: 12px 8px; }
    .ws-worker-card img { width: 50px; height: 50px; }
    .ws-worker-card__name { font-size: 12px; }
    .schedule-fields { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .wiz-nav { flex-direction: column-reverse; }
    .btn-wiz-prev,
    .btn-wiz-next,
    .btn-wiz-submit { width: 100%; justify-content: center; }
    .track-link-box { flex-direction: column; }
    .track-card { padding: 28px 18px; }
    .page-header-back { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 420px) {
    .offers-page { padding: 16px 12px 60px; }
    .wiz-steps { gap: 0; }
    .wiz-step__num { width: 34px; height: 34px; font-size: 12px; }
    .wiz-step__label { font-size: 10px; }
    .panel-card { padding: 18px 14px; }
}