/* card */
    .product-card {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        text-align: center;
        padding: 10px;
        background-color: #fff;
    }

    .product-price {
        color: #38b6ff;
        font-weight: bold;
    }

/* icones carrossel */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: #a8a8a8;
        border-radius: 50%;
    }

    .add-product {
        background-color: #38b6ff;
        color: #fff;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 14px;
    }

    .quantity-control {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .quantity-control input {
        width: 50px;
        text-align: center;
    }

    .feature-box {
        text-align: center;
        margin-bottom: 20px;
    }

    .feature-text {
        font-weight: bold;
        margin-top: 5px;
    }

    .d-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }