/* ======================= Wishlist Page CSS Start ============================= */

/* Wishlist Section */
.wishlist-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
}

/* Product Card Styles */
.wishlist-section .product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

.wishlist-section .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.wishlist-section .product-card__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8fafc;
}

.wishlist-section .product-card__thumb img,
.wishlist-section .product-card__thumb svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wishlist-section .product-card:hover .product-card__thumb img {
    transform: scale(1.05);
}

.wishlist-section .product-card__content {
    padding: 20px;
}

.wishlist-section .product-card__content .title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.wishlist-section .product-card__content .title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wishlist-section .product-card__content .title a:hover {
    color: #3b82f6;
}

.wishlist-section .product-card__price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.wishlist-section .product-card__price .fw-bold {
    font-size: 18px;
    font-weight: 800;
}

.wishlist-section .product-card__price .text-sm {
    font-size: 14px;
}

/* Wishlist Remove Button */
.wishlist-remove-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    border: 2px solid #3b82f6;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-remove-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: scale(1.1);
}

.wishlist-remove-btn.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

/* Empty Wishlist */
.empty-wishlist {
    background: white;
    border-radius: 20px;
    padding: 80px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.empty-wishlist-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 50%;
}

.empty-wishlist h5 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.empty-wishlist p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
}

/* Buttons */
.wishlist-section .btn {
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wishlist-section .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: white;
}

.wishlist-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.wishlist-section .btn-outline-danger {
    border: 2px solid #ef4444;
    color: #ef4444;
    background: white;
}

.wishlist-section .btn-outline-danger:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
}

.wishlist-section .btn-success {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .wishlist-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .wishlist-section {
        padding: 40px 0;
    }
    
    .wishlist-section .product-card__content {
        padding: 16px;
    }
    
    .empty-wishlist {
        padding: 60px 20px;
    }
}

@media (max-width: 576px) {
    .wishlist-section .product-card__content .title {
        font-size: 14px;
    }
    
    .wishlist-section .product-card__price .fw-bold {
        font-size: 16px;
    }
    
    .empty-wishlist h5 {
        font-size: 20px;
    }
    
    .empty-wishlist p {
        font-size: 14px;
    }
}

/* ======================= Wishlist Page CSS End ============================= */

