/* Estilos generales para toda la tienda */
body {
	font-family: 'Segoe UI', Arial, sans-serif;
	background: linear-gradient(135deg, #181c20 60%, #232a34 100%);
	color: #e0e0e0;
	margin: 0;
	min-height: 100vh;
}

/* Título principal */
h1 {
	color: #00bcd4;
	text-align: center;
	margin-top: 40px;
	letter-spacing: 2px;
	font-size: 2.5em;
	text-shadow: 0 2px 8px #0ff2;
}

/* Contenedor de productos */
.productos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 32px;
	margin: 40px auto;
	max-width: 1200px;
}

/* Tarjeta de producto */
.producto {
	background: #222a36;
	border-radius: 16px;
	box-shadow: 0 4px 24px #00bcd480;
	padding: 24px 20px;
	width: 260px;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
	border: 1px solid #00bcd4;
}
.producto:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 8px 32px #00bcd4cc;
}
.producto img {
	/* Imagen del producto: más grande y centrada */
	border-radius: 8px;
	margin-bottom: 16px;
	box-shadow: 0 2px 12px #00bcd480;
	background: #181c20;
	width: 90%;
	max-width: 220px;
	height: 180px;
	object-fit: contain;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Estilos base para carrusel futuro */
.carrusel {
	width: 100%;
	max-width: 700px;
	margin: 40px auto;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 4px 24px #00bcd480;
	background: #222a36;
}
.carrusel img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	border-radius: 16px;
}
.producto h2 {
	color: #00e6ff;
	font-size: 1.2em;
	margin: 10px 0 6px 0;
}
.producto p {
	margin: 8px 0;
	font-size: 1em;
}
.producto strong {
	color: #00bcd4;
}

/* Botón genérico para acciones */
.btn {
	display: inline-block;
	background: linear-gradient(90deg, #00bcd4 60%, #00e6ff 100%);
	color: #181c20;
	border: none;
	border-radius: 8px;
	padding: 10px 24px;
	font-size: 1em;
	font-weight: bold;
	cursor: pointer;
	margin-top: 12px;
	box-shadow: 0 2px 8px #00bcd480;
	transition: background 0.2s, color 0.2s;
}
.btn:hover {
	background: linear-gradient(90deg, #00e6ff 60%, #00bcd4 100%);
	color: #fff;
}

/* Lista de categorías */
ul {
	list-style: none;
	padding: 0;
	margin: 40px auto;
	max-width: 600px;
}
ul li {
	background: #222a36;
	border-radius: 12px;
	margin-bottom: 18px;
	padding: 18px 24px;
	font-size: 1.1em;
	box-shadow: 0 2px 12px #00bcd480;
	border-left: 6px solid #00bcd4;
	transition: box-shadow 0.2s;
}
ul li:hover {
	box-shadow: 0 6px 24px #00bcd4cc;
}
