/* === Share Button in Sidebar === */
.btn-share {
    background-color: #ffffff !important;
    color: #22c55e !important;
    border: 1px solid #22c55e !important;
    font-weight: 600;
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s ease-in-out;
}

.btn-share:hover {
    background-color: #22c55e !important;
    color: #ffffff !important;
}


/* === Social Icons inside Share Modal === */
.share-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #22c55e;
    color: #22c55e;
    font-size: 18px;
    transition: 0.3s;
}

.share-icons a:hover {
    background-color: #22c55e;
    color: #ffffff;
}

.share-modal {
    border-radius: 14px;
}

.share-url-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.share-url-box input {
    flex: 1;
    padding: 10px 12px;
    border: none;
    background: #f8f8f8;
    font-size: 15px;
}

.copy-share-btn {
    background: black;
    color: white;
    padding: 10px 16px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.copy-share-btn:hover {
    opacity: .8;
}

.share-list {
    margin-top: 15px;
    display: grid;
    gap: 12px;
}

.share-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    padding: 10px 10px;
    background: #f8f8f8;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: .2s;
}

.share-item:hover {
    background: #e8e8e8;
}

.share-item i {
    font-size: 22px;
}


/* === Time left custom box (لو احتجته لاحقًا) === */
.time-left-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.time-left-box .count-item {
    background: linear-gradient(90deg, #00c97a, #02d48f);
    color: #fff;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}


/* ==========================================
   Mobile Fixed Donate Box
========================================== */
@media (max-width: 767px) {

    #mobileDonateBox {
        position: fixed !important;
        bottom: 0;
        left: 0;
        width: calc(100% - 30px);
        margin: 0 15px 15px 15px !important;
        z-index: 99999 !important;
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 -4px 25px rgba(0,0,0,0.18);
        padding: 15px 18px;
        transition: transform .25s ease, opacity .25s ease;
    }

    #mobileDonateBox .post-sidebar__card__body {
        padding: 0 !important;
    }

    #mobileDonateBox.hide-on-footer {
        transform: translateY(130%);
        opacity: 0;
        pointer-events: none;
    }

    .footer-area {
        position: relative;
    }
}


/* === Latest Donation (heart card) === */
.donor-card-heart {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f3faf5;
    border-radius: 10px;
    padding: 10px 12px;
}

.donor-card-heart .donor__icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #dcfce7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.donor-card-heart .donor__icon i {
    font-size: 20px;
    color: #22c55e;
}

.donor-card-heart .donor__name {
    display: block;
    font-weight: 600;
    color: #111827;
}

/* amount + date inline */
.donor__amount-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.donor__amount {
    font-weight: 700;
    color: #22c55e;
}

.donor__date {
    color: #4b5563;
    font-size: 13px;
}

.donor-card-heart .donor__date {
    display: block;
    margin-top: 2px;
}

/* === See all button === */
.btn-see-all-donations {
    background: transparent;
    border: none;
    color: #0f766e;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.btn-see-all-donations:hover {
    color: #115e59;
}


/* === Donations Modal === */
.donations-modal {
    border-radius: 18px;
    overflow: hidden;
}

.donations-modal .modal-header {
    border-bottom: 1px solid #e5e7eb;
}

/* header layout */
.donations-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.donations-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* title + count */
.donations-modal .modal-title {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.donations-count {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

.donations-modal-body {
    max-height: 420px;
    overflow-y: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* list & rows */
.donations-modal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.donation-row {
    display: flex;
    align-items: center;
    padding: 10px 4px;
    border-bottom: 1px solid #f3f4f6;
}

.donation-row:last-child {
    border-bottom: none;
}

.donation-row__icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #e0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.donation-row__icon i {
    color: #0ea5e9;
    font-size: 20px;
}

.donation-row__content {
    flex: 1;
    min-width: 0;
}

.donation-row__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.donation-row__name {
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.donation-row__amount {
    font-weight: 600;
    color: #16a34a;
}

.donation-row__meta {
    margin-top: 3px;
    font-size: 13px;
    color: #6b7280;
}

.donations-modal .modal-footer {
    border-top: 1px solid #e5e7eb;
}


/* Nice Scrollbar for donations modal */
.donations-modal-body {
    scrollbar-width: thin;
    scrollbar-color: #10b981 #f3f4f6;
}

.donations-modal-body::-webkit-scrollbar {
    width: 6px;
}

.donations-modal-body::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 999px;
}

.donations-modal-body::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 999px;
}

.donations-modal-body::-webkit-scrollbar-thumb:hover {
    background: #059669;
}


/* tabs (Newest / Top) */
.donations-tabs {
    display: flex;
    gap: 8px;
}

.donations-tab {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
}

.donations-tab.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Organizer avatar */
.organizer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.organizer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Campaign meta (category + date) - BLACK text */
.campaign-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 6px;
    color: #000; /* black */
}

