/* Define a fonte padrão para todo o site */
body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 20px;
    margin: 0;
}

/* Caso queira aplicar Roboto em outras tags */
h1, h2, h3, p, button, input {
    font-family: 'Roboto', Arial, sans-serif;
}


#page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border: 10% solid #ffcc00; /* Bordas amarelas para telas maiores que 1000px */
    border-radius: 15px;
    background-color: #ffffff;
}

h1 {
    text-align: center;
    color: #333; /* Cor neutra para o título */
}

/* Estilo do formulário de pesquisa */
#search-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

#sku-input {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 300px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    transition: all 0.3s ease;
}

#remove-all-btn {
    background-color: #dc3545; /* Vermelho para remover */
    color: white;
}

#search-button:hover {
    background-color: gray; /* Azul mais escuro no hover */
}

#remove-all-btn:hover {
    background-color: #c82333; /* Vermelho mais escuro no hover */
}

button:active {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Estilo do módulo de produtos */
#product-cards-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px;
}

/* Estilo dos cards de produto */
.product-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    padding: 10px;
}

.product-card img {
    width: 100px;
    height: auto;
    margin-right: 20px;
    border-radius: 5px;
}

.product-card div {
    flex-grow: 1;
}

.product-card p {
    margin: 5px 0;
}

/* Estilo para os botões de controle dentro do card */
.product-card button {
    background-color: white;
    border: 1px solid black;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.product-card button:hover {
    background-color: gray  ; /* Verde mais escuro no hover */
}

.product-card button.remove {
    background-color: #dc3545; /* Vermelho para remover */
}

.product-card button.remove:hover {
    background-color: #c82333; /* Vermelho mais escuro no hover */
}

/* Estilo para a quantidade */
.quantity-module {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 10px;
    gap: 10px;
}

.quantity-module button {
    background-color: #f8f9fa; /* Cor neutra para os botões de incremento e decremento */
    color: black;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.quantity-module button:hover {
    background-color: #e2e6ea; /* Cor de fundo ao passar o mouse */
}

/* Ajustando o campo de quantidade */
.quantity-module input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px;
    outline: none;
}

.quantity-module input:focus {
    border-color: gray; /* Azul para o foco */
}

/* Estilo do link do carrinho gerado */
.cart-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.cart-link-text {
    flex: 1;
    text-align: left;
    color: #333;
    text-decoration: none;
}

.cart-link-text:hover {
    text-decoration: underline;
}

.cart-link-buttons {
    display: flex;
    gap: 10px;
}

.cart-link-buttons button {
    background-color: #28a745; /* Verde para o botão de copiar */
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cart-link-buttons button:nth-child(2) {
    background-color: #dc3545; /* Vermelho para o botão de excluir */
}

.cart-link-buttons button:hover:nth-child(1) {
    background-color: #218838; /* Verde mais escuro no hover */
}

.cart-link-buttons button:hover:nth-child(2) {
    background-color: #c82333; /* Vermelho mais escuro no hover */
}

.quantity-view{
    border: 1px solid black;
    text-align: center;
    width: 40px;
    border-radius: 5px;
    padding: 5px 0px;
    outline: none;
}

.remover-produto{
    border: none !important;
    color: white !important;
    background-color: #dc3545 !important; 
}

.remover-produto:hover {
    background-color: #c82333 !important; /* Vermelho mais escuro no hover */
}

#coupon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#coupon-input {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 300px;
}
