.product {
    width: 100%;
    border-radius: 7px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px;
    flex-grow: 1;
}

.product-image {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 7px;
    height: 200px;
}

.product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 7px;
}

.product-info {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    margin-bottom: 8px;
}

.product-subtitle {
    color: grey;
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-button {
    display: flex;
    width: 100%;
    margin-top: auto;
}

.product-button button {
    width: 100%;
    color: white;
    background-color: var(--green-color);
}

.product-button button:hover {
    background-color: var(--dark-color);
    color: white;
}

.modal-title {
    font-size: 25px;
}

.modal-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-text {
    color: grey;
    font-size: 18px;
    font-weight: 300;
}

.modal-primary {
    margin-top: 15px;
    margin-bottom: 15px;
}