.campaign-meta-row i {
    font-size: 18px;
    color: #000; /* black icon */
}


/* Donation Protected badge */
.donation-protected-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #16a34a;
    background: rgba(22, 163, 74, 0.08);
    font-size: 13px;
    font-weight: 600;
    color: #16a34a;
}

.donation-protected-badge i {
    font-size: 16px;
}

/* Center Report fundraiser */
.report-fundraiser-box {
    text-align: center;
    margin-top: 15px;
}

.report-link {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center; /* center icon + text */
    transition: 0.2s ease;
}

.report-link i {
    font-size: 18px;
    color: #000;
}

.report-link:hover {
    text-decoration: underline;
}

/* ===== Smart, safe place to give section ===== */

.safe-give-section {
    background: #f7fafc;
    padding: 80px 0;
    margin-top: 40px;
}

.safe-give-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.safe-give-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.safe-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    height: 100%;
}

.safe-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.safe-card-icon i {
    font-size: 22px;
    color: #16a34a;
}

.safe-card-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

.safe-card-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* ===== Simple Reactions UI ===== */

.cr-box {
    margin-top: 20px;
}

.cr-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.cr-emojis {
    display: flex;
    gap: 10px;
}

.cr-emoji-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
}

.cr-emoji-icon {
    font-size: 18px;
}

.cr-emoji-count {
    font-size: 13px;
}
.cr-box {
    text-align: center;
}

.cr-emojis {
    justify-content: center;
}
.cr-emoji-btn.cr-selected {
    background: #e0f2fe;
    border-color: #38bdf8;
}

/* Toast Notification */
#toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #16a34a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    z-index: 9999;
    display: none;
}

#toast.toast-show {
    display: block;
}

#toast.toast-error {
    background: #dc2626;
}

/* ==== QR MODAL LAYOUT ==== */
.qr-modal .modal-dialog {
    max-width: 430px;
    margin: 1.75rem auto;
}

.qr-modal .modal-content {
    border-radius: 22px;
    border: none;
    overflow: hidden;
}

.qr-modal .modal-header {
    border-bottom: none;
    padding: 16px 24px 0;
}

.qr-modal .modal-title {
    font-weight: 700;
    font-size: 18px;
}

.qr-modal .modal-body {
    padding: 10px 24px 24px;
}

/* ==== GREEN CARD BOX ==== */
.qr-box {
    background: #006f54;
    padding: 30px 20px;
    border-radius: 25px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    color: #fff;
}

/* Logo inside QR box */
.qr-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

.qr-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}



.qr-subtitle {
    margin-top: 5px;
    font-size: 14px;
    opacity: .9;
}

.qr-title {
    font-weight: 700;
    font-size: 18px;
    margin: 15px 0;
}

.qr-image {
    width: 260px;
    height: 260px;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
}


