:root{
    --branco: #ffff;
    --gelo: #f1f1f1;
    --verde: #19c463;
    --preto: #2a2a2a;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body, html {
    overflow-x: hidden; /* Impede a rolagem horizontal */
}

.page {
    overflow-x: hidden; /* Impede a rolagem horizontal dentro das páginas */
}

.view {
    overflow-x: hidden; /* Impede a rolagem horizontal dentro das views */
}

body{
    font-family: "Bebas Neue", sans-serif;
    max-height: 100%;
    max-width: 100%;
}

.toolbar-inner{
    background: var(--branco);
    border-top: 1px solid var(--gelo);
}

.toolbar{
    height: 80px;
}

.tab-link{
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
}

.toolbar-inner .link{    
    flex:1;
    height: 80px;  
    line-height: 25px; 
	font-weight:bold; 
    color: var(--verde);   
}

.toolbar-inner .link:not(.active){
    color: var(--preto);
	font-weight:normal;
}

.toolbar-inner > .link i{
    font-size: 28px;
}

.top-nav{
    width: 100%;
    height: 60px;
    background: var(--branco);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-logo{
    font-weight: 600;
    margin-left: 5%;
}

.title-logo span{
    color: var(--verde);
}

.btn-cart {
    width: 40px;
    height: 40px;
    background: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5%;
    border-radius: 50%;
    border: 1px solid var(--gelo);
    font-size: 24px;
    color: var(--preto);
}

.btn-cart::before {
    content: attr(data-count);
    background: var(--verde);
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--branco);
    position: absolute;
    top: 5px;
    right: 0px;
    margin-right: 5%;
}

.btn-cart[data-count="0"]::before{
    display: none;
}

a{
    color: var(--verde);
    font-weight: 600;
    text-decoration: none;
}

form {
    padding-top: 10px;
    background: var(--branco);
    padding-bottom: 20px;
    position: relative;
}

#search {
    width: 90%;
    height: 45px;
    border-radius: 10px;
    margin: auto;
    padding: 10px 20px;
    background: var(--gelo);
}

::placeholder {
    color: #b3afaf;
}

.icone-busca {
    position: absolute;
    top: 0px;
    right: 5%;
    font-size: 27px;
    padding: 13px;
    cursor: pointer;
}

.page-content{
    background: var(--branco);
    max-width: 100%;
}

.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .categorias{
    width: 150%;
  }

  .slide{
    max-width: 100%;
    white-space: nowrap;
  }

  .img-fluid{
    max-width: 100%;
  }

  .block{
    margin-left: 2%;
    margin-right: 2%;
  }

  .filter-btn {
    width: 100%;
    height: 35px;
    background: none;
    border: 2px solid var(--preto);
    border-radius: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-btn.active { 
    background: var(--verde);
    color: var(--branco);
    border: none;
}

.row{
    flex-wrap: wrap;
    flex-direction: row;
}

.item{
    color: var(--preto);
}

.item-card {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    height: 240px;
    flex: 50%;
    max-width: 48%;
    margin-right: 5px;
    margin-bottom: 10px;
}

.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;

    border-radius: 14px;

    background: linear-gradient(
        145deg,
        #ffffff,
        #ffffff
    );

    border: 1px solid rgba(0,0,0,0.08);

    box-shadow:
        0 10px 20px rgba(0,0,0,0.12),
        inset 0 1px 1px rgba(255,255,255,0.8);

    transition: all 0.25s ease;
}

.img-container:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 28px rgba(0,0,0,0.18),
        inset 0 1px 1px rgba(255,255,255,0.9);
}

.img-container img {
    max-width: 150px;
    object-fit: cover;
    max-height: 100%;
}

.nome-rating {
    display: flex;
    justify-content: space-between;
    padding-top: 10px;         
}

.color-gray {
    color: gray;   
     
}

.nome-pro {
    color: gray; 
    max-width: 65%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;     
}

.gelo{
    background: var(--gelo) !important;
}

#produtos {
    margin-bottom: 50px;
}

.mdi-star {
    color: orange;
}

.bold{
    font-weight: 900;
}

.price{
    font-size: 20px;
}

@media (min-width: 992px) {
    .item-card {
        flex: 32%;   
        max-width: 32%;     
    }
}

@media (min-width: 1200px) {
    .item-card {
        flex: 24%;
        max-width: 24%;
    }
}

.espaco{
    height: 140px;
}