 
   
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #e7e7e7;
    color: #333;
    }

    
    header {
      background: linear-gradient(90deg, #e60000, #ff3333);
      height: 50px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 20px;
      position: relative;
    }
    .logo {
      background: white;
      width: 100%;
      max-width: 140px;
      border-radius: 30%;
      
      padding: 2px 7px;
      text-align: center;

      border: solid 4px #ee0f0f;
      position: absolute;
      margin-top: 45px;
    
    z-index: 2;
    }
    .logo img {
      max-width: 100%;
      height: 100%;
      margin-top: 5px;

      align-self: center;
    }
    .menu {
      font-size: 28px;
      cursor: pointer;
      user-select: none;

      position: absolute;
      right: 10px;
    }
    .icon-cart{
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 50px;
    margin-top: 2px;
    }
    .icon-cart img{
    height: 35px;
    padding: 3px 2px;
    background: #ffffff;
    border-radius: 11px;
    }
    .sub-header {
      background: #b0b0b0;
      text-align: right;
      padding: 5px 20px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    .sub-header button {
      background: white;
      color: #2d2d2d;
      padding: 6px 12px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .sub-header button:hover {
      background: #c40000;
      color: white;
      border: 1px solid white;
    }  

    .menu-links {
      display: none;
      background: #444;
      position: absolute;
      top: 50px;
      left: 0;
      width: 100%;
      flex-direction: column;
      z-index: 1;
    }

    .menu-links a {
      padding: 15px;
      color: white;
      text-decoration: none;
      display: block;
      border-bottom: 1px solid #555;
      text-align: center;
    }

    .menu-links a:hover {
      background: #555;
    }

    /* Mostrar cuando está activo */
    .menu-links.active {
      display: flex;
    }

#quantityCart {
  position: absolute;
  top: -6px;
  right: -6px;
    background: yellow;
    color: #5a0000;
  font-size: 12px;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none; /* INVISIBLE POR DEFECTO */
  align-items: center;
  justify-content: center;
}
.container-cart {
  position: absolute;
  top: 65px;
  right: 10px;
  width: 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  padding: 15px;
  display: none;
  z-index: 1000;
}
#listCart {
  list-style: none;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
}

#listCart li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

/* FOOTER */
.footer-cart {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-paycart {
  background: red;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}
    footer {
      background: #e60000;
      color: white;
      text-align: center;
      padding: 15px;
      margin-top: 30px;
      font-size: 14px;
      width: 100%;
      position: relative;
      bottom: 0px;
    }
    .slider {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 15px;
      padding: 20px;
    }

    .slider::-webkit-scrollbar {
      display: none; /* ocultar barra de scroll */
    }

    .producto {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      scroll-snap-align: center;
      text-align: center;
      padding: 15px;
      transition: transform 0.3s;
      display: flex;
    }
    .producto-especial {
      flex: 0 0 80%;
    }
    .producto-one {
      flex: 0 0 40%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .producto-one p {
      margin-bottom: 5px;
    }



    .producto:hover {
      transform: scale(1.05);
    }

    .producto-especial img {
      width: 45%;
      border-radius: 10px;
    }
    .producto-one img {
      width: 80%;
      border-radius: 10px;
    }

    .producto h3 {
      margin: 10px 0 5px;
      color: #333;
    }

    .producto p {
      
      font-size: 13px;
    }
    .producto div {
      
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 5px;
    }
    .producto .offer {
      background: yellow;
      border-radius: 5px;
    }

    .producto button {
      background: #e60000;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 8px;
      width: 80%;
      right: 25px;
      margin-top: auto;
      align-self: center;
    }

    .producto button:hover {
      background: #ff3333;
    }
    .tittles {

      text-align: center;
      margin:auto;
      margin-top: 10px;
      color: #ffffff;
      background: #c40000;
      width: 70%;
      justify-self: center;
      border-radius: 10px;
    }

    
    
  