/*
	BIENVENIDO / WELCOME

											Este es el index principal de estilos del proyecto.
											Es altamente importante que siempre se añada este .css
											a todos los .html en este proyecto. El .css es compatible
											con Chrome, Firefox, Edge y Opera. Safari es altamente compatible,
											pero puede requerir edición adicional.

											Todo el contenido es creado y adquirido por Alejandro Solano,
											ah.alesolano@gmail.com. De presentar problemas, por favor lea el
											LICENSE.txt de la raíz. Muchas gracias.

											Att: Alejandro (Alex) Solano.
	--------------------------------------------------------------------------------------------------------------------
*/

/*
	00. ESTILO GENERAL
	--------------------------------------------------------------------------------------------------------------------
*/

/*Quicksand*/
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
/*DM Sans*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100;9..40,200;9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900;9..40,1000&display=swap');
/*Berkshire Swash*/
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap');


body{
	background-color		: #FFF0FF			   ;
	font-family				: 'DM Sans'				;
	margin					: 0						;
}



/*	ESTILOS ORIENTADO A OBJETOS
------------------------------------------------------------ 
*/

#errorMsg {
  min-height: 1.2em;         
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.2;
  color: #c62828;

  opacity: 0;
  transition: opacity 0.25s ease;
}

#errorMsg:not(:empty),
#mensaje_pago:not(:empty) {
  opacity: 1;
}

#msg {
  min-height: 1.2em;         
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.2;

  transition: opacity 0.25s ease;
}

#errorMsg:not(:empty) {
  opacity: 1;
}




/* -------- Section General -------- */

.general-section{
	display					: flex					;
	height					: fit-content			;
	width					: 100%					;

	justify-content			: center				;
	align-items				: center				;

	flex-direction			: column				;

	background-color		: inherit				;
	margin					: 0						;
}

/* -------- Container General -------- */

.container{
	display					: flex					;
	height					: fit-content			;
	max-width				: 100rem				;
	width					: 100%					;

	flex-direction			: inherit				;
}

/* -------- Zoom de Productos Animación -------- */

.image-animation{
	overflow				: hidden				;
}

.image-animation img{
	transition				: ease-out .2s			;
}

.image-animation img:hover{
	transform				: scale(1.05)			;
	z-index					: 0						;
}

/* 	CATÁLOGO STYLE (index.html, catalogo.html)
------------------------------------------------------------
*/

.row{
	display					: flex					;
	flex-direction			: row					;
	height					: fit-content			;
	width					: 100%					;
	justify-content			: space-between			;
	gap						: 3rem					;
}

.product-layout{
	display					: flex					;	
	flex-direction			: column				;
	width					: fit-content			;
}

.product-layout a:nth-child(1){
	width					: 16rem					;
	height					: 23rem					;
	border-radius			: 3rem					;
	margin-bottom			: 1rem					;
	
	box-shadow				: 0px 0px 15px #18181811;
}

.product-layout a img{
	width					: 100%					;
	height					: 100%					;
	margin-bottom			: 5%					;
	
	display					: block					;
	object-fit				: cover					;

	border-radius			: 3rem					;
	transition				: 0.3s					;
}

.product-layout p{
	font-size				: 1.125rem				;
	font-weight				: 500					;
	width					: fit-content			;
	margin					: 0						;
	margin-top				: 0.4rem				;
}

.product-layout p:nth-child(3){
	color					: #8237BD			   ;
}



/*	BOTONES	
------------------------------------------------------------ 
*/

/* Btn Check */

.btnCheck{
	display					: flex					;
	justify-content			: center				;

	padding					: 5% 0rem				;
	margin-top				: 0.5em					;

	background-color		: rgba(224, 193, 246, 0.68);
	border-radius			: 2.625rem				;

	font-size				: 1rem					;
	color					: #8237BD			   ;
	font-weight				: 500					;
	text-decoration			: none					;
	

	transition				: ease 0.10s			;
}

.btnCheck:hover{
	color					: #FFF0FF			   ;
	background-color		: #8237BD			   ;
}

/* -------- Btn Explore -------- */

