
/* Estilo para cada categoria de produtos */
.product-category {
    
    width: 100%;
    margin-bottom: 10px; /* Espaçamento entre categorias */
}
.center-text {
    text-align: center;
}
a:link {
  color: #000;
}

/* visited link */
a:visited {
  color: #000;
}

/* mouse over link */
a:hover {
  color: #000;
}

/* selected link */
a:active {
  color: #000;
}
body{
    background-color:#fff;
}
.product-list {
    display: block;
    padding: 5px;
    gap: 2px; /* Espaço entre os produtos */
}
.product:hover{   
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.product {
    display: inline-block;
    width: calc(23.33% - 10px);
    flex: 0 0 calc(23.33% - 10px); 
    margin: 10px;
    padding: 5px;
    text-align: left;
    box-sizing: border-box;
    background-color: #f7f1ff;
    border-radius: 10px;
}



.product img {
    max-width: 100%;
    height: auto;
    border-radius: 10px 10px 1px 1px;
}

.product h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 0 0;
}


.product .genre {
  font-size: 14px;
}


@media screen and (max-width:1150px) {
  .product {
    width: calc(33.33% - 20px);
  }
  .product-list {

    justify-content: space-between;
    gap: 2px; 
}
}
@media (max-width: 768px) {
    .product {
        flex: 0 0 calc(33.33% - 10px); 
        width: calc(33.33% - 10px);
        margin:5px;
        padding:5px;
    }
    .product-list {

    justify-content: left;
    gap: 2px; 
}
    H3#titulo{
        font-size: 15px;
    }
    p{
        font-size:12px;
    }
    p#price{
       font-size:12px;
    }
    
}
@media screen and (max-width:400px) {
  .product {
    width: calc(33.33% - 10px);
  }
  .product-list {

    justify-content: space-between;
    gap: 2px; 
}
}

/* TABLE VIEW */
@media screen and (min-width:401px) {
  .settings {
    display: block;
  }
  #view {
    display: inline;
  }
  .products-table .product {
    display: block;
    width: auto;
    margin: 10px 10px 30px 10px;
  }
  .products-table .product .product-img {
    display: inline-block;
    margin: 0;
    width: 120px;
    height: 120px;
    vertical-align: middle;
  }
  .products-table .product img {
    width: auto;
    height: 80px;
    max-width: 80px;
  }
  
}











p#price{
       
       color:#b6127c;
       font-weight:900;
    }



