 .product-item {
    position: relative;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #a78bfa, #7c3aed);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.product-item:hover::before {
    opacity: 0.1;
}

.product-image-container {
    position: relative;
    padding-top: 120%;
    overflow: hidden;
    background: #f9f9f9;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.product-item:hover .product-image {
    transform: scale(1.1) rotate(2deg);
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    z-index: 2;
}

.product-item:hover .quick-view-overlay {
    opacity: 1;
    transform: scale(1);
}

.quick-view-btn {
    background: #fff;
    color: #1a1a1a;
    padding: 15px 30px;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.product-item:hover .quick-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-btn:hover {
    background: #8b5cf6;
    color: #fff;
}

.wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    transform: translateX(60px);
}

.product-item:hover .wishlist-btn {
    transform: translateX(0);
}

.wishlist-btn:hover {
    background: #8b5cf6;
    color: #fff;
}

.product-info {
    padding: 25px;
    text-align: center;
    position: relative;
    background: #fff;
    transition: all 0.3s ease;
}

.product-item:hover .product-info {
    background: #f4efe9;
}

.product-category {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-item:hover .product-name {
    color: #8b5cf6;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
    transform: scale(1);
    transition: all 0.3s ease;
}

.offer-price {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.2rem;
    transform: scale(1);
    transition: all 0.3s ease;
}

.product-item:hover .offer-price {
    transform: scale(1.1);
}