.btn-explore{
	display					: flex					;
	justify-content			: center				;
	align-items				: center				;
	gap						: 0.5em					;

	width					: fit-content			;
	height					: 2em					;
	padding					: 0.1em 1.3em			;

	font-family				: "Quicksand"			;
	color					:#FFF0FF			   ;
	font-size				: 1.8rem				;
	font-style				: normal				;
	font-weight				: 700					;

	text-decoration			: none					;

	background-color		: #B47DDB			   ;
	border-radius			: 32px					;
	border					: 0						;
	box-shadow				: 0px 0px 0px #F7D01F ;

	transition				: 0.15s ease-out		;
}
.btn-explore:hover{
	gap						: 0.85em				;

	padding					: 0.1em 0.95em 0.1em 1.3em;

	background-color		: #4B1C71			   ;
	box-shadow				: 0 4px 0px #F7D01F   ;
	
}

.btn-explore img{
	max-width				: 100%					;
	height					: auto					;
}

/* -------- Regular Btn -------- */

.btn-regular{
	display					: flex					;
	justify-content			: center				;
	align-items				: center				;
	gap						: 0.5em					;

	width					: fit-content			;
	height					: 2em					;
	padding					: 0.1em 1.3em			;

	font-family				: "Quicksand"			;
	color					:#FFF0FF			   ;
	font-size				: 1.8rem				;
	font-style				: normal				;
	font-weight				: 700					;

	text-decoration			: none					;

	background-color		: #4B1C71			   ;
	border-radius			: 32px					;
	border					: 0						;
	box-shadow				: 0px 0px 0px #F7D01F ;

	transition				: 0.10s ease-out		;
}
.btn-regular:hover{
	
	color					:#4B1C71			   ;
	background-color		: #E0C1F6			   ;
}

.btn-regular img{
	max-width				: 100%					;
	height					: auto					;
}

/*	CARRITO CLASES (CLASS)	
------------------------------------------------------------ 
*/

/* --------  PopUp de Carrito -------- */

.mini-popup {
    position				: fixed					;

    right					: 20px					;
    bottom					: 20px					;
    background				: #1f1f1f			   ;
    color					: white			   ;
    padding					: 12px 16px				;
    border-radius			: 8px					;
    opacity					: 0						;

    transform				: translateY(20px)		;
    transition				: all .3s ease			;
    font-size				: 14px					;
    z-index					: 9999					;
    box-shadow				: 0 4px 15px rgba(0,0,0,0.2);
}

.mini-popup.show {
    opacity					: 1						;
    transform				: translateY(0)			;
}

/* --------  Contador de productos en carrito -------- */

.cart-count {
	display					: flex					;
    align-items				: center				;
    justify-content			: center				;

    min-width				: 20px					;
    min-height				: 20px					;

    position				: absolute				;
    top						: -6px					;
    right					: -6px					;

    background-color		: #B47DDB			   ;
    color					: white			   ;

    font-size				: 0.7rem				;
    font-weight				: 700					;
    font-family				: 'DM Sans'				;

    padding					: .15rem .15rem .13rem .15rem;
    border-radius			: 50%					;


    box-shadow				: 0 2px 6px rgba(0,0,0,0.2);
}


	
/*
	01. BARNAV STYLE
	--------------------------------------------------------------------------------------------------------------------
*/

.barnav{
	display					: flex					;
	position				: sticky				;
	top						: 0						;
	box-sizing				: border-box			;
	justify-content			: center				;
	padding					: 0.3rem 2%				;

	width					: 100%					;
	z-index					: 1						;

	transition				: ease-in-out 0.15s		;
}

.barnav.scrolled{
	padding					: 0.3rem 5%			;
}

nav{
	display					: flex					;
	justify-content			: space-between			;
	width					: 100%					;
	align-items				: center				;
}

/* !!! no borrar esto. Style de navegación después de mod. */
.nav.scrolled{
	background-color		: #fff		   	   	   ;
	box-shadow				: 0rem 0rem 5px 0.5px #1b0d2657;
	border-radius			: 32rem					;
}

.logo{
	display					: flex					;
	align-items				: center				;
	height					: 4.5em					;

	padding-left			: 3em					;
}

img{
	height					: inherit				;
} 

.barnav-options{
	display					: flex					;
	justify-content			: space-evenly			;
	width					: 42.375rem				;
	margin-right			: 2em;
}

