/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 02 2026 | 20:41:39 */
/* Menu das categorias */
.custom-category-menu {
	width: 100% !important;
}

.custom-category-menu a {
	display: block;
	width: 100%;
	padding: 10px 10px 10px 10px;
	text-transform: uppercase;
	font-weight: bold;
	color: #333333;
	font-size: 0.8em;
}

.custom-category-menu a:hover {
	border-radius: 5px;
	background-color: #ff6600;
	color: #ffffff;
}


/* Lista de produtos */
.products {
	padding: 0px;
}

.product {
	list-style-type: none;
	overflow: hidden;
}

.product a {
	border-bottom: solid 1px #e9e9e9;
	float: left;
	width: 100%;
	margin: 0px;
	align-items: center;
	padding: 10px;
	box-sizing: border-box;

	/* animação */
	transition:
		transform .22s ease,
		box-shadow .22s ease;

	transform-origin: center center;

	/* evita bug visual */
	position: relative;
	will-change: transform;
}

.product a:hover {
	transform: scale(0.985);
	box-shadow: 0px 2px 8px rgba(0,0,0,.08);
}

.product img {
	max-width: 100px;
	margin: 0px 10px 0px 0px;
	float: left;

	/* animação da imagem */
	transition: transform .25s ease;
	transform-origin: center center;
}

.product a:hover img {
	transform: scale(1.08);
}

.product .woocommerce-loop-product__title {
	font-size: 1em;
	margin: 0px;
	text-transform: uppercase;
	font-family: "Helvetica", serif;
	font-weight: bold;
	color: #333333;
}

.product .loop-short-description,
.product .woocommerce-Price-amount {
	margin: 0px;
	font-family: "Helvetica", serif;
}

.product .loop-short-description {
	color: #333333;
	font-size: 0.8em;
}

.product .woocommerce-Price-amount {
	font-size: 1em;
	font-weight: bold;
	color: #333333;
}