/**
 * Wishlist Cart - 选品车样式
 * 现代化玫瑰金配色设计
 */

:root {
    --wc-primary: #E8A598;
    --wc-primary-dark: #D4847A;
    --wc-primary-light: #FDF2F0;
    --wc-accent: #C9A86C;
    --wc-accent-light: #F5EFE0;
    --wc-dark: #2D2D2D;
    --wc-gray: #6B7280;
    --wc-gray-light: #F9FAFB;
    --wc-border: #E5E7EB;
    --wc-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --wc-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ========================================
   浮动选品车按钮 - 玫瑰金风格
======================================== */
.wishlist-fab {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 1000;
}

.wishlist-fab-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--wc-primary) 0%, var(--wc-primary-dark) 100%);
    border: 3px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(232, 165, 152, 0.45);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wishlist-fab-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(232, 165, 152, 0.55);
}

.wishlist-fab-btn i {
    font-size: 1.6rem;
    color: white;
    transition: transform 0.3s;
}

.wishlist-fab-btn:hover i {
    transform: scale(1.15);
}

.wishlist-fab-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 26px;
    height: 26px;
    background: var(--wc-dark);
    color: white;
    border-radius: 13px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 7px;
    border: 2px solid white;
    box-shadow: var(--wc-shadow-sm);
}

.wishlist-fab-count.hidden {
    display: none;
}

/* FAB弹跳动画 */
@keyframes fabBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.25); }
    50% { transform: scale(0.9); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.wishlist-fab-bounce {
    animation: fabBounce 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 飞行动画的光晕效果 */
.wishlist-fly-item {
    border: 3px solid rgba(255, 255, 255, 0.8) !important;
}

/* ========================================
   产品卡片上的心形按钮 - 精致设计
======================================== */
.wishlist-add-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
}

.wishlist-add-btn i {
    font-size: 1.2rem;
    color: #D1D5DB;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wishlist-add-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 25px rgba(232, 165, 152, 0.35);
}

.wishlist-add-btn:hover i {
    color: var(--wc-primary);
    transform: scale(1.1);
}

.wishlist-add-btn.active {
    background: linear-gradient(145deg, var(--wc-primary) 0%, var(--wc-primary-dark) 100%);
    box-shadow: 0 6px 20px rgba(232, 165, 152, 0.5);
}

.wishlist-add-btn.active i {
    color: white;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    25% { transform: scale(1.35); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.wishlist-add-btn.just-added {
    animation: heartPop 0.6s ease;
}

/* ========================================
   侧边栏选品车 - 高端设计
======================================== */
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -480px;
    width: 480px;
    max-width: 100%;
    height: 100vh;
    background: white;
    z-index: 10001;
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
}

.wishlist-sidebar.active {
    right: 0;
}

.wishlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.wishlist-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 侧边栏头部 - 简约优雅 */
.wishlist-sidebar-header {
    padding: 28px 30px;
    background: white;
    border-bottom: 1px solid var(--wc-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.wishlist-sidebar-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: var(--wc-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.02em;
}

.wishlist-sidebar-header h3 i {
    font-size: 1.3rem;
    color: var(--wc-primary);
}

.wishlist-item-count {
    background: var(--wc-primary-light);
    color: var(--wc-primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.wishlist-close-btn {
    background: var(--wc-gray-light);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-gray);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.wishlist-close-btn:hover {
    background: var(--wc-primary-light);
    color: var(--wc-primary-dark);
    transform: rotate(90deg);
}

/* 侧边栏内容 */
.wishlist-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: var(--wc-gray-light);
}

/* 空状态 - 精致插画风格 */
.wishlist-empty {
    text-align: center;
    padding: 60px 30px;
}

.wishlist-empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, var(--wc-primary-light) 0%, white 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(232, 165, 152, 0.15);
}

.wishlist-empty-icon i {
    font-size: 3rem;
    color: var(--wc-primary);
}

.wishlist-empty h4 {
    font-size: 1.25rem;
    color: var(--wc-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.wishlist-empty p {
    color: var(--wc-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

/* 产品列表 - 卡片式设计 */
.wishlist-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wishlist-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid transparent;
}

.wishlist-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--wc-primary-light);
    transform: translateY(-2px);
}

.wishlist-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.wishlist-item:hover .wishlist-item-image img {
    transform: scale(1.08);
}

.wishlist-item-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wishlist-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wc-dark);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.wishlist-item-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wishlist-item-spec {
    font-size: 0.75rem;
    padding: 4px 10px;
    background: var(--wc-gray-light);
    border-radius: 8px;
    color: var(--wc-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.wishlist-item-spec i {
    font-size: 0.65rem;
    color: var(--wc-primary);
}

.wishlist-item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--wc-gray-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 0.75rem;
    transition: all 0.25s;
    opacity: 0;
}

.wishlist-item:hover .wishlist-item-remove {
    opacity: 1;
}

.wishlist-item-remove:hover {
    background: #FEE2E2;
    color: #EF4444;
}

/* ========================================
   数量输入控件 - 现代化设计
======================================== */
.wishlist-item-qty {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    margin-right: 40px;
    flex-shrink: 0;
}

.wishlist-item-qty .qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--wc-border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-gray);
    font-size: 0.7rem;
    transition: all 0.2s;
}

.wishlist-item-qty .qty-btn:hover {
    background: var(--wc-primary-light);
    border-color: var(--wc-primary);
    color: var(--wc-primary-dark);
}

.wishlist-item-qty .qty-btn:active {
    transform: scale(0.95);
}

.wishlist-item-qty .qty-input {
    width: 50px;
    height: 28px;
    border: 1px solid var(--wc-border);
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wc-dark);
    background: var(--wc-gray-light);
    transition: all 0.2s;
    -moz-appearance: textfield;
}

.wishlist-item-qty .qty-input::-webkit-outer-spin-button,
.wishlist-item-qty .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wishlist-item-qty .qty-input:focus {
    outline: none;
    border-color: var(--wc-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(232, 165, 152, 0.15);
}

/* 移动端数量控件适配 */
@media (max-width: 768px) {
    .wishlist-item {
        flex-wrap: wrap;
    }

    .wishlist-item-qty {
        margin-left: 96px;
        margin-right: 0;
        margin-top: 10px;
        order: 3;
    }

    .wishlist-item-remove {
        top: 10px;
        right: 10px;
    }
}

/* 侧边栏底部 - 表单优化 */
.wishlist-sidebar-footer {
    padding: 24px;
    border-top: 1px solid var(--wc-border);
    background: white;
    flex-shrink: 0;
}

/* 客户信息表单 - 现代输入框 */
.wishlist-form {
    margin-bottom: 20px;
}

.wishlist-form-group {
    margin-bottom: 16px;
}

.wishlist-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wc-gray);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wishlist-form-group label .required {
    color: var(--wc-primary-dark);
    font-weight: 700;
}

.wishlist-form-group input,
.wishlist-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--wc-border);
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: var(--wc-gray-light);
    color: var(--wc-dark);
}

