.product {
	font-size: 16px;
	display: flex;
	flex-direction: column;
}
.product img {
	height: 100%;
	width: 100%;
	transition: all 0.2s ease-out;
}
.product .img-container {
	height: 100%;
	display: block;
	overflow: hidden;
}
.product .img:hover img {
	transform: scale(1.1);
}
.product .img {
	flex: 1;
	aspect-ratio: 309 / 357;
}
.product .actions, .product .discount {
	position: absolute;
	z-index: 2;
}
.product .actions {
	right: 8px;
	top: 8px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	display: none;
}
.product:hover .actions {
	display: flex;
}
.product .atc {
	background: #f0f0f0;
	border-radius: 50%;
	padding: 8px;
	transition: all 0.2s ease-out;
	outline: 0px solid #f0f0f0;
}
.product .atc:hover {
	background: var(--accent);
	outline: 2px solid salmon;
}
.product .atc:hover path {
	fill: white;
}
.product .discount {
	background: var(--accent);
	color: white;
	padding: 16px;
}
.product .precios {
	font-size: 16px;
	font-weight: 800;
	gap: 8px;
	justify-content: center;
}
.product .precios .secondary {
	text-decoration: line-through;
	color: var(--disabled);
}
.product .precios .main {
	color: var(--accent);
}
.product a {
	text-decoration: none;
	color: var(--text);
}
.product p {
	margin-block: 0.5em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.product .name:hover {
	color: var(--accent);
}
@media (max-width: 700px){
	.product .actions {
		display: flex !important;
	}
}