/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 09 2026 | 14:04:31 */
/* ----------------------------------- */
/* SELETOR DE LINKS DE PRODUTOS */
/* ----------------------------------- */
.lista-de-item-de-desejo{
    display:grid;
    grid-template-columns:repeat(auto-fill,96px);
    gap:10px;
}

.lista-de-item-de-desejo .item-lista-de-desejos{
    width:96px;
    aspect-ratio:4/5;	
	background:#fff;
	box-shadow: 0 0 5px black;
	position:relative;
	border-radius:5px;
	
    padding:0;
    margin:0;
    border:none;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;	
}

.lista-de-item-de-desejo .item-lista-de-desejos img {
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    display:block;
    border-radius:0px;
    transition:.2s;
	border:none;
	padding:0;
	margin:0;		
}

.lista-de-item-de-desejo .item-lista-de-desejos .acoes{
	position:absolute;
	left:5px;
	right:5px;
	top:5px;
	display:flex;
	flex-direction:row;
	flex-wrap:nowrap;
	align-items:center;
	justify-content:flex-end;	
	border:none;
	background:none;
}

.lista-de-item-de-desejo .item-lista-de-desejos .acoes button{
	position:relative;
	width:25px;
	height:25px;
	border:none;
	border-radius:5px;
	background:rgba(0,0,0,.5);
	color:#fff;
	cursor:pointer;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:15px;
	text-decoration:none;
}

.lista-de-item-de-desejo .item-lista-de-desejos .acoes button:hover{
	background:red;
	color: #ffffff;
}

.lista-de-item-de-desejo .item-lista-de-desejos .status{
	position:absolute;
	left:5px;
	right:5px;
	bottom:5px;
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:flex-start;
	background:none;
	border:none;	
}

.lista-de-item-de-desejo .item-lista-de-desejos .status a {
	position:relative;
	width:86px;
	height:25px;
	border:none;
	border-radius:5px;
	background:rgba(0,0,0,.5);
	color:#fff;
	cursor:pointer;
	display:flex;
	flex-direction:row;
	align-items:center;
	text-decoration:none;
	overflow:hidden;
}

.lista-de-item-de-desejo .item-lista-de-desejos .status a .icone {
	width:25px;
	height:25px;
	flex: 0 0 25px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:15px;
}

.lista-de-item-de-desejo .item-lista-de-desejos .status a .nome {
	display: flex;
	align-items: center;
	justify-content:center;
	text-align:center;
	white-space: normal;
	color: #ffffff;
	padding:0px;
	margin:0px;
	font-size: 10px;
	line-height: 11px;
	font-weight:bold;
	overflow:hidden;	
	height:25px;
	width:61px;
}

.lista-de-item-de-desejo .item-lista-de-desejos .status a[data-status="instock"]:hover{	
	background:green;
	color: #ffffff;
}

.lista-de-item-de-desejo .item-lista-de-desejos .status a:not([data-status="instock"]):hover{	
	background:red;
	color: #ffffff;
}