.wishlist-form-group input::placeholder,
.wishlist-form-group textarea::placeholder {
    color: #9CA3AF;
}

.wishlist-form-group input:focus,
.wishlist-form-group textarea:focus {
    outline: none;
    border-color: var(--wc-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(232, 165, 152, 0.15);
}

.wishlist-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.wishlist-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wishlist-generate-btn {
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(145deg, var(--wc-primary) 0%, var(--wc-primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(232, 165, 152, 0.35);
    letter-spacing: 0.02em;
}

.wishlist-generate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(232, 165, 152, 0.45);
}

.wishlist-generate-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.wishlist-clear-btn {
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    color: var(--wc-gray);
    border: 2px solid var(--wc-border);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.wishlist-clear-btn:hover {
    border-color: #FCA5A5;
    color: #EF4444;
    background: #FEF2F2;
}

/* ========================================
   成功弹窗 - 精美设计
======================================== */
.wishlist-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wishlist-success-modal.active {
    display: flex;
}

.wishlist-success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.wishlist-success-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    animation: modalSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--wc-shadow);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wishlist-success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(145deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: successPop 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

@keyframes successPop {
    from { transform: scale(0); }
    50% { transform: scale(1.15); }
    to { transform: scale(1); }
}

.wishlist-success-icon i {
    font-size: 2.8rem;
    color: white;
}

.wishlist-success-content h3 {
    font-size: 1.6rem;
    color: var(--wc-dark);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.wishlist-success-content p {
    color: var(--wc-gray);
    margin-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.wishlist-share-link {
    background: var(--wc-gray-light);
    border: 2px solid var(--wc-border);
    border-radius: 14px;
    padding: 6px 6px 6px 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wishlist-share-link input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: var(--wc-dark);
    outline: none;
    font-family: 'SF Mono', 'Monaco', monospace;
}

.wishlist-copy-btn {
    padding: 12px 20px;
    background: var(--wc-dark);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wishlist-copy-btn:hover {
    background: #1F2937;
    transform: scale(1.02);
}

.wishlist-copy-btn.copied {
    background: #10B981;
}

.wishlist-share-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.wishlist-share-whatsapp {
    padding: 16px 28px;
    background: linear-gradient(145deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.35s;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.wishlist-share-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
}

.wishlist-success-close {
    padding: 16px 28px;
    background: var(--wc-gray-light);
    color: var(--wc-gray);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.wishlist-success-close:hover {
    background: var(--wc-border);
    color: var(--wc-dark);
}

/* Toast 提示 - 精致样式 */
.wishlist-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--wc-dark);
    color: white;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10003;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
}

.wishlist-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.wishlist-toast.success {
    background: linear-gradient(145deg, #10B981 0%, #059669 100%);
}

.wishlist-toast.error {
    background: linear-gradient(145deg, #EF4444 0%, #DC2626 100%);
}

/* ========================================
   响应式设计
======================================== */
@media (max-width: 768px) {
    .wishlist-fab {
        bottom: 90px;
        right: 16px;
    }
    
    .wishlist-fab-btn {
        width: 52px;
        height: 52px;
    }
    
    .wishlist-fab-btn i {
        font-size: 1.4rem;
    }
    
    .wishlist-fab-count {
        top: -4px;
        right: -4px;
        min-width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    /* 移动端删除按钮始终显示 */
    .wishlist-item-remove {
        opacity: 1 !important;
    }
    
    .wishlist-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .wishlist-sidebar-header {
        padding: 20px 24px;
    }
    
    .wishlist-sidebar-content {
        padding: 20px;
    }
    
    .wishlist-sidebar-footer {
        padding: 20px;
    }
    
    .wishlist-item {
        padding: 14px;
    }
    
    .wishlist-item-image {
        width: 72px;
        height: 72px;
    }
    
    .wishlist-success-content {
        padding: 36px 24px;
        border-radius: 20px;
    }
    
    .wishlist-share-actions {
        flex-direction: column;
    }
}

/* 动画效果 */
.wishlist-item {
    animation: itemFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes itemFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wishlist-item.removing {
    animation: itemFadeOut 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes itemFadeOut {
    to {
        opacity: 0;
        transform: translateX(40px);
        height: 0;
        padding: 0;
        margin: 0;
    }
}

/* ========================================
   引导提示样式 - 内联气泡
======================================== */
.wishlist-inline-guide {
    position: fixed;
    z-index: 10010;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.wishlist-inline-guide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.wishlist-inline-guide .inline-guide-arrow {
    position: absolute;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #FDF2F0;
    filter: drop-shadow(0 -3px 3px rgba(232, 165, 152, 0.3));
}

.wishlist-inline-guide .inline-guide-content {
    background: linear-gradient(145deg, #FFF 0%, #FDF2F0 100%);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 15px 50px rgba(232, 165, 152, 0.35), 0 0 0 3px rgba(232, 165, 152, 0.2);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 320px;
    max-width: 380px;
    animation: guidePopIn 0.5s ease;
}

@keyframes guidePopIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); opacity: 1; }
}

.wishlist-inline-guide .guide-emoji {
    font-size: 2rem;
    flex-shrink: 0;
    animation: emojiWave 1s ease infinite;
}

@keyframes emojiWave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.wishlist-inline-guide .guide-text {
    font-size: 0.95rem;
    color: var(--wc-dark);
    line-height: 1.6;
    flex: 1;
}

.wishlist-inline-guide .guide-text strong {
    color: var(--wc-primary-dark);
    font-weight: 700;
}

.wishlist-inline-guide .guide-dismiss {
    background: linear-gradient(145deg, var(--wc-primary) 0%, var(--wc-primary-dark) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(232, 165, 152, 0.4);
}

.wishlist-inline-guide .guide-dismiss:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 165, 152, 0.5);
}

/* 心形按钮引导脉冲 - 更明显的动画效果 */
.wishlist-add-btn.wishlist-guide-pulse {
    z-index: 10013 !important;
    animation: guidePulseShadow 1s infinite !important;
    background: linear-gradient(145deg, var(--wc-primary) 0%, var(--wc-primary-dark) 100%) !important;
}

.wishlist-add-btn.wishlist-guide-pulse i {
    color: white !important;
}

@keyframes guidePulseShadow {
    0% { 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), 0 0 0 0 rgba(232, 165, 152, 0.8);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), 0 0 0 20px rgba(232, 165, 152, 0);
        transform: scale(1.1);
    }
    100% { 
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), 0 0 0 0 rgba(232, 165, 152, 0.8);
        transform: scale(1);
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .wishlist-guide-tooltip {
        left: 20px !important;
        right: 20px;
        max-width: none;
    }
}
