/* Wishlist gift feature */

.product-like {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.product-like__wishlist .wishlistbut a {
    font-size: 28px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.product-like__wishlist .wishlistbut a:hover,
.product-like__wishlist .wishlistbut.is-active a {
    color: #8e44ad;
}

.product-like__wishlist .wishlistbut a.processing {
    opacity: 0.6;
    pointer-events: none;
}

.wishlist-header-link {
    margin-right: 8px;
}

.wishlist-manage-intro {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.wishlist-hint {
    color: #777;
    font-size: 13px;
    margin-bottom: 12px;
}

.wishlist-share-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.wishlist-share-row .form-control {
    flex: 1;
}

.wishlist-share-card.is-ready {
    border-color: #c8e6c9;
}

.wishlist-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #888;
}

.wishlist-empty-state .fa {
    font-size: 48px;
    color: #c9a0dc;
    margin-bottom: 12px;
    display: block;
}

.wishlist-owner-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wishlist-owner-item {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
}

.wishlist-owner-item.is-purchased {
    opacity: 0.75;
    background: #f8f8f8;
}

.wishlist-owner-item.is-reserved {
    background: #fffbeb;
}

.wishlist-owner-item__thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.wishlist-owner-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-owner-item__body {
    flex: 1;
    min-width: 0;
}

.wishlist-owner-item__name {
    font-weight: 600;
    margin-bottom: 4px;
}

.wishlist-owner-item__meta {
    font-size: 12px;
    color: #777;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wishlist-item-badge {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    background: #8e44ad;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
}

.wishlist-owner-item.is-purchased .wishlist-item-badge {
    background: #27ae60;
}

.wishlist-owner-item.is-reserved .wishlist-item-badge {
    background: #f39c12;
}

.wishlist-public-header {
    text-align: center;
    margin: 10px 0 24px;
    padding: 24px 16px;
    background: linear-gradient(135deg, #faf5ff 0%, #fff 100%);
    border-radius: 14px;
    border: 1px solid #f0e6f7;
}

.wishlist-public-header__icon {
    font-size: 42px;
    color: #8e44ad;
    margin-bottom: 8px;
}

.wishlist-public-header__title {
    font-size: 24px;
    margin: 0 0 8px;
    color: #333;
}

.wishlist-public-header__desc {
    color: #666;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.wishlist-select-grid .wishlist-select-card {
    cursor: pointer;
}

.wishlist-select-card__meta {
    font-size: 12px;
    color: #888;
    margin: 4px 0 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wishlist-status-ribbon {
    background: #8e44ad !important;
}

.wishlist-summary-card #wishlist-pay-btn:disabled,
.wishlist-summary-card #wishlist-pay-btn.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

.wishlist-summary-row--total {
    border-bottom: none;
    font-size: 16px;
    margin-top: 6px;
    margin-bottom: 12px;
}

.wishlist-guide-modal__icon {
    font-size: 48px;
    color: #8e44ad;
    margin-bottom: 10px;
}

.wishlist-guide-steps {
    margin: 16px auto;
    max-width: 420px;
    line-height: 2;
    padding-right: 20px;
}

.wishlist-guide-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.wishlist-added-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    font-size: 14px;
}

.order-badge--wishlist {
    background: #8e44ad;
    color: #fff;
}

.wishlist-order-badge-row {
    margin: 8px 0 16px;
}

.order-note--payer-message {
    background: #fff8e7;
    border: 1px solid #f5e6b8;
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 10px;
    color: #444;
}

@media (max-width: 767px) {
    .wishlist-share-row {
        flex-direction: column;
    }

    .wishlist-owner-item {
        flex-wrap: wrap;
    }

    .wishlist-owner-item__actions {
        width: 100%;
    }
}
