/*  © 2013, 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;
}









/* ************ DIVs ************ */

/* logo */
div#logo {
	float: left;
	width: calc(100% - 98px);	
	/*border: 1px solid;*/

	margin-right: 1px;
	margin-bottom: 10px;
}

/* carret */
div#carret {
	float: right;
	border: 1px solid;
	width: 90px;
	padding: 5px;
	margin-top: 3px;
}


/* imatges del producte */
div#producte {
	float: left;
	/*border: 1px solid;*/
	margin-bottom: 4px;
	width: calc(100% - 98px);
}


/* info del producte */
div#info_producte {
	float: left;
	border: 1px solid;
	margin-bottom: 4px;
	width: 100%
}


/* final */
div#final {
	/*border: 1px solid;*/
	clear: both;
}








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



