.swiper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: #ffffff;
    color: rgb(0, 0, 0);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(215, 215, 215, 0.3);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

.product-card img {
    max-width: 80%;
    height: auto;
    object-fit: contain; 
    margin: 0 auto;
    display: block; 
}

.product-card h3 {
    margin: 10px 0;
}

.product-card p {
    color: rgb(0, 0, 0);
}

.product-card button {
    background: rgb(0, 0, 0);
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 24px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
    width: 50%;
    margin-left: 25%;
}

.product-card button:hover {
    background: rgb(55, 55, 55);
}

.swiper-button-next{
    color: #000000;
}

.swiper-button-prev{
    color: #000000;
}