.barnav-options a{
	width					: fit-content			;
	text-decoration			: none					;
}

nav a p {
	display					: flex					;
	text-align				: center				;
	padding					: 0.5em 1em				;

	border-radius			: 32px					;

	color					: #4b1c71			   ;
  	font-family				: "DM Sans", Helvetica	;
	font-size				: 1.25rem				;
	font-weight				: 600					;

	transition				:	 0.15s ease-out		;
}

nav div p:hover{
	color					: white			   ;		
  	background-color		: #4b1c71			   ;
}

/* -------- Barnav Perfil -------- */

.barnav-perfil {
  position: relative;
  display: inline-block;
  width: 2.5em;
  height: 2.5em;

  margin-right: 3em;
}

.barnav-perfil img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.15s ease;
}

.barnav-perfil .img-hover {
  opacity: 0;
}

.barnav-perfil:hover .img-hover {
  opacity: 1;
}

.barnav-perfil:hover .img-normal {
  opacity: 0;
}

/* -------- Barnav Carrito -------- */

.barnav-carrito {
  position: relative;
  display: inline-block;
  width: 2.5em;
  height: 2.5em;

  margin-right: 3em;
}

.barnav-carrito  img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.15s ease;
}

.barnav-carrito .img-hover {
  opacity: 0;
}

.barnav-carrito :hover .img-hover {
  opacity: 1;
}

.barnav-carrito:hover .img-normal {
  opacity: 0;
}



/*
	02. HERO STYLE

	Dev notes / Nota de desarrollador:  	Queremos que el hero esté siempre fragmentado
											al mismo nivel que la pantalla del usuario. Es, a
											efectos del proyecto, la cara de la eshop. Cualquier
											modificación es aceptada siempre y cuando el hero sea
											del mismo tamaño de la pantalla. 
	--------------------------------------------------------------------------------------------------------------------
*/

/* -------- Container Main -------- */

.hero {
	display					: flex					;
	justify-content			: center				;
	align-items				: center				;
	
	height					: 45rem		 			;

	padding					: 3rem 2rem 3.5rem 2rem	;
}

/* -------- Outsidebox -------- */

.hero-box {
	display					: flex					;

	width					: 100%					;
	max-width				: 100rem				;
	height					: 100%					;

	border-radius			: 3.75rem				;
}

/* --------  Div Izquierdo -------- */

main.hero-box div {
	display					: flex					;
	flex-direction			: column				;
	justify-content			: space-evenly			;
	
	width					: 50%					;
	padding					: 1rem 0rem 1rem 0rem	;

    font-family				: 'Quicksand',sans-serif;
	color					: #FFF0FF			   ;
	font-weight				: 700					;

	background-color		: #8237BD			   ;
	border-radius			: 3rem 0rem 0rem 3rem	;
}

main.hero-box div h1{
	font-size				: 4.5rem				;
	margin					: 0rem 6rem 0rem 5rem	;
}

main.hero-box div a{
	margin					: 0rem 6rem 0rem 5rem	;
}

/* -------- IMG Derecha -------- */

main.hero-box > a{
	height					: 100%					;
	width					: 50%					;
	
	overflow				: hidden				; 

	border-radius			: 0rem 3rem 3rem 0rem	;
}

main.hero-box > a img{
	object-fit				: cover					;
	height					: inherit				;
	width					: 100%					;

	border-radius			: inherit				;
}



/*
	03. LLAMADA DE ACCIÓN
	--------------------------------------------------------------------------------------------------------------------
*/

.callofaction{
	display					: flex					;
	align-items				: center				;
	justify-content			: center				;
	height					: 6em					;
	width					: 100%					;

	text-align				: center				;
	font-family				: 'Berkshire Swash', cursive;
	color					: #F7D01F			   ;
	font-size				: 3em					;
	font-size-adjust		: 1px					;
	font-weight				: 400					;
	
	background-color		: #8237BD			   ;
}

.callofaction div{
	display					: flex					;
	align-items				: center				;
	justify-content			: center				;
	max-width				: 90rem					;
	line-height				: 150%					;

	margin					: 0em 10%				;
}



/*
	04. DESCUBRE NUESTROS PRODUCTOS
	--------------------------------------------------------------------------------------------------------------------
*/

