/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* Contenidor principal de la targeta */
.pc-libro {
  position: relative;
  overflow: hidden;
}

/* Imatge de la Post Card */
.pc-libro-img img {
  display: block;
  width: 100%;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Enfosquir i fer un petit zoom a la imatge en hover */
.pc-libro:hover .pc-libro-img img {
  filter: brightness(0.4);
  transform: scale(1.05);
}

/* Capa d’overlay amb el text i/o shortcode */
.pc-libro-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portada .pc-libro-overlay {
  inset: 20px 25px;
}

/* Quan fem hover sobre la targeta, el text apareix */
.pc-libro:hover .pc-libro-overlay {
	opacity: 1;
	z-index: 1;
	background: rgba(0,0,0,0.8);
	padding: 0;
}
/* Text en blanc perquè es llegeixi sobre el fosc */
.pc-libro-overlay * {
  color: #ffffff !important;
}
a.dinsllibre {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
}
.botocompra {
	display: inline-block;
	position: relative;
	margin: 1em 0;
	font-family: inherit;
	background: var(--awb-color3);
	border-radius: 25px;
	transition: background-color 0.3s ease, transform 0.2s ease;
	padding: 10px 20px;
}
.botocompra-main {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0;
	border: none;
	cursor: pointer;
	color: #fff;
	font-size: 1.5rem;
	text-decoration: none;
	background: transparent;
}
.botocompra-main:hover, .botocompra-main:focus {
	transform: translateY(-1px);
	outline: none;
}
.botocompra .wrapperlinks {
	max-height: 0;
	overflow: hidden;
	transition: max-height 1s ease;
	padding-top: 0;
}
.botocompra.botocompra-open .wrapperlinks {
	max-height: 500px;
	padding-top: 0.75em;
}
.no-touch .botocompra:hover .wrapperlinks {
	max-height: 500px;
	padding-top: 0.75em;
}
.botocompra .wrapperlinks-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	flex-direction: column;
	padding-bottom: 0.5em;
}
.botocompra-link {
	display: block;
	padding: 0.4em 0.9em;
	border-radius: 999px;
	background-color: #f1f1f1;
	color: #333;
	font-size: 1rem;
	text-decoration: none;
	border: 1px solid #ddd;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	white-space: nowrap;
	text-align: center;
}
    .botocompra-link:hover,
    .botocompra-link:focus {
        background-color: #333;
        color: #fff;
        border-color: #333;
        outline: none;
    }
