/* ===========================================================================
   member-portal.css — üye portalı + rezervasyon akışı ortak yüzeyi
   PM fazı (INT-002) mock pageview'lerinin paylaşılan stil katmanı.
   Sayfa içi <style> blokları BURAYA taşındı; sayfalarda inline stil bırakılmaz.
   =========================================================================== */

:root {
    --mp-accent: #2b9565;
    --mp-accent-soft: rgba(43, 149, 101, 0.08);
    --mp-accent-dark: #1f6f4b;
    --mp-ink: #21301f;
    --mp-muted: #5c665c;
    --mp-line: #e6ebe6;
    --mp-radius: 12px;
}

/* ---------------------------------------------------------------------------
   0) Tema uyumlu butonlar
       Bootstrap'in .btn-outline-* butonları köşeli (border-radius ~6px) ve
       tema paletinin dışında kalıyordu; th-btn ise 48px pill. Aynı ekranda
       yan yana durunca iki ayrı tasarım dili görünüyor. Bu aile th-btn'in
       geometrisini (pill + aynı yükseklik ritmi) ikincil aksiyonlara taşır.
   --------------------------------------------------------------------------- */

.mp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-transform: capitalize;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 48px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .3s 0s ease-out;
    white-space: nowrap;
}

.mp-btn:focus-visible {
    outline: 2px solid var(--mp-accent);
    outline-offset: 2px;
}

/* İkincil aksiyon — çerçeveli, tema yeşili */
.mp-btn--ghost {
    background-color: transparent;
    border-color: var(--mp-line);
    color: var(--mp-muted);
}

.mp-btn--ghost:hover {
    border-color: var(--mp-accent);
    background-color: var(--mp-accent-soft);
    color: var(--mp-accent);
}

/* Yıkıcı aksiyon */
.mp-btn--danger {
    background-color: transparent;
    border-color: #f0c9cb;
    color: #b4232a;
}

.mp-btn--danger:hover {
    background-color: rgba(180, 35, 42, .07);
    border-color: #b4232a;
    color: #b4232a;
}

/* Küçük boy — kart içi ve tablo aksiyonları */
.mp-btn--sm {
    font-size: 14px;
    padding: 9px 18px;
}

.mp-btn--icon {
    padding: 9px 12px;
}

.mp-btn--block {
    width: 100%;
}

.mp-btn:disabled,
.mp-btn.is-disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}

/* th-btn'in büyük dolgusu form içi ikincil sıralarda çok yer kaplıyor;
   akış butonlarını aynı yükseklik ritmine indir. */
.mp-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.mp-actions .th-btn {
    padding: 14px 32px;
    font-size: 16px;
}

@media (max-width: 575.98px) {
    .mp-actions {
        gap: 10px;
    }

    .mp-actions > .mp-btn,
    .mp-actions > .th-btn {
        flex: 1 1 100%;
    }
}

/* ---------------------------------------------------------------------------
   0b) Onay kutuları
       Bootstrap .form-check satırları tema tipografisiyle birbirine yapışık
       görünüyordu (satır yüksekliği büyük, dış boşluk küçük). Onay metinleri
       sözleşme bağlayıcı olduğu için tıklama alanı ve nefes payı arttırıldı.
   --------------------------------------------------------------------------- */

.mp-consent {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 4px 0 28px;
}

.mp-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--mp-line);
    border-radius: 10px;
    background: #fbfcfb;
    transition: border-color .15s ease, background-color .15s ease;
}

.mp-check:hover {
    border-color: var(--mp-accent);
    background: var(--mp-accent-soft);
}

.mp-check__input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: 1px 0 0;
    accent-color: var(--mp-accent);
    cursor: pointer;
}

.mp-check__label {
    flex: 1 1 auto;
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--mp-ink);
    cursor: pointer;
}

.mp-check__label a {
    color: var(--mp-accent);
    text-decoration: underline;
}

.mp-check__label .req {
    color: #b4232a;
}

/* Doğrulama hatası olan onay satırı */
.mp-check.has-error {
    border-color: #e8b4b7;
    background: #fdf6f6;
}

.mp-check__error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #b4232a;
}

/* ---------------------------------------------------------------------------
   1) Üye portalı yan menüsü (_MemberSidebar.cshtml)
   --------------------------------------------------------------------------- */

.member-shell {
    --bs-gutter-x: 1.5rem;
}

.member-sidebar {
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    background: #fff;
    overflow: hidden;
}

.member-sidebar__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 18px 16px;
    border-bottom: 1px solid var(--mp-line);
    background: linear-gradient(180deg, var(--mp-accent-soft), transparent);
}

.member-sidebar__avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: var(--mp-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.member-sidebar__name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--mp-ink);
    line-height: 1.3;
    word-break: break-word;
}