.featuredProducts{
	display					: flex					;
	flex-direction			: column				;
	align-items				: center				;

	padding					: 5rem 10% 5rem 10%		;
}

.featuredProducts p:first-child{
	text-align				: center				;
	font-size				: 2.5rem				;
	font-weight				: 700					;
	color					: #8237BD			   ;
	font-family				: 'Quicksand'			;
	margin					: 0 0 4rem 0			;
}

.featuredProducts .container{
	max-width				: 80rem					;
}



/*
	05. CATEGORÍAS (OFFICE CATEGORIES CLASS)
	--------------------------------------------------------------------------------------------------------------------
*/

.officeCategories{
	display					: flex					;
	flex-direction			: column				;
	align-items				: center				;

	padding					: 3rem 2rem				;
	gap						: 2rem					;

	height					: fit-content			;
	background-color		: #F4CA95		 	   ;
}

.tittleTsukiOffice{
	display					: flex					;
	flex-wrap				: wrap					;
	align-items				: center				;
	justify-content			: space-between			;
	width					: 100%					;
	max-width				: 100rem					;
	margin					: 0						;
	padding					: 0						;
}

.tittleTsukiOffice p{
	font-family				: 'Quicksand'			;
	color					: #FFF0FF		  	   ;
	font-size				: 8rem					;
	font-weight				: 700					;
	margin					: 0						;
	padding					: 0						;
}

.officeCategories div.container{
	flex-direction			: row					;
	justify-content			: space-evenly;
	/*flex-wrap				: wrap					; habilitar si da problemas */
	gap						: 1rem					;
	max-width				: 100rem				;
	width					: 100%					;
	height					: fit-content			;
	
}

.boxCategoriesMedium{
	display					: flex					;
	flex-direction			: column				;
	max-width				: 30%					;
	width					: 100%					;
	max-height				: 40rem					;
	height					: 40rem					;
	gap						: 0						;
}

.boxCategoriesMedium figure{
	display					: flex					;
	width					: 100%					;
	height					: 65%					;
	margin					: 0						;
	padding					: 0						;

	border-radius			: 3.75rem 3.75rem 0 0	;

	transition				: ease 0.30s;
}

.boxCategoriesMedium figure a{
	display					: flex					;
	width					: 100%					;
	height					: 100%					;
	border-radius			: 3.75rem 3.75rem 0 0	;
}

.boxCategoriesMedium figure a img{
	display					: flex					;
	width					: 100%					;
	height					: 100%					;
	background-attachment	: local					;
	object-fit				: cover					;

	border-radius			: 3.75rem 3.75rem 0 0	;
}

.boxCategoriesMedium div{
	display					: flex					;
	flex-direction			: column				;
	align-items				: center				;
	justify-content			: center				;
	height					: auto					;
	width					: 100%					;

	background-color		: #8237BD			   ;
	
	border-radius			: 0 0 3.75rem 3.75rem	;
}

.boxCategoriesMedium:nth-child(2) figure{
	border-radius			: 0 0 3.75rem 3.75rem 	;
}

.boxCategoriesMedium:nth-child(2) figure a{
	border-radius			: 0 0 3.75rem 3.75rem 	;
}

.boxCategoriesMedium:nth-child(2) figure a img{
	border-radius			: 0 0 3.75rem 3.75rem 	;
}

.boxCategoriesMedium:nth-child(2) div{
	order					: -1					;
	border-radius			: 3.75rem 3.75rem 0 0 	;
}


.boxCategoriesMedium div p{
	font-family				: 'Quicksand'			;

	margin					: 2rem 0rem				;
	padding					: 0						;

	font-size				: 3.125rem				;
	color					: #FFF				   ;
	font-style				: normal				;
	font-weight				: 700					;
	line-height				: 100%					;
}

.boxCategoriesMedium div a{
	margin					: 0rem 0rem 2rem 0rem	;
}



/*
	06. PRODUCTOS DESTACADOS (HIGHLIGHTS PRODUCTS 1)
	--------------------------------------------------------------------------------------------------------------------
*/

.highlightsProduct{
	display					: flex					;
	flex-direction			: column				;
	align-items				: center				;

	padding					: 3rem 2rem				;
	gap						: 3rem					;

	height					: fit-content			;
}

