:root {
	--color-primary: #E45E84;
	--color-semiblack: #343434;
	--color-whitesmoke: #F1F1F1;
	--my-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

header { 
	background-color: var(--color-primary);
	color: white;
	padding: 15px 0 10px 0;
}

footer {
	margin: 100px 0 50px 0;
}

#header-content { max-width: 1366px; margin: 0 auto; }
#nav-content { max-width: 1366px; margin: 30px auto; }
.body-content { max-width: 1366px; margin: 30px auto; }

.product-thumb { transition: all 0.3s ease; }
.product-thumb:hover{ transform: scale(1.1); }

.header-social-icon { width: 24px; }
.footer-social-icon { width: 24px; }
.footer-links a { color: var(--color-semiblack); transition: all 0.3s ease; }
.footer-links a:hover { text-decoration: underline; }

/* Clases generales */
.block-margin { margin: 100px auto!important; }
.is-fullwidth { width:100%; }

/* Hero background */
.hero-background { 
	background-image: url(../images/background-buttercream.jpg); 
	background-position: bottom;
	background-repeat: no-repeat; 
	background-attachment: fixed;
	background-size: cover;
}

/* Home Sliders: Swiper */
.swiper-home {
	border-radius:24px; box-shadow: var(--my-shadow);
	width: 100%;
	height: 500px;
}
.home-slider-title {
	width: 100%;
	text-align: center;
	position: relative;
	top:40%;
}
.home-slider-subtitle {
	color: white;
	text-transform: uppercase;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	position: relative;
	top:45%;
}
.background-slider-1 {
	background-image: url(../images/slider1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* Swiper feed novedades */
.swiper-feed {
	width: 100%;
	height: 350px;
}

.swiper-feed .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.swiper-feed .swiper-slide {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Home banners */
.home-banner { 
	width: 100%; 
	height: 200px; 
	background-color: var(--color-whitesmoke);
	border-radius: 18px;
	transition: all 0.1s ease;
	box-shadow: var(--my-shadow);
}
.home-banner .home-banner-title { 
	font-size: 2.5rem;
	text-align: center;
	text-transform: uppercase;
	color: var(--color-primary);
	width: 100%;
	display: inline-block;
	font-weight: bold;
	position: relative;
	top: 40%;
}
.home-banner .home-banner-subtitle { 
	text-align: center;
	text-transform: uppercase;
	color: var(--color-semiblack);
	width: 100%;
	display: inline-block;
	font-weight: bold;
	position: relative;
	top: 40%;
}
.home-banner:hover { transform: scale(1.1); }
.background-banner-tartas {
	background-color: var(--color-primary);
	background-image: url(../images/background-tartas.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.background-banner-dulces {
	background-color: var(--color-primary);
	background-image: url(../images/background-dulces.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.background-banner-mesas {
	background-color: var(--color-primary);
	background-image: url(../images/background-mesa-dulce.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}



/* Mobile queries */
@media (max-width:960px) {

	body { text-align: center; }
	#header-content { display: none!important }
	.body-content { margin: 0 1.5em; }
	.has-text-centered-mobile { text-align: center; }
	.home-slider-subtitle { line-height: 1em; }

}