/* ==== SAVE BUTTON ==== */
.qr-save-btn {
    margin-top: 20px;
    border: none;
    border-radius: 999px;
    padding: 12px 24px;
    width: 100%;
    max-width: 260px;
    background: #10b981;            /* أخضر فاتح */
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.qr-save-btn:hover {
    background: #059669;
}

/* ==== موبايل ==== */
@media (max-width: 576px) {
    .qr-modal .modal-dialog {
        margin: 0.5rem;
    }

    .qr-box {
        padding: 24px 16px 22px;
        max-width: 100%;
    }

    .qr-image {
        width: 190px;
        height: 190px;
    }
}

.table td, .table th {
    vertical-align: middle !important;
}

.table td small {
    font-size: 11px;
}

table img, svg {
    display: inline-block;
}

/* === Short link cell in admin shortlinks table === */
.shortlink-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.shortlink-cell a {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

/* === Copy button style (green) === */
.copy-link-btn {
    background-color: #22c55e;
    color: #ffffff;
    border: 1px solid #22c55e;
    padding: 3px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.copy-link-btn:hover {
    background-color: #16a34a;
    border-color: #16a34a;
}

/* خصيصًا لكارد الفلتر حق الشورت لينكات */
.shortlinks-filter-card {
    min-height: auto !important;
    height: auto !important;
}

.shortlinks-filter-card .card-body {
    min-height: auto !important;
    height: auto !important;
    padding-top: 14px;
    padding-bottom: 10px;
    display: block !important; /* يمنع space-between لو الكارد معمول flex */
}

#shortLinksFilterForm .row.g-3 {
    row-gap: 10px;
}

/* زر Reset يكون واضح */
.shortlinks-filter-card .btn-outline-secondary {
    border-color: #cbd5e1;
    color: #1f2933;
    background-color: #ffffff;
}

.shortlinks-filter-card .btn-outline-secondary:hover {
    background-color: #e5e7eb;
}

.btn-reset-shortlinks {
    background-color: #ca2222 !important;
    color: #111827 !important;        /* نص غامق */
    border: 1px solid #cbd5e1 !important;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.btn-reset-shortlinks:hover {
    background-color: #ff4848 !important;
    color: #111827 !important;
}

/* ===== Shortlinks summary small bar ===== */
.shortlinks-summary {
    min-height: auto !important;
    height: auto !important;
}

.shortlinks-summary .card-body {
    min-height: auto !important;
    height: auto !important;
    padding-top: 8px;
    padding-bottom: 8px;
}

.shortlinks-summary .summary-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.shortlinks-summary .summary-value {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.btn-analysis {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #4f46e5;   /* لون بنفسجي رايق */
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease-in-out;
}

.btn-analysis:hover {
    background-color: #4338ca;   /* أغمق شوي عند التحويم */
    color: #ffffff;
    transform: translateY(-1px); /* حركة خفيفة */
}

.btn-analysis i {
    font-size: 16px;
}

.btn-back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;      /* لون خفيف يناسب الهيدر */
    color: #4b5563 !important; /* رمادي غامق */
    border: 1px solid #d1d5db;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}

.btn-back-to-list:hover {
    background: #e5e7eb;
    border-color: #c4c4c4;
    color: #111 !important;
}

.btn-back-to-list i {
    font-size: 16px;
}

/* ===== Analytics mini tables (Top referrers / browsers / OS / devices) ===== */

.analytics-mini-table {
    width: 100%;
    border-collapse: collapse;
}

.analytics-mini-table tr + tr td {
    border-top: 1px solid #e5e7eb;   /* خط فاصل خفيف بين الصفوف */
}

.analytics-mini-table td {
    padding: 8px 12px;
    font-size: 14px;
    vertical-align: middle;
}

/* العمود الأول (النص) أوسع */
.analytics-mini-table td:first-child {
    width: 70%;
    color: #111827;
}

/* العمود الثاني (العدد) يمين وبعرض ثابت */
.analytics-mini-table td:last-child {
    width: 30%;
    text-align: right;
    white-space: nowrap;
    font-weight: 600;
    color: #4b5563;
}

/* ===== Analytics cards layout ===== */
.analytics-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.analytics-card .card-header {
    padding: 10px 16px;
}

.analytics-card .card-body {
    padding: 10px 16px 12px;
}

/* ===== Mini tables inside analytics cards ===== */
.analytics-mini-table {
    width: 100%;
    border-collapse: collapse;
}

.analytics-mini-table tr + tr td {
    border-top: 1px solid #e5e7eb;   /* خط فاصل خفيف بين الصفوف */
}

.analytics-mini-table td {
    padding: 8px 10px;
    font-size: 14px;
    vertical-align: middle;
}

/* العمود الأول (النص) أوسع */
.analytics-mini-table td:first-child {
    width: 70%;
    color: #111827;
}

/* العمود الثاني (العدد) يمين وبعرض ثابت */
.analytics-mini-table td:last-child {
    width: 30%;
    text-align: right;
    white-space: nowrap;
    font-weight: 600;
    color: #4b5563;
}


.user-shortlink-text {
    display: inline-block;
    max-width: 160px;      /* عدّلها لو حاب تكبر/تصغر */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* جدول الشورت لينكات عند المستخدم */
#shortLinksTable {
    min-width: 650px; /* يخلق سكرول أفقي بدل ما يضغط الأعمدة */
}


/* =====================================================
   CKEditor – Editor (dashboard/edit page only)
===================================================== */
.ck-content img{
    display:block;
    margin:20px auto;
    max-width:100%;
    height:auto;
    border-radius:8px;
}
.ck-content img + img{
    margin-top:30px;
}


/* =====================================================
   Campaign show - center story images ALWAYS
===================================================== */
.donation-details .donation-details__desc img{
    display: block !important;
    margin: 28px auto !important;
    width: 100% !important;
    max-width: 750px !important;
    height: auto !important;
    border-radius: 18px !important;
}

.donation-details .donation-details__desc img + img{
    margin-top: 36px !important;
}

/* Hide Link button from CKEditor toolbar */
.ck.ck-toolbar button[data-cke-tooltip-text^="Link"]{
  display: none !important;
}

/* Hide Link URL balloon UI */
.ck.ck-balloon-panel .ck-link-form,
.ck.ck-balloon-panel .ck-link-actions{
  display: none !important;
}


/* CKEditor content safety */
.ck-content {
  overflow-wrap: anywhere;
}

/* images */
.ck-content img {
  max-width: 100%;
  height: auto;
}

/* Wrapper للفيديو في صفحة الحملة */
.donation-details .donation-details__desc .video-embed{
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 16px auto;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.donation-details .donation-details__desc .video-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Payment methods UI ===== */
.payment-methods{
  border:1px solid #e5e7eb;
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}

/* item */
.payment-method{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  cursor:pointer;
  border-bottom:1px solid #eef2f7;
  transition:background .2s ease, box-shadow .2s ease, transform .15s ease;
}

.payment-method:last-child{ border-bottom:none; }

/* hover */
.payment-method:hover{
  background:#f9fafb;
}

/* radio */
.payment-method input[type="radio"]{
  width:18px;
  height:18px;
  accent-color:#22c55e;
  flex:0 0 18px;
}

/* icon box (bigger + crop) */
.pm-icon{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.pm-icon img{
  width:100%;
  height:100%;
  object-fit:contain;   /* ممتاز لـ SVG */
  display:block;
}


/* fallback dot */
.pm-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#22c55e;
}

/* name */
.pm-name{
  font-weight:600;
  font-size:15px;
  color:#111827;
}

/* ===== Selected state ===== */
.payment-method:has(input:checked){
  background:#ecfdf5;
}

.payment-method:has(input:checked) .pm-icon img{
  transform:scale(1.06);
}

.payment-method:has(input:checked) .pm-name{
  color:#065f46;
}

/* smooth */
.payment-method *,
.payment-method img{
  transition:all .15s ease;
}

/* ===== How it works (NO images) ===== */
.how-works__title{
  font-weight:900;
  font-size:44px;
  line-height:1.15;
  margin-bottom:10px;
}
.how-works__subtitle{
  color:#6b7280;
  font-size:16px;
  margin:0 auto;
  max-width:720px;
}

@media(max-width:991px){
  .how-works__title{font-size:32px}
}

/* Card */
.how-works__card{
  position:relative;
  border-radius:22px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  box-shadow:0 18px 60px rgba(0,0,0,.08);
  overflow:hidden;
}

/* Top area (progress + pause) */
.how-works__top{
  position:relative;
  padding:18px 18px 0 18px;
}

.how-works__progress{
  height:10px;
  background:#eef2f7;
  border-radius:999px;
  overflow:hidden;
}
.how-works__bar{
  display:block;
  height:100%;
  width:0%;
  background:linear-gradient(90deg, #16a34a, #22c55e);
}

/* Pause button */
.how-works__pause{
  position:absolute;
  top:12px;
  right:12px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Steps list */
.how-works__steps{
  list-style:none;
  margin:0;
  padding:22px;
}

/* Step row */
.how-works__step{
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:18px 14px;
  border-radius:16px;
  transition:all .2s ease;
  position:relative;
}

.how-works__step + .how-works__step{ margin-top:10px; }

.how-works__dot{
  margin-top:8px;
  width:18px;
  height:18px;
  border-radius:999px;
  border:2px solid #d1d5db;
  background:#fff;
  flex:0 0 18px;
  cursor:pointer;
}

/* Content */
.how-works__content h3{
  margin:0 0 6px;
  font-weight:900;
  font-size:20px;
}
.how-works__content p{
  margin:0;
  color:#6b7280;
}

/* Badge */
.how-works__badge{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  color:#065f46;
  background:#dcfce7;
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
}

/* Active style */
.how-works__step.is-active{
  background:linear-gradient(180deg, rgba(34,197,94,.12), rgba(34,197,94,.05));
  border:1px solid rgba(34,197,94,.25);
}
.how-works__step.is-active .how-works__dot{
  border-color:#16a34a;
  background:#16a34a;
}

.about__desc{
  color: #6b7280;
  font-size: 16px;
  line-height: 1.9;
  margin: 18px 0 22px;
}

.about__desc br{
  display:block;
  margin-bottom: 10px;
}

.tip-slider-wrap{
  position: relative;
  padding-top: 28px; /* مساحة للفقاعة فوق الشريط */
}

.tip-slider-float{
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
}