.highlightsProduct .container{
	flex-direction			: row					;
	gap						: 2rem					;

	height					: 28rem					;
	max-width				: 80rem					;
}

.highlightsProduct .container div{
	display					: flex					;
	flex-direction			: column				;
	justify-content			: center				;
	gap						: 1rem				 	;

	width					: auto					;

	font-size				: 1.125rem				;
}

.highlightsProduct .container div p{
	margin					: 0						;
	padding					: 0						;
}

.highlightsProduct .container div p:nth-child(1){
	color					: #967CAA			   ;
	font-weight				: 400					;
}

.highlightsProduct .container div p:nth-child(2){
	color					: #8237BD			   ;
	font-size				: 2.5rem				;
	font-weight				: 700					;
	margin					: -1rem 0rem -0.5rem 0rem;
	padding					: 0						;
}

.highlightsProduct .container div p:nth-child(3){
	color					: #8237BD			   ;
	font-size				: 1.5rem				;
	font-style				: normal				;
	font-weight				: 500					;
}

.highlightsProduct .container div p:nth-child(4){
	font-size				: 1.125rem				;
	font-weight				: 500					;
	line-height				: 150%					;
	margin					: 0rem 0rem 0rem 0rem	;
}

.highlightsProduct .container div a{
	padding					: 0.8rem 3rem			;
	width					: fit-content			;
	margin					: 2rem 0rem 0rem 0rem	;
}

.highlightsProduct .container > a{
	display					: flex					;
	align-items				: center				;
	justify-content			: center				;

	height					: 100%					;
	min-width				: 40%					;

	border-radius			: 3.75rem				;
}

.highlightsProduct .container > a img{
	display					: flex					;
	height					: 100%					;
	width 					: 100%					;
	object-fit				: cover					;

	border-radius			: 3.75rem				;
}

/*
	07. INFORMATION
	--------------------------------------------------------------------------------------------------------------------
*/

.information{
	display					: flex					;
	align-items				: center				;
	justify-content			: center				;

	padding					: 1rem 2rem				;
	gap						: 2rem					;

	height					: fit-content			;
}

.information div.container{
	display					: flex					;
	flex-direction			: row					;
	justify-content			: space-evenly			;
	padding					: 3rem 0rem				;

	height					: fit-content			;
	max-width				: 100rem				;

	background-color		: #8237BD			   ;
	border-radius			: 3.75rem				;
}

.information div.container div{
	display					: flex					;
	flex-direction			: column				;
	align-items				: center				;
	gap						: 0.6rem				;

	width					: 25%					;
	margin					: 0						;
	padding					: 0						;
	
	color					: #FFF				   ;
}

.information div.container div p{
	margin					: 0						;
	padding					: 0						;	
	font-style				: normal				;
	line-height				: 150%					;
}

.information div.container div img:nth-child(1){
	height					: 5rem					;
}

.information div.container div p:nth-child(2){
	text-align				: center				;
	font-family				: 'Quicksand'			;
	font-size				: 1.875rem				;
	font-weight				: 600					;
}

.information div.container div p:nth-child(3){
	text-align				: center				;
	color					: #FFF				   ;
	font-size				: 1.125rem				;
}

.information div.container div a{
	color					: #FFF				   ;
	text-decoration			: underline				;
}

.information div.container div a:hover{
	text-decoration			: none					;
}

/*
	08. HIGHLIGHTS PRODUCTS 2
	--------------------------------------------------------------------------------------------------------------------
*/

/*Same as Highlight Products 1*/

/*
	09. TSUKI FASHION TITTLE
	--------------------------------------------------------------------------------------------------------------------
*/

.tsukiFashionTittle{
	display					: flex					;
	align-items				: center				;
	justify-content			: center				;

	padding					: 0 rem					;

	height					: fit-content			;
	background-color		: #B47DDB			   ;
}

.tsukiFashionTittle div{
	display					: flex					;
	align-items				: center				;
	justify-content			: center				;
	margin					: -4rem 0rem			;

	height					: 50rem					;
	max-width				: 100rem				;
}

/*
	10. FEATURED FASHION PRODUCTS 
	--------------------------------------------------------------------------------------------------------------------
*/

.featuredFashionProducts{
	display					: flex					;
	flex-direction			: column				;
	align-items				: center				;

	padding					: 4rem 10% 1rem 10%		;
}