.member-sidebar__role {
    font-size: 12px;
    color: var(--mp-muted);
}

.member-nav {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.member-nav__group {
    padding: 14px 12px 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #9aa79a;
}

.member-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #495057;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease;
}

.member-nav__link i {
    width: 18px;
    text-align: center;
    font-size: 14px;
    flex: 0 0 18px;
}

.member-nav__link:hover,
.member-nav__link:focus-visible {
    background-color: var(--mp-accent-soft);
    color: var(--mp-accent);
}

.member-nav__link.is-active {
    background-color: var(--mp-accent);
    color: #fff;
}

.member-nav__link.is-active:hover {
    background-color: var(--mp-accent-dark);
    color: #fff;
}

.member-nav__link.is-disabled {
    color: #adb5bd;
    pointer-events: none;
    cursor: default;
}

.member-nav__badge {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    background: #e5484d;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.member-nav__link.is-active .member-nav__badge {
    background: #fff;
    color: var(--mp-accent);
}

.member-nav__soon {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #9aa79a;
    border: 1px solid var(--mp-line);
    border-radius: 4px;
    padding: 1px 5px;
}

.member-sidebar__logout {
    border-top: 1px solid var(--mp-line);
    padding: 10px;
    margin-top: 4px;
}

.member-sidebar__logout button {
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: #b4232a;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color .15s ease;
}

.member-sidebar__logout button:hover {
    background: rgba(180, 35, 42, .08);
}

/* Mobilde yan menü yatay kaydırılabilir sekme şeridine döner */
@media (max-width: 991.98px) {
    .member-sidebar__head {
        display: none;
    }

    .member-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 6px;
        padding: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .member-nav::-webkit-scrollbar {
        display: none;
    }

    .member-nav__group,
    .member-nav__soon {
        display: none;
    }

    .member-nav__link {
        white-space: nowrap;
        flex: 0 0 auto;
        border: 1px solid var(--mp-line);
    }

    .member-sidebar__logout {
        display: none;
    }
}

/* ---------------------------------------------------------------------------
   2) Portal içerik kartları / boş durum / zaman çizelgesi
   --------------------------------------------------------------------------- */

.mp-card {
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    background: #fff;
}

.mp-card + .mp-card {
    margin-top: 16px;
}

.mp-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.mp-page-head h2 {
    margin: 0;
    font-size: 22px;
    color: var(--mp-ink);
}

.mp-empty {
    border: 1px dashed var(--mp-line);
    border-radius: var(--mp-radius);
    background: #fbfcfb;
    text-align: center;
    padding: 48px 24px;
}

.mp-empty__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--mp-accent-soft);
    color: var(--mp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.mp-empty h4 {
    font-size: 18px;
    color: var(--mp-ink);
    margin-bottom: 6px;
}

.mp-empty p {
    color: var(--mp-muted);
    margin-bottom: 20px;
}

.mp-timeline {
    position: relative;
    padding-left: 6px;
}

.mp-timeline__item {
    position: relative;
    display: flex;
    gap: 14px;
    padding-bottom: 18px;
}

.mp-timeline__item:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 26px;
    bottom: 0;
    width: 2px;
    background: var(--mp-line);
}

.mp-timeline__dot {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: #f1f4f1;
    color: #9aa79a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.mp-timeline__item.is-current .mp-timeline__dot {
    background: var(--mp-accent);
    color: #fff;
}

.mp-timeline__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--mp-ink);
}

.mp-timeline__date {
    font-size: 12px;
    color: var(--mp-muted);
}

/* Mock/geliştirme notu — canlıda gösterilmez */
.mp-mocknote {
    border: 1px dashed #c9d6f0;
    background: #f5f8ff;
    color: #35527f;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* ---------------------------------------------------------------------------
   3) Rezervasyon akışı — adım göstergesi (_BookingSteps.cshtml)
   --------------------------------------------------------------------------- */

.booking-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 28px;
    counter-reset: bstep;
}

.booking-steps__item {
    flex: 1 1 0;
    text-align: center;
    position: relative;
    min-width: 0;
}

.booking-steps__item::before,
.booking-steps__item::after {
    content: "";
    position: absolute;
    top: 17px;
    height: 2px;
    background: var(--mp-line);
    width: 50%;
}

.booking-steps__item::before {
    left: 0;
}

.booking-steps__item::after {
    right: 0;
}

.booking-steps__item:first-child::before,
.booking-steps__item:last-child::after {
    display: none;
}

.booking-steps__item.is-done::before,
.booking-steps__item.is-done::after,
.booking-steps__item.is-current::before {
    background: var(--mp-accent);
}

