/* ── Save for later (heart button) ──────────────────────────────────── */
.tpkg-heart-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid #e3e3e3;
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: border-color .15s, color .15s, background .15s;
    font-family: inherit;
    line-height: 1;
}
.tpkg-heart-btn__icon {
    width: 16px; height: 16px; flex-shrink: 0;
    fill: none; stroke: currentColor; stroke-width: 2;
    transition: fill .15s, stroke .15s;
}
.tpkg-heart-btn.is-saved { border-color: #f3b6c4; background: #fff3f6; color: #d63a63; }
.tpkg-heart-btn.is-saved .tpkg-heart-btn__icon { fill: #d63a63; stroke: #d63a63; }
/* :hover rules declared AFTER .is-saved so they win the specificity tie in
   both the unsaved and saved states — text + icon always go white on hover. */
.tpkg-heart-btn:hover,
.tpkg-heart-btn.is-saved:hover { background: #d63a63; border-color: #d63a63; color: #fff; }
.tpkg-heart-btn:hover .tpkg-heart-btn__icon,
.tpkg-heart-btn.is-saved:hover .tpkg-heart-btn__icon { stroke: #fff; }
.tpkg-heart-btn.is-saved:hover .tpkg-heart-btn__icon { fill: #fff; }
.tpkg-heart-btn:disabled { opacity: .6; cursor: default; }

/* Header placement, single package page */
.pkg-meta .tpkg-heart-btn { margin-left: auto; }

/* Card placement, grid/carousel */
.thimze-package-card { position: relative; }
.thimze-package-card .tpkg-heart-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 7px;
    border-radius: 50%;
    z-index: 2;
}
.thimze-package-card .tpkg-heart-btn__label { display: none; }

/* ── My Account: Saved Packages ─────────────────────────────────────── */
.thimze-wishlist__empty { color: #777; margin-bottom: 16px; }
.thimze-wishlist__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}
.thimze-wishlist__card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 18px;
    background: #fff;
}
.thimze-wishlist__card h4 { margin: 0 0 6px; font-size: 15.5px; }
.thimze-wishlist__badge {
    display: inline-block;
    background: #e6f9fd;
    color: #0e8faf;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.thimze-wishlist__price { font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.thimze-wishlist__saved-at { font-size: 12px; color: #999; margin: 0 0 14px; }
.thimze-wishlist__actions { display: flex; align-items: center; gap: 10px; }
.thimze-wishlist__remove {
    background: none; border: none; color: #b3312d;
    font-size: 12.5px; cursor: pointer; font-family: inherit; text-decoration: underline;
}

/* ── Post-purchase feedback prompt ──────────────────────────────────── */
.tpkg-feedback {
    display: flex;
    gap: 16px;
    max-width: 640px;
    margin: 32px auto 0;
    padding: 22px 24px;
    background: #f7fbfd;
    border: 1px solid #dbeff6;
    border-radius: 12px;
}
.tpkg-feedback__icon { font-size: 26px; line-height: 1; }
.tpkg-feedback__body { flex: 1; }
.tpkg-feedback__body h3 { margin: 0 0 6px; font-size: 16.5px; color: #1a1a2e; }
.tpkg-feedback__body p { margin: 0 0 16px; font-size: 13.5px; color: #666; line-height: 1.6; }
.tpkg-feedback__form { margin-bottom: 14px; }
.tpkg-feedback__form label { display: block; font-size: 12.5px; font-weight: 700; color: #444; margin-bottom: 6px; }
.tpkg-feedback__form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13.5px;
    font-family: inherit;
    resize: vertical;
    box-sizing: border-box;
}
.tpkg-feedback__form textarea:focus { outline: none; border-color: #1ac4f3; box-shadow: 0 0 0 3px rgba(26,196,243,.12); }
.tpkg-feedback__row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.tpkg-feedback__status { font-size: 12.5px; color: #0d8f52; font-weight: 600; }
