.product-container {
    max-width: 300px;
    margin: 0 auto;
    perspective: 1000px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.4);
}

.product-info {
    padding: 20px;
    text-align: center;
    color: #ffffff !important;
}

.product-title {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-decoration: none;
    display: block;
}

.product-title:hover {
    color: #ff6b6b;
}

.view-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    transition: all 0.3s;
}

.view-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    color: #ffffff !important;
}

.view-button i {
    margin-right: 8px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* 
.animated {
    animation: fadeIn 0.8s ease-out forwards;
} */