/* archivo: estilos.css */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f8f8f8;
}

 header {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 40px;
      background-image: url(./img/comidachina.jpg);
      border-bottom: 5px solid #973131;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100px;
    }

    header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: -1;
    }

.carrito {
  width: 90%;
  max-width: 800px;
  margin: 2em auto;
  background: white;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
}

th, td {
  padding: 0.8em;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.resumen {
  text-align: right;
}

button {
  background-color: #973131;
  color: white;
  border: none;
  padding: 0.6em 1.2em;
  cursor: pointer;
  border-radius: 4px;
}

button:hover {
  background-color: #973131;
}

footer {
      background-color: #973131;
      color: white;
      font-family: 'Jura', sans-serif;
      padding: 40px 30px;
      margin-top: 20px;
    }

    .footer-content {
      max-width: 1000px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .footer-column {
      flex: 1;
      min-width: 250px;
      padding: 10px;
    }

    .footer-logo img {
      height: 100px;
      width: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }

    .footer-column h3 {
      font-size: 24px;
      margin-bottom: 10px;
      font-family: 'Kaushan Script', cursive;
    }

    .footer-column p,
    .footer-column a {
      font-size: 17px;
      margin: 6px 0;
      color: white;
      text-decoration: none;
      font-family: 'Jura', sans-serif;
    }

    .footer-column a:hover {
      text-decoration: underline;
    }

    .footer-column:last-child {
      text-align: right;
    }