.booking-steps__dot {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--mp-line);
    color: #9aa79a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.booking-steps__item.is-current .booking-steps__dot {
    border-color: var(--mp-accent);
    background: var(--mp-accent);
    color: #fff;
    box-shadow: 0 0 0 4px var(--mp-accent-soft);
}

.booking-steps__item.is-done .booking-steps__dot {
    border-color: var(--mp-accent);
    background: #fff;
    color: var(--mp-accent);
}

.booking-steps__label {
    display: block;
    font-size: 13px;
    color: var(--mp-muted);
    padding: 0 6px;
    line-height: 1.35;
}

.booking-steps__item.is-current .booking-steps__label {
    color: var(--mp-ink);
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .booking-steps__label {
        font-size: 11px;
    }

    .booking-steps__dot {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .booking-steps__item::before,
    .booking-steps__item::after {
        top: 14px;
    }
}

/* ---------------------------------------------------------------------------
   4) Rezervasyon modu rozetleri (D-019 çift modlu akış)
       Talep = sarı/amber · Online = yeşil. Tek yer, tek dil.
   --------------------------------------------------------------------------- */

.mode-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.mode-badge--online {
    background: #e8f7ef;
    color: #17603f;
    border: 1px solid #bfe6d2;
}

.mode-badge--request {
    background: #fdf5e0;
    color: #7a5a12;
    border: 1px solid #f0dcab;
}

/* Reddedilmiş — değerlendirme denetiminde kullanılıyor. Sarı "bekliyor" ile
   karışmasın diye kırmızı: bekleyen kayıt yayımlanabilir, reddedilen kayıt
   yayımlanmayacak; ikisi aynı renkte olsaydı yazar farkı göremezdi. */
.mode-badge--rejected {
    background: #fdecec;
    color: #8a1c1c;
    border: 1px solid #f3c4c4;
}

/* Nötr rozet — durum değil, ETİKET taşır (fatura tipi, kapanmış konuşma,
   rezervasyon kodu). Renksiz duruyor ki yeşil/sarı rozetlerin "bu bir durum"
   anlamı seyrelmesin; modifiersiz .mode-badge ise yalnız iskelet olduğu için
   ekranda görünmüyordu. */
.mode-badge--neutral {
    background: #f1f4f1;
    color: var(--mp-muted);
    border: 1px solid var(--mp-line);
}

/* Pitch kartları */
.pitch-card {
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.pitch-card:hover {
    border-color: var(--mp-accent);
    box-shadow: 0 8px 24px rgba(33, 48, 31, .07);
    transform: translateY(-2px);
}

.pitch-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.pitch-card__title {
    font-size: 17px;
    margin: 0;
    color: var(--mp-ink);
}

.pitch-card__specs {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.pitch-card__specs li {
    min-width: 0;
}

.pitch-card__specs dt,
.pitch-card__spec-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #9aa79a;
    margin-bottom: 1px;
}

.pitch-card__spec-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--mp-ink);
    word-break: break-word;
}

.pitch-card__foot {
    margin-top: auto;
    padding-top: 18px;
}

/* Filtre çipleri */
.filter-chip {
    border: 1px solid var(--mp-line);
    background: #fff;
    border-radius: 999px;
    padding: 7px 16px;
    font-size: 13px;
    color: var(--mp-muted);
    cursor: pointer;
    transition: all .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-chip:hover {
    border-color: var(--mp-accent);
    color: var(--mp-accent);
}

.filter-chip.is-active {
    background: var(--mp-accent);
    border-color: var(--mp-accent);
    color: #fff;
}

.filter-chip__count {
    font-size: 11px;
    opacity: .75;
}

/* Özet paneli (sağ kolon, sticky) */
.booking-aside {
    position: sticky;
    top: 100px;
}

.booking-aside__row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px dashed var(--mp-line);
}

.booking-aside__row:last-of-type {
    border-bottom: 0;
}

.booking-aside__row dt {
    color: var(--mp-muted);
    font-weight: 400;
    margin: 0;
}

.booking-aside__row dd {
    margin: 0;
    text-align: right;
    font-weight: 600;
    color: var(--mp-ink);
    word-break: break-word;
}

@media (max-width: 991.98px) {
    .booking-aside {
        position: static;
    }
}

/* PNR kutusu — onay ve talep ekranlarında ortak */
.pnr-box {
    max-width: 420px;
    margin: 0 auto 24px;
    padding: 22px 24px;
    border-radius: var(--mp-radius);
    border: 2px dashed #bfe6d2;
    background: #f4fbf7;
}

.pnr-box--request {
    border-color: #f0dcab;
    background: #fffdf4;
}

.pnr-box__label {
    display: block;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--mp-muted);
    margin-bottom: 8px;
}