.featuredFashionProducts p:first-child{
	width					: 100%					;
	
	text-align				: center				;
	font-size				: 2.5rem				;
	font-weight				: 700					;
	color					: #8237BD			   ;
	font-family				: 'Quicksand'			;
	margin					: 0 0 3rem 0			;
}

.featuredFashionProducts .container{
	max-width				: 80rem					;
}

/*
	11. HIGHLIGHT FASHION PRODUCTS 
	--------------------------------------------------------------------------------------------------------------------
*/

.highlightFashionProducts{
	display					: flex					;
	justify-content			: center				;

	padding					: 2rem 0rem				;

	height					: fit-content			;
}

.highlightFashionProducts div.container{
	display					: flex					;
	flex-direction			: row					;

	padding					: 0						;
	margin					: 0						;

	max-height				: 35rem					;
	height					: fit-content			;
	max-width				: 100%					;
	width					: 100%					;	
}



.highlightFashionProducts div.container div.fashion-layout{
	display					: flex					;
	justify-content			: end					;
	width					: 50%					;
	background-color		: #8237BD			   ;
}

.highlightFashionProducts div.container div.fashion-layout div.product-box{
	display					: flex					;
	position				: relative				;
	align-items				: center				;
	justify-content			: center				;
	margin					: 0						;

	height					: 100%					;
	max-width				: 50rem					;
	width					: 100%					;
}

.highlightFashionProducts div.container div.fashion-layout div.product-box div{
	display					: flex					;
	flex-direction			: column				;
	align-items				: center				;
	gap						: 0.5rem				;

	position				: absolute				;
	margin-top				: 40%					;
}

.highlightFashionProducts div.container div.fashion-layout div.product-box div span{
	margin					: 0						;

	color					: #FFF				   ;
	font-family				: Quicksand				;
	font-size				: 3.5rem				;
	font-style				: normal				;
	font-weight				: 700					;
}

.highlightFashionProducts div.container div.fashion-layout div.product-box div a{
	margin					: 0						;
	padding-left			: +3rem					;
	padding-right			: +3rem					;
}

.highlightFashionProducts div.container div.fashion-layout div.product-box img{
	max-height				: 90%					;	
	max-width				: 90%					;
	object-fit				: cover					;
}

.highlightFashionProducts div.container div.fashion-layout:nth-child(2){
	justify-content			: start					;
	background-color		: #F7D01F		   	   ;
}

.highlightFashionProducts div.container div.fashion-layout:nth-child(3){
	display					: none					;
}

/*
	12. FASHION CATEGORIES
	--------------------------------------------------------------------------------------------------------------------
*/

.fashionCategories{
	display					: flex					;
	flex-direction			: column				;
	align-items				: center				;

	padding					: 5rem 2rem 2rem 2rem	;
	gap						: 2rem					;

	height					: fit-content			;
}

.fashionCategories div.container{
	flex-direction			: row					;
	justify-content			: space-evenly			;
	/*flex-wrap				: wrap					;*/
	gap						: 1rem					;
	max-width				: 100rem				;
	width					: 100%					;
	max-height				: 40rem					;
}

/*
	13. VALIDACIONES
	--------------------------------------------------------------------------------------------------------------------
*/


/*
	14. PAGO CONFIRMADO
	--------------------------------------------------------------------------------------------------------------------
*/

/* BOX DE COMPRA */

.compra-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
}

.compra-box {
  max-width: 520px;
  width: 80%;
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

.compra-box h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2d2d2d;
}

.compra-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
  margin-bottom: 18px;
}

.compra-box .pedido-ref {
  font-size: 0.9rem;
  color: #777;
  margin-top: 10px;
}

/* ÍCONO DE COMPRA */

.compra-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #e9f7ef;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compra-icon svg {
  width: 28px;
  height: 28px;
  stroke: #2ecc71;
}

/* BOTONES */

.compra-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.10s ease;
  cursor: pointer;
  border: none;
}

.compra-btn.primary {
  background-color: #8237BD; 
  color: #ffffff;
}

.compra-btn.primary:hover {
  background-color: #b77be6;
  transform: translateY(-2px);
}

