/* === micuenta.php === */
.cuenta-container {
  max-width: 900px;
  margin: 2.5rem auto 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  animation: fadeIn 1.2s;
}
.cuenta-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.cuenta-header img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cuenta-header h2 {
  margin: 0;
  color: #009688;
  font-size: 1.5rem;
  font-weight: 700;
}
.cuenta-nav {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.cuenta-nav a {
  background: #e0f7fa;
  color: #009688;
  border-radius: 7px;
  padding: 10px 22px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  outline: none;
}
.cuenta-nav a:focus, .cuenta-nav a:hover {
  background: #009688;
  color: #fff;
}
.cuenta-info {
  margin-bottom: 1.5rem;
}
.cuenta-info label {
  font-weight: 600;
  color: #3b8d99;
}
.cuenta-info input {
  border: 1px solid #e0f7fa;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 0.7rem;
  width: 100%;
  font-size: 1rem;
}
.cuenta-info input:focus {
  border-color: #009688;
  outline: none;
}
.cuenta-acciones {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
.cuenta-acciones button {
  background: #3b8d99;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  outline: none;
}
.cuenta-acciones button:focus, .cuenta-acciones button:hover {
  background: #009688;
}
@media (max-width: 700px) {
  .cuenta-container { padding: 1rem 0.2rem; }
  .cuenta-header img { width: 48px; height: 48px; }
  .cuenta-header h2 { font-size: 1.1rem; }
  .cuenta-nav { gap: 0.5rem; }
  .cuenta-nav a { padding: 8px 10px; font-size: 0.97rem; }
}

/* === detalle_producto.php === */
.detalle-container {
  max-width: 900px;
  margin: 2.5rem auto 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  animation: fadeIn 1.2s;
}
.galeria-producto {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.galeria-producto img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  background: #f5f7fa;
}
.detalle-info {
  flex: 1;
  min-width: 220px;
}
.detalle-info h2 {
  color: #009688;
  font-size: 1.5rem;
  margin-top: 0;
  font-weight: 700;
}
.detalle-info .precio {
  color: #3b8d99;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.detalle-info .valoracion {
  color: #f7b731;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 3px;
}
.detalle-info .descripcion {
  color: #555;
  margin-bottom: 1.2rem;
}
.detalle-info .acciones {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
.detalle-info .acciones button {
  background: #3b8d99;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  outline: none;
}
.detalle-info .acciones button:focus, .detalle-info .acciones button:hover {
  background: #009688;
}
@media (max-width: 900px) {
  .galeria-producto { flex-direction: column; align-items: center; gap: 1.2rem; }
  .galeria-producto img { width: 98vw; max-width: 320px; height: auto; }
}
@media (max-width: 700px) {
  .detalle-container { padding: 1rem 0.2rem; }
  .detalle-info h2 { font-size: 1.1rem; }
}

/* Modal de imagen */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.4s;
}
.modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === ver_carrito.php === */
.carrito-container {
  max-width: 900px;
  margin: 2.5rem auto 2rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  animation: fadeIn 1.2s;
}
.carrito-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.carrito-table th, .carrito-table td {
  padding: 12px 10px;
  text-align: left;
}
.carrito-table th {
  background: #e0f7fa;
  color: #009688;
  font-weight: 700;
}
.carrito-table td {
  border-bottom: 1px solid #e0f7fa;
}
.carrito-table img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 7px;
  background: #f5f7fa;
}
.carrito-acciones {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
}
.carrito-acciones button {
  background: #3b8d99;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  outline: none;
}
.carrito-acciones button:focus, .carrito-acciones button:hover {
  background: #009688;
}
.carrito-total {
  text-align: right;
  font-size: 1.2rem;
  color: #009688;
  font-weight: 700;
  margin-top: 1.2rem;
}
@media (max-width: 700px) {
  .carrito-container { padding: 1rem 0.2rem; }
  .carrito-table th, .carrito-table td { padding: 7px 3px; font-size: 0.97rem; }
  .carrito-table img { width: 38px; height: 38px; }
}
/* Archivo centralizado de estilos para Yuwin Shop */

/* Aquí se irán pegando los estilos de cada página, agrupados y comentados por sección */

/* Ejemplo de estructura:
-----------------------------------
// --- productos.php ---
.header-content { ... }
.filtros-bar { ... }
// --- panel_admin.php ---
...etc
-----------------------------------
*/

/* --- productos.php --- */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0; padding: 0;
  background: linear-gradient(120deg, #e0e4ea 60%, #b2c2d6 100%);
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 80px; /* Ajusta si tu header es más alto o bajo */
}
header {
  background: linear-gradient(90deg, #3b8d99 0%, #6dd5ed 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  animation: fadeInDown 1s;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px);}
  to { opacity: 1; transform: translateY(0);}
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.header-content h1 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 1px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInLeft 1.2s;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px);}
  to { opacity: 1; transform: translateX(0);}
}
.user-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: fadeInRight 1.2s;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px);}
  to { opacity: 1; transform: translateX(0);}
}
.user-links a {
  text-decoration: none;
  background: #ffffff22;
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  border: 1px solid #fff2;
  font-size: 1rem;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.user-links a.btn-filtro {
  background: #5dbdc1;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(91,189,193,0.10);
}
.user-links a.btn-filtro:hover,
.user-links a:hover {
  background: #fff;
  color: #3b8d99;
  border: 1px solid #3b8d99;
  box-shadow: 0 4px 16px rgba(59,141,153,0.13);
  transform: translateY(-2px) scale(1.04);
}
.notif-icon {
  position: relative;
  cursor: pointer;
  margin-right: 10px;
}
.notif-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  padding: 2px 6px;
  font-weight: bold;
  z-index: 2;
}
#notificaciones-modal-bg {
  display: none;
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.18); z-index: 9999;
  align-items: flex-start; justify-content: flex-end;
}
#notificaciones-modal {
  background: #fff;
  border-radius: 12px 0 0 12px;
  box-shadow: -2px 2px 18px rgba(59,141,153,0.13);
  width: 340px; max-width: 95vw;
  margin-top: 0; margin-right: 0;
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  position: relative;
  animation: fadeInNotif 0.3s;
  max-height: 90vh;
  overflow-y: auto;
  transition: width 0.2s, padding 0.2s;
}
.notif-lista {
  margin: 0; padding: 0; list-style: none;
}
.notif-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: #f5f7fa; border-radius: 7px; margin-bottom: 0.7rem;
  padding: 0.7rem 0.8rem; font-size: 1rem; box-shadow: 0 1px 4px rgba(59,141,153,0.04);
  word-break: break-word;
}
.notif-item.no-leida { background: #e0f7fa; font-weight: 600; }
.notif-item .icono { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.mensaje-fecha-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  word-break: break-word;
  white-space: normal;
  max-width: 100%;
}
.notif-item .mensaje {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0.2rem;
  word-break: break-word;
  white-space: normal;
  max-width: 100%;
  overflow-wrap: break-word;
}
.notif-item .fecha { color: #888; font-size: 0.93rem; margin-left: 0; min-width: 80px; text-align: left; }
.notif-titulo {
  color: #3b8d99; font-size: 1.2rem; font-weight: bold; margin-bottom: 1rem;
  border-bottom: 1px solid #e0f7fa; padding-bottom: 0.4rem;
}
.notif-vermas-btn {
  display: block; margin: 0.7rem auto 0 auto; background: #3b8d99; color: #fff;
  border: none; border-radius: 7px; padding: 8px 22px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.notif-vermas-btn:hover { background: #009688; }
.notif-cerrar {
  position: absolute; top: 10px; right: 12px; background: none; border: none; font-size: 1.3rem; color: #888; cursor: pointer;
}
/* Filtros */
.filtros-bar {
  max-width: 1200px;
  margin: 1.5rem auto 0 auto;
  display: flex;
  gap: 1.2rem;
  align-items: flex-end;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(59,141,153,0.08);
  padding: 1.2rem 1.5rem;
}
.filtros-bar label {
  font-size: 1rem;
  color: #3b8d99;
  font-weight: 600;
  margin-right: 0.5rem;
}
.filtros-bar input[type="text"], .filtros-bar select, .filtros-bar input[type="number"] {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #b2dfdb;
  font-size: 1rem;
  background: #f5f7fa;
  margin-right: 0.7rem;
}
.filtros-bar .btn-filtro {
  background: #3b8d99;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.filtros-bar .btn-filtro:hover { background: #009688; }
@media (max-width: 900px) {
  .header-content, .filtros-bar { flex-direction: column; align-items: flex-start; padding: 1rem; }
  .header-content h1 { font-size: 1.3rem; margin-bottom: 0.7rem; }
  .user-links { width: 100%; gap: 0.5rem; flex-wrap: wrap; }
  .user-links a { width: 100%; text-align: center; margin-bottom: 0.3rem; }
  .filtros-bar { gap: 0.5rem; }
}
/* Secciones y productos */
.seccion { padding: 1rem; }
.seccion h2 {
  color: #3b8d99; border-bottom: 2px solid #ccc;
}
.productos {
  display: flex; flex-wrap: wrap; gap: 18px;
}
.producto {
  border: 1px solid #ddd; padding: 10px; width: 220px;
  border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center; background-color: #fff;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s, opacity 0.5s;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  display: flex; flex-direction: column; align-items: center;
}
.producto:hover {
  box-shadow: 0 4px 16px rgba(0,150,136,0.13);
  transform: translateY(-4px) scale(1.03);
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.producto img {
  width: 100%; height: 150px; object-fit: cover; border-radius: 5px;
  margin-bottom: 0.5rem;
  transition: transform 0.3s;
}
.producto:hover img {
  transform: scale(1.05) rotate(-2deg);
}
.producto h3 { margin: 10px 0 5px; color: #3b8d99; font-size: 18px; }
.producto p { margin: 0; font-weight: bold; color: #444; }
.etiqueta {
  position: absolute; top: 10px; left: 10px; background: #e0f7fa;
  color: #009688; font-size: 0.9rem; font-weight: 700; padding: 2px 10px;
  border-radius: 6px; box-shadow: 0 1px 4px rgba(0,150,136,0.08);
}
.etiqueta.agotado { background: #c0392b; color: #fff; }
.etiqueta.nuevo { background: #27ae60; color: #fff; }
.etiqueta.oferta { background: #f39c12; color: #fff; }
.producto .stock { font-size: 0.95rem; color: #888; margin: 0.2rem 0; }
.producto .estrellas {
  color: #FFD700; font-size: 1.1rem; margin: 0.3rem 0 0.2rem 0;
  letter-spacing: 1px;
}
.producto .acciones {
  margin-top: 0.7rem; display: flex; gap: 0.5rem; justify-content: center;
}
.producto .btn-carrito, .producto .btn-favorito, .producto .btn-compartir {
  background: #009688; color: #fff; border: none; border-radius: 6px;
  padding: 7px 12px; font-size: 1rem; cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; gap: 5px;
}
.producto .btn-carrito:hover { background: #00796b; }
.producto .btn-favorito { background: #f39c12; }
.producto .btn-favorito:hover { background: #e67e22; }
.producto .btn-compartir { background: #3b8d99; }
.producto .btn-compartir:hover { background: #009688; }
.producto .miniaturas {
  display: flex; gap: 5px; margin-top: 5px; justify-content: center;
}
.producto .miniaturas img {
  width: 32px; height: 32px; border-radius: 4px; border: 1.5px solid #b2dfdb;
  object-fit: cover; background: #fff;
}
.ver-mas {
  display: block;
  margin: 1.2rem auto 0 auto;
  background: #3b8d99;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,150,136,0.08);
  text-align: center;
  width: fit-content;
}
.ver-mas:hover { background: #009688; }
.paginacion-cat {
  display: flex; gap: 0.5rem; justify-content: center; margin: 1.2rem 0 0.5rem 0;
  flex-wrap: wrap;
}
.paginacion-cat a, .paginacion-cat span {
  background: #3b8d99; color: #fff; padding: 7px 15px; border-radius: 6px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: background 0.2s;
}
.paginacion-cat a:hover { background: #009688; }
.paginacion-cat .actual { background: #009688; }
#btnVolverArriba {
  position: fixed; bottom: 20px; right: 20px;
  background-color: #3b8d99; color: white; border: none;
  padding: 10px 15px; border-radius: 50%; cursor: pointer;
  display: none; box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background 0.2s;
}
#btnVolverArriba:hover { background: #009688; }
a { text-decoration: none; color: inherit; }
@media (max-width: 700px) {
  .productos { justify-content: center; }
  .producto { width: 95vw; max-width: 320px; }
}
.notificacion-global {
position: fixed;
top: 0;
left: 0;
width: 100vw;
max-width: 100vw;
margin: 0;
border-radius: 0 0 8px 8px;
z-index: 9999;
box-shadow: 0 4px 16px rgba(59,141,153,0.13);
font-size: 1.15rem;
padding: 1.1rem 2rem 1.1rem 2.5rem;
display: flex;
align-items: center;
gap: 12px;
animation: fadeInNotif 0.7s;
}
.noti-info { background: #e3f6fd; color: #0277bd; border-left: 6px solid #039be5; }
.noti-warning { background: #fffbe6; color: #b8860b; border-left: 6px solid #f1c40f; }
.noti-error { background: #fdecea; color: #c0392b; border-left: 6px solid #e74c3c; }
.noti-success { background: #eafaf1; color: #27ae60; border-left: 6px solid #27ae60; }
@keyframes fadeInNotif { from { opacity:0; margin-top:0; } to { opacity:1; margin-top:1.2rem; } }
#notificaciones-modal {
  background: #fff;
  border-radius: 12px 0 0 12px;
  box-shadow: -2px 2px 18px rgba(59,141,153,0.13);
  width: 340px; max-width: 95vw;
  margin-top: 0; margin-right: 0;
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  position: relative;
  animation: fadeInNotif 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
@media (max-width: 600px) {
#notificaciones-modal {
  width: 98vw;
  max-width: 98vw;
  left: 0;
  right: 0;
  border-radius: 0;
  padding: 1rem 0.5rem 1rem 0.5rem;
  min-width: unset;
}
.notif-titulo {
  font-size: 1rem;
  padding-bottom: 0.2rem;
}
.notif-item {
  font-size: 0.97rem;
  padding: 0.5rem 0.5rem;
  flex-direction: column;
  gap: 0.3rem;
}
.mensaje-fecha-wrap {
  flex-direction: column;
  align-items: flex-start;
}
.notif-cerrar {
  top: 7px;
  right: 7px;
  font-size: 1.1rem;
}
}

/* --- index.php --- */
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(120deg, #d0d6e0 60%, #b2c2d6 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #222;
}
.header {
  background: linear-gradient(90deg, #3b8d99 0%, #6dd5ed 100%);
  color: #fff;
  padding: 1.5rem 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  position: relative;
  transition: background 0.5s;
}
.header img {
  height: 70px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
  transition: transform 0.3s;
}
.header img:focus, .header img:hover {
  outline: 2px solid #fff;
  transform: scale(1.05);
}
.header h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  animation: fadeIn 1.2s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
.botones {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0 1.5rem 0;
  flex-wrap: wrap;
  justify-content: center;
}
.boton {
  background: #009688;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,150,136,0.08);
  outline: none;
}
.boton:focus, .boton:hover {
  background: #00796b;
  transform: scale(1.04);
  outline: 2px solid #3b8d99;
}
.destacados {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  min-height: 120px;
  animation: fadeInUp 1.2s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.destacados h2 {
  color: #3b8d99;
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.productos-destacados {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.2rem;
}
.producto-destacado {
  background: #f5f7fa;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  padding: 1rem;
  width: 200px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.producto-destacado:hover {
  box-shadow: 0 4px 16px rgba(0,150,136,0.13);
  transform: translateY(-4px) scale(1.03);
}
.producto-destacado img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.7rem;
  background: #fff;
}
.producto-destacado h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.1rem;
  color: #009688;
  font-weight: 700;
}
.producto-destacado .precio {
  color: #3b8d99;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.producto-destacado .megusta {
  color: #e74c3c;
  font-size: 1rem;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.producto-destacado .valoracion {
  color: #f7b731;
  font-size: 1rem;
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}
.producto-destacado .ver-mas {
  margin-top: 0.7rem;
  background: #3b8d99;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 7px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,150,136,0.08);
  width: 100%;
  display: block;
}
.producto-destacado .ver-mas:hover {
  background: #009688;
}
.contacto-redes {
  margin-top:2.5rem; text-align:center;
  animation: fadeIn 1.5s;
}
.contacto-redes a {
  outline: none;
}
.contacto-redes a:focus {
  outline: 2px solid #3b8d99;
  border-radius: 50%;
  background: #e0f7fa;
}
/* Responsive */
@media (max-width: 1200px) {
  .destacados, .bienvenida-destacada { max-width: 98vw; }
  .productos-destacados { gap: 1rem; }
}
@media (max-width: 900px) {
  .productos-destacados { flex-direction: column; align-items: center; }
  .producto-destacado { width: 95vw; max-width: 320px; }
  .destacados, .bienvenida-destacada { padding: 1rem 0.5rem; }
}
@media (max-width: 700px) {
  .header img { height: 48px; }
  .header h1 { font-size: 1.3rem; }
  .main-content { padding: 1rem 0.2rem; }
  .destacados { padding: 1rem 0.2rem; }
  .boton { width: 100%; padding: 12px 0; font-size: 1rem; }
  .botones { flex-direction: column; gap: 1rem; }
  .bienvenida-box { padding: 0.7rem 0.1rem; }
  .bienvenida-box h2 { font-size: 1rem; }
  .bienvenida-box p { font-size: 0.97rem; }
}
.bienvenida-destacada {
  max-width: 900px;
  margin: 0 auto 2.2rem auto;
  text-align: center;
  width: 100%;
}
.bienvenida-box {
  background: linear-gradient(90deg,#e0f7fa 60%,#f5f7fa 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(59,141,153,0.09);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
}
.bienvenida-box h2 {
  color: #009688;
  font-size: 1.5rem;
  margin: 0 0 0.7rem 0;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.bienvenida-box h2 span {
  color: #3b8d99;
}
.bienvenida-box p {
  font-size: 1.13rem;
  color: #3b8d99;
  margin: 0 0 0.5rem 0;
}
.bienvenida-box p:last-child {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 0;
}
