

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
}



/* NAVBAR */
.navbar {
    background-color: #173a58;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    color: #fff;
}
.navbar .logo {
    display: flex;
    align-items: center;
}
.navbar .logo img {
    width: 80px;
    margin-right: 10px;
}
.search-bar form {
    display: flex;
}
.search-bar input {
     width: 220px;
    padding: 8px;
    border: none;
    border-radius: 6px 0 0 6px;
    outline: none;
}
.search-bar button {
     background-color: #ffcc00;
    border: none;
    padding: 8px 12px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    color: #333;
    font-size: 16px;
}
.nav-links a {
    color: #c3af96;
    margin: 0 10px;
    text-decoration: none;
}

/* SLIDER */
.banner {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.banner img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.caption {
    position: absolute;
    bottom: 40px;
    left: 60px;
    background: rgba(0,0,0,0.4);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 24px;
    padding: 10px;
    color: white;
}
.prev { left: 20px; }
.next { right: 20px; }

/* CATEGORÍAS */
.categorias {
    text-align: center;
    padding: 40px 0;
    background-color: white;
}
.cat-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.cat-item {
    width: 100px;
    text-align: center;
}
.cat-item img {
    background: #ffe5d9;
    padding: 10px;

    transition: transform 0.3s ease; /* transición suave */
    width: 100px; /* tamaño base */
    height: 100px;
    border-radius: 50%; /* si son circulares */

}
.cat-item img:hover {
  transform: scale(1.15); /* efecto zoom */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* PRODUCTOS */
.productos {
    padding: 30px;
}

.grid-productos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Tarjeta como enlace */
.card {
    display: block; /* Muy importante */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 15px;
    width: 200px;
    text-align: center;

    /* Quitar aspecto de enlace */
    text-decoration: none !important;
    color: inherit !important;
    
    transition: 0.25s ease;
}

.card:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
}

/* Evitar que el texto se ponga azul o subrayado */
.card h3,
.card p {
    color: #222 !important;
    text-decoration: none !important;
}

/* Categoría y precio colores */
.card p.categoria {
    color: #7a7a7a !important;
}

.card p.precio {
    color: #1a73e8 !important;
    font-weight: bold;
    margin-top: 8px;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
}

/* Botón */
.card button {
    background: #f2453d;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.card button:hover {
    transform: scale(1.10);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}


/* FOOTER */
.footer {
    background-color: #222;
    color: #bbb;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* Boton Ver todo el Catalogo*/
.btn-volver {
    background-color: #f2453d;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}
.btn-volver:hover {
    background-color: #d73228;
}


.cart {
    position: relative;
    font-size: 22px;
    color: white;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: #ff3b3b;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
}


/*Botones Aumentar y disminuir Cantidad*/
.btn-cantidad {
    
    color: white;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: bold;
    margin: 0 4px;
}

.btn-cantidad:hover {
    background-color: #d73228;
}




/*para el logion*/
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: #f7f7f7;
}

.login-container {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 350px;
}

.login-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.login-container label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

.login-container input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-top: 5px;
}

.login-container button {
    width: 100%;
    margin-top: 20px;
}

.alerta-login {
    text-align: center;
    background: #ffe5e5;
    color: #c0392b;
    border: 1px solid #ffb3b3;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/*Diseño para letras de advertencia de Contraseña*/
.password-rules p {
    font-size: 14px;
    margin: 2px 0;
}

.valid {
    color: #27ae60; /* verde */
}

.invalid {
    color: #c0392b; /* rojo */
}

/*admin*/
.admin-panel {
    padding: 40px;
    text-align: center;
}

.admin-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.admin-card:hover {
    background: #f1f1f1;
}


/* Contenedor del usuario */
.user-menu {
    position: relative;
    display: inline-block;
}

/* Botón del usuario */
.user-name {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.user-name:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Flecha */
.arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

/* Flecha rotada */
.user-menu.open .arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0px);   /* 👈 SIN ESPACIO ENTRE EL BOTÓN Y EL MENÚ */
    right: 0;
    width: 100%;
    background: white;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0px 6px 18px rgba(0,0,0,0.18);
    min-width: 180px;
    
    /* Diseño moderno */
    animation: fadeIn 0.18s ease-out;
}

/* Mostrar menú */
.user-menu:hover .user-dropdown {
    display: block;
}

/* Enlaces del dropdown */
.user-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.4s ease;
}

/* Hover elegante */
.user-dropdown a:hover {
    background: #f0f4ff;
}

/* Animación suave */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/*Tabla Carrito*/
.tabla-carrito {
    border-collapse: collapse; /* Quita espacios entre celdas */
    width: 100%;              /* O el tamaño que quieras */
    background-color: #ffffff;
}

.tabla-carrito td, 
.tabla-carrito th {
    border: 1px solid #ddd;   /* Bordes de las celdas */
    padding: 12px;            /* Espacio interno */
    text-align: left;         /* Alineación */
}

.tabla-carrito tr:nth-child(even) {
    background-color: #f2f2f2; /* Filas con color alternado */
}

.tabla-carrito tr:hover {
    background-color: #ddd;    /* Efecto hover */
}

.tabla-carrito th {
    background-color: #0056b3; /* Encabezado bonito */
    color: white;
    font-weight: bold;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 45px; /* espacio para el ojito */
    height: 40px;        /* AJUSTA según tu plantilla */
    box-sizing: border-box;
}

/* BOTÓN DEL OJITO */
.toggle-password {
    position: absolute;
    right: -150px;         /* → A la derecha */
    top: 10%;            /* ↓ Centrado vertical */
    transform: translateY(-50%);
    background: transparent;
    border: 1px;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
    height: 14px;
    width: 14px;

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.toggle-password:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}


/* --- HEADER FIJO --- */
.smart-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 97%;
    z-index: 5000;
    transition: transform 0.25s ease-in-out;
}

/* Cuando baja y se oculta */
.smart-header.hide {
    transform: translateY(-100%);
}

/* Para que el contenido no quede escondido debajo del header */
body {
    padding-top: 80px; /* ajusta según la altura real de tu header */
}
