/* =============================================
   Simple Wishlist — swl.css
   ============================================= */

/* ── Heart / Save button ── */
.swl-btn {
    display: inline-flex;
    align-items: center;
	justify-content:center;
    width:32px;
	height:32px;
    padding:0px !important;
    border: 1px solid #F6F1EC33 !Important;
    border-radius: 50px;
    background: #F6F1EC33 !Important;
    color: #374151;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.swl-btn span{
	display:none;
}
.swl-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.swl-btn.swl-active {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
}

.swl-btn.swl-active:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.swl-btn.swl-loading {
    opacity: 0.6;
    pointer-events: none;
}

.swl-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    transition: fill 0.22s ease;
}

.swl-btn.swl-active .swl-icon {
    fill: #fff;
    stroke: #fff;
}

.tour-price span {
    display: block;
    color: #303030;
    font-weight: 400;
}

.tour-price {
    color: #0F884D;
    font-weight: 600;
    text-align: center;
}

/* ── Count badge ── */
.swl-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.swl-count-badge.swl-pop {
    transform: scale(1.35);
}

/* ── Wishlist page ── */
#swl-page-wrap {
    min-height: 220px;
}

.swl-loading {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
    font-size: 0.95rem;
}

.swl-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 1.05rem;
}

/* ── Cards grid ── */
.swl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.swl-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 12px;
    position: relative;
}

	
.swl-card.swl-removing {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.swl-card > img {
    border-radius: 12px;
}

.swl-card-body {
}

.swl-remove {
    position: absolute;
    right: 21px;
    top: 27px;
    padding: 0 !important;
    background-color: #F6F1EC33 !important;
    border: 1px solid #F6F1EC33 !important;
}
.swl-cat {
    font-size: 16px;
    background-color: #ef4444;
    color: #fff;
    position: absolute;
    top: 27px;
    left: 12px;
    padding: 3px 12px;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}

.swl-card-middle {
    margin-block: 14px 21px;
	display:flex;
	align-items:center;
	justify-content:space-between;
}

.swl-card-middle a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0F884D;
    border-radius: 48px;
}

.swl-card-middle a svg path {
    stroke: #fff;
}

.tour-address {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 18px;
}

.tour-duration {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #EB3232;
    font-weight: 500;
}

.swl-card img {
    border-radius: 12px !important;
    max-height: 220px;
    object-fit: cover;
}

.swl-card-body h3 {
    font-size: clamp(1.125rem, 0.8401rem + 0.5944vw, 1.375rem) !Important;
    color: #303030 !Important;
    width: 100%;
    max-width: calc(100% - 44px);
    margin: 0;
}

.swl-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
}

/* ── Remove (×) button inside card ── */
.swl-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1.5px solid #e5e7eb;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
    padding: 0;
}

.swl-remove:hover {
    background: #fef2f2;
    border-color: #ef4444;
}

.swl-remove svg {
    width: 12px;
    height: 12px;
    stroke: #9ca3af;
    stroke-width: 2.5;
    stroke-linecap: round;
    fill: none;
    transition: stroke 0.18s;
}

.swl-remove:hover svg {
    stroke: #ef4444;
}

/* ── Toast notification ── */
.swl-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #111827;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 99999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    max-width: 300px;
}

.swl-toast.swl-toast-show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .swl-grid {
        grid-template-columns: 1fr;
    }
    .swl-btn {
        font-size: 0.8rem;
        padding: 9px 16px;
    }
    .swl-toast {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
}
