/*
Theme Name: TuTienda WP
Theme URI: https://tusalon.online
Author: Félix
Author URI: https://tusalon.online
Description: Tema ligero de tienda para WordPress con cabecera sticky y botón de carrito.
Version: 1.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tutienda-wp
*/

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
}

.sticky-header {
  position: sticky;
  top: 0;
  background: #25d366;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-header.shrink {
  padding: 0.5rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: white;
}

.producto {
  border: 1px solid #ddd;
  padding: 1rem;
  margin: 1rem;
  background: white;
  border-radius: 8px;
  text-align: center;
}






.tutienda-menu {

    list-style: none;

    display: flex;

    gap: 2rem;

    font-weight: 600;

    text-transform: uppercase;

    position: relative;

}


.tutienda-menu li {

    position: relative;

}


.tutienda-menu li a {

    color: #333;

    text-decoration: none;

    transition: color 0.3s ease;

}


.tutienda-menu li a:hover {

    color: #e63946; /* color acento */

}


/* Submenú oculto por defecto */

.tutienda-menu li ul {

    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    background: #fff;

    list-style: none;

    padding: 0.5rem 1rem;

    box-shadow: 0 4px 8px rgba(0,0,0,0.1);

}


/* Mostrar submenú al pasar el mouse */

.tutienda-menu li:hover > ul {

    display: block;

}


.tutienda-menu li ul li {

    margin: 0.5rem 0;

}


.tutienda-menu li ul li a {

    color: #555;

    text-transform: none;

    font-weight: 400;

}


.tutienda-menu li ul li a:hover {

    color: #e63946;

}





