body {
    background-color: #ffffff;
    color: #333333;
}

.product-card {
    position: relative;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #000;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1rem;
    font-weight: bold;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 1rem;
    color: #017b97;
}

.ribbon {
    position: absolute;
    top: 10px;
    left: -10px;
    background: #017b97;
    color: white;
    padding: 5px 15px;
    transform: rotate(-20deg);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    width: 150px;
}

.out-of-stock {
    background: #e53935;
}