.compra-btn.secondary {
  background-color: #f4f2ff;   
  color: #4a3f8c;              
  border: 1px solid #ded9ff;
}

.compra-btn.secondary:hover {
  background-color: #ebe7ff;
  transform: translateY(-2px);
}

/* ANIMACION */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*
	14. FOOTER
	--------------------------------------------------------------------------------------------------------------------
*/

footer{
	display					: flex					;
	flex-direction			: column				;
	justify-content			: center				;

	height					: fit-content			;
	width					: 100%					;
	background-color		: #1B0D26			   ;
	font-weight				: 600					;
}

.footer-division{
	display					: flex					;
	flex-direction			: column				;
	align-items				: center				;
	justify-content			: center				;
	
	height					: 20rem					;
	background				: linear-gradient(180deg, #FFF0FF 50%, #1B0D26 50%);
}

footer a{
	text-decoration			: none					;
	color					: white			   ;
} 

footer a:hover{
	text-decoration			: underline				;
} 

footer div.footer {
	display					: flex					;
	flex-direction			: column				;
	padding					: 0rem 3rem 3rem 3rem	;
	gap						: 2rem					;
}

footer div.footer div{
	display					: flex					;
	align-items				: center				;
	width					: 100%					;
	gap						: 2rem					;
}

footer div.footer div *{
	width					: fit-content			;
}

footer div.footer div div{
	display					: flex					;
	flex-grow				: 1						;
	justify-content			: end					;
	gap						: 0.5rem				;
	
}

footer div.footer div div a,
footer div.footer div div p{	
	color					: #B888DA			   ;
}


footer div.footer div div a img{
	display					: flex					;
	width					: 100%					;
	height					: 100%					;
}

footer div.footer span{
	display					: flex					;
	justify-content			: end					;
	width					: 100%					;
	color					: #B888DA			   ;
}


/* ============================================================
   TSUKI - FILE INPUT (Examinar...) Reusable
   Uso:
   <label class="tsuki-file">
     <input type="file" ...>
     <span class="tsuki-file-btn">Examinar</span>
     <span class="tsuki-file-text" data-empty="Ningún archivo seleccionado">Ningún archivo seleccionado</span>
   </label>
   ============================================================ */

.tsuki-input{
  width: 30rem;
  padding: 0.75rem 1rem;

  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;

  color: #4B1C71;
  background-color: #ffffff;

  border: 2px solid #E1C5FA;
  border-radius: 1rem;

  outline: none;
  box-sizing: border-box;

  transition: all 0.15s ease;
}

/* Placeholder */
.tsuki-input::placeholder{
  color: #9C7CC5;
  font-weight: 400;
}

/* Hover */
.tsuki-input:hover{
  border-color: #B47DDB;
}

/* Focus */
.tsuki-input:focus{
  border-color: #8237BD;
  box-shadow: 0 0 0 4px rgba(224, 193, 246, 0.55);
}

/* Disabled */
.tsuki-input:disabled{
  background-color: #F6F0FA;
  color: #9A8BAF;
  cursor: not-allowed;
}

/* =========================================================
   HOME · Featured Products (4 por fila como Catálogo)
   ========================================================= */

.featuredProducts .row{
  display: flex;
  justify-content: flex-start;
  gap: clamp(1rem, 2.2vw, 2rem);
  width: 100%;
  flex-wrap: wrap; /* por si en móvil baja */
}

/* 4 cards por fila */
.featuredProducts .row .product-layout{
  flex: 0 0 calc((100% - 3 * clamp(1rem, 2.2vw, 2rem)) / 4);
  width: auto;
  max-width: none;
  box-sizing: border-box;
}

/* Imagen ocupa el ancho real de la card */
.featuredProducts .row .product-layout a:nth-child(1){
  width: 100%;
}

/* Responsive */
@media (max-width: 1100px){
  .featuredProducts .row .product-layout{
    flex: 0 0 calc((100% - 2 * clamp(1rem, 2.2vw, 2rem)) / 3);
  }
}
@media (max-width: 820px){
  .featuredProducts .row .product-layout{
    flex: 0 0 calc((100% - 1 * clamp(1rem, 2.2vw, 2rem)) / 2);
  }
}
@media (max-width: 520px){
  .featuredProducts .row .product-layout{
    flex: 0 0 100%;
  }
}