.pnr-box__code {
    margin: 0;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 26px;
    letter-spacing: 3px;
    color: #15803d;
    word-break: break-all;
}

.pnr-box--request .pnr-box__code {
    color: #a2650b;
}

.result-hero {
    text-align: center;
    padding: 44px 24px;
}

.result-hero__icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background: #e8f7ef;
    color: #17603f;
}

.result-hero__icon--request {
    background: #fdf5e0;
    color: #a2650b;
}

.result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 26px;
}

/* ---------------------------------------------------------------------------
   5) Mesajlaşma
   --------------------------------------------------------------------------- */

.msg-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    background: #fff;
    text-decoration: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.msg-item + .msg-item {
    margin-top: 10px;
}

.msg-item:hover {
    border-color: var(--mp-accent);
    box-shadow: 0 6px 18px rgba(33, 48, 31, .06);
}

.msg-item.is-unread {
    border-left: 3px solid var(--mp-accent);
    background: #fbfefc;
}

.msg-item__avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 12px;
    background: var(--mp-accent-soft);
    color: var(--mp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.msg-item__body {
    min-width: 0;
    flex: 1 1 auto;
}

.msg-item__title {
    margin: 0 0 3px;
    font-size: 15px;
    color: var(--mp-ink);
}

.msg-item.is-unread .msg-item__title {
    font-weight: 700;
}

.msg-item__preview {
    display: block;
    font-size: 13px;
    color: var(--mp-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.msg-item__meta {
    text-align: right;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.msg-item__time {
    font-size: 12px;
    color: var(--mp-muted);
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .msg-item__preview {
        white-space: normal;
    }
}

/* Konuşma balonları */
.msg-thread {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
}

.msg-bubble {
    max-width: 78%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
}

.msg-bubble--in {
    align-self: flex-start;
    background: #f1f4f1;
    color: var(--mp-ink);
    border-bottom-left-radius: 4px;
}

.msg-bubble--out {
    align-self: flex-end;
    background: var(--mp-accent);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.msg-bubble__meta {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    opacity: .75;
}

@media (max-width: 575.98px) {
    .msg-bubble {
        max-width: 90%;
    }
}

/* Başlık içindeki bağlantı (rezervasyon kartındaki kamp alanı adı gibi):
   başlık görünümünü bozmaz, yalnız üzerine gelince bağlantı olduğunu söyler. */
.mp-link {
    color: inherit;
    text-decoration: none;
}

.mp-link:hover,
.mp-link:focus-visible {
    color: var(--mp-accent);
    text-decoration: underline;
}

/* Mesajın alıcısı — yeni mesaj/soru ekranındaki SABİT kamp alanı kartı.
   Eskiden burada bir "kamp alanı seç" kutusu vardı; alıcı artık adresten
   geldiği için seçilmez, gösterilir. */
.msg-target {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius);
    background: var(--mp-accent-soft);
}

.msg-target__img {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    border-radius: 12px;
    object-fit: cover;
    background: #fff;
}

.msg-target__label {
    display: block;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--mp-muted);
}

.msg-target__name {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--mp-ink);
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.msg-target__name:hover {
    color: var(--mp-accent);
}

.msg-target__meta {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: var(--mp-muted);
}

/* ==========================================================================
   Favori kalbi — LİSTE KARTI varyantı (P5-T2)
   --------------------------------------------------------------------------
   Temel `.bw-favorite` kuralları `campsite-detail.css`'te ve o dosya YALNIZ
   kamp alanı detayında yükleniyor. Düğme artık listelerde ve anasayfa
   şeritlerinde de render edildiği için taban stiller burada tekrar tanımlı:
   `member-portal.css` layout'tan global olarak yükleniyor.

   Kart varyantı görselin üstünde yüzer; bu yüzden koyu zemin varsaymak yerine
   kendi beyaz pastilini taşır (kart görselleri açık da olabiliyor).
   ========================================================================== */
.bw-favorite--card {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .92);
    color: #6b7280;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    transition: background .15s ease, color .15s ease, transform .15s ease;
    text-decoration: none;
    margin-left: 0;
}

.bw-favorite--card:hover { background: #fff; color: #ff5a5f; transform: scale(1.06); }
.bw-favorite--card:active { transform: scale(.96); }
.bw-favorite--card.is-favorite { color: #ff5a5f; border-color: rgba(255, 90, 95, .45); }
.bw-favorite--card[data-busy="1"] { opacity: .6; pointer-events: none; }

/* Düğme mutlak konumlandığı için kapsayıcının konumlanmış olması şart;
   aksi hâlde kalp sayfanın köşesine kaçar. */
.tour-box_img,
.package-card3 { position: relative; }
