body {
      margin: 0;
      padding: 0;
      font-family: 'Quicksand', sans-serif;
      background: url('5160549.jpg') no-repeat center center fixed;
      background-size: cover;
      color: #333;
    }

    /*body {
      font-family: 'Quicksand', sans-serif;
      background: url('images/background.jpg') no-repeat center center fixed;
      background-size: cover;
      margin: 0;
      padding: 0;
      color: #333;
    }*/

    header {
      background-color: rgba(255, 255, 255, 0.85);
      text-align: center;
      padding: 3rem 1rem;
    }

    header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin: 0;
      color: #6b4c3b;
    }

    .hero {
      text-align: center;
      padding: 4rem 1rem 2rem;
      background-color: rgba(255, 255, 255, 0.7);
    }

    .hero h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #4e3e2a;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
    }

    .hero a {
      text-decoration: none;
      background-color: #b48b6b;
      color: white;
      padding: 0.8rem 2rem;
      border-radius: 8px;
      transition: background-color 0.3s ease;
    }

    .hero a:hover {
      background-color: #a17557;
    }

    .carousel {
      display: block;
      overflow: hidden;
      position: relative;
      height: 300px;
      margin-top: 2rem;
    }

    .carousel-inner {
      display: flex;
      transition: transform 0.5s ease-in-out;
      height: 300px;
    }

    .carousel-inner img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .explorar {
      background-color: rgba(255, 255, 255, 0.8);
      padding: 3rem 1rem;
      text-align: center;
    }

    .explorar h3 {
      font-size: 1.8rem;
      color: #6b4c3b;
      margin-bottom: 2rem;
    }

    .galeria {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
      padding: 0 1rem;
    }

    .galeria .producto {
      cursor: pointer;
      transition: box-shadow 0.2s;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      width: 220px;
      min-width: 180px;
      max-width: 240px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .galeria .producto:hover {
      box-shadow: 0 4px 16px rgba(180, 139, 107, 0.15);
      background: #f8f5f2;
    }

    .galeria .producto img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      display: block;
      background: #f8f8f8;
    }

    .producto {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }

    .producto img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .producto p {
      padding: 0.5rem;
      font-size: 1rem;
      color: #4e3e2a;
    }

    footer {
      background-color: rgba(255, 255, 255, 0.8);
      padding: 2rem;
      text-align: center;
      font-size: 0.9rem;
    }

    .speaker-btn {
      position: fixed;
      top: 24px;
      right: 24px;
      background: rgba(255, 255, 255, 0.85);
      border: none;
      border-radius: 50%;
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
      cursor: pointer;
      z-index: 1000;
      transition: background 0.2s;
    }

    .speaker-btn:hover {
      background: #f3e7db;
    }

    .speaker-btn svg {
      width: 28px;
      height: 28px;
      fill: #6b4c3b;
    }

    @font-face {
  font-family: 'Liana';
  src: url('../fonts/Liana.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

    @media (max-width: 600px) {
      header img {
        width: 80px !important;
        height: 80px !important;
      }
    }

    #frase-dia {
  text-align: left;
  margin: 1.5rem 0;
  font-size: 1.2rem;
  color: #6b4c3b;
}

#frase-dia strong {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

#frase-dia-header {
  text-align: left;
  max-width: 350px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header-flex img {
  display: block;
}

#frase-dia-fija {
  position: fixed;
  top: 24px;
  left: 24px;
  background: rgba(255,255,255,0.85);
  color: #6b4c3b;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  z-index: 1001;
  min-width: 220px;
  max-width: 350px;
  text-align: left;
}
#frase-dia-fija strong {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: bold;
}

.btn-vendedor {
  margin-top: 2rem;
  background: #b48b6b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.btn-vendedor:hover {
  background: #6b4c3b;
}

.btn-vendedor-fijo {
  position: fixed;
  right: 32px;
  bottom: 32px;
  background: #198754; /* Bootstrap success azul verdoso */
  color: #fff;
  border-radius: 24px;
  padding: 0.7rem 2rem;
  font-size: .7rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  z-index: 2000;
  transition: background 0.2s;
}
.btn-vendedor-fijo:hover {
  background: #145c32;
}

.modal-vendedor {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #f8f5f2;
  padding: 2rem 2rem 1rem 2rem;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  min-width: 320px;
  max-width: 95vw;
  position: relative;
}
.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #b48b6b;
  cursor: pointer;
}
#form-vendedor label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}
#form-vendedor input, #form-vendedor select {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
#form-vendedor button[type="submit"] {
  margin-top: 1.5rem;
  background: #6b4c3b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
}
#form-vendedor button[type="submit"]:hover {
  background: #b48b6b;
}

.img-zoom-container {
  display: inline-block;
  position: relative;
  margin-right: 1rem;
  text-align: center;
}
.img-zoom {
  transition: width 0.2s;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
}
.zoom-controls {
  margin-top: 0.3rem;
}
.zoom-controls button {
  font-size: 1.1rem;
  margin: 0 0.1rem;
  cursor: pointer;
  background: #b48b6b;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  transition: background 0.2s;
}
.zoom-controls button:hover {
  background: #6b4c3b;
}
