
/*  © 2017, Carles Bataller Cucurella  [cucurella@gmail.com]  */


/*  estil general  */
* {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body {
	font-family:  Verdana;
	font-size: 11px;
}

/*  links  */
a {
	font-family: Verdana;
	font-weight: bold;
	text-decoration: none;
	font-size: 11px;
	color: #2393DD;
}
a:hover {
	color: #FF00FF;
}



/*  texto1 */
.texto1 {
	font-size: 18px;
}


/* links categories index.php */
.categories {
	font-family: Verdana;
	font-weight: bold;
	text-decoration: none;
	font-size: 10px;
	color: #2393DD;
}







/* ********************** */
/* divs */


/* banderas */
div#banderas {
	float: right;
	width: 110px;
	/*border: 1px solid;*/
	margin-bottom: 6px;
}



/* carrito */
div#carrito {
	float: right;
	border: 1px solid;
	width: 110px;
	margin-bottom: 6px;
	padding: 4px;
}


/* productes */
div#primera_columna {
	float: left;
	border: 1px solid;
	width: 256px;
	margin-right: 10px;
	margin-bottom: 10px;
	/*clear: both;*/
}


/* segona columna */
div#segona_columna {
	float: left;
	width: calc(100% - 386px);
}




/* segona columna > portada 2 DIVs */
#text {
	float: left;
	width: 50%;
	border: 1px solid;
	padding-right: 10px;
}
#images {
	float: left;
	width: 50%;
	border: 1px solid;
}


/* segona columna > portada 1 DIV */
#only_text {
	float: left;
	width: 100%;
}




/* segona columna > portada */
.col3 {
	float: left;
	width: 33.33%;
	border: 1px solid;
	padding-left: 4px;
}
.col2 {
	float: left;
	width: 50%;
	border: 1px solid;
	padding-left: 4px;
}
.col1 {
	float: left;
	width: 100%;
	border: 1px solid;
}





/* imatge logo default */
#img_logo_default {
	border: 0px;
}






/* imatges productes */
div#esq {
	float: left;
	margin-left: 3px;
	margin-top: 6px;
	margin-bottom: 3px;

	padding: 2px;

	width: 248px;

	border: 1px solid #808080;
	background-color: #FFFFCC;
}





#QR_code {
	border: 1px solid;
}





/* ################################################################# */
/* aqui les propietats que només afecten als tablets i telfs. mòbils */

/* tablets < 1024px */
@media screen and (max-width: 1026px) {
	body {
		font-size: 13px;
	}
	a {
		font-size: 12px;
	}
	.categories {
		font-size: 11px;
	}
}


@media screen and (max-width: 1000px) {
	div#segona_columna {
		width: 100%;
	}
}


/* segona columna > portada 2 DIVs */
@media screen and (max-width: 700px) {
	#text {
		width: 100%;
		padding-right: 0px;
	}
	#images {
		width: 100%;
	}
	.col1, .col2, .col3 {
		width: 100%;
		padding-left: 0px;
	}
}




/* telf */
@media screen and (max-width: 570px) {
	div#QR_code {
		display: none;
	}
}


@media screen and (max-width: 470px) {
	div#banderas {
		width: 100%;
		/*margin-bottom: 20px;*/
	}
	div#carrito {
		margin-right: 100px;
		margin-bottom: 20px;
	}
}



