/* Adiciona uma fonte personalizada */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

#order-modern {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.title-bar h1 {
    font-size: 36px;
    font-weight: 700;
    color: #9405e3;
}

.choosecat .btn {
    background-color: #9405e3;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.choosecat .btn:hover {
    background-color: #9405e3;
}

.currencychooser .btn-group .btn {
    margin-right: 10px;
    background-color: #e0e0e0;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.currencychooser .btn-group .btn.active {
    background-color: #007bff;
    color: #fff;
}

.product {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.product:hover {
    box-shadow: 0 0 15px #9405e3;
    transform: translateY(-5px);
}

.pricing {
    font-size: 18px;
    font-weight: 500;
    color:  #333;
    margin-bottom: 10px;
}

.name {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.prodfeature {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.description {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.btn-success {
    background-color: #9405e3;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-success:hover {
    background-color: #218838;
}
