.wishlist-page {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 80px;
    overflow: hidden;
}

.wishlist-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.wishlist-page .floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 184, 0, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 184, 0, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 184, 0, 0.15), transparent);
    background-size: 200px 200px;
    animation: floatHearts 20s ease-in-out infinite;
}

@keyframes floatHearts {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.wishlist-page .gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wishlist-page .gradient-orbs::before,
.wishlist-page .gradient-orbs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: orbFloat 15s ease-in-out infinite;
}

.wishlist-page .gradient-orbs::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FF6B6B 0%, transparent 70%);
    top: 10%;
    right: 10%;
}

.wishlist-page .gradient-orbs::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--honey-primary) 0%, transparent 70%);
    bottom: 10%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.1); }
}

.wishlist-page .wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.wishlist-page .wishlist-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0.3;
    pointer-events: none;
}

.wishlist-page .header-content {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.wishlist-page .header-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 184, 0, 0.4);
    animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

.wishlist-page .header-icon i {
    font-size: 36px;
    color: var(--cyber-black);
}

.wishlist-page .header-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
}

.wishlist-page .header-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.wishlist-page .header-actions {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.wishlist-page .btn-share-wishlist,
.wishlist-page .btn-clear-wishlist {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-page .btn-share-wishlist {
    background: var(--gradient-gold);
    color: var(--cyber-black);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.wishlist-page .btn-share-wishlist:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.wishlist-page .btn-clear-wishlist {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--glass-border);
}

.wishlist-page .btn-clear-wishlist:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #F87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.wishlist-page .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: calc(4 * 280px + 3 * 50px);
    margin-bottom: 80px;
    transition: all 0.5s ease;
    z-index: 1 !important;
    margin-left: auto;
    margin-right: auto;
    gap: 50px;
    position: relative;
}

.wishlist-page .remove-btn,
.wishlist-page .remove-from-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.wishlist-page .product-card:hover .remove-btn,
.wishlist-page .product-card:hover .remove-from-wishlist-btn {
    opacity: 1;
    transform: scale(1);
}

.wishlist-page .remove-btn:hover,
.wishlist-page .remove-from-wishlist-btn:hover {
    background: #EF4444;
    border-color: #EF4444;
    transform: scale(1.1);
}

.wishlist-page .remove-btn i,
.wishlist-page .remove-from-wishlist-btn i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.wishlist-page .product-image-wrapper {
    position: relative;
    height: 280px;
    background: linear-gradient(180deg, var(--cyber-light) 0%, var(--cyber-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.wishlist-page .product-image-wrapper a{
    height: 100%;
}

.wishlist-page .product-badge {
    padding: 8px 16px;
    border-radius: 8px;
    z-index: 10;
}

.wishlist-page .product-badge.novo {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.wishlist-page .product-badge.trend {
    background: linear-gradient(135deg, #ff3366, #ff0044);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
    animation: pulseBadge 2s ease-in-out infinite;
}

.wishlist-page .product-badge.outlet {
    background: linear-gradient(135deg, #9333EA, #7C3AED);
    color: #fff;
}

.wishlist-page .product-badge.sold-out {
    background: linear-gradient(135deg, #666, #444);
    color: #fff;
}

.wishlist-page .price-drop-badge {
    position: absolute;
    top: 20px;
    right: 60px;
    padding: 8px 12px;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid #10B981;
    color: #10B981;
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.wishlist-page .price-drop-badge i {
    font-size: 10px;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.wishlist-page .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.wishlist-page .product-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 15;
}

.wishlist-page .action-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wishlist-page .action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.wishlist-page .action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4);
}

.wishlist-page .action-btn:hover::before {
    transform: translateY(0);
}

.wishlist-page .action-btn i {
    font-size: 16px;
    color: var(--cyber-black);
    position: relative;
    z-index: 1;
}

.wishlist-page .product-info {
    padding: 24px;
    position: relative;
}

.wishlist-page .product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    transition: transform 0.5s ease;
}

.wishlist-page .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.wishlist-page .product-brand {
    font-size: 11px;
    font-weight: 600;
    color: var(--honey-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wishlist-page .priority-badge {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wishlist-page .priority-badge i {
    font-size: 11px;
    color: #F59E0B;
}

.wishlist-page .stock-warning {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #F59E0B;
}

.wishlist-page .product-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wishlist-page .product-title:hover {
    color: var(--honey-primary);
}
.wishlist-page .wishlist-grid .no-image-icon {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--cyber-dark);
}
.wishlist-page .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.wishlist-page .product-rating i {
    font-size: 12px;
    color: #FFC107;
}

.wishlist-page .product-rating .far {
    color: rgba(255, 255, 255, 0.3);
}

.wishlist-page .rating-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 4px;
}

.wishlist-page .product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.wishlist-page .price-old {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.wishlist-page .price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--honey-primary);
}

.wishlist-page .price-discount {
    padding: 4px 8px;
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
}

.wishlist-page .wishlist-note {
    padding: 12px;
    background: rgba(255, 184, 0, 0.05);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 16px;
}

.wishlist-page .wishlist-note-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.wishlist-page .wishlist-note-icon i {
    color: var(--honey-primary);
}

.wishlist-page .wishlist-note-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.wishlist-page .notifications-status {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wishlist-page .notification-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.wishlist-page .notification-item.active {
    color: #10B981;
}

.wishlist-page .notification-item i {
    font-size: 10px;
}

.wishlist-page .product-footer {
    margin-top: 16px;
}

.wishlist-page .btn-add-to-cart,
.wishlist-page .btn-add-to-cart-full {
    width: 100%;
    padding: 12px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 10px;
    color: var(--cyber-black);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.wishlist-page .btn-add-to-cart:hover,
.wishlist-page .btn-add-to-cart-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.4);
}

.wishlist-page .btn-add-to-cart:disabled,
.wishlist-page .btn-add-to-cart-full:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wishlist-page .empty-wishlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.wishlist-page .empty-icon {
    width: 150px;
    height: 150px;
    background: var(--glass-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.wishlist-page .empty-icon i {
    font-size: 64px;
    color: var(--honey-primary);
}

.wishlist-page .empty-wishlist h2 {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.wishlist-page .empty-wishlist p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    max-width: 400px;
}

.wishlist-page .btn-shop-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 12px;
    color: var(--cyber-black);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wishlist-page .btn-shop-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
}


.wishlist-page .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.wishlist-page .modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.wishlist-page .modal-container {
    max-width: 500px;
    width: 90%;
    background: var(--cyber-dark);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wishlist-page .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wishlist-page .modal-close:hover {
    background: #EF4444;
    color: white;
    transform: rotate(90deg);
}

.wishlist-page .modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--glass-border);
}

.wishlist-page .modal-header i {
    font-size: 28px;
    color: var(--honey-primary);
}

.wishlist-page .modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.wishlist-page .modal-body {
    padding: 32px;
}

.wishlist-page .share-link-container {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.wishlist-page .share-link-input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.wishlist-page .btn-copy-link {
    padding: 14px 20px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 10px;
    color: var(--cyber-black);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.wishlist-page .btn-copy-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.wishlist-page .share-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.wishlist-page .share-social {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.wishlist-page .share-social.facebook {
    background: #1877F2;
}

.wishlist-page .share-social.twitter {
    background: #1DA1F2;
}

.wishlist-page .share-social.whatsapp {
    background: #25D366;
}

.wishlist-page .share-social.email {
    background: #EA4335;
}

.wishlist-page .share-social:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


.wishlist-grid .product-card {
    width: 280px;
    position: relative;
    background: var(--cyber-medium);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.wishlist-grid .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.wishlist-grid .product-card:hover {
    transform: translateY(-15px);
    border-color: var(--honey-primary);
    box-shadow: 0 30px 60px rgba(255, 184, 0, 0.15), 0 0 100px rgba(255, 184, 0, 0.1);
    z-index: 10;
}

.wishlist-grid .product-card:hover::before {
    opacity: 1;
}

.wishlist-grid .product-image-wrapper {
    position: relative;
    height: 280px;
    background: linear-gradient(180deg, var(--cyber-light) 0%, var(--cyber-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.wishlist-grid .product-badge {
    padding: 8px 18px;
    border-radius: 8px;
    z-index: 10;
}

.wishlist-grid .product-badge.novo {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.wishlist-grid .product-badge.trend {
    background: linear-gradient(135deg, #ff3366, #ff0044);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
    animation: pulseBadge 2s ease-in-out infinite;
}

.wishlist-grid .product-badge.sold-out {
    background: linear-gradient(135deg, #666, #444);
    color: #fff;
}
.wishlist-grid .product-badge.pre-order{
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #FFF;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}
.wishlist-grid .no-products-message{
    text-align: center;
    padding: 50px;
    border-radius: 8px;
    margin-top: 30px;
}
.wishlist-grid .no-products-message i{
    font-size: 70px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}
.wishlist-grid .no-products-message h2{
    font-size: 24px;
    margin-bottom: 10px;
}
.wishlist-grid .no-products-message p{
    font-size: 16px;
    color: #666666;
}
@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.wishlist-grid .products-grid a .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.wishlist-grid .product-card:hover .product-image {
    transform: scale(1.1) translateY(-10px);
    filter: drop-shadow(0 30px 50px rgba(255, 184, 0, 0.3));
}

.wishlist-grid .product-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.wishlist-grid .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.wishlist-grid .action-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wishlist-grid .action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.wishlist-grid .action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 184, 0, 0.4);
}

.wishlist-grid .action-btn:hover::before {
    transform: translateY(0);
}

.wishlist-grid .action-btn i {
    font-size: 18px;
    color: var(--cyber-black);
    position: relative;
    z-index: 1;
}
.wishlist-grid .product-info-container{
    height: calc(100% - 280px);
}
.wishlist-grid .product-info {
    padding: 25px;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wishlist-grid .product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    transition: transform 0.5s ease;
}

.wishlist-grid .product-card:hover .product-info::before {
    transform: translateX(-50%) scaleX(1);
}

.wishlist-grid .product-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.wishlist-grid .product-card:hover .product-title {
    color: #fff;
}

.wishlist-grid .product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--honey-primary);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}
.wishlist-grid .products-grid .product-short-description{
    display: none;
}
@media (max-width: 1400px) {
    .wishlist-page .wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: calc(3 * 280px + 2 * 50px);
    }
}
@media(max-width: 1200px){
    .wishlist-page .product-actions{
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    .wishlist-page .remove-from-wishlist-btn{
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 1024px) {
    .wishlist-page .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: calc(2 * 280px + 1 * 50px);
    }

    .wishlist-page .share-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .wishlist-page .wishlist-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        gap: 20px;
    }
    .wishlist-page .wishlist-header {
        flex-direction: column;
        gap: 24px;
    }

    .wishlist-page .header-content {
        flex-direction: column;
        text-align: center;
    }

    .wishlist-page .header-actions {
        width: 100%;
        flex-direction: column;
    }

    .wishlist-page .btn-share-wishlist,
    .wishlist-page .btn-clear-wishlist {
        width: 100%;
        justify-content: center;
    }

    .wishlist-page .wishlist-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

