.product-item {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
    margin-bottom: 15px;
}

.product-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image-wrapper:hover img {
    transform: scale(1.05);
}

.sold-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #F67777;
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.9em;
    z-index: 1;
}

.product-title {
    font-size: 1.1em;
    color: #333;
    margin: 10px 0 5px;
    font-weight: 500;
}

.product-price {
    color: #F67777;
    font-weight: 600;
    font-size: 1.2em;
}

.buy-now-btn {
    background: #F67777;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

.buy-now-btn:hover {
    background: #ff5555;
}

/* Responsive */
@media (max-width: 768px) {
    .product-title {
        font-size: 1em;
    }
    .product-price {
        font-size: 1.1em;
    }
}