* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.footer-bottom a {

    text-decoration: none; /* Remove o sublinhado no link, se desejar */
}

.footer-bottom a:hover,
.footer-bottom a:visited {
    text-decoration: none; /* Mantém o estilo sem sublinha, se aplicado */
}

h1{
    /*font-family: 'Arial', sans-serif;*/
    font-weight: lighter;
    font-size: 1.6rem;

}

.header-content {
    display: flex;
    justify-content: center; /* Centraliza os itens horizontalmente */
    align-items: center; /* Centraliza verticalmente os itens da linha do cabeçalho */
    margin-bottom: 10px; /* Espaço entre o cabeçalho e a barra de pesquisa */
}



.logo-circle {
    width: 180px;  /* Ajuste o tamanho conforme necessário */
    height: 70px; /* Ajuste o tamanho conforme necessário */
    border-radius: 5%;
    /*background-color: white;*/
    /*border: 1px solid #ffffff; !* Deixe a borda da cor primária da empresa *!*/
    overflow: hidden; /* Para garantir que a imagem se mantenha dentro do círculo */
    margin-right: 25px; /* Espaço entre a logotipo e o título */

}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: scale-down; /* Para cobrir totalmente o círculo */
}



.search-container {
    position: relative;
    width: 90%;
    margin: 10px auto;
}

.search-icon {
    position: absolute;
    left: 10px;
    padding-top: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

input[type="text"] {
    width: 100%;
    padding: 10px 10px 10px 35px;
    border-radius: 5px;
    border: 1px solid #ddd;
}



body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}
.logo {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;


    margin-bottom: 20px;
}

.logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .logo img {
        max-width: 100px;
    }
}
header {
    /*background-color: #ff7f00;*/
    color: #fff;
    padding-bottom: 10px;
    padding: 16px;
    text-align: center;
}

header input {
    width: 90%;
    padding: 10px;
    margin-top: 10px;
}


.cart-login {
    margin-top: 10px;
}

.products, .categories, .details {
    padding: 20px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 15px;
}

.product-item {
    background-color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.product-image {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.product-name {
    font-size: 14px;
    color: #333;
    /*margin-top: auto;*/
    text-align: center;
}

/* Responsividade para telas menores */
@media (min-width: 768px) {


    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.categories h3 {
    margin-bottom: 10px;
}

.detail-list div {
    background-color: #fff;
    padding: 10px;
    margin: 5px 0;
}

/*header*/
/*.cart-login {*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  gap: 30px;*/
/*  width: 100%;*/
/*  text-align: center;*/
/*  position: sticky;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  background-color: white;*/
/*  box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);*/
/*  padding: 10px 0;*/
/*  z-index: 1000;*/
/*}*/

.cart-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    position: sticky;
    bottom: 0;
    left: 0;
    background-color: white;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
}

.message {
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
    padding-left: 15px;
    padding-right: 15px;
    /*background: #ffaabb;*/
}

.icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.info-item-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    width: 110px;
}

.info-item-header i {
    font-size: 24px;
    margin-bottom: 8px;
    /*color: #f8a41b; !* Cor primária laranja baseada nas imagens *!*/
}

.info-item-header span {
    font-size: 14px;
    /*color: #f8a41b; !* Cor primária laranja baseada nas imagens *!*/
    white-space: nowrap;
}

/* Responsividade para telas menores */
@media (max-width: 480px) {


    .info-item-header {

        width: 80px;
    }
    .message{
        margin-bottom: 0px;
    }
    .logo-circle {
        width: 180px;  /* Ajuste o tamanho conforme necessário */
        height: 70px; /* Ajuste o tamanho conforme necessário */
        margin-right: 15px; /* Espaço entre a logotipo e o título */

    }


    h1{
        /*font-family: 'Arial', sans-serif;*/
        font-weight: lighter;
        font-size: 1.2rem;
    }
    header {

        padding-bottom: 0px;
        padding: 12px;

    }
    .search-icon {

        padding-top: 0px;

    }
    header input {

        padding: 10px;
        margin-top: 0px;
    }


    .search-container {
        position: relative;
        width: 90%;
        /*margin-left: 10px;*/
        /*margin-right: 10px;*/
        /*margin-bottom: 10px;*/
    }



    .header-content {

        margin-bottom: 0px; /* Espaço entre o cabeçalho e a barra de pesquisa */
    }

    .cart-login {
        gap: 0px;
    }

    .info-item-header i {
        font-size: 20px;
    }

    .info-item-header span {
        font-size: 12px;
    }
}

/*end header*/



/*footer*/

/* Estilos para o footer */
footer {
    /*background-color: #f8a41b;*/
    color: white;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-left, .footer-right {
    padding: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;

}

.footer-title{
    margin-bottom: 26px;
    font-weight: bold;
}

.footer-address{
    margin-top: 16px;

}
.address-text{
    margin-left: 16px;
}

.whats-text{
    margin-left: 0px;
}
.call-text{
    margin-left: 2px;
}
.map-text{
    margin-left: 6px;
}


.footer-more{
    margin-bottom: 26px;
    font-weight: bold;
}

.info-item i {
    margin-right: 10px;
    font-size: 18px;
}

.footer-right ul {
    list-style-type: none;
    padding-left: 0;
}

.footer-right li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;

}

/* Media query para telas maiores (desktop) */
@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-left, .footer-right {
        width: 48%;
    }
}

/*end footer*/



/*popup */
/* Estilo do popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000000;
}

.popup-content {
    position: relative;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 80%;
}
.popup-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
}

.option-button {
    /*background-color: #f8a41b;*/
    color: white;
    border: none;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.option-button:hover {
    background-color: #e8940b;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #666;
}



/*popup end*/


