/* ===============================
   📱 VERSIÓN MÓVIL (por defecto)
   =============================== */
   @media (max-width: 760px) {

    /* ===============================
       🔒 ELEMENTOS A OCULTAR
    =============================== */
    img[src*="foto_portada.png"] {
      display: none;
    }
  
    img[id="top-taller"] {
      display: none;
    }
    #carrito-pc {
      display: none;
    }
  
    /* ===============================
       🎨 ESTILO GENERAL
    =============================== */
    body {
      background-color: #1a1a1a;
      color: white;
    }
  
    /* ===============================
       🔝 TOP BAR
    =============================== */
    .top-bar {
      background-color: #e3fc02;
      text-align: center;
      font-size: 12px;
      padding: 8px 0;
      color: #000;
    }
  
  /* ===============================
       🔝 NAVBAR / CABECERA
    =============================== */
    .navbar {
      display: flex;
      flex-direction: column;
      background-color: #111;
      padding: 10px 20px;
      position: relative;
    }
  
    .navbar-top {
      width: 100%;
      display: flex;
      justify-content: space-between; /* ✅ LOGO A IZQUIERDA, BOTÓN A DERECHA */
      align-items: center;
    }
  
    .cart-icon {
      margin-left: 20px; /* Añadido para separar un poco el carrito del botón de menú */
    }
    .cart-icon-img {
      width: 24px; /* Ajusta el tamaño del carrito como prefieras */
      height: 24px;
      /* Puedes añadir más estilos si es necesario, como borde, sombras, etc. */
    }
    .logo {
      font-weight: bold;
      font-size: 18px;
      color: #e3fc02;
    }
    /* ===============================
         🔝 BOTÓN MENU HAMBURGUESA
      =============================== */
    .toggle-menu {
      font-size: 24px;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      z-index: 2;
    }
  
    /* ===============================
         📋 MENÚ DESPLEGABLE
      =============================== */
    .menu.active {
      display: flex;
    }
    /* Oculto por defecto */
    .center-content {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 50px; /* ajusta según altura del botón */
      background-color: #111;
    }
  
    /* Mostrar cuando esté activo */
    .center-content.active {
      display: flex;
    }
  
    /* ===============================
       🖼️ HERO SECTION
    =============================== */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      padding-top: 10% !important;
      text-align: center;
    }
  
    .hero-texto {
      margin-bottom: 30px;
      text-align: center;
    }
  
    .hero h1 {
      font-size: 28px;
      line-height: 1.2;
      margin-bottom: 20px;
    }
  
    .btn-catalogo {
      background-color: #e6ff00;
      color: #000;
      padding: 10px 20px;
      text-decoration: none;
      font-weight: bold;
      border-radius: 4px;
    }
  
    .hero-product {
      width: 70%;
      max-width: 300px;
    }
  
    .texto-blend {
      color: white;
      mix-blend-mode: difference;
    }
  
    /* ===============================
       🧱 GALERÍA / MASONRY GRID
    =============================== */
    main {
      background-color: #1f1f21;
      color: #ffffff;
      padding: 20px;
      width: 100%;
      text-align: center;
    }
  
    .masonry-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px;
      justify-content: center;
    }
  
    .masonry-item {
      width: 300px;
      background: rgba(97, 95, 95, 0.521);
      padding: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      text-align: center;
    }
  
    .galeria-img {
      width: 100%;
      height: auto;
      border-radius: 5px;
    }
  
    .p {
      font-size: 18px;
      margin-top: 10px;
      color: #ffffff;
    }
  
    /* ===============================
       📨 NEWSLETTER
    =============================== */
    .newsletter {
      color-scheme: light dark;
      text-align: center;
      padding: 30px 15px;
    }
  
    .newsletter h2 {
      margin-bottom: 10px;
    }
  
    .newsletter form {
      margin-top: 15px;
      display: flex;
      justify-content: center;
      gap: 10px;
      border: 10px;
    }
  
    .newsletter input {
      padding: 10px;
      width: 70%;
      border: none;
    }
  
    .newsletter button {
      padding: 10px 15px;
      background: black;
      color: white;
      border: none;
    }
  
    /* ===============================
       🦶 FOOTER
    =============================== */
    footer {
      padding: 15px;
      font-size: 12px;
      text-align: center;
      background-color: #0d0d0d;
    }
  
    /* ===============================
       🛍️ DETALLE DE PRODUCTO
    =============================== */
    .producto-container {
      display: flex;
      flex-direction: column;
      padding: 20px;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
      color: white;
    }
  
    .producto-img img {
      width: 100%;
      max-width: 500px;
      display: block;
      margin: 0 auto;
    }
  
    .producto-detalles {
      text-align: center;
    }
  
    .precio-original {
      text-decoration: line-through;
      color: #888;
    }
  
    .precio-descuento {
      font-size: 20px;
      font-weight: bold;
      color: #e6ff00;
      margin-bottom: 15px;
    }
  
    .cantidad {
      display: flex;
      justify-content: center;
      gap: 10px;
      text-align: center;
      margin-bottom: 20px;
    }
  
    .cantidad input[type="number"] {
      width: 60px;
      padding: 6px;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      text-align: center;
      -moz-appearance: textfield;
    }
  
    .cantidad button {
      padding: 5px 10px;
    }
  
    .btn-comprar {
      background-color: #333;
      color: #fff;
      padding: 10px 20px;
      border: 1px solid #e6ff00;
      cursor: not-allowed;
      margin-bottom: 15px;
    }
  
    /* ===============================
       🧑 SOBRE NOSOTROS
    =============================== */
    .sobre-nosotros {
      background-color: #1f1f1f;
      color: #fff;
      padding: 20px;
      padding-top: 0% !important;
    }
  
    .contenido-flex {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 30px;
    }
  
    .contenido-flex .imagen img {
      width: 100%;
      max-width: 450px;
      border-radius: 10px;
    }
  
    .texto {
      text-align: left;
    }
  
    .texto h2 {
      color: #e6ff00;
      margin-bottom: 20px;
      font-size: 2rem;
    }
  
    .texto p {
      margin-bottom: 15px;
      line-height: 1.6;
    }
  
    .texto ul {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }
  
    .texto li {
      margin-bottom: 10px;
      font-weight: 500;
    }
  
  }
  