/* ============================================================
   ELITE TOURS — Wishlist Styles
   ============================================================ */

/* ── Heart Button (on cards) ───────────────────────────────── */
.et-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.et-heart:hover {
    background: rgba(0,0,0,0.5);
    transform: scale(1.1);
}
.et-heart svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    transition: fill 0.3s, stroke 0.3s;
}
.et-heart.is-wishlisted svg {
    fill: #e53935;
    stroke: #e53935;
}
.et-heart.et-heart-pop {
    animation: et-heart-pop 0.4s ease;
}
@keyframes et-heart-pop {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.3); }
    60%  { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* ── Nav Wishlist Link ─────────────────────────────────────── */
.et-nav-wishlist {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.et-nav-wishlist svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    stroke-width: 1.8;
    transition: stroke 0.4s;
}
.et-header.is-scrolled .et-nav-wishlist svg {
    stroke: var(--et-grey-dark);
}
.et-nav-wishlist:hover svg {
    stroke: var(--et-gold);
}
.et-wishlist-count {
    position: absolute;
    bottom: -4px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}
.et-wishlist-count:empty,
.et-wishlist-count[data-count="0"] {
    display: none;
}

/* ── Wishlist Page ─────────────────────────────────────────── */
.et-wishlist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.et-wishlist-card {
    display: flex;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}
.et-wishlist-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.et-wishlist-card__img {
    width: 160px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}
.et-wishlist-card__body {
    flex: 1;
    padding: 16px;
    min-width: 0;
}
.et-wishlist-card__title {
    font-family: var(--et-font-heading);
    font-size: 17px;
    font-weight: 400;
    color: var(--et-black);
    margin-bottom: 4px;
}
.et-wishlist-card__type {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--et-green);
    margin-bottom: 6px;
}
.et-wishlist-card__desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--et-grey);
}
.et-wishlist-card__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    flex-shrink: 0;
}
.et-wishlist-card__remove {
    background: none;
    border: none;
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}
.et-wishlist-card__remove:hover { color: #e53935; }

.et-wishlist-empty {
    text-align: center;
    padding: 60px 20px;
}
.et-wishlist-empty__icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.3;
}
.et-wishlist-empty__text {
    font-size: 16px;
    color: var(--et-grey);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .et-wishlist-grid { grid-template-columns: 1fr; }
    .et-wishlist-card__img { width: 100px; }
    .et-heart { width: 32px; height: 32px; top: 8px; right: 8px; }
    .et-heart svg { width: 15px; height: 15